Skip to content

Commit

Permalink
Merge branch 'mk/rename'
Browse files Browse the repository at this point in the history
  • Loading branch information
Junio C Hamano committed Aug 13, 2006
2 parents 71c8779 + 2e3ed67 commit bb266cb
Show file tree
Hide file tree
Showing 11 changed files with 166 additions and 141 deletions.
81 changes: 51 additions & 30 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -173,32 +173,23 @@ SIMPLE_PROGRAMS = \

# ... and all the rest that could be moved out of bindir to gitexecdir
PROGRAMS = \
git-checkout-index$X \
git-convert-objects$X git-fetch-pack$X git-fsck-objects$X \
git-hash-object$X git-index-pack$X git-local-fetch$X \
git-merge-base$X \
git-merge-index$X git-mktag$X git-mktree$X git-pack-objects$X git-patch-id$X \
git-merge-index$X git-mktag$X git-mktree$X git-patch-id$X \
git-peek-remote$X git-receive-pack$X \
git-send-pack$X git-shell$X \
git-show-index$X git-ssh-fetch$X \
git-ssh-upload$X git-unpack-file$X \
git-unpack-objects$X git-update-server-info$X \
git-update-server-info$X \
git-upload-pack$X git-verify-pack$X \
git-symbolic-ref$X \
git-name-rev$X git-pack-redundant$X git-var$X \
git-pack-redundant$X git-var$X \
git-describe$X git-merge-tree$X git-blame$X git-imap-send$X

BUILT_INS = git-log$X git-whatchanged$X git-show$X git-update-ref$X \
git-count-objects$X git-diff$X git-push$X git-mailsplit$X \
git-grep$X git-add$X git-rm$X git-rev-list$X git-stripspace$X \
git-check-ref-format$X git-rev-parse$X git-mailinfo$X \
git-init-db$X git-tar-tree$X git-upload-tar$X git-format-patch$X \
git-ls-files$X git-ls-tree$X git-get-tar-commit-id$X \
git-read-tree$X git-commit-tree$X git-write-tree$X \
git-apply$X git-show-branch$X git-diff-files$X git-update-index$X \
git-diff-index$X git-diff-stages$X git-diff-tree$X git-cat-file$X \
git-fmt-merge-msg$X git-prune$X git-mv$X git-prune-packed$X \
git-repo-config$X
BUILT_INS = \
git-format-patch$X git-show$X git-whatchanged$X \
git-get-tar-commit-id$X \
$(patsubst builtin-%.o,git-%$X,$(BUILTIN_OBJS))

# what 'all' will build and 'install' will install, in gitexecdir
ALL_PROGRAMS = $(PROGRAMS) $(SIMPLE_PROGRAMS) $(SCRIPTS)
Expand Down Expand Up @@ -227,7 +218,7 @@ LIB_H = \
blob.h cache.h commit.h csum-file.h delta.h \
diff.h object.h pack.h pkt-line.h quote.h refs.h \
run-command.h strbuf.h tag.h tree.h git-compat-util.h revision.h \
tree-walk.h log-tree.h dir.h path-list.h
tree-walk.h log-tree.h dir.h path-list.h builtin.h

DIFF_OBJS = \
diff.o diff-lib.o diffcore-break.o diffcore-order.o \
Expand All @@ -242,20 +233,50 @@ LIB_OBJS = \
server-info.o setup.o sha1_file.o sha1_name.o strbuf.o \
tag.o tree.o usage.o config.o environment.o ctype.o copy.o \
fetch-clone.o revision.o pager.o tree-walk.o xdiff-interface.o \
alloc.o merge-file.o path-list.o $(DIFF_OBJS)
alloc.o merge-file.o path-list.o help.o $(DIFF_OBJS)

BUILTIN_OBJS = \
builtin-log.o builtin-help.o builtin-count.o builtin-diff.o builtin-push.o \
builtin-grep.o builtin-add.o builtin-rev-list.o builtin-check-ref-format.o \
builtin-rm.o builtin-init-db.o builtin-rev-parse.o \
builtin-tar-tree.o builtin-upload-tar.o builtin-update-index.o \
builtin-ls-files.o builtin-ls-tree.o builtin-write-tree.o \
builtin-read-tree.o builtin-commit-tree.o builtin-mailinfo.o \
builtin-apply.o builtin-show-branch.o builtin-diff-files.o \
builtin-diff-index.o builtin-diff-stages.o builtin-diff-tree.o \
builtin-cat-file.o builtin-mailsplit.o builtin-stripspace.o \
builtin-update-ref.o builtin-fmt-merge-msg.o builtin-prune.o \
builtin-mv.o builtin-prune-packed.o builtin-repo-config.o
builtin-add.o \
builtin-apply.o \
builtin-cat-file.o \
builtin-checkout-index.o \
builtin-check-ref-format.o \
builtin-commit-tree.o \
builtin-count-objects.o \
builtin-diff.o \
builtin-diff-files.o \
builtin-diff-index.o \
builtin-diff-stages.o \
builtin-diff-tree.o \
builtin-fmt-merge-msg.o \
builtin-grep.o \
builtin-init-db.o \
builtin-log.o \
builtin-ls-files.o \
builtin-ls-tree.o \
builtin-mailinfo.o \
builtin-mailsplit.o \
builtin-mv.o \
builtin-name-rev.o \
builtin-pack-objects.o \
builtin-prune.o \
builtin-prune-packed.o \
builtin-push.o \
builtin-read-tree.o \
builtin-repo-config.o \
builtin-rev-list.o \
builtin-rev-parse.o \
builtin-rm.o \
builtin-show-branch.o \
builtin-stripspace.o \
builtin-symbolic-ref.o \
builtin-tar-tree.o \
builtin-unpack-objects.o \
builtin-update-index.o \
builtin-update-ref.o \
builtin-upload-tar.o \
builtin-verify-pack.o \
builtin-write-tree.o

GITLIBS = $(LIB_FILE) $(XDIFF_LIB)
LIBS = $(GITLIBS) -lz
Expand Down Expand Up @@ -536,7 +557,7 @@ git$X: git.c common-cmds.h $(BUILTIN_OBJS) $(GITLIBS) GIT-CFLAGS
$(ALL_CFLAGS) -o $@ $(filter %.c,$^) \
$(BUILTIN_OBJS) $(ALL_LDFLAGS) $(LIBS)

builtin-help.o: common-cmds.h
help.o: common-cmds.h

$(BUILT_INS): git$X
rm -f $@ && ln git$X $@
Expand Down
26 changes: 12 additions & 14 deletions checkout-index.c → builtin-checkout-index.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,14 @@
#include "cache-tree.h"

#define CHECKOUT_ALL 4
static const char *prefix;
static int prefix_length;
static int line_termination = '\n';
static int checkout_stage; /* default to checkout stage0 */
static int to_tempfile;
static char topath[4][MAXPATHLEN+1];

static struct checkout state;

static void write_tempfile_record (const char *name)
static void write_tempfile_record(const char *name, int prefix_length)
{
int i;

Expand All @@ -77,7 +75,7 @@ static void write_tempfile_record (const char *name)
}
}

static int checkout_file(const char *name)
static int checkout_file(const char *name, int prefix_length)
{
int namelen = strlen(name);
int pos = cache_name_pos(name, namelen);
Expand Down Expand Up @@ -106,7 +104,7 @@ static int checkout_file(const char *name)

if (did_checkout) {
if (to_tempfile)
write_tempfile_record(name);
write_tempfile_record(name, prefix_length);
return errs > 0 ? -1 : 0;
}

Expand All @@ -124,7 +122,7 @@ static int checkout_file(const char *name)
return -1;
}

static int checkout_all(void)
static int checkout_all(const char *prefix, int prefix_length)
{
int i, errs = 0;
struct cache_entry* last_ce = NULL;
Expand All @@ -141,15 +139,15 @@ static int checkout_all(void)
if (last_ce && to_tempfile) {
if (ce_namelen(last_ce) != ce_namelen(ce)
|| memcmp(last_ce->name, ce->name, ce_namelen(ce)))
write_tempfile_record(last_ce->name);
write_tempfile_record(last_ce->name, prefix_length);
}
if (checkout_entry(ce, &state,
to_tempfile ? topath[ce_stage(ce)] : NULL) < 0)
errs++;
last_ce = ce;
}
if (last_ce && to_tempfile)
write_tempfile_record(last_ce->name);
write_tempfile_record(last_ce->name, prefix_length);
if (errs)
/* we have already done our error reporting.
* exit with the same code as die().
Expand All @@ -163,16 +161,16 @@ static const char checkout_cache_usage[] =

static struct lock_file lock_file;

int main(int argc, char **argv)
int cmd_checkout_index(int argc, const char **argv, const char *prefix)
{
int i;
int newfd = -1;
int all = 0;
int read_from_stdin = 0;
int prefix_length;

state.base_dir = "";
prefix = setup_git_directory();
git_config(git_default_config);
state.base_dir = "";
prefix_length = prefix ? strlen(prefix) : 0;

if (read_cache() < 0) {
Expand Down Expand Up @@ -270,7 +268,7 @@ int main(int argc, char **argv)
if (read_from_stdin)
die("git-checkout-index: don't mix '--stdin' and explicit filenames");
p = prefix_path(prefix, prefix_length, arg);
checkout_file(p);
checkout_file(p, prefix_length);
if (p < arg || p > arg + strlen(arg))
free((char*)p);
}
Expand All @@ -292,7 +290,7 @@ int main(int argc, char **argv)
else
path_name = buf.buf;
p = prefix_path(prefix, prefix_length, path_name);
checkout_file(p);
checkout_file(p, prefix_length);
if (p < path_name || p > path_name + strlen(path_name))
free((char *)p);
if (path_name != buf.buf)
Expand All @@ -301,7 +299,7 @@ int main(int argc, char **argv)
}

if (all)
checkout_all();
checkout_all(prefix, prefix_length);

if (0 <= newfd &&
(write_cache(newfd, active_cache, active_nr) ||
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions name-rev.c → builtin-name-rev.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <stdlib.h>
#include "builtin.h"
#include "cache.h"
#include "commit.h"
#include "tag.h"
Expand Down Expand Up @@ -126,12 +127,11 @@ static const char* get_rev_name(struct object *o)
return buffer;
}

int main(int argc, char **argv)
int cmd_name_rev(int argc, const char **argv, const char *prefix)
{
struct object_array revs = { 0, 0, NULL };
int as_is = 0, all = 0, transform_stdin = 0;

setup_git_directory();
git_config(git_default_config);

if (argc < 2)
Expand Down
4 changes: 2 additions & 2 deletions pack-objects.c → builtin-pack-objects.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include "builtin.h"
#include "cache.h"
#include "object.h"
#include "blob.h"
Expand Down Expand Up @@ -1226,7 +1227,7 @@ static int git_pack_config(const char *k, const char *v)
return git_default_config(k, v);
}

int main(int argc, char **argv)
int cmd_pack_objects(int argc, const char **argv, const char *prefix)
{
SHA_CTX ctx;
char line[40 + 1 + PATH_MAX + 2];
Expand All @@ -1235,7 +1236,6 @@ int main(int argc, char **argv)
int num_preferred_base = 0;
int i;

setup_git_directory();
git_config(git_pack_config);

progress = isatty(2);
Expand Down
4 changes: 2 additions & 2 deletions symbolic-ref.c → builtin-symbolic-ref.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include "builtin.h"
#include "cache.h"

static const char git_symbolic_ref_usage[] =
Expand All @@ -17,9 +18,8 @@ static void check_symref(const char *HEAD)
die("No such ref: %s", HEAD);
}

int main(int argc, const char **argv)
int cmd_symbolic_ref(int argc, const char **argv, const char *prefix)
{
setup_git_directory();
git_config(git_default_config);
switch (argc) {
case 2:
Expand Down
7 changes: 3 additions & 4 deletions unpack-objects.c → builtin-unpack-objects.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include "builtin.h"
#include "cache.h"
#include "object.h"
#include "delta.h"
Expand Down Expand Up @@ -112,7 +113,7 @@ static void write_object(void *buf, unsigned long size, const char *type)
}

static int resolve_delta(const char *type,
void *base, unsigned long base_size,
void *base, unsigned long base_size,
void *delta, unsigned long delta_size)
{
void *result;
Expand Down Expand Up @@ -260,13 +261,11 @@ static void unpack_all(void)
die("unresolved deltas left after unpacking");
}

int main(int argc, char **argv)
int cmd_unpack_objects(int argc, const char **argv, const char *prefix)
{
int i;
unsigned char sha1[20];

setup_git_directory();

quiet = !isatty(2);

for (i = 1 ; i < argc; i++) {
Expand Down
15 changes: 8 additions & 7 deletions verify-pack.c → builtin-verify-pack.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include "builtin.h"
#include "cache.h"
#include "pack.h"

Expand Down Expand Up @@ -47,28 +48,28 @@ static int verify_one_pack(const char *path, int verbose)

static const char verify_pack_usage[] = "git-verify-pack [-v] <pack>...";

int main(int ac, char **av)
int cmd_verify_pack(int argc, const char **argv, const char *prefix)
{
int err = 0;
int verbose = 0;
int no_more_options = 0;
int nothing_done = 1;

while (1 < ac) {
if (!no_more_options && av[1][0] == '-') {
if (!strcmp("-v", av[1]))
while (1 < argc) {
if (!no_more_options && argv[1][0] == '-') {
if (!strcmp("-v", argv[1]))
verbose = 1;
else if (!strcmp("--", av[1]))
else if (!strcmp("--", argv[1]))
no_more_options = 1;
else
usage(verify_pack_usage);
}
else {
if (verify_one_pack(av[1], verbose))
if (verify_one_pack(argv[1], verbose))
err = 1;
nothing_done = 0;
}
ac--; av++;
argc--; argv++;
}

if (nothing_done)
Expand Down
Loading

0 comments on commit bb266cb

Please sign in to comment.