walker.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef WALKER_H
  2. #define WALKER_H
  3. #include "remote.h"
  4. struct walker {
  5. void *data;
  6. int (*fetch_ref)(struct walker *, struct ref *ref);
  7. void (*prefetch)(struct walker *, unsigned char *sha1);
  8. int (*fetch)(struct walker *, unsigned char *sha1);
  9. void (*cleanup)(struct walker *);
  10. int get_verbosely;
  11. int get_progress;
  12. int get_recover;
  13. int corrupt_object_found;
  14. };
  15. /* Report what we got under get_verbosely */
  16. __attribute__((format (printf, 2, 3)))
  17. void walker_say(struct walker *walker, const char *fmt, ...);
  18. /* Load pull targets from stdin */
  19. int walker_targets_stdin(char ***target, const char ***write_ref);
  20. /* Free up loaded targets */
  21. void walker_targets_free(int targets, char **target, const char **write_ref);
  22. /* If write_ref is set, the ref filename to write the target value to. */
  23. /* If write_ref_log_details is set, additional text will appear in the ref log. */
  24. int walker_fetch(struct walker *impl, int targets, char **target,
  25. const char **write_ref, const char *write_ref_log_details);
  26. void walker_free(struct walker *walker);
  27. struct walker *get_http_walker(const char *url);
  28. #endif /* WALKER_H */