Commit 4e28e638 by Russell Belfer

Clarify some docs and minor reordering

This simplifies some documentation and hopefully makes a couple
of things easier to read.  Also, this rearrages the order in this
branch so that the overall diff against the trunk will hopefully
be a bit cleaner.
parent c9b18018
...@@ -60,43 +60,19 @@ typedef int (*git_status_cb)( ...@@ -60,43 +60,19 @@ typedef int (*git_status_cb)(
const char *path, unsigned int status_flags, void *payload); const char *path, unsigned int status_flags, void *payload);
/** /**
* Gather file statuses and run a callback for each one.
*
* The callback is passed the path of the file, the status (a combination of
* the `git_status_t` values above) and the `payload` data pointer passed
* into this function.
*
* If the callback returns a non-zero value, this function will stop looping
* and return GIT_EUSER.
*
* @param repo A repository object
* @param callback The function to call on each file
* @param payload Pointer to pass through to callback function
* @return 0 on success, GIT_EUSER on non-zero callback, or error code
*/
GIT_EXTERN(int) git_status_foreach(
git_repository *repo,
git_status_cb callback,
void *payload);
/**
* For extended status, select the files on which to report status. * For extended status, select the files on which to report status.
* *
* - GIT_STATUS_SHOW_INDEX_AND_WORKDIR is the default. This is the * - GIT_STATUS_SHOW_INDEX_AND_WORKDIR is the default. This roughly
* rough equivalent of `git status --porcelain` where each file * matches `git status --porcelain` where each file gets a callback
* will receive a callback indicating its status in the index and * indicating its status in the index and in the working directory.
* in the workdir. * - GIT_STATUS_SHOW_INDEX_ONLY only gives status based on HEAD to index
* - GIT_STATUS_SHOW_INDEX_ONLY will only make callbacks for index * comparison, not looking at working directory changes.
* side of status. The status of the index contents relative to * - GIT_STATUS_SHOW_WORKDIR_ONLY only gives status based on index to
* the HEAD will be given. * working directory comparison, not comparing the index to the HEAD.
* - GIT_STATUS_SHOW_WORKDIR_ONLY will only make callbacks for the * - GIT_STATUS_SHOW_INDEX_THEN_WORKDIR runs index-only then workdir-only,
* workdir side of status, reporting the status of workdir content * issuing (up to) two callbacks per file (first index, then workdir).
* relative to the index. * This is slightly more efficient than separate calls and can make it
* - GIT_STATUS_SHOW_INDEX_THEN_WORKDIR behaves like index-only * easier to emulate plain `git status` text output.
* followed by workdir-only, causing two callbacks to be issued
* per file (first index then workdir). This is slightly more
* efficient than making separate calls. This makes it easier to
* emulate the output of a plain `git status`.
*/ */
typedef enum { typedef enum {
GIT_STATUS_SHOW_INDEX_AND_WORKDIR = 0, GIT_STATUS_SHOW_INDEX_AND_WORKDIR = 0,
...@@ -111,30 +87,30 @@ typedef enum { ...@@ -111,30 +87,30 @@ typedef enum {
* - GIT_STATUS_OPT_INCLUDE_UNTRACKED says that callbacks should be made * - GIT_STATUS_OPT_INCLUDE_UNTRACKED says that callbacks should be made
* on untracked files. These will only be made if the workdir files are * on untracked files. These will only be made if the workdir files are
* included in the status "show" option. * included in the status "show" option.
* - GIT_STATUS_OPT_INCLUDE_IGNORED says that ignored files should get * - GIT_STATUS_OPT_INCLUDE_IGNORED says that ignored files get callbacks.
* callbacks. Again, these callbacks will only be made if the workdir * Again, these callbacks will only be made if the workdir files are
* files are included in the status "show" option. Right now, there is * included in the status "show" option.
* no option to include all files in directories that are ignored
* completely.
* - GIT_STATUS_OPT_INCLUDE_UNMODIFIED indicates that callback should be * - GIT_STATUS_OPT_INCLUDE_UNMODIFIED indicates that callback should be
* made even on unmodified files. * made even on unmodified files.
* - GIT_STATUS_OPT_EXCLUDE_SUBMODULES indicates that directories which * - GIT_STATUS_OPT_EXCLUDE_SUBMODULES indicates that submodules should be
* appear to be submodules should just be skipped over. * skipped. This only applies if there are no pending typechanges to
* - GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS indicates that the contents of * the submodule (either from or to another type).
* untracked directories should be included in the status. Normally if * - GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS indicates that all files in
* an entire directory is new, then just the top-level directory will be * untracked directories should be included. Normally if an entire
* included (with a trailing slash on the entry name). Given this flag, * directory is new, then just the top-level directory is included (with
* the directory itself will not be included, but all the files in it * a trailing slash on the entry name). This flag says to include all
* will. * of the individual files in the directory instead.
* - GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH indicates that the given path * - GIT_STATUS_OPT_DISABLE_PATHSPEC_MATCH indicates that the given path
* will be treated as a literal path, and not as a pathspec. * should be treated as a literal path, and not as a pathspec pattern.
* - GIT_STATUS_OPT_RECURSE_IGNORED_DIRS indicates that the contents of * - GIT_STATUS_OPT_RECURSE_IGNORED_DIRS indicates that the contents of
* ignored directories should be included in the status. This is like * ignored directories should be included in the status. This is like
* doing `git ls-files -o -i --exclude-standard` with core git. * doing `git ls-files -o -i --exclude-standard` with core git.
* - GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX indicates that items that are * - GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX indicates that rename detection
* renamed in the index will be reported as renames. * should be processed between the head and the index and enables
* - GIT_STATUS_OPT_RENAMES_INDEX_TO_WORKDIR indicates that items that * the GIT_STATUS_INDEX_RENAMED as a possible status flag.
* are renamed in the working directory will be reported as renames. * - GIT_STATUS_OPT_RENAMES_INDEX_TO_WORKDIR indicates tha rename
* detection should be run between the index and the working directory
* and enabled GIT_STATUS_WT_RENAMED as a possible status flag.
* *
* Calling `git_status_foreach()` is like calling the extended version * Calling `git_status_foreach()` is like calling the extended version
* with: GIT_STATUS_OPT_INCLUDE_IGNORED, GIT_STATUS_OPT_INCLUDE_UNTRACKED, * with: GIT_STATUS_OPT_INCLUDE_IGNORED, GIT_STATUS_OPT_INCLUDE_UNTRACKED,
...@@ -181,6 +157,9 @@ typedef struct { ...@@ -181,6 +157,9 @@ typedef struct {
git_strarray pathspec; git_strarray pathspec;
} git_status_options; } git_status_options;
#define GIT_STATUS_OPTIONS_VERSION 1
#define GIT_STATUS_OPTIONS_INIT {GIT_STATUS_OPTIONS_VERSION}
/** /**
* A status entry, providing the differences between the file as it exists * A status entry, providing the differences between the file as it exists
* in HEAD and the index, and providing the differences between the index * in HEAD and the index, and providing the differences between the index
...@@ -201,51 +180,26 @@ typedef struct { ...@@ -201,51 +180,26 @@ typedef struct {
git_diff_delta *index_to_workdir; git_diff_delta *index_to_workdir;
} git_status_entry; } git_status_entry;
#define GIT_STATUS_OPTIONS_VERSION 1
#define GIT_STATUS_OPTIONS_INIT {GIT_STATUS_OPTIONS_VERSION}
/**
* Gather file status information and populate the `git_status_list`.
*
* @param out Pointer to store the status results in
* @param repo Repository object
* @param opts Status options structure
* @return 0 on success or error code
*/
GIT_EXTERN(int) git_status_list_new(
git_status_list **out,
git_repository *repo,
const git_status_options *opts);
/**
* Gets the count of status entries in this list.
*
* @param statuslist Existing status list object
* @return the number of status entries
*/
GIT_EXTERN(size_t) git_status_list_entrycount(
git_status_list *statuslist);
/** /**
* Get a pointer to one of the entries in the status list. * Gather file statuses and run a callback for each one.
* *
* The entry is not modifiable and should not be freed. * The callback is passed the path of the file, the status (a combination of
* the `git_status_t` values above) and the `payload` data pointer passed
* into this function.
* *
* @param statuslist Existing status list object * If the callback returns a non-zero value, this function will stop looping
* @param idx Position of the entry * and return GIT_EUSER.
* @return Pointer to the entry; NULL if out of bounds
*/
GIT_EXTERN(const git_status_entry *) git_status_byindex(
git_status_list *statuslist,
size_t idx);
/**
* Free an existing status list
* *
* @param statuslist Existing status list object * @param repo A repository object
* @param callback The function to call on each file
* @param payload Pointer to pass through to callback function
* @return 0 on success, GIT_EUSER on non-zero callback, or error code
*/ */
GIT_EXTERN(void) git_status_list_free( GIT_EXTERN(int) git_status_foreach(
git_status_list *statuslist); git_repository *repo,
git_status_cb callback,
void *payload);
/** /**
* Gather file status information and run callbacks as requested. * Gather file status information and run callbacks as requested.
...@@ -286,6 +240,49 @@ GIT_EXTERN(int) git_status_file( ...@@ -286,6 +240,49 @@ GIT_EXTERN(int) git_status_file(
const char *path); const char *path);
/** /**
* Gather file status information and populate the `git_status_list`.
*
* @param out Pointer to store the status results in
* @param repo Repository object
* @param opts Status options structure
* @return 0 on success or error code
*/
GIT_EXTERN(int) git_status_list_new(
git_status_list **out,
git_repository *repo,
const git_status_options *opts);
/**
* Gets the count of status entries in this list.
*
* @param statuslist Existing status list object
* @return the number of status entries
*/
GIT_EXTERN(size_t) git_status_list_entrycount(
git_status_list *statuslist);
/**
* Get a pointer to one of the entries in the status list.
*
* The entry is not modifiable and should not be freed.
*
* @param statuslist Existing status list object
* @param idx Position of the entry
* @return Pointer to the entry; NULL if out of bounds
*/
GIT_EXTERN(const git_status_entry *) git_status_byindex(
git_status_list *statuslist,
size_t idx);
/**
* Free an existing status list
*
* @param statuslist Existing status list object
*/
GIT_EXTERN(void) git_status_list_free(
git_status_list *statuslist);
/**
* Test if the ignore rules apply to a given file. * Test if the ignore rules apply to a given file.
* *
* This function checks the ignore rules to see if they would apply to the * This function checks the ignore rules to see if they would apply to the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment