extern int read_cache(void);
extern int write_cache(int newfd, struct cache_entry **cache, int entries);
extern int cache_name_pos(const char *name, int namelen);
-extern int add_cache_entry(struct cache_entry *ce);
+extern int add_cache_entry(struct cache_entry *ce, int ok_to_add);
extern int remove_file_from_cache(char *path);
extern int cache_match_stat(struct cache_entry *ce, struct stat *st);
extern char *sha1_to_hex(const unsigned char *sha1); /* static buffer result! */
/* General helper functions */
-extern void usage(const char *err);
+extern void usage(const char *err, ...);
extern int cache_name_compare(const char *name1, int len1, const char *name2, int len2);
#endif /* CACHE_H */
struct cache_entry **active_cache = NULL;
unsigned int active_nr = 0, active_alloc = 0;
-void usage(const char *err)
+void usage(const char *err, ...)
{
- fprintf(stderr, "read-tree: %s\n", err);
+ va_list args;
+
+ va_start(args, err);
+ vfprintf(stderr, err, args);
+ va_end(args);
exit(1);
}
return 0;
}
-int add_cache_entry(struct cache_entry *ce)
+int add_cache_entry(struct cache_entry *ce, int ok_to_add)
{
int pos;
return 0;
}
+ if (!ok_to_add)
+ return -1;
+
/* Make sure the array is big enough .. */
if (active_nr == active_alloc) {
active_alloc = alloc_nr(active_alloc);
memcpy(ce->name, base, baselen);
memcpy(ce->name + baselen, pathname, len+1);
memcpy(ce->sha1, sha1, 20);
- return add_cache_entry(ce);
+ return add_cache_entry(ce, 1);
}
static int read_tree(unsigned char *sha1, const char *base, int baselen)
*/
#include "cache.h"
+/*
+ * Default to not allowing changes to the list of files. The
+ * tool doesn't actually care, but this makes it harder to add
+ * files to the revision control by mistake by doing something
+ * like "update-cache *" and suddenly having all the object
+ * files be revision controlled.
+ */
+static int allow_add = 0, allow_remove = 0;
+
static int index_fd(const char *path, int namelen, struct cache_entry *ce, int fd, struct stat *st)
{
z_stream stream;
fd = open(path, O_RDONLY);
if (fd < 0) {
- if (errno == ENOENT)
- return remove_file_from_cache(path);
+ if (errno == ENOENT) {
+ if (allow_remove)
+ return remove_file_from_cache(path);
+ }
return -1;
}
if (fstat(fd, &st) < 0) {
if (index_fd(path, namelen, ce, fd, &st) < 0)
return -1;
- return add_cache_entry(ce);
+ return add_cache_entry(ce, allow_add);
+}
+
+static void refresh_entry(struct cache_entry *ce)
+{
+ /*
+ * This is really not the right way to do it, but
+ * add_file_to_cache() does do the right thing.
+ *
+ * We should really just update the cache
+ * entry in-place, I think. With this approach we
+ * end up allocating a new one, searching for where
+ * to insert it etc etc crud.
+ */
+ add_file_to_cache(ce->name);
+}
+
+static void refresh_cache(void)
+{
+ int i;
+
+ for (i = 0; i < active_nr; i++)
+ refresh_entry(active_cache[i]);
}
/*
int main(int argc, char **argv)
{
int i, newfd, entries;
+ int allow_options = 1;
entries = read_cache();
if (entries < 0) {
}
for (i = 1 ; i < argc; i++) {
char *path = argv[i];
+
+ if (allow_options && *path == '-') {
+ if (!strcmp(path, "--")) {
+ allow_options = 0;
+ continue;
+ }
+ if (!strcmp(path, "--add")) {
+ allow_add = 1;
+ continue;
+ }
+ if (!strcmp(path, "--remove")) {
+ allow_remove = 1;
+ continue;
+ }
+ if (!strcmp(path, "--refresh")) {
+ refresh_cache();
+ continue;
+ }
+ usage("unknown option %s", path);
+ }
if (!verify_path(path)) {
fprintf(stderr, "Ignoring path %s\n", argv[i]);
continue;
int subdir_written;
subdir_written = write_tree(cachep + nr, maxentries - nr, pathname, dirname-pathname+1, subdir_sha1);
- fprintf(stderr, "Wrote %d entries from subdirectory '%.*s'\n",
- subdir_written, dirname-pathname, pathname);
nr += subdir_written;
/* Now we need to write out the directory entry into this tree.. */