get_error_codes.php 641 B

123456789101112131415161718192021222324252627
  1. <?php
  2. $codes = array();
  3. $maxlen = 0;
  4. while (!feof(STDIN)) {
  5. $line = fgets(STDIN);
  6. if (ereg('^\{[[:space:]]+(ER_.*)[[:space:]]+,[[:space:]]*"(.*)",[[:space:]]*"(.*)"', $line, $matches)) {
  7. $codes[$matches[1]] = $matches[2];
  8. $maxlen = max($maxlen, strlen($matches[1]));
  9. }
  10. }
  11. if (empty($codes)) {
  12. fputs(STDERR, "input doesn't look like a MySQL sql_state.h file\n");
  13. exit(3);
  14. }
  15. echo "/* DO NOT EDIT THIS FILE!!! It is auto generated by get_error_codes.php */\n";
  16. foreach ($codes as $code => $state) {
  17. echo "#ifdef $code\n";
  18. printf(" case %-{$maxlen}s: return \"%s\";\n", $code, $state);
  19. echo "#endif\n";
  20. }
  21. ?>