2005-04-18 20:39:48 +02:00
|
|
|
#ifndef COMMIT_H
|
|
|
|
#define COMMIT_H
|
|
|
|
|
|
|
|
#include "object.h"
|
|
|
|
#include "tree.h"
|
|
|
|
|
|
|
|
struct commit_list {
|
|
|
|
struct commit *item;
|
|
|
|
struct commit_list *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct commit {
|
|
|
|
struct object object;
|
|
|
|
unsigned long date;
|
|
|
|
struct commit_list *parents;
|
|
|
|
struct tree *tree;
|
2005-05-26 04:26:28 +02:00
|
|
|
char *buffer;
|
2005-04-18 20:39:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern const char *commit_type;
|
|
|
|
|
2005-06-03 17:05:39 +02:00
|
|
|
struct commit *lookup_commit(const unsigned char *sha1);
|
|
|
|
struct commit *lookup_commit_reference(const unsigned char *sha1);
|
2005-04-18 20:39:48 +02:00
|
|
|
|
2005-05-06 19:48:34 +02:00
|
|
|
int parse_commit_buffer(struct commit *item, void *buffer, unsigned long size);
|
|
|
|
|
2005-04-18 20:39:48 +02:00
|
|
|
int parse_commit(struct commit *item);
|
|
|
|
|
2005-05-31 03:44:02 +02:00
|
|
|
struct commit_list * commit_list_insert(struct commit *item, struct commit_list **list_p);
|
2005-04-24 03:47:23 +02:00
|
|
|
|
2005-04-18 20:39:48 +02:00
|
|
|
void free_commit_list(struct commit_list *list);
|
|
|
|
|
2005-04-24 03:47:23 +02:00
|
|
|
void sort_by_date(struct commit_list **list);
|
|
|
|
|
2005-06-05 18:02:03 +02:00
|
|
|
/* Commit formats */
|
|
|
|
enum cmit_fmt {
|
|
|
|
CMIT_FMT_RAW,
|
|
|
|
CMIT_FMT_MEDIUM,
|
|
|
|
CMIT_FMT_DEFAULT = CMIT_FMT_MEDIUM,
|
2005-06-27 02:50:46 +02:00
|
|
|
CMIT_FMT_SHORT,
|
|
|
|
CMIT_FMT_FULL,
|
2005-06-05 18:02:03 +02:00
|
|
|
};
|
|
|
|
|
2005-06-27 02:50:46 +02:00
|
|
|
extern enum cmit_fmt get_commit_format(const char *arg);
|
2005-06-05 18:02:03 +02:00
|
|
|
extern unsigned long pretty_print_commit(enum cmit_fmt fmt, const char *msg, unsigned long len, char *buf, unsigned long space);
|
2005-06-01 17:34:23 +02:00
|
|
|
|
2005-06-06 17:39:40 +02:00
|
|
|
void insert_by_date(struct commit_list **list, struct commit *item);
|
2005-06-01 17:34:23 +02:00
|
|
|
|
2005-04-24 03:47:23 +02:00
|
|
|
/** Removes the first commit from a list sorted by date, and adds all
|
|
|
|
* of its parents.
|
|
|
|
**/
|
2005-04-24 05:29:22 +02:00
|
|
|
struct commit *pop_most_recent_commit(struct commit_list **list,
|
|
|
|
unsigned int mark);
|
2005-04-24 03:47:23 +02:00
|
|
|
|
2005-06-06 17:39:40 +02:00
|
|
|
struct commit *pop_commit(struct commit_list **stack);
|
|
|
|
|
|
|
|
int count_parents(struct commit * commit);
|
2005-04-18 20:39:48 +02:00
|
|
|
#endif /* COMMIT_H */
|