2005-06-06 22:31:29 +02:00
|
|
|
#ifndef REFS_H
|
|
|
|
#define REFS_H
|
|
|
|
|
2006-05-17 11:55:02 +02:00
|
|
|
struct ref_lock {
|
Enable the packed refs file format
This actually "turns on" the packed ref file format, now that the
infrastructure to do so sanely exists (ie notably the change to make the
reference reading logic take refnames rather than pathnames to the loose
objects that no longer necessarily even exist).
In particular, when the ref lookup hits a refname that has no loose file
associated with it, it falls back on the packed-ref information. Also, the
ref-locking code, while still using a loose file for the locking itself
(and _creating_ a loose file for the new ref) no longer requires that the
old ref be in such an unpacked state.
Finally, this does a minimal hack to git-checkout.sh to rather than check
the ref-file directly, do a "git-rev-parse" on the "heads/$refname".
That's not really wonderful - we should rather really have a special
routine to verify the names as proper branch head names, but it is a
workable solution for now.
With this, I can literally do something like
git pack-refs
find .git/refs -type f -print0 | xargs -0 rm -f --
and the end result is a largely working repository (ie I've done two
commits - which creates _one_ unpacked ref file - done things like run
"gitk" and "git log" etc, and it all looks ok).
There are probably things missing, but I'm hoping that the missing things
are now of the "small and obvious" kind, and that somebody else might want
to start looking at this too. Hint hint ;)
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-09-14 19:14:47 +02:00
|
|
|
char *ref_name;
|
2006-05-17 11:55:40 +02:00
|
|
|
char *log_file;
|
2006-06-06 22:54:14 +02:00
|
|
|
struct lock_file *lk;
|
2006-05-17 11:55:02 +02:00
|
|
|
unsigned char old_sha1[20];
|
|
|
|
int lock_fd;
|
2006-05-19 09:29:05 +02:00
|
|
|
int force_write;
|
2006-05-17 11:55:02 +02:00
|
|
|
};
|
|
|
|
|
2006-11-22 08:36:35 +01:00
|
|
|
#define REF_ISSYMREF 01
|
|
|
|
#define REF_ISPACKED 02
|
|
|
|
|
2005-07-03 05:23:36 +02:00
|
|
|
/*
|
|
|
|
* Calls the specified function for each ref file until it returns nonzero,
|
|
|
|
* and returns the value
|
|
|
|
*/
|
2006-09-21 07:02:01 +02:00
|
|
|
typedef int each_ref_fn(const char *refname, const unsigned char *sha1, int flags, void *cb_data);
|
2006-09-21 06:47:42 +02:00
|
|
|
extern int head_ref(each_ref_fn, void *);
|
|
|
|
extern int for_each_ref(each_ref_fn, void *);
|
|
|
|
extern int for_each_tag_ref(each_ref_fn, void *);
|
|
|
|
extern int for_each_branch_ref(each_ref_fn, void *);
|
|
|
|
extern int for_each_remote_ref(each_ref_fn, void *);
|
2005-07-03 05:23:36 +02:00
|
|
|
|
2006-11-19 22:22:44 +01:00
|
|
|
extern int peel_ref(const char *, unsigned char *);
|
|
|
|
|
2005-06-06 22:31:29 +02:00
|
|
|
/** Reads the refs file specified into sha1 **/
|
|
|
|
extern int get_ref_sha1(const char *ref, unsigned char *sha1);
|
|
|
|
|
2006-05-17 11:55:02 +02:00
|
|
|
/** Locks a "refs/" ref returning the lock on success and NULL on failure. **/
|
2006-09-27 10:09:18 +02:00
|
|
|
extern struct ref_lock *lock_ref_sha1(const char *ref, const unsigned char *old_sha1);
|
2006-05-17 11:55:02 +02:00
|
|
|
|
|
|
|
/** Locks any ref (for 'HEAD' type refs). */
|
2006-09-27 10:09:18 +02:00
|
|
|
extern struct ref_lock *lock_any_ref_for_update(const char *ref, const unsigned char *old_sha1);
|
2005-06-06 22:31:29 +02:00
|
|
|
|
2006-05-17 11:55:02 +02:00
|
|
|
/** Release any lock taken but not written. **/
|
2006-06-06 23:04:17 +02:00
|
|
|
extern void unlock_ref(struct ref_lock *lock);
|
2005-06-06 22:31:29 +02:00
|
|
|
|
2006-05-17 11:55:02 +02:00
|
|
|
/** Writes sha1 into the ref specified by the lock. **/
|
|
|
|
extern int write_ref_sha1(struct ref_lock *lock, const unsigned char *sha1, const char *msg);
|
2005-06-06 22:31:29 +02:00
|
|
|
|
2006-05-17 11:56:09 +02:00
|
|
|
/** Reads log for the value of ref during at_time. **/
|
2007-01-19 10:19:05 +01:00
|
|
|
extern int read_ref_at(const char *ref, unsigned long at_time, int cnt, unsigned char *sha1, char **msg, unsigned long *cutoff_time, int *cutoff_tz, int *cutoff_cnt);
|
2006-05-17 11:56:09 +02:00
|
|
|
|
2006-12-18 10:18:16 +01:00
|
|
|
/* iterate over reflog entries */
|
2007-01-08 01:59:54 +01:00
|
|
|
typedef int each_reflog_ent_fn(unsigned char *osha1, unsigned char *nsha1, const char *, unsigned long, int, const char *, void *);
|
|
|
|
int for_each_reflog_ent(const char *ref, each_reflog_ent_fn fn, void *cb_data);
|
2006-12-18 10:18:16 +01:00
|
|
|
|
2005-06-06 22:31:29 +02:00
|
|
|
/** Returns 0 if target has the right format for a ref. **/
|
|
|
|
extern int check_ref_format(const char *target);
|
|
|
|
|
2006-11-28 15:47:40 +01:00
|
|
|
/** rename ref, return 0 on success **/
|
2006-11-30 03:16:56 +01:00
|
|
|
extern int rename_ref(const char *oldref, const char *newref, const char *logmsg);
|
2006-11-28 15:47:40 +01:00
|
|
|
|
2005-06-06 22:31:29 +02:00
|
|
|
#endif /* REFS_H */
|