| version 1.47, 2004/07/07 07:40:19 |
version 1.50, 2004/07/13 10:57:26 |
|
|
| * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
| * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
| * |
* |
| * $OpenXM: OpenXM_contrib2/asir2000/builtin/strobj.c,v 1.46 2004/03/25 01:56:00 noro Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/builtin/strobj.c,v 1.49 2004/07/13 09:10:38 noro Exp $ |
| */ |
*/ |
| #include "ca.h" |
#include "ca.h" |
| #include "parse.h" |
#include "parse.h" |
| Line 65 struct TeXSymbol { |
|
| Line 65 struct TeXSymbol { |
|
| |
|
| extern char *parse_strp; |
extern char *parse_strp; |
| |
|
| |
void Psprintf(); |
| void Prtostr(), Pstrtov(), Peval_str(); |
void Prtostr(), Pstrtov(), Peval_str(); |
| void Pstrtoascii(), Pasciitostr(); |
void Pstrtoascii(), Pasciitostr(); |
| void Pstr_len(), Pstr_chr(), Psub_str(); |
void Pstr_len(), Pstr_chr(), Psub_str(); |
| Line 76 void Pquotetotex_tb(); |
|
| Line 77 void Pquotetotex_tb(); |
|
| void Pquotetotex(); |
void Pquotetotex(); |
| void Pquotetotex_env(); |
void Pquotetotex_env(); |
| void Pflatten_quote(); |
void Pflatten_quote(); |
| |
void Pquote_to_funargs(),Pfunargs_to_quote(); |
| void fnodetotex_tb(FNODE f,TB tb); |
void fnodetotex_tb(FNODE f,TB tb); |
| char *symbol_name(char *name); |
char *symbol_name(char *name); |
| char *conv_rule(char *name); |
char *conv_rule(char *name); |
| Line 87 void fargstotex_tb(char *opname,FNODE f,TB tb); |
|
| Line 89 void fargstotex_tb(char *opname,FNODE f,TB tb); |
|
| int top_is_minus(FNODE f); |
int top_is_minus(FNODE f); |
| |
|
| struct ftab str_tab[] = { |
struct ftab str_tab[] = { |
| |
{"sprintf",Psprintf,-99999999}, |
| {"rtostr",Prtostr,1}, |
{"rtostr",Prtostr,1}, |
| {"strtov",Pstrtov,1}, |
{"strtov",Pstrtov,1}, |
| {"eval_str",Peval_str,1}, |
{"eval_str",Peval_str,1}, |
| Line 103 struct ftab str_tab[] = { |
|
| Line 106 struct ftab str_tab[] = { |
|
| {"quotetotex",Pquotetotex,1}, |
{"quotetotex",Pquotetotex,1}, |
| {"quotetotex_env",Pquotetotex_env,-99999999}, |
{"quotetotex_env",Pquotetotex_env,-99999999}, |
| {"flatten_quote",Pflatten_quote,2}, |
{"flatten_quote",Pflatten_quote,2}, |
| |
{"quote_to_funargs",Pquote_to_funargs,1}, |
| |
{"funargs_to_quote",Pfunargs_to_quote,1}, |
| {0,0,0}, |
{0,0,0}, |
| }; |
}; |
| |
|
| Line 1197 char *objtostr(Obj obj) |
|
| Line 1202 char *objtostr(Obj obj) |
|
| return r; |
return r; |
| } |
} |
| |
|
| |
void Psprintf(NODE arg,STRING *rp) |
| |
{ |
| |
STRING string; |
| |
char *s,*t,*r; |
| |
int argc,n,len; |
| |
NODE node; |
| |
|
| |
string = (STRING)ARG0(arg); |
| |
asir_assert(string,O_STR,"sprintf"); |
| |
s = BDY(string); |
| |
for(n = 0, t = s; *t; t++) { |
| |
if (*t=='%' && *(t+1)=='a') { |
| |
n++; |
| |
} |
| |
} |
| |
for(node = NEXT(arg), argc = 0, len = strlen(s); node; node = NEXT(node), argc++) { |
| |
len += estimate_length(CO,BDY(node)); |
| |
} |
| |
if (argc < n) { |
| |
error("sprintf: invalid argument"); |
| |
} |
| |
r = (char *)MALLOC_ATOMIC(len); |
| |
for(node = NEXT(arg), t = r; *s; s++) { |
| |
if (*s=='%' && *(s+1)=='a') { |
| |
strcpy(t,objtostr(BDY(node))); |
| |
node = NEXT(node); |
| |
t = strchr(t,0); |
| |
s++; |
| |
}else { |
| |
*t++ = *s; |
| |
} |
| |
} |
| |
*t = 0; |
| |
MKSTR(*rp,r); |
| |
} |
| |
|
| void fnodenodetotex_tb(NODE n,TB tb) |
void fnodenodetotex_tb(NODE n,TB tb) |
| { |
{ |
| for ( ; n; n = NEXT(n) ) { |
for ( ; n; n = NEXT(n) ) { |
| Line 1283 int top_is_minus(FNODE f) |
|
| Line 1324 int top_is_minus(FNODE f) |
|
| |
|
| FNODE flatten_fnode(FNODE,char *); |
FNODE flatten_fnode(FNODE,char *); |
| |
|
| void Pflatten_quote(NODE arg,QUOTE *rp) |
void Pflatten_quote(NODE arg,Obj *rp) |
| { |
{ |
| FNODE f; |
FNODE f; |
| QUOTE q; |
QUOTE q; |
| |
|
| f = flatten_fnode(BDY((QUOTE)ARG0(arg)),BDY((STRING)ARG1(arg))); |
if ( !ARG0(arg) || OID((Obj)ARG0(arg)) != O_QUOTE ) |
| MKQUOTE(q,f); |
*rp = (Obj)ARG0(arg); |
| *rp = q; |
else { |
| |
f = flatten_fnode(BDY((QUOTE)ARG0(arg)),BDY((STRING)ARG1(arg))); |
| |
MKQUOTE(q,f); |
| |
*rp = (Obj)q; |
| |
} |
| |
} |
| |
|
| |
void Pquote_to_funargs(NODE arg,LIST *rp) |
| |
{ |
| |
fid_spec_p spec; |
| |
QUOTE q; |
| |
QUOTEARG qa; |
| |
FNODE f; |
| |
STRING s; |
| |
QUOTE r; |
| |
int i; |
| |
Q id,a; |
| |
LIST l; |
| |
NODE t0,t,w,u,u0; |
| |
|
| |
q = (QUOTE)ARG0(arg); |
| |
if ( !q || OID(q) != O_QUOTE ) |
| |
error("quote_to_funargs : invalid argument"); |
| |
f = BDY(q); |
| |
if ( !f ) { |
| |
MKLIST(*rp,0); |
| |
return; |
| |
} |
| |
get_fid_spec(f->id,&spec); |
| |
if ( !spec ) |
| |
error("quote_to_funargs : not supported yet"); |
| |
t0 = 0; |
| |
STOQ((int)f->id,id); |
| |
NEXTNODE(t0,t); |
| |
BDY(t) = (pointer)id; |
| |
for ( i = 0; spec->type[i] != A_end; i++ ) { |
| |
NEXTNODE(t0,t); |
| |
switch ( spec->type[i] ) { |
| |
case A_fnode: |
| |
MKQUOTE(r,(FNODE)f->arg[i]); |
| |
BDY(t) = (pointer)r; |
| |
break; |
| |
case A_int: |
| |
STOQ((int)f->arg[i],a); |
| |
BDY(t) = (pointer)a; |
| |
break; |
| |
case A_str: |
| |
MKSTR(s,(char *)f->arg[i]); |
| |
BDY(t) = (pointer)s; |
| |
break; |
| |
case A_internal: |
| |
BDY(t) = (pointer)f->arg[i]; |
| |
break; |
| |
case A_node: |
| |
w = (NODE)f->arg[i]; |
| |
for ( u0 = 0; w; w = NEXT(w) ){ |
| |
NEXTNODE(u0,u); |
| |
MKQUOTE(r,(FNODE)BDY(w)); |
| |
BDY(u) = (pointer)r; |
| |
} |
| |
if ( u0 ) NEXT(u) = 0; |
| |
MKLIST(l,u0); |
| |
BDY(t) = (pointer)l; |
| |
break; |
| |
default: |
| |
MKQUOTEARG(qa,spec->type[i],f->arg[i]); |
| |
BDY(t) = (pointer)qa; |
| |
break; |
| |
} |
| |
} |
| |
if ( t0 ) NEXT(t) = 0; |
| |
MKLIST(*rp,t0); |
| |
} |
| |
|
| |
void Pfunargs_to_quote(NODE arg,QUOTE *rp) |
| |
{ |
| |
fid_spec_p spec; |
| |
QUOTE q; |
| |
QUOTEARG qa; |
| |
FNODE f; |
| |
STRING s; |
| |
QUOTE r,b; |
| |
int i; |
| |
LIST l; |
| |
fid id; |
| |
Obj a; |
| |
NODE t0,t,u0,u,w; |
| |
|
| |
l = (LIST)ARG0(arg); |
| |
if ( !l || OID(l) != O_LIST || !(t=BDY(l)) ) |
| |
error("funargs_to_quote : invalid argument"); |
| |
t = BDY(l); |
| |
id = (fid)QTOS((Q)BDY(t)); t = NEXT(t); |
| |
get_fid_spec(id,&spec); |
| |
if ( !spec ) |
| |
error("funargs_to_quote : not supported yet"); |
| |
for ( i = 0; spec->type[i] != A_end; i++ ); |
| |
NEWFNODE(f,i); |
| |
f->id = id; |
| |
for ( i = 0; spec->type[i] != A_end; i++, t = NEXT(t) ) { |
| |
if ( !t ) |
| |
error("funargs_to_quote : argument mismatch"); |
| |
a = (Obj)BDY(t); |
| |
switch ( spec->type[i] ) { |
| |
case A_fnode: |
| |
if ( !a || OID(a) != O_QUOTE ) |
| |
error("funargs_to_quote : invalid argument"); |
| |
f->arg[i] = BDY((QUOTE)a); |
| |
break; |
| |
case A_int: |
| |
if ( !INT(a) ) |
| |
error("funargs_to_quote : invalid argument"); |
| |
f->arg[i] = (pointer)QTOS((Q)a); |
| |
break; |
| |
case A_str: |
| |
if ( !a || OID(a) != O_STR ) |
| |
error("funargs_to_quote : invalid argument"); |
| |
f->arg[i] = (pointer)BDY((STRING)a); |
| |
break; |
| |
case A_internal: |
| |
f->arg[i] = (pointer)a; |
| |
break; |
| |
case A_node: |
| |
if ( !a || OID(a) != O_LIST ) |
| |
error("funargs_to_quote : invalid argument"); |
| |
u0 = 0; |
| |
for ( w = BDY((LIST)a); w; w = NEXT(w) ) { |
| |
NEXTNODE(u0,u); |
| |
b = (QUOTE)BDY(w); |
| |
if ( !b || OID(b) != O_QUOTE ) |
| |
error("funargs_to_quote : invalid argument"); |
| |
BDY(u) = BDY(b); |
| |
} |
| |
if ( u0 ) NEXT(u) = 0; |
| |
f->arg[i] = (pointer)u0; |
| |
break; |
| |
default: |
| |
if ( !a || OID(a) != O_QUOTEARG || |
| |
((QUOTEARG)a)->type != spec->type[i] ) |
| |
error("funargs_to_quote : invalid argument"); |
| |
f->arg[i] = BDY((QUOTEARG)a); |
| |
break; |
| |
} |
| |
} |
| |
MKQUOTE(*rp,f); |
| } |
} |