From 6f4d00ee45693290fae042b27536b54f77b96acd Mon Sep 17 00:00:00 2001 From: David du Colombier <0intro@gmail.com> Date: Mon, 23 Sep 2013 23:00:39 +0200 Subject: fossil: import from plan 9 R=rsc https://codereview.appspot.com/7988047 --- src/cmd/fossil/fossil.c | 143 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 143 insertions(+) create mode 100644 src/cmd/fossil/fossil.c (limited to 'src/cmd/fossil/fossil.c') diff --git a/src/cmd/fossil/fossil.c b/src/cmd/fossil/fossil.c new file mode 100644 index 00000000..8ef68080 --- /dev/null +++ b/src/cmd/fossil/fossil.c @@ -0,0 +1,143 @@ +#include "stdinc.h" +#include + +#include "9.h" + +int Dflag; +int mempcnt; /* for 9fsys.c */ +char* none = "none"; +char* foptname = "/none/such"; + +static void +usage(void) +{ + fprint(2, "usage: %s [-Dt] [-c cmd] [-f partition] [-m %%]\n", argv0); + exits("usage"); +} + +static void +readCmdPart(char *file, char ***pcmd, int *pncmd) +{ + char buf[1024+1], *f[1024]; + char tbuf[1024]; + int nf; + int i, fd, n; + char **cmd, *p; + int ncmd; + + cmd = *pcmd; + ncmd = *pncmd; + + if((fd = open(file, OREAD)) < 0) + sysfatal("open %s: %r", file); + if(seek(fd, 127*1024, 0) != 127*1024) + sysfatal("seek %s 127kB: %r", file); + n = readn(fd, buf, sizeof buf-1); + if(n == 0) + sysfatal("short read of %s at 127kB", file); + if(n < 0) + sysfatal("read %s: %r", file); + buf[n] = 0; + if(memcmp(buf, "fossil config\n", 6+1+6+1) != 0) + sysfatal("bad config magic in %s", file); + nf = getfields(buf+6+1+6+1, f, nelem(f), 1, "\n"); + for(i=0; i= 100) + usage(); + break; + case 't': + tflag = 1; + break; + }ARGEND + if(argc != 0) + usage(); + + consInit(); + cliInit(); + msgInit(); + conInit(); + cmdInit(); + fsysInit(); + exclInit(); + fidInit(); + + srvInit(); + lstnInit(); + usersInit(); + + for(i = 0; i < ncmd; i++) + if(cliExec(cmd[i]) == 0) + fprint(2, "%s: %R\n", cmd[i]); + vtMemFree(cmd); + + if(tflag && consTTY() == 0) + consPrint("%s\n", vtGetError()); + + vtDetach(); + exits(0); +} -- cgit v1.2.3