comments.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #define _GNU_SOURCE //asks stdio.h to include asprintf
  2. #include <stdio.h>
  3. #include "comments.h"
  4. #include "stopif.h"
  5. char* anonymizeAuthor(binn *authors, const xmlChar *authorName) {
  6. static int authorsCount = 0;
  7. char *name = (char*)authorName;
  8. char *newName = binn_object_str(authors, name);
  9. if (newName)
  10. return newName;
  11. asprintf(&newName, "Author%d", ++authorsCount);
  12. binn_object_set_str(authors, name, newName);
  13. free(newName);
  14. return binn_object_str(authors, name);
  15. }
  16. void printAuthors(const xmlChar *authorName, const char *anonName) {
  17. printf("\"%s\" is now \"%s\"\n", authorName, anonName);
  18. }
  19. int processAuthors(const xmlXPathObjectPtr authors) {
  20. binn *anonAuthors = binn_object();
  21. for (int i=0; i < authors->nodesetval->nodeNr; i++){
  22. xmlChar *authorName = (xmlChar*)"";
  23. authorName = xmlNodeGetContent(authors->nodesetval->nodeTab[i]);
  24. char *anonAuthor = anonymizeAuthor(anonAuthors, authorName);
  25. xmlNodeSetContent(authors->nodesetval->nodeTab[i], (xmlChar*)anonAuthor);
  26. printAuthors(authorName, anonAuthor);
  27. xmlFree(authorName);
  28. }
  29. binn_free(anonAuthors);
  30. return 1;
  31. }
  32. int anonymizeComments(XMLBuff *infile) {
  33. const xmlChar *authorPath = (xmlChar*)"//w:comment/@w:author";
  34. xmlDocPtr doc = xmlReadMemory(infile->data, infile->size, infile->name, NULL, 0);
  35. Stopif(!doc, return 0, "Unable to parse file %s!\n", infile->name);
  36. xmlXPathContextPtr context = xmlXPathNewContext(doc);
  37. Stopif(!context, return 0, "Unable to create new XPath context!\n");
  38. const xmlChar* prefix = (xmlChar*)"w";
  39. const xmlChar* ns = (xmlChar*)"http://schemas.openxmlformats.org/wordprocessingml/2006/main";
  40. Stopif(xmlXPathRegisterNs(context, prefix, ns), return 0, "Can't add namespace!\n");
  41. xmlXPathObjectPtr authors = xmlXPathEvalExpression(authorPath, context);
  42. Stopif(!authors, return 0, "Something is wrong with XPATH %s!\n", authorPath);
  43. Stopif(!processAuthors(authors), return 0, "Can't process authors!\n");
  44. xmlChar *buf;
  45. xmlDocDumpMemoryEnc(doc, &buf, &infile->size, "UTF-8");
  46. infile->data = (char*)buf;
  47. Stopif(!infile->size, return 0, "Unable to save file %s!\n", infile->name);
  48. xmlXPathFreeObject(authors);
  49. xmlXPathFreeContext(context);
  50. xmlFreeDoc(doc);
  51. xmlCleanupParser();
  52. return 1;
  53. }