README
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:14k
源码类别:

生物技术

开发平台:

C/C++

  1. README file for PCRE (Perl-compatible regular expression library)
  2. -----------------------------------------------------------------
  3. The latest release of PCRE is always available from
  4.   ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-xxx.tar.gz
  5. Please read the NEWS file if you are upgrading from a previous release.
  6. PCRE has its own native API, but a set of "wrapper" functions that are based on
  7. the POSIX API are also supplied in the library libpcreposix. Note that this
  8. just provides a POSIX calling interface to PCRE: the regular expressions
  9. themselves still follow Perl syntax and semantics. The header file
  10. for the POSIX-style functions is called pcreposix.h. The official POSIX name is
  11. regex.h, but I didn't want to risk possible problems with existing files of
  12. that name by distributing it that way. To use it with an existing program that
  13. uses the POSIX API, it will have to be renamed or pointed at by a link.
  14. Contributions by users of PCRE
  15. ------------------------------
  16. You can find contributions from PCRE users in the directory
  17.   ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Contrib
  18. where there is also a README file giving brief descriptions of what they are.
  19. Several of them provide support for compiling PCRE on various flavours of
  20. Windows systems (I myself do not use Windows). Some are complete in themselves;
  21. others are pointers to URLs containing relevant files.
  22. Building PCRE on a Unix system
  23. ------------------------------
  24. To build PCRE on a Unix system, first run the "configure" command from the PCRE
  25. distribution directory, with your current directory set to the directory where
  26. you want the files to be created. This command is a standard GNU "autoconf"
  27. configuration script, for which generic instructions are supplied in INSTALL.
  28. Most commonly, people build PCRE within its own distribution directory, and in
  29. this case, on many systems, just running "./configure" is sufficient, but the
  30. usual methods of changing standard defaults are available. For example,
  31. CFLAGS='-O2 -Wall' ./configure --prefix=/opt/local
  32. specifies that the C compiler should be run with the flags '-O2 -Wall' instead
  33. of the default, and that "make install" should install PCRE under /opt/local
  34. instead of the default /usr/local.
  35. If you want to build in a different directory, just run "configure" with that
  36. directory as current. For example, suppose you have unpacked the PCRE source
  37. into /source/pcre/pcre-xxx, but you want to build it in /build/pcre/pcre-xxx:
  38. cd /build/pcre/pcre-xxx
  39. /source/pcre/pcre-xxx/configure
  40. If you want to make use of the experimential, incomplete support for UTF-8
  41. character strings in PCRE, you must add --enable-utf8 to the "configure"
  42. command. Without it, the code for handling UTF-8 is not included in the
  43. library. (Even when included, it still has to be enabled by an option at run
  44. time.)
  45. The "configure" script builds five files:
  46. . libtool is a script that builds shared and/or static libraries
  47. . Makefile is built by copying Makefile.in and making substitutions.
  48. . config.h is built by copying config.in and making substitutions.
  49. . pcre-config is built by copying pcre-config.in and making substitutions.
  50. . RunTest is a script for running tests
  51. Once "configure" has run, you can run "make". It builds two libraries called
  52. libpcre and libpcreposix, a test program called pcretest, and the pcregrep
  53. command. You can use "make install" to copy these, the public header files
  54. pcre.h and pcreposix.h, and the man pages to appropriate live directories on
  55. your system, in the normal way.
  56. Running "make install" also installs the command pcre-config, which can be used
  57. to recall information about the PCRE configuration and installation. For
  58. example,
  59.   pcre-config --version
  60. prints the version number, and
  61.  pcre-config --libs
  62. outputs information about where the library is installed. This command can be
  63. included in makefiles for programs that use PCRE, saving the programmer from
  64. having to remember too many details.
  65. There is one esoteric feature that is controlled by "configure". It concerns
  66. the character value used for "newline", and is something that you probably do
  67. not want to change on a Unix system. The default is to use whatever value your
  68. compiler gives to 'n'. By using --enable-newline-is-cr or
  69. --enable-newline-is-lf you can force the value to be CR (13) or LF (10) if you
  70. really want to.
  71. Shared libraries on Unix systems
  72. --------------------------------
  73. The default distribution builds PCRE as two shared libraries and two static
  74. libraries, as long as the operating system supports shared libraries. Shared
  75. library support relies on the "libtool" script which is built as part of the
  76. "configure" process.
  77. The libtool script is used to compile and link both shared and static
  78. libraries. They are placed in a subdirectory called .libs when they are newly
  79. built. The programs pcretest and pcregrep are built to use these uninstalled
  80. libraries (by means of wrapper scripts in the case of shared libraries). When
  81. you use "make install" to install shared libraries, pcregrep and pcretest are
  82. automatically re-built to use the newly installed shared libraries before being
  83. installed themselves. However, the versions left in the source directory still
  84. use the uninstalled libraries.
  85. To build PCRE using static libraries only you must use --disable-shared when
  86. configuring it. For example
  87. ./configure --prefix=/usr/gnu --disable-shared
  88. Then run "make" in the usual way. Similarly, you can use --disable-static to
  89. build only shared libraries.
  90. Building on non-Unix systems
  91. ----------------------------
  92. For a non-Unix system, read the comments in the file NON-UNIX-USE. PCRE has
  93. been compiled on Windows systems and on Macintoshes, but I don't know the
  94. details because I don't use those systems. It should be straightforward to
  95. build PCRE on any system that has a Standard C compiler, because it uses only
  96. Standard C functions.
  97. Testing PCRE
  98. ------------
  99. To test PCRE on a Unix system, run the RunTest script that is created by the
  100. configuring process. (This can also be run by "make runtest", "make check", or
  101. "make test".) For other systems, see the instruction in NON-UNIX-USE.
  102. The script runs the pcretest test program (which is documented in the doc
  103. directory) on each of the testinput files (in the testdata directory) in turn,
  104. and compares the output with the contents of the corresponding testoutput file.
  105. A file called testtry is used to hold the output from pcretest. To run pcretest
  106. on just one of the test files, give its number as an argument to RunTest, for
  107. example:
  108.   RunTest 3
  109. The first and third test files can also be fed directly into the perltest
  110. script to check that Perl gives the same results. The third file requires the
  111. additional features of release 5.005, which is why it is kept separate from the
  112. main test input, which needs only Perl 5.004. In the long run, when 5.005 (or
  113. higher) is widespread, these two test files may get amalgamated.
  114. The second set of tests check pcre_fullinfo(), pcre_info(), pcre_study(),
  115. pcre_copy_substring(), pcre_get_substring(), pcre_get_substring_list(), error
  116. detection, and run-time flags that are specific to PCRE, as well as the POSIX
  117. wrapper API. It also uses the debugging flag to check some of the internals of
  118. pcre_compile().
  119. If you build PCRE with a locale setting that is not the standard C locale, the
  120. character tables may be different (see next paragraph). In some cases, this may
  121. cause failures in the second set of tests. For example, in a locale where the
  122. isprint() function yields TRUE for characters in the range 128-255, the use of
  123. [:isascii:] inside a character class defines a different set of characters, and
  124. this shows up in this test as a difference in the compiled code, which is being
  125. listed for checking. Where the comparison test output contains [x00-x7f] the
  126. test will contain [x00-xff], and similarly in some other cases. This is not a
  127. bug in PCRE.
  128. The fourth set of tests checks pcre_maketables(), the facility for building a
  129. set of character tables for a specific locale and using them instead of the
  130. default tables. The tests make use of the "fr" (French) locale. Before running
  131. the test, the script checks for the presence of this locale by running the
  132. "locale" command. If that command fails, or if it doesn't include "fr" in the
  133. list of available locales, the fourth test cannot be run, and a comment is
  134. output to say why. If running this test produces instances of the error
  135.   ** Failed to set locale "fr"
  136. in the comparison output, it means that locale is not available on your system,
  137. despite being listed by "locale". This does not mean that PCRE is broken.
  138. The fifth test checks the experimental, incomplete UTF-8 support. It is not run
  139. automatically unless PCRE is built with UTF-8 support. This file can be fed
  140. directly to the perltest8 script, which requires Perl 5.6 or higher. The sixth
  141. file tests internal UTF-8 features of PCRE that are not relevant to Perl.
  142. Character tables
  143. ----------------
  144. PCRE uses four tables for manipulating and identifying characters. The final
  145. argument of the pcre_compile() function is a pointer to a block of memory
  146. containing the concatenated tables. A call to pcre_maketables() can be used to
  147. generate a set of tables in the current locale. If the final argument for
  148. pcre_compile() is passed as NULL, a set of default tables that is built into
  149. the binary is used.
  150. The source file called chartables.c contains the default set of tables. This is
  151. not supplied in the distribution, but is built by the program dftables
  152. (compiled from dftables.c), which uses the ANSI C character handling functions
  153. such as isalnum(), isalpha(), isupper(), islower(), etc. to build the table
  154. sources. This means that the default C locale which is set for your system will
  155. control the contents of these default tables. You can change the default tables
  156. by editing chartables.c and then re-building PCRE. If you do this, you should
  157. probably also edit Makefile to ensure that the file doesn't ever get
  158. re-generated.
  159. The first two 256-byte tables provide lower casing and case flipping functions,
  160. respectively. The next table consists of three 32-byte bit maps which identify
  161. digits, "word" characters, and white space, respectively. These are used when
  162. building 32-byte bit maps that represent character classes.
  163. The final 256-byte table has bits indicating various character types, as
  164. follows:
  165.     1   white space character
  166.     2   letter
  167.     4   decimal digit
  168.     8   hexadecimal digit
  169.    16   alphanumeric or '_'
  170.   128   regular expression metacharacter or binary zero
  171. You should not alter the set of characters that contain the 128 bit, as that
  172. will cause PCRE to malfunction.
  173. Manifest
  174. --------
  175. The distribution should contain the following files:
  176. (A) The actual source files of the PCRE library functions and their
  177.     headers:
  178.   dftables.c            auxiliary program for building chartables.c
  179.   get.c                 )
  180.   maketables.c          )
  181.   study.c               ) source of
  182.   pcre.c                )   the functions
  183.   pcreposix.c           )
  184.   pcre.in               "source" for the header for the external API; pcre.h
  185.                           is built from this by "configure"
  186.   pcreposix.h           header for the external POSIX wrapper API
  187.   internal.h            header for internal use
  188.   config.in             template for config.h, which is built by configure
  189. (B) Auxiliary files:
  190.   AUTHORS               information about the author of PCRE
  191.   ChangeLog             log of changes to the code
  192.   INSTALL               generic installation instructions
  193.   LICENCE               conditions for the use of PCRE
  194.   COPYING               the same, using GNU's standard name
  195.   Makefile.in           template for Unix Makefile, which is built by configure
  196.   NEWS                  important changes in this release
  197.   NON-UNIX-USE          notes on building PCRE on non-Unix systems
  198.   README                this file
  199.   RunTest.in            template for a Unix shell script for running tests
  200.   config.guess          ) files used by libtool,
  201.   config.sub            )   used only when building a shared library
  202.   configure             a configuring shell script (built by autoconf)
  203.   configure.in          the autoconf input used to build configure
  204.   doc/Tech.Notes        notes on the encoding
  205.   doc/pcre.3            man page source for the PCRE functions
  206.   doc/pcre.html         HTML version
  207.   doc/pcre.txt          plain text version
  208.   doc/pcreposix.3       man page source for the POSIX wrapper API
  209.   doc/pcreposix.html    HTML version
  210.   doc/pcreposix.txt     plain text version
  211.   doc/pcretest.txt      documentation of test program
  212.   doc/perltest.txt      documentation of Perl test program
  213.   doc/pcregrep.1        man page source for the pcregrep utility
  214.   doc/pcregrep.html     HTML version
  215.   doc/pcregrep.txt      plain text version
  216.   install-sh            a shell script for installing files
  217.   ltmain.sh             file used to build a libtool script
  218.   pcretest.c            comprehensive test program
  219.   pcredemo.c            simple demonstration of coding calls to PCRE
  220.   perltest              Perl test program
  221.   perltest8             Perl test program for UTF-8 tests
  222.   pcregrep.c            source of a grep utility that uses PCRE
  223.   pcre-config.in        source of script which retains PCRE information
  224.   testdata/testinput1   test data, compatible with Perl 5.004 and 5.005
  225.   testdata/testinput2   test data for error messages and non-Perl things
  226.   testdata/testinput3   test data, compatible with Perl 5.005
  227.   testdata/testinput4   test data for locale-specific tests
  228.   testdata/testinput5   test data for UTF-8 tests compatible with Perl 5.6
  229.   testdata/testinput6   test data for other UTF-8 tests
  230.   testdata/testoutput1  test results corresponding to testinput1
  231.   testdata/testoutput2  test results corresponding to testinput2
  232.   testdata/testoutput3  test results corresponding to testinput3
  233.   testdata/testoutput4  test results corresponding to testinput4
  234.   testdata/testoutput5  test results corresponding to testinput5
  235.   testdata/testoutput6  test results corresponding to testinput6
  236. (C) Auxiliary files for Win32 DLL
  237.   dll.mk
  238.   pcre.def
  239. Philip Hazel <ph10@cam.ac.uk>
  240. August 2001