jehanne/sys/src/cmd/sam/plan9.c

162 lines
2.7 KiB
C

/*
* This file is part of the UCB release of Plan 9. It is subject to the license
* terms in the LICENSE file found in the top-level directory of this
* distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
* part of the UCB release of Plan 9, including this file, may be copied,
* modified, propagated, or distributed except according to the terms contained
* in the LICENSE file.
*/
#include "sam.h"
Rune *samname = (Rune *)L"~~sam~~";
Rune *left[]= {
(Rune *)L"{[(<«",
(Rune *)L"\n",
(Rune *)L"'\"`",
0
};
Rune *right[]= {
(Rune *)L"}])>»",
(Rune *)L"\n",
(Rune *)L"'\"`",
0
};
char RSAM[] = "sam";
char SAMTERM[] = "/cmd/aux/samterm";
char TMPDIR[] = "/tmp";
char SH[] = "rc";
char SHPATH[] = "/cmd/rc";
char RX[] = "rx";
char RXPATH[] = "/cmd/rx";
char SAMSAVECMD[] = "/cmd/rc\n/sys/lib/samsave";
void
dprint(char *z, ...)
{
char buf[BLOCKSIZE];
va_list arg;
va_start(arg, z);
vseprint(buf, &buf[BLOCKSIZE], z, arg);
va_end(arg);
termwrite(buf);
}
void
print_ss(char *s, String *a, String *b)
{
dprint("?warning: %s: `%.*S' and `%.*S'\n", s, a->n, a->s, b->n, b->s);
}
void
print_s(char *s, String *a)
{
dprint("?warning: %s `%.*S'\n", s, a->n, a->s);
}
int
statfile(char *name, ulong *dev, uvlong *id, long *time, long *length, long *appendonly)
{
Dir *dirb;
dirb = dirstat(name);
if(dirb == nil)
return -1;
if(dev)
*dev = dirb->type|(dirb->dev<<16);
if(id)
*id = dirb->qid.path;
if(time)
*time = dirb->mtime;
if(length)
*length = dirb->length;
if(appendonly)
*appendonly = dirb->mode & DMAPPEND;
free(dirb);
return 1;
}
int
statfd(int fd, ulong *dev, uvlong *id, long *time, long *length, long *appendonly)
{
Dir *dirb;
dirb = dirfstat(fd);
if(dirb == nil)
return -1;
if(dev)
*dev = dirb->type|(dirb->dev<<16);
if(id)
*id = dirb->qid.path;
if(time)
*time = dirb->mtime;
if(length)
*length = dirb->length;
if(appendonly)
*appendonly = dirb->mode & DMAPPEND;
free(dirb);
return 1;
}
void
notifyf(void *a, char *s)
{
USED(a);
if(bpipeok && strcmp(s, "sys: write on closed pipe") == 0)
sys_noted(NCONT);
if(strcmp(s, "interrupt") == 0)
sys_noted(NCONT);
panicking = 1;
rescue();
sys_noted(NDFLT);
}
char*
waitfor(int pid)
{
Waitmsg *w;
static char msg[ERRMAX];
while((w = wait()) != nil){
if(w->pid != pid){
free(w);
continue;
}
strecpy(msg, msg+sizeof msg, w->msg);
free(w);
return msg;
}
rerrstr(msg, sizeof msg);
return msg;
}
void
samerr(char *buf)
{
sprint(buf, "%s/sam.err", TMPDIR);
}
void*
emalloc(ulong n)
{
void *p;
p = malloc(n);
if(p == 0)
panic("malloc fails");
memset(p, 0, n);
return p;
}
void*
erealloc(void *p, ulong n)
{
p = realloc(p, n);
if(p == 0)
panic("realloc fails");
return p;
}