version 1.30, 2004/09/14 01:57:15 |
version 1.33, 2004/11/23 01:37:47 |
|
|
/* $OpenXM: OpenXM/src/kan96xx/Kan/ext.c,v 1.29 2004/09/12 01:32:08 takayama Exp $ */ |
/* $OpenXM: OpenXM/src/kan96xx/Kan/ext.c,v 1.32 2004/09/17 12:32:11 takayama Exp $ */ |
#include <stdio.h> |
#include <stdio.h> |
#include <sys/types.h> |
#include <sys/types.h> |
#include <sys/stat.h> |
#include <sys/stat.h> |
Line 155 struct object Kextension(struct object obj) |
|
Line 155 struct object Kextension(struct object obj) |
|
errorKan1("%s\n","The number must be 0, 1 or 2.");*/ |
errorKan1("%s\n","The number must be 0, 1 or 2.");*/ |
putUserDictionary2((char *)NULL,0,0,m | SET_ATTR_FOR_ALL_WORDS, |
putUserDictionary2((char *)NULL,0,0,m | SET_ATTR_FOR_ALL_WORDS, |
CurrentContextp->userDictionary); |
CurrentContextp->userDictionary); |
|
}else if (strcmp(key,"or_attrs")==0) { |
|
if (size != 2) errorKan1("%s\n","[(or_attrs) num] extension."); |
|
obj1 = getoa(obj,1); |
|
if (obj1.tag != Sinteger) errorKan1("%s\n","[(or_attrs) num] extension."); |
|
m = KopInteger(obj1); |
|
putUserDictionary2((char *)NULL,0,0,m | OR_ATTR_FOR_ALL_WORDS, |
|
CurrentContextp->userDictionary); |
}else if (strcmp(key,"keywords")==0) { |
}else if (strcmp(key,"keywords")==0) { |
if (size != 1) errorKan1("%s\n","[(keywords)] extension."); |
if (size != 1) errorKan1("%s\n","[(keywords)] extension."); |
rob = showSystemDictionary(1); |
rob = showSystemDictionary(1); |
Line 211 struct object Kextension(struct object obj) |
|
Line 218 struct object Kextension(struct object obj) |
|
putoa(obj3,0,KpoInteger((int) buf.st_size)); |
putoa(obj3,0,KpoInteger((int) buf.st_size)); |
putoa(rob,1,obj3); /* We have not yet read buf fully */ |
putoa(rob,1,obj3); /* We have not yet read buf fully */ |
} |
} |
|
}else if (strcmp(key,"gethostname")==0) { |
|
abc = (char *)sGC_malloc(sizeof(char)*1024); |
|
if (gethostname(abc,1023) < 0) { |
|
errorKan1("%s\n","hostname could not be obtained."); |
|
} |
|
rob = KpoString(abc); |
}else if (strcmp(key,"forkExec")==0) { |
}else if (strcmp(key,"forkExec")==0) { |
if (size != 4) errorKan1("%s\n","[(forkExec) argList fdList sigblock] extension."); |
if (size != 4) errorKan1("%s\n","[(forkExec) argList fdList sigblock] extension."); |
obj1 = getoa(obj,1); |
obj1 = getoa(obj,1); |
Line 369 struct object Kextension(struct object obj) |
|
Line 382 struct object Kextension(struct object obj) |
|
} |
} |
} |
} |
} |
} |
|
}else if (strcmp(key,"read")==0) { |
|
if (size != 3) errorKan1("%s\n","[(read) fd size] extension."); |
|
obj1 = getoa(obj,1); |
|
if (obj1.tag != Sinteger) errorKan1("%s\n","[(read) fd size] extension. fd must be an integer."); |
|
obj2 = getoa(obj,2); |
|
if (obj2.tag != Sinteger) errorKan1("%s\n","[(read) fd size] extension. size must be an integer."); |
|
{ |
|
int total, n, fd; |
|
char *s; char *s0; |
|
fd = KopInteger(obj1); |
|
total = KopInteger(obj2); |
|
if (total <= 0) errorKan1("%s\n","[(read) ...]; negative size has not yet been implemented."); |
|
/* Return a string. todo: implement SbyteArray case. */ |
|
s0 = s = (char *) sGC_malloc(total+1); |
|
if (s0 == NULL) errorKan1("%s\n","[(read) ...]; no more memory."); |
|
while (total >0) { |
|
n = read(fd, s, total); |
|
if (n < 0) { perror("read"); errorKan1("%s\n","[(read) ...]; read error.");} |
|
s[n] = 0; |
|
total -= n; s = &(s[n]); |
|
} |
|
rob = KpoString(s0); |
|
} |
}else if (strcmp(key,"regionMatches")==0) { |
}else if (strcmp(key,"regionMatches")==0) { |
if (size != 3) errorKan1("%s\n","[(regionMatches) str strArray] extension."); |
if (size != 3) errorKan1("%s\n","[(regionMatches) str strArray] extension."); |
obj1 = getoa(obj,1); |
obj1 = getoa(obj,1); |
Line 438 struct object Kextension(struct object obj) |
|
Line 474 struct object Kextension(struct object obj) |
|
#include "plugin.hh" |
#include "plugin.hh" |
#include "Kclass/tree.hh" |
#include "Kclass/tree.hh" |
else{ |
else{ |
errorKan1("%s\n","Unknown tag for extension."); |
fprintf(stderr,"key=%s; ",key); |
|
errorKan1("%s\n","Unknown key for extension."); |
} |
} |
|
|
|
|