xref.c
资源名称:c.rar [点击查看]
上传用户:shmaik
上传日期:2014-06-01
资源大小:45093k
文件大小:3k
源码类别:

VC书籍

开发平台:

C/C++

  1. static char rcsid[] = "$Id: H:/drh/idioms/book/RCS/set.doc,v 1.11 1996/06/26 23:02:01 drh Exp $";
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <errno.h>
  5. #include "table.h"
  6. #include <string.h>
  7. #include "atom.h"
  8. #include "set.h"
  9. #include "mem.h"
  10. #include "getword.h"
  11. #include <ctype.h>
  12. int compare(const void *x, const void *y);
  13. void print(Table_T);
  14. int cmpint(const void *x, const void *y);
  15. void xref(const char *, FILE *, Table_T);
  16. int first(int c);
  17. int rest (int c);
  18. int      intcmp (const void *x, const void *y);
  19. unsigned inthash(const void *x);
  20. int linenum;
  21. int main(int argc, char *argv[]) {
  22. int i;
  23. Table_T identifiers = Table_new(0, NULL, NULL);
  24. for (i = 1; i < argc; i++) {
  25. FILE *fp = fopen(argv[i], "r");
  26. if (fp == NULL) {
  27. fprintf(stderr, "%s: can't open '%s' (%s)n",
  28. argv[0], argv[i], strerror(errno));
  29. return EXIT_FAILURE;
  30. } else {
  31. xref(argv[i], fp, identifiers);
  32. fclose(fp);
  33. }
  34. }
  35. if (argc == 1) xref(NULL, stdin, identifiers);
  36. {
  37. int i;
  38. void **array = Table_toArray(identifiers, NULL);
  39. qsort(array, Table_length(identifiers),
  40. 2*sizeof (*array), compare);
  41. for (i = 0; array[i]; i += 2) {
  42. printf("%s", (char *)array[i]);
  43. print(array[i+1]);
  44. }
  45. FREE(array);
  46. }
  47. return EXIT_SUCCESS;
  48. }
  49. int compare(const void *x, const void *y) {
  50. return strcmp(*(char **)x, *(char **)y);
  51. }
  52. void print(Table_T files) {
  53. int i;
  54. void **array = Table_toArray(files, NULL);
  55. qsort(array, Table_length(files), 2*sizeof (*array),
  56. compare);
  57. for (i = 0; array[i]; i += 2) {
  58. if (*(char *)array[i] != '')
  59. printf("t%s:", (char *)array[i]);
  60. {
  61. int j;
  62. void **lines = Set_toArray(array[i+1], NULL);
  63. qsort(lines, Set_length(array[i+1]), sizeof (*lines),
  64. cmpint);
  65. for (j = 0; lines[j]; j++)
  66. printf(" %d", *(int *)lines[j]);
  67. FREE(lines);
  68. }
  69. printf("n");
  70. }
  71. FREE(array);
  72. }
  73. int cmpint(const void *x, const void *y) {
  74. if (**(int **)x < **(int **)y)
  75. return -1;
  76. else if (**(int **)x > **(int **)y)
  77. return +1;
  78. else
  79. return 0;
  80. }
  81. void xref(const char *name, FILE *fp,
  82. Table_T identifiers){
  83. char buf[128];
  84. if (name == NULL)
  85. name = "";
  86. name = Atom_string(name);
  87. linenum = 1;
  88. while (getword(fp, buf, sizeof buf, first, rest)) {
  89. Set_T set;
  90. Table_T files;
  91. const char *id = Atom_string(buf);
  92. files = Table_get(identifiers, id);
  93. if (files == NULL) {
  94. files = Table_new(0, NULL, NULL);
  95. Table_put(identifiers, id, files);
  96. }
  97. set = Table_get(files, name);
  98. if (set == NULL) {
  99. set = Set_new(0, intcmp, inthash);
  100. Table_put(files, name, set);
  101. }
  102. {
  103. int *p = &linenum;
  104. if (!Set_member(set, p)) {
  105. NEW(p);
  106. *p = linenum;
  107. Set_put(set, p);
  108. }
  109. }
  110. }
  111. }
  112. int first(int c) {
  113. if (c == 'n')
  114. linenum++;
  115. return isalpha(c) || c == '_';
  116. }
  117. int rest(int c) {
  118. return isalpha(c) || c == '_' || isdigit(c);
  119. }
  120. int intcmp(const void *x, const void *y) {
  121. return cmpint(&x, &y);
  122. }
  123. unsigned inthash(const void *x) {
  124. return *(int *)x;
  125. }