=================================================================== RCS file: /home/cvs/OpenXM/src/kan96xx/Kan/ext.c,v retrieving revision 1.27 retrieving revision 1.31 diff -u -p -r1.27 -r1.31 --- OpenXM/src/kan96xx/Kan/ext.c 2004/09/11 12:13:41 1.27 +++ OpenXM/src/kan96xx/Kan/ext.c 2004/09/16 23:53:44 1.31 @@ -1,4 +1,4 @@ -/* $OpenXM: OpenXM/src/kan96xx/Kan/ext.c,v 1.26 2004/09/09 08:50:12 takayama Exp $ */ +/* $OpenXM: OpenXM/src/kan96xx/Kan/ext.c,v 1.30 2004/09/14 01:57:15 takayama Exp $ */ #include #include #include @@ -15,6 +15,7 @@ #include "kclass.h" #include #include +#include #include "ox_pathfinder.h" extern int Quiet; @@ -87,6 +88,8 @@ static char *ext_generateUniqueFileName(char *s) return(NULL); } +static struct object oregexec(struct object oregex,struct object ostrArray,struct object oflag); + struct object Kextension(struct object obj) { char *key; @@ -148,10 +151,17 @@ struct object Kextension(struct object obj) obj1 = getoa(obj,1); if (obj1.tag != Sinteger) errorKan1("%s\n","[(chattrs) num] extension."); m = KopInteger(obj1); - if (!( m == 0 || m == PROTECT || m == ABSOLUTE_PROTECT)) - errorKan1("%s\n","The number must be 0, 1 or 2."); + /* if (!( m == 0 || m == PROTECT || m == ABSOLUTE_PROTECT || m == ATTR_INFIX)) + errorKan1("%s\n","The number must be 0, 1 or 2.");*/ putUserDictionary2((char *)NULL,0,0,m | SET_ATTR_FOR_ALL_WORDS, 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) { if (size != 1) errorKan1("%s\n","[(keywords)] extension."); rob = showSystemDictionary(1); @@ -318,10 +328,26 @@ struct object Kextension(struct object obj) if (obj1.tag != Sinteger) errorKan1("%s\n","[(chattr) num symbol] extension."); if (obj2.tag != Sstring) errorKan1("%s\n","[(chattr) num symbol] extension."); m = KopInteger(obj1); - if (!( m == 0 || m == PROTECT || m == ABSOLUTE_PROTECT)) - errorKan1("%s\n","The number must be 0, 1 or 2."); + /* if (!( m == 0 || m == PROTECT || m == ABSOLUTE_PROTECT || m == ATTR_INFIX)) + errorKan1("%s\n","The number must be 0, 1 or 2.");*/ putUserDictionary2(obj2.lc.str,(obj2.rc.op->lc).ival,(obj2.rc.op->rc).ival, m,CurrentContextp->userDictionary); + }else if (strcmp(key,"or_attr")==0) { + if (size != 3) errorKan1("%s\n","[(or_attr) num symbol] extension."); + obj1 = getoa(obj,1); + obj2 = getoa(obj,2); + if (obj1.tag != Sinteger) errorKan1("%s\n","[(or_attr) num symbol] extension."); + if (obj2.tag != Sstring) errorKan1("%s\n","[(or_attr) num symbol] extension."); + m = KopInteger(obj1); + rob = KfindUserDictionary(obj2.lc.str); + if (rob.tag != NoObject.tag) { + if (strcmp(UD_str,obj2.lc.str) == 0) { + m |= UD_attr; + }else errorKan1("%s\n","or_attr: internal error."); + } + rob = KpoInteger(m); + putUserDictionary2(obj2.lc.str,(obj2.rc.op->lc).ival,(obj2.rc.op->rc).ival, + m,CurrentContextp->userDictionary); }else if (strcmp(key,"getattr")==0) { if (size != 2) errorKan1("%s\n","[(getattr) symbol] extension."); obj1 = getoa(obj,1); @@ -405,6 +431,16 @@ struct object Kextension(struct object obj) }else{ rob = NullObject; } + }else if (strcmp(key,"regexec")==0) { + if ((size != 3) && (size != 4)) errorKan1("%s\n","[(regexec) reg strArray flag(optional)] extension b"); + obj1 = getoa(obj,1); + if (obj1.tag != Sdollar) errorKan1("%s\n","regexec, the first argument should be a string (regular expression)."); + obj2 = getoa(obj,2); + if (obj2.tag != Sarray) errorKan1("%s\n","regexec, the second argument should be an array of a string."); + if (size == 3) obj3 = newObjectArray(0); + else obj3 = getoa(obj,3); + rob = oregexec(obj1,obj2,obj3); + } #include "plugin.hh" #include "Kclass/tree.hh" @@ -451,3 +487,80 @@ struct object KregionMatches(struct object sobj, struc return rob; } +static struct object oregexec(struct object oregex,struct object ostrArray,struct object oflag) { + struct object rob; + struct object ob; + int n,i,j,m,keyn,cflag,eflag,er; + char *regex; + regex_t preg; + char *s; + char *mbuf; int mbufSize; +#define REGMATCH_SIZE 100 + regmatch_t pmatch[100]; size_t nmatch; + int size; + + nmatch = (size_t) REGMATCH_SIZE; + rob = newObjectArray(0); + mbufSize = 1024; + + if (oregex.tag != Sdollar) return rob; + if (ostrArray.tag != Sarray) return rob; + n = getoaSize(ostrArray); + for (i=0; i