regerror.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*-
  2. * This code is derived from OpenBSD's libc/regex, original license follows:
  3. *
  4. * Copyright (c) 1992, 1993, 1994 Henry Spencer.
  5. * Copyright (c) 1992, 1993, 1994
  6. * The Regents of the University of California. All rights reserved.
  7. *
  8. * This code is derived from software contributed to Berkeley by
  9. * Henry Spencer.
  10. *
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions
  13. * are met:
  14. * 1. Redistributions of source code must retain the above copyright
  15. * notice, this list of conditions and the following disclaimer.
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in the
  18. * documentation and/or other materials provided with the distribution.
  19. * 3. Neither the name of the University nor the names of its contributors
  20. * may be used to endorse or promote products derived from this software
  21. * without specific prior written permission.
  22. *
  23. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  24. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  27. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  28. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  29. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  30. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  31. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  32. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  33. * SUCH DAMAGE.
  34. *
  35. * @(#)regerror.c 8.4 (Berkeley) 3/20/94
  36. */
  37. #include <sys/types.h>
  38. #include <stdio.h>
  39. #include <string.h>
  40. #include <ctype.h>
  41. #include <limits.h>
  42. #include <stdlib.h>
  43. #include "regex_impl.h"
  44. #include "regutils.h"
  45. #ifdef _MSC_VER
  46. #define snprintf _snprintf
  47. #endif
  48. static const char *regatoi(const llvm_regex_t *, char *, int);
  49. static struct rerr {
  50. int code;
  51. const char *name;
  52. const char *explain;
  53. } rerrs[] = {
  54. { REG_NOMATCH, "REG_NOMATCH", "llvm_regexec() failed to match" },
  55. { REG_BADPAT, "REG_BADPAT", "invalid regular expression" },
  56. { REG_ECOLLATE, "REG_ECOLLATE", "invalid collating element" },
  57. { REG_ECTYPE, "REG_ECTYPE", "invalid character class" },
  58. { REG_EESCAPE, "REG_EESCAPE", "trailing backslash (\\)" },
  59. { REG_ESUBREG, "REG_ESUBREG", "invalid backreference number" },
  60. { REG_EBRACK, "REG_EBRACK", "brackets ([ ]) not balanced" },
  61. { REG_EPAREN, "REG_EPAREN", "parentheses not balanced" },
  62. { REG_EBRACE, "REG_EBRACE", "braces not balanced" },
  63. { REG_BADBR, "REG_BADBR", "invalid repetition count(s)" },
  64. { REG_ERANGE, "REG_ERANGE", "invalid character range" },
  65. { REG_ESPACE, "REG_ESPACE", "out of memory" },
  66. { REG_BADRPT, "REG_BADRPT", "repetition-operator operand invalid" },
  67. { REG_EMPTY, "REG_EMPTY", "empty (sub)expression" },
  68. { REG_ASSERT, "REG_ASSERT", "\"can't happen\" -- you found a bug" },
  69. { REG_INVARG, "REG_INVARG", "invalid argument to regex routine" },
  70. { 0, "", "*** unknown regexp error code ***" }
  71. };
  72. /*
  73. - llvm_regerror - the interface to error numbers
  74. = extern size_t llvm_regerror(int, const llvm_regex_t *, char *, size_t);
  75. */
  76. /* ARGSUSED */
  77. size_t
  78. llvm_regerror(int errcode, const llvm_regex_t *preg, char *errbuf, size_t errbuf_size)
  79. {
  80. struct rerr *r;
  81. size_t len;
  82. int target = errcode &~ REG_ITOA;
  83. const char *s;
  84. char convbuf[50];
  85. if (errcode == REG_ATOI)
  86. s = regatoi(preg, convbuf, sizeof convbuf);
  87. else {
  88. for (r = rerrs; r->code != 0; r++)
  89. if (r->code == target)
  90. break;
  91. if (errcode&REG_ITOA) {
  92. if (r->code != 0) {
  93. assert(strlen(r->name) < sizeof(convbuf));
  94. (void) llvm_strlcpy(convbuf, r->name, sizeof convbuf);
  95. } else
  96. (void)snprintf(convbuf, sizeof convbuf,
  97. "REG_0x%x", target);
  98. s = convbuf;
  99. } else
  100. s = r->explain;
  101. }
  102. len = strlen(s) + 1;
  103. if (errbuf_size > 0) {
  104. llvm_strlcpy(errbuf, s, errbuf_size);
  105. }
  106. return(len);
  107. }
  108. /*
  109. - regatoi - internal routine to implement REG_ATOI
  110. */
  111. static const char *
  112. regatoi(const llvm_regex_t *preg, char *localbuf, int localbufsize)
  113. {
  114. struct rerr *r;
  115. for (r = rerrs; r->code != 0; r++)
  116. if (strcmp(r->name, preg->re_endp) == 0)
  117. break;
  118. if (r->code == 0)
  119. return("0");
  120. (void)snprintf(localbuf, localbufsize, "%d", r->code);
  121. return(localbuf);
  122. }