_info 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. #include <string.h>
  2. #include <stdio.h>
  3. /**
  4. * tdb - The trivial (transactional) database
  5. *
  6. * The tdb module provides an efficient keyword data mapping (usually
  7. * within a file). It supports transactions, so the contents of the
  8. * database is reliable even across crashes.
  9. *
  10. * Example:
  11. * #include <ccan/tdb/tdb.h>
  12. * #include <ccan/str/str.h>
  13. * #include <err.h>
  14. * #include <stdio.h>
  15. *
  16. * static void usage(const char *argv0)
  17. * {
  18. * errx(1, "Usage: %s fetch <dbfile> <key>\n"
  19. * "OR %s store <dbfile> <key> <data>", argv0, argv0);
  20. * }
  21. *
  22. * int main(int argc, char *argv[])
  23. * {
  24. * struct tdb_context *tdb;
  25. * TDB_DATA key, value;
  26. *
  27. * if (argc < 4)
  28. * usage(argv[0]);
  29. *
  30. * tdb = tdb_open(argv[2], 1024, TDB_DEFAULT, O_CREAT|O_RDWR,
  31. * 0600);
  32. * if (!tdb)
  33. * err(1, "Opening %s", argv[2]);
  34. *
  35. * key.dptr = (void *)argv[3];
  36. * key.dsize = strlen(argv[3]);
  37. *
  38. * if (streq(argv[1], "fetch")) {
  39. * if (argc != 4)
  40. * usage(argv[0]);
  41. * value = tdb_fetch(tdb, key);
  42. * if (!value.dptr)
  43. * errx(1, "fetch %s: %s",
  44. * argv[3], tdb_errorstr(tdb));
  45. * printf("%.*s\n", value.dsize, (char *)value.dptr);
  46. * free(value.dptr);
  47. * } else if (streq(argv[1], "store")) {
  48. * if (argc != 5)
  49. * usage(argv[0]);
  50. * value.dptr = (void *)argv[4];
  51. * value.dsize = strlen(argv[4]);
  52. * if (tdb_store(tdb, key, value, 0) != 0)
  53. * errx(1, "store %s: %s",
  54. * argv[3], tdb_errorstr(tdb));
  55. * } else
  56. * usage(argv[0]);
  57. *
  58. * return 0;
  59. * }
  60. *
  61. * Maintainer: Rusty Russell <rusty@rustcorp.com.au>
  62. *
  63. * Author: Andrew Tridgell, Jeremy Allison, Rusty Russell
  64. *
  65. * Licence: LGPLv3 (or later)
  66. *
  67. * Fails: valgrind-tests // valgrind breaks fcntl locks.
  68. */
  69. int main(int argc, char *argv[])
  70. {
  71. if (argc != 2)
  72. return 1;
  73. if (strcmp(argv[1], "depends") == 0) {
  74. printf("ccan/compiler\n");
  75. printf("ccan/tally\n");
  76. return 0;
  77. }
  78. return 1;
  79. }