docs::api::Apache2::compat - Online Linux Manual PageSection : 3
Updated : 2021-01-26
Source : perl v5.32.1
Note : User Contributed Perl Documentation

NAMEApache2::compat −− 1.0 backward compatibility functions deprecated in 2.0

Synopsis​ # either add at the very beginning of startup.pl ​ use Apache2::compat; ​ # or httpd.conf ​ PerlModule Apache2::compat ​ ​ # override and restore compat functions colliding with mp2 API ​ Apache2::compat::override_mp2_api('Apache2::Connection::local_addr'); ​ my ($local_port, $local_addr) = sockaddr_in($c−>local_addr); ​ Apache2::compat::restore_mp2_api('Apache2::Connection::local_addr');

DescriptionApache2::compat provides mod_perl 1.0 compatibility layer and can be used to smooth the transition process to mod_perl 2.0. It includes functions that have changed their API or were removed in mod_perl 2.0. If your code uses any of those functions, you should load this module at the server startup, and everything should work as it did in 1.0. If it doesn't please report the bug, but before you do that please make sure that your code does work properly under mod_perl 1.0. However, remember, that it's implemented in pure Perl and not C, therefore its functionality is not optimized and it's the best to try to port your code not to use deprecated functions and stop using the compatibility layer.

Compatibility Functions Colliding with mod_perl 2.0 APIMost of the functions provided by Apache2::compat don't interfere with mod_perl 2.0 API. However there are several functions which have the same name in the mod_perl 1.0 and mod_perl 2.0 API, accept the same number of arguments, but either the arguments themselves aren't the same or the return values are different. For example the mod_perl 1.0 code: ​ require Socket; ​ my $sockaddr_in = $c−>local_addr; ​ my ($local_port, $local_addr) = Socket::sockaddr_in($sockaddr_in); should be adjusted to be: ​ require Apache2::Connection; ​ require APR::SockAddr; ​ my $sockaddr = $c−>local_addr; ​ my ($local_port, $local_addr) = ($sockaddr−>port, $sockaddr−>ip_get); to work under mod_perl 2.0. As you can see in mod_perl 1.0 API local_addr() was returning a ​SOCKADDR_IN object (see the Socket perl manpage), in mod_perl 2.0 API it returns an APR::SockAddr object, which is a totally different beast. If Apache2::compat overrides the function local_addr() to be back-compatible with mod_perl 1.0 API. Any code that relies on this function to work as it should under mod_perl 2.0 will be broken. Therefore the solution is not to override local_addr() by default. Instead a special API is provided which overrides colliding functions only when needed and which can be restored when no longer needed. So for example if you have code from mod_perl 1.0: ​ my ($local_port, $local_addr) = Socket::sockaddr_in($c−>local_addr); and you aren't ready to port it to to use the mp2 API: ​ my ($local_port, $local_addr) = ($c−>local_addr−>port, ​ $c−>local_addr−>ip_get); you could do the following: ​ Apache2::compat::override_mp2_api('Apache2::Connection::local_addr'); ​ my ($local_port, $local_addr) = Socket::sockaddr_in($c−>local_addr); ​ Apache2::compat::restore_mp2_api('Apache2::Connection::local_addr'); Notice that you need to restore the API as soon as possible. Both override_mp2_api() and restore_mp2_api() accept a list of functions to operate on.

Available Overridable FunctionsAt the moment the following colliding functions are available for overriding: Apache2::RequestRec::notes Apache2::RequestRec::filename Apache2::RequestRec::finfo Apache2::Connection::local_addr Apache2::Connection::remote_addr Apache2::Util::ht_time Apache2::Module::top_module Apache2::Module::get_config APR::URI::unparse 

Use in CPAN ModulesThe short answer: Do not use Apache2::compat in CPAN modules. The long answer: Apache2::compat is useful during the mod_perl 1.0 code porting. Though remember that it's implemented in pure Perl. In certain cases it overrides mod_perl 2.0 methods, because their API is very different and doesn't map 1:1 to mod_perl 1.0. So if anything, not under user's control, loads Apache2::compat user's code is forced to use the potentially slower method. Which is quite bad. Some users may choose to keep using Apache2::compat in production and it may perform just fine. Other users will choose not to use that module, by porting their code to use mod_perl 2.0 API. However it should be users' choice whether to load this module or not and not to be enforced by CPAN modules. If you port your CPAN modules to work with mod_perl 2.0, you should follow the porting Perl and ​XS module guidelines. Users that are stuck with CPAN modules preloading Apache2::compat, can prevent this from happening by adding ​ $INC{'Apache2/compat.pm'} = _ _FILE_ _; at the very beginning of their startup.pl. But this will most certainly break the module that needed this module.

APIYou should be reading the mod_perl 1.0 API docs for usage of the methods and functions in this package, since what this module is doing is providing a backwards compatibility and it makes no sense to duplicate documentation. Another important document to read is: Migrating from mod_perl 1.0 to mod_perl 2.0 which covers all mod_perl 1.0 constants, functions and methods that have changed in mod_perl 2.0.

See Alsomod_perl 2.0 documentation.

Copyrightmod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0.

AuthorsThe mod_perl development team and numerous contributors.
0
Johanes Gumabo
Data Size   :   17,743 byte
man-Apache2::compat.3pmBuild   :   2024-12-05, 20:55   :  
Visitor Screen   :   x
Visitor Counter ( page / site )   :   4 / 175,801
Visitor ID   :     :  
Visitor IP   :   18.226.248.17   :  
Visitor Provider   :   AMAZON-02   :  
Provider Position ( lat x lon )   :   39.962500 x -83.006100   :   x
Provider Accuracy Radius ( km )   :   1000   :  
Provider City   :   Columbus   :  
Provider Province   :   Ohio ,   :   ,
Provider Country   :   United States   :  
Provider Continent   :   North America   :  
Visitor Recorder   :   Version   :  
Visitor Recorder   :   Library   :  
Online Linux Manual Page   :   Version   :   Online Linux Manual Page - Fedora.40 - march=x86-64 - mtune=generic - 24.12.05
Online Linux Manual Page   :   Library   :   lib_c - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Online Linux Manual Page   :   Library   :   lib_m - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Data Base   :   Version   :   Online Linux Manual Page Database - 24.04.13 - march=x86-64 - mtune=generic - fedora-38
Data Base   :   Library   :   lib_c - 23.02.07 - march=x86-64 - mtune=generic - fedora.36

Very long time ago, I have the best tutor, Wenzel Svojanovsky . If someone knows the email address of Wenzel Svojanovsky , please send an email to johanes_gumabo@yahoo.co.id .
If error, please print screen and send to johanes_gumabo@yahoo.co.id
Under development. Support me via PayPal.

ERROR : Need New Coding :         (parse_manual_page_|249|Apache2::compat.3pm|36/37|el══─{─══.|.el══─{─══. ds -- \|\(em\| )         (htmlprn|149|Apache2::compat.3pm|36/37|.el══─{─══. ds --  —  |.el══─{─══. ds -- \|\(em\| )         (parse_manual_page_|249|Apache2::compat.3pm|43|br══─}─══|'br══─}─══ )         (htmlprn|149|Apache2::compat.3pm|43|'br══─}─══ |'br══─}─══ )