pcre_version.c 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*************************************************
  2. * Perl-Compatible Regular Expressions *
  3. *************************************************/
  4. /* PCRE is a library of functions to support regular expressions whose syntax
  5. and semantics are as close as possible to those of the Perl 5 language.
  6. Written by Philip Hazel
  7. Copyright (c) 1997-2012 University of Cambridge
  8. -----------------------------------------------------------------------------
  9. Redistribution and use in source and binary forms, with or without
  10. modification, are permitted provided that the following conditions are met:
  11. * Redistributions of source code must retain the above copyright notice,
  12. this list of conditions and the following disclaimer.
  13. * Redistributions in binary form must reproduce the above copyright
  14. notice, this list of conditions and the following disclaimer in the
  15. documentation and/or other materials provided with the distribution.
  16. * Neither the name of the University of Cambridge nor the names of its
  17. contributors may be used to endorse or promote products derived from
  18. this software without specific prior written permission.
  19. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  20. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  23. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  27. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  29. POSSIBILITY OF SUCH DAMAGE.
  30. -----------------------------------------------------------------------------
  31. */
  32. /* This module contains the external function pcre_version(), which returns a
  33. string that identifies the PCRE version that is in use. */
  34. #ifdef HAVE_CONFIG_H
  35. #include "pcre_config.h"
  36. #endif
  37. #include "pcre_internal.h"
  38. /*************************************************
  39. * Return version string *
  40. *************************************************/
  41. /* These macros are the standard way of turning unquoted text into C strings.
  42. They allow macros like PCRE_MAJOR to be defined without quotes, which is
  43. convenient for user programs that want to test its value. */
  44. #define STRING(a) # a
  45. #define XSTRING(s) STRING(s)
  46. /* A problem turned up with PCRE_PRERELEASE, which is defined empty for
  47. production releases. Originally, it was used naively in this code:
  48. return XSTRING(PCRE_MAJOR)
  49. "." XSTRING(PCRE_MINOR)
  50. XSTRING(PCRE_PRERELEASE)
  51. " " XSTRING(PCRE_DATE);
  52. However, when PCRE_PRERELEASE is empty, this leads to an attempted expansion of
  53. STRING(). The C standard states: "If (before argument substitution) any
  54. argument consists of no preprocessing tokens, the behavior is undefined." It
  55. turns out the gcc treats this case as a single empty string - which is what we
  56. really want - but Visual C grumbles about the lack of an argument for the
  57. macro. Unfortunately, both are within their rights. To cope with both ways of
  58. handling this, I had resort to some messy hackery that does a test at run time.
  59. I could find no way of detecting that a macro is defined as an empty string at
  60. pre-processor time. This hack uses a standard trick for avoiding calling
  61. the STRING macro with an empty argument when doing the test. */
  62. #if defined COMPILE_PCRE8
  63. PCRE_EXP_DEFN const char * PCRE_CALL_CONVENTION
  64. pcre_version(void)
  65. #elif defined COMPILE_PCRE16
  66. PCRE_EXP_DEFN const char * PCRE_CALL_CONVENTION
  67. pcre16_version(void)
  68. #elif defined COMPILE_PCRE32
  69. PCRE_EXP_DEFN const char * PCRE_CALL_CONVENTION
  70. pcre32_version(void)
  71. #endif
  72. {
  73. return (XSTRING(Z PCRE_PRERELEASE)[1] == 0)?
  74. XSTRING(PCRE_MAJOR.PCRE_MINOR PCRE_DATE) :
  75. XSTRING(PCRE_MAJOR.PCRE_MINOR) XSTRING(PCRE_PRERELEASE PCRE_DATE);
  76. }
  77. /* End of pcre_version.c */