Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

441 lines
14 KiB

  1. package Exporter;
  2. require 5.006;
  3. # Be lean.
  4. #use strict;
  5. #no strict 'refs';
  6. our $Debug = 0;
  7. our $ExportLevel = 0;
  8. our $Verbose ||= 0;
  9. our $VERSION = '5.60';
  10. our (%Cache);
  11. # Carp does this now for us, so we can finally live w/o Carp
  12. #$Carp::Internal{Exporter} = 1;
  13. sub as_heavy {
  14. require Exporter::Heavy;
  15. # Unfortunately, this does not work if the caller is aliased as *name = \&foo
  16. # Thus the need to create a lot of identical subroutines
  17. my $c = (caller(1))[3];
  18. $c =~ s/.*:://;
  19. \&{"Exporter::Heavy::heavy_$c"};
  20. }
  21. sub export {
  22. goto &{as_heavy()};
  23. }
  24. sub import {
  25. my $pkg = shift;
  26. my $callpkg = caller($ExportLevel);
  27. if ($pkg eq "Exporter" and @_ and $_[0] eq "import") {
  28. *{$callpkg."::import"} = \&import;
  29. return;
  30. }
  31. # We *need* to treat @{"$pkg\::EXPORT_FAIL"} since Carp uses it :-(
  32. my($exports, $fail) = (\@{"$pkg\::EXPORT"}, \@{"$pkg\::EXPORT_FAIL"});
  33. return export $pkg, $callpkg, @_
  34. if $Verbose or $Debug or @$fail > 1;
  35. my $export_cache = ($Cache{$pkg} ||= {});
  36. my $args = @_ or @_ = @$exports;
  37. local $_;
  38. if ($args and not %$export_cache) {
  39. s/^&//, $export_cache->{$_} = 1
  40. foreach (@$exports, @{"$pkg\::EXPORT_OK"});
  41. }
  42. my $heavy;
  43. # Try very hard not to use {} and hence have to enter scope on the foreach
  44. # We bomb out of the loop with last as soon as heavy is set.
  45. if ($args or $fail) {
  46. ($heavy = (/\W/ or $args and not exists $export_cache->{$_}
  47. or @$fail and $_ eq $fail->[0])) and last
  48. foreach (@_);
  49. } else {
  50. ($heavy = /\W/) and last
  51. foreach (@_);
  52. }
  53. return export $pkg, $callpkg, ($args ? @_ : ()) if $heavy;
  54. local $SIG{__WARN__} =
  55. sub {require Carp; &Carp::carp};
  56. # shortcut for the common case of no type character
  57. *{"$callpkg\::$_"} = \&{"$pkg\::$_"} foreach @_;
  58. }
  59. # Default methods
  60. sub export_fail {
  61. my $self = shift;
  62. @_;
  63. }
  64. # Unfortunately, caller(1)[3] "does not work" if the caller is aliased as
  65. # *name = \&foo. Thus the need to create a lot of identical subroutines
  66. # Otherwise we could have aliased them to export().
  67. sub export_to_level {
  68. goto &{as_heavy()};
  69. }
  70. sub export_tags {
  71. goto &{as_heavy()};
  72. }
  73. sub export_ok_tags {
  74. goto &{as_heavy()};
  75. }
  76. sub require_version {
  77. goto &{as_heavy()};
  78. }
  79. 1;
  80. __END__
  81. =head1 NAME
  82. Exporter - Implements default import method for modules
  83. =head1 SYNOPSIS
  84. In module YourModule.pm:
  85. package YourModule;
  86. require Exporter;
  87. @ISA = qw(Exporter);
  88. @EXPORT_OK = qw(munge frobnicate); # symbols to export on request
  89. or
  90. package YourModule;
  91. use Exporter 'import'; # gives you Exporter's import() method directly
  92. @EXPORT_OK = qw(munge frobnicate); # symbols to export on request
  93. In other files which wish to use YourModule:
  94. use ModuleName qw(frobnicate); # import listed symbols
  95. frobnicate ($left, $right) # calls YourModule::frobnicate
  96. =head1 DESCRIPTION
  97. The Exporter module implements an C<import> method which allows a module
  98. to export functions and variables to its users' namespaces. Many modules
  99. use Exporter rather than implementing their own C<import> method because
  100. Exporter provides a highly flexible interface, with an implementation optimised
  101. for the common case.
  102. Perl automatically calls the C<import> method when processing a
  103. C<use> statement for a module. Modules and C<use> are documented
  104. in L<perlfunc> and L<perlmod>. Understanding the concept of
  105. modules and how the C<use> statement operates is important to
  106. understanding the Exporter.
  107. =head2 How to Export
  108. The arrays C<@EXPORT> and C<@EXPORT_OK> in a module hold lists of
  109. symbols that are going to be exported into the users name space by
  110. default, or which they can request to be exported, respectively. The
  111. symbols can represent functions, scalars, arrays, hashes, or typeglobs.
  112. The symbols must be given by full name with the exception that the
  113. ampersand in front of a function is optional, e.g.
  114. @EXPORT = qw(afunc $scalar @array); # afunc is a function
  115. @EXPORT_OK = qw(&bfunc %hash *typeglob); # explicit prefix on &bfunc
  116. If you are only exporting function names it is recommended to omit the
  117. ampersand, as the implementation is faster this way.
  118. =head2 Selecting What To Export
  119. Do B<not> export method names!
  120. Do B<not> export anything else by default without a good reason!
  121. Exports pollute the namespace of the module user. If you must export
  122. try to use @EXPORT_OK in preference to @EXPORT and avoid short or
  123. common symbol names to reduce the risk of name clashes.
  124. Generally anything not exported is still accessible from outside the
  125. module using the ModuleName::item_name (or $blessed_ref-E<gt>method)
  126. syntax. By convention you can use a leading underscore on names to
  127. informally indicate that they are 'internal' and not for public use.
  128. (It is actually possible to get private functions by saying:
  129. my $subref = sub { ... };
  130. $subref->(@args); # Call it as a function
  131. $obj->$subref(@args); # Use it as a method
  132. However if you use them for methods it is up to you to figure out
  133. how to make inheritance work.)
  134. As a general rule, if the module is trying to be object oriented
  135. then export nothing. If it's just a collection of functions then
  136. @EXPORT_OK anything but use @EXPORT with caution. For function and
  137. method names use barewords in preference to names prefixed with
  138. ampersands for the export lists.
  139. Other module design guidelines can be found in L<perlmod>.
  140. =head2 How to Import
  141. In other files which wish to use your module there are three basic ways for
  142. them to load your module and import its symbols:
  143. =over 4
  144. =item C<use ModuleName;>
  145. This imports all the symbols from ModuleName's @EXPORT into the namespace
  146. of the C<use> statement.
  147. =item C<use ModuleName ();>
  148. This causes perl to load your module but does not import any symbols.
  149. =item C<use ModuleName qw(...);>
  150. This imports only the symbols listed by the caller into their namespace.
  151. All listed symbols must be in your @EXPORT or @EXPORT_OK, else an error
  152. occurs. The advanced export features of Exporter are accessed like this,
  153. but with list entries that are syntactically distinct from symbol names.
  154. =back
  155. Unless you want to use its advanced features, this is probably all you
  156. need to know to use Exporter.
  157. =head1 Advanced features
  158. =head2 Specialised Import Lists
  159. If any of the entries in an import list begins with !, : or / then
  160. the list is treated as a series of specifications which either add to
  161. or delete from the list of names to import. They are processed left to
  162. right. Specifications are in the form:
  163. [!]name This name only
  164. [!]:DEFAULT All names in @EXPORT
  165. [!]:tag All names in $EXPORT_TAGS{tag} anonymous list
  166. [!]/pattern/ All names in @EXPORT and @EXPORT_OK which match
  167. A leading ! indicates that matching names should be deleted from the
  168. list of names to import. If the first specification is a deletion it
  169. is treated as though preceded by :DEFAULT. If you just want to import
  170. extra names in addition to the default set you will still need to
  171. include :DEFAULT explicitly.
  172. e.g., Module.pm defines:
  173. @EXPORT = qw(A1 A2 A3 A4 A5);
  174. @EXPORT_OK = qw(B1 B2 B3 B4 B5);
  175. %EXPORT_TAGS = (T1 => [qw(A1 A2 B1 B2)], T2 => [qw(A1 A2 B3 B4)]);
  176. Note that you cannot use tags in @EXPORT or @EXPORT_OK.
  177. Names in EXPORT_TAGS must also appear in @EXPORT or @EXPORT_OK.
  178. An application using Module can say something like:
  179. use Module qw(:DEFAULT :T2 !B3 A3);
  180. Other examples include:
  181. use Socket qw(!/^[AP]F_/ !SOMAXCONN !SOL_SOCKET);
  182. use POSIX qw(:errno_h :termios_h !TCSADRAIN !/^EXIT/);
  183. Remember that most patterns (using //) will need to be anchored
  184. with a leading ^, e.g., C</^EXIT/> rather than C</EXIT/>.
  185. You can say C<BEGIN { $Exporter::Verbose=1 }> to see how the
  186. specifications are being processed and what is actually being imported
  187. into modules.
  188. =head2 Exporting without using Exporter's import method
  189. Exporter has a special method, 'export_to_level' which is used in situations
  190. where you can't directly call Exporter's import method. The export_to_level
  191. method looks like:
  192. MyPackage->export_to_level($where_to_export, $package, @what_to_export);
  193. where $where_to_export is an integer telling how far up the calling stack
  194. to export your symbols, and @what_to_export is an array telling what
  195. symbols *to* export (usually this is @_). The $package argument is
  196. currently unused.
  197. For example, suppose that you have a module, A, which already has an
  198. import function:
  199. package A;
  200. @ISA = qw(Exporter);
  201. @EXPORT_OK = qw ($b);
  202. sub import
  203. {
  204. $A::b = 1; # not a very useful import method
  205. }
  206. and you want to Export symbol $A::b back to the module that called
  207. package A. Since Exporter relies on the import method to work, via
  208. inheritance, as it stands Exporter::import() will never get called.
  209. Instead, say the following:
  210. package A;
  211. @ISA = qw(Exporter);
  212. @EXPORT_OK = qw ($b);
  213. sub import
  214. {
  215. $A::b = 1;
  216. A->export_to_level(1, @_);
  217. }
  218. This will export the symbols one level 'above' the current package - ie: to
  219. the program or module that used package A.
  220. Note: Be careful not to modify C<@_> at all before you call export_to_level
  221. - or people using your package will get very unexplained results!
  222. =head2 Exporting without inheriting from Exporter
  223. By including Exporter in your @ISA you inherit an Exporter's import() method
  224. but you also inherit several other helper methods which you probably don't
  225. want. To avoid this you can do
  226. package YourModule;
  227. use Exporter qw( import );
  228. which will export Exporter's own import() method into YourModule.
  229. Everything will work as before but you won't need to include Exporter in
  230. @YourModule::ISA.
  231. =head2 Module Version Checking
  232. The Exporter module will convert an attempt to import a number from a
  233. module into a call to $module_name-E<gt>require_version($value). This can
  234. be used to validate that the version of the module being used is
  235. greater than or equal to the required version.
  236. The Exporter module supplies a default require_version method which
  237. checks the value of $VERSION in the exporting module.
  238. Since the default require_version method treats the $VERSION number as
  239. a simple numeric value it will regard version 1.10 as lower than
  240. 1.9. For this reason it is strongly recommended that you use numbers
  241. with at least two decimal places, e.g., 1.09.
  242. =head2 Managing Unknown Symbols
  243. In some situations you may want to prevent certain symbols from being
  244. exported. Typically this applies to extensions which have functions
  245. or constants that may not exist on some systems.
  246. The names of any symbols that cannot be exported should be listed
  247. in the C<@EXPORT_FAIL> array.
  248. If a module attempts to import any of these symbols the Exporter
  249. will give the module an opportunity to handle the situation before
  250. generating an error. The Exporter will call an export_fail method
  251. with a list of the failed symbols:
  252. @failed_symbols = $module_name->export_fail(@failed_symbols);
  253. If the export_fail method returns an empty list then no error is
  254. recorded and all the requested symbols are exported. If the returned
  255. list is not empty then an error is generated for each symbol and the
  256. export fails. The Exporter provides a default export_fail method which
  257. simply returns the list unchanged.
  258. Uses for the export_fail method include giving better error messages
  259. for some symbols and performing lazy architectural checks (put more
  260. symbols into @EXPORT_FAIL by default and then take them out if someone
  261. actually tries to use them and an expensive check shows that they are
  262. usable on that platform).
  263. =head2 Tag Handling Utility Functions
  264. Since the symbols listed within %EXPORT_TAGS must also appear in either
  265. @EXPORT or @EXPORT_OK, two utility functions are provided which allow
  266. you to easily add tagged sets of symbols to @EXPORT or @EXPORT_OK:
  267. %EXPORT_TAGS = (foo => [qw(aa bb cc)], bar => [qw(aa cc dd)]);
  268. Exporter::export_tags('foo'); # add aa, bb and cc to @EXPORT
  269. Exporter::export_ok_tags('bar'); # add aa, cc and dd to @EXPORT_OK
  270. Any names which are not tags are added to @EXPORT or @EXPORT_OK
  271. unchanged but will trigger a warning (with C<-w>) to avoid misspelt tags
  272. names being silently added to @EXPORT or @EXPORT_OK. Future versions
  273. may make this a fatal error.
  274. =head2 Generating combined tags
  275. If several symbol categories exist in %EXPORT_TAGS, it's usually
  276. useful to create the utility ":all" to simplify "use" statements.
  277. The simplest way to do this is:
  278. %EXPORT_TAGS = (foo => [qw(aa bb cc)], bar => [qw(aa cc dd)]);
  279. # add all the other ":class" tags to the ":all" class,
  280. # deleting duplicates
  281. {
  282. my %seen;
  283. push @{$EXPORT_TAGS{all}},
  284. grep {!$seen{$_}++} @{$EXPORT_TAGS{$_}} foreach keys %EXPORT_TAGS;
  285. }
  286. CGI.pm creates an ":all" tag which contains some (but not really
  287. all) of its categories. That could be done with one small
  288. change:
  289. # add some of the other ":class" tags to the ":all" class,
  290. # deleting duplicates
  291. {
  292. my %seen;
  293. push @{$EXPORT_TAGS{all}},
  294. grep {!$seen{$_}++} @{$EXPORT_TAGS{$_}}
  295. foreach qw/html2 html3 netscape form cgi internal/;
  296. }
  297. Note that the tag names in %EXPORT_TAGS don't have the leading ':'.
  298. =head2 C<AUTOLOAD>ed Constants
  299. Many modules make use of C<AUTOLOAD>ing for constant subroutines to
  300. avoid having to compile and waste memory on rarely used values (see
  301. L<perlsub> for details on constant subroutines). Calls to such
  302. constant subroutines are not optimized away at compile time because
  303. they can't be checked at compile time for constancy.
  304. Even if a prototype is available at compile time, the body of the
  305. subroutine is not (it hasn't been C<AUTOLOAD>ed yet). perl needs to
  306. examine both the C<()> prototype and the body of a subroutine at
  307. compile time to detect that it can safely replace calls to that
  308. subroutine with the constant value.
  309. A workaround for this is to call the constants once in a C<BEGIN> block:
  310. package My ;
  311. use Socket ;
  312. foo( SO_LINGER ); ## SO_LINGER NOT optimized away; called at runtime
  313. BEGIN { SO_LINGER }
  314. foo( SO_LINGER ); ## SO_LINGER optimized away at compile time.
  315. This forces the C<AUTOLOAD> for C<SO_LINGER> to take place before
  316. SO_LINGER is encountered later in C<My> package.
  317. If you are writing a package that C<AUTOLOAD>s, consider forcing
  318. an C<AUTOLOAD> for any constants explicitly imported by other packages
  319. or which are usually used when your package is C<use>d.
  320. =cut