submodule-config.hon commit Merge branch 'jc/utf8-fprintf' (62458ea)
   1#ifndef SUBMODULE_CONFIG_CACHE_H
   2#define SUBMODULE_CONFIG_CACHE_H
   3
   4#include "hashmap.h"
   5#include "submodule.h"
   6#include "strbuf.h"
   7
   8/*
   9 * Submodule entry containing the information about a certain submodule
  10 * in a certain revision.
  11 */
  12struct submodule {
  13        const char *path;
  14        const char *name;
  15        const char *url;
  16        int fetch_recurse;
  17        const char *ignore;
  18        const char *branch;
  19        struct submodule_update_strategy update_strategy;
  20        /* the sha1 blob id of the responsible .gitmodules file */
  21        unsigned char gitmodules_sha1[20];
  22        int recommend_shallow;
  23};
  24
  25struct submodule_cache;
  26struct repository;
  27
  28extern void submodule_cache_free(struct submodule_cache *cache);
  29
  30extern int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);
  31extern int parse_update_recurse_submodules_arg(const char *opt, const char *arg);
  32extern int parse_push_recurse_submodules_arg(const char *opt, const char *arg);
  33extern int parse_submodule_config_option(const char *var, const char *value);
  34extern int submodule_config_option(struct repository *repo,
  35                                   const char *var, const char *value);
  36extern const struct submodule *submodule_from_name(
  37                const unsigned char *commit_or_tree, const char *name);
  38extern const struct submodule *submodule_from_path(
  39                const unsigned char *commit_or_tree, const char *path);
  40extern const struct submodule *submodule_from_cache(struct repository *repo,
  41                                                    const unsigned char *treeish_name,
  42                                                    const char *key);
  43extern int gitmodule_sha1_from_commit(const unsigned char *commit_sha1,
  44                                      unsigned char *gitmodules_sha1,
  45                                      struct strbuf *rev);
  46extern void submodule_free(void);
  47
  48#endif /* SUBMODULE_CONFIG_H */