source: git/Singular/iplib.cc @ e2202ee

spielwiese
Last change on this file since e2202ee was e2202ee, checked in by Hans Schoenemann <hannes@…>, 10 years ago
fix: compiler warnings (64bit/const char*)
  • Property mode set to 100644
File size: 36.2 KB
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/*
5* ABSTRACT: interpreter: LIB and help
6*/
7
8#ifdef HAVE_CONFIG_H
9#include "singularconfig.h"
10#endif /* HAVE_CONFIG_H */
11
12#include <kernel/mod2.h>
13
14#include <Singular/tok.h>
15#include <misc/options.h>
16#include <Singular/ipid.h>
17#include <omalloc/omalloc.h>
18#include <kernel/febase.h>
19#include <polys/monomials/ring.h>
20#include <Singular/subexpr.h>
21#include <Singular/ipshell.h>
22#include <Singular/lists.h>
23
24//#include <stdlib.h>
25#include <stdio.h>
26#include <string.h>
27#include <ctype.h>
28#include <sys/stat.h>
29
30
31#if SIZEOF_LONG == 8
32#define SI_MAX_NEST 500
33#elif defined(ix86_Win)
34#define SI_MAX_NEST 480
35#else
36#define SI_MAX_NEST 1000
37#endif
38
39#if defined(ix86Mac_darwin) || defined(x86_64Mac_darwin) || defined(ppcMac_darwin)
40#  define MODULE_SUFFIX bundle
41#elif defined(ix86_Win)
42#  define MODULE_SUFFIX dll
43#else
44#  define MODULE_SUFFIX so
45#endif
46
47#define MODULE_SUFFIX_STRING EXPANDED_STRINGIFY(MODULE_SUFFIX)
48
49
50#ifdef HAVE_DYNAMIC_LOADING
51BOOLEAN load_modules(const char *newlib, char *fullname, BOOLEAN autoexport);
52#endif
53
54#ifdef HAVE_LIBPARSER
55#  include "libparse.h"
56#else /* HAVE_LIBPARSER */
57procinfo *iiInitSingularProcinfo(procinfov pi, const char *libname,
58              const char *procname, int line, long pos, BOOLEAN pstatic=FALSE);
59#endif /* HAVE_LIBPARSER */
60#define NS_LRING (procstack->cRing)
61
62extern int iiArithAddCmd(const char *szName, short nAlias, short nTokval,
63                         short nToktype, short nPos);
64
65#include <Singular/mod_lib.h>
66
67#ifdef HAVE_LIBPARSER
68void yylprestart (FILE *input_file );
69int current_pos(int i=0);
70extern int yylp_errno;
71extern int yylplineno;
72extern char *yylp_errlist[];
73void print_init();
74libstackv library_stack;
75#endif
76
77//int IsCmd(char *n, int tok);
78char mytolower(char c);
79
80/*2
81* return TRUE if the libray libname is already loaded
82*/
83BOOLEAN iiGetLibStatus(char *lib)
84{
85  idhdl hl;
86
87  char *plib = iiConvName(lib);
88  hl = basePack->idroot->get(plib,0);
89  omFree(plib);
90  if((hl==NULL) ||(IDTYP(hl)!=PACKAGE_CMD))
91  {
92    return FALSE;
93  }
94  return (strcmp(lib,IDPACKAGE(hl)->libname)==0);
95}
96
97/*2
98* find the library of an proc:
99*  => return (pi->libname)
100*/
101char * iiGetLibName(procinfov pi)
102{
103  return pi->libname;
104}
105
106/*2
107* given a line 'proc[ ]+{name}[ \t]*'
108* return a pointer to name and set the end of '\0'
109* changes the input!
110* returns: e: pointer to 'end of name'
111*          ct: changed char at the end of s
112*/
113char* iiProcName(char *buf, char & ct, char* &e)
114{
115  char *s=buf+5;
116  while (*s==' ') s++;
117  e=s+1;
118  while ((*e>' ') && (*e!='(')) e++;
119  ct=*e;
120  *e='\0';
121  return s;
122}
123
124/*2
125* given a line with args, return the argstr
126*/
127char * iiProcArgs(char *e,BOOLEAN withParenth)
128{
129  while ((*e==' ') || (*e=='\t') || (*e=='(')) e++;
130  if (*e<' ')
131  {
132    if (withParenth)
133    {
134      // no argument list, allow list #
135      return omStrDup("parameter list #;");
136    }
137    else
138    {
139      // empty list
140      return omStrDup("");
141    }
142  }
143  BOOLEAN in_args;
144  BOOLEAN args_found;
145  char *s;
146  char *argstr=(char *)omAlloc(127); // see ../omalloc/omTables.inc
147  int argstrlen=127;
148  *argstr='\0';
149  int par=0;
150  do
151  {
152    args_found=FALSE;
153    s=e; // set s to the starting point of the arg
154         // and search for the end
155    while(*s==' ') s++; e=s; // skip leading paces
156    while ((*e!=',')
157    &&((par!=0) || (*e!=')'))
158    &&(*e!='\0'))
159    {
160      if (*e=='(') par++;
161      else if (*e==')') par--;
162      args_found=args_found || (*e>' ');
163      e++;
164    }
165    in_args=(*e==',');
166    if (args_found)
167    {
168      *e='\0';
169      // check for space:
170      if ((int)strlen(argstr)+12 /* parameter + ;*/ +(int)strlen(s)>= argstrlen)
171      {
172        argstrlen*=2;
173        char *a=(char *)omAlloc( argstrlen);
174        strcpy(a,argstr);
175        omFree((ADDRESS)argstr);
176        argstr=a;
177      }
178      // copy the result to argstr
179      if(strncmp(s,"alias ",6)!=0)
180      {
181        strcat(argstr,"parameter ");
182      }
183      strcat(argstr,s);
184      strcat(argstr,"; ");
185      e++; // e was pointing to ','
186    }
187  } while (in_args);
188  return argstr;
189}
190
191/*2
192* locate `procname` in lib `libname` and find the part `part`:
193*  part=0: help, between, but excluding the line "proc ..." and "{...":
194*    => return
195*  part=1: body, between "{ ..." and "}", including the 1. line, w/o "{"
196*    => set pi->data.s.body, return NULL
197*  part=2: example, between, but excluding the line "exapmle {..." and "}":
198*    => return
199*/
200char* iiGetLibProcBuffer(procinfo *pi, int part )
201{
202  char buf[256], *s = NULL, *p;
203  long procbuflen;
204
205  FILE * fp = feFopen( pi->libname, "rb", NULL, TRUE );
206  if (fp==NULL)
207  {
208    return NULL;
209  }
210
211  fseek(fp, pi->data.s.proc_start, SEEK_SET);
212  if(part==0)
213  { // load help string
214    int i, offset=0;
215    long head = pi->data.s.def_end - pi->data.s.proc_start;
216    procbuflen = pi->data.s.help_end - pi->data.s.help_start;
217    if (procbuflen<5)
218    {
219      fclose(fp);
220      return NULL; // help part does not exist
221    }
222    //Print("Help=%ld-%ld=%d\n", pi->data.s.body_start,
223    //    pi->data.s.proc_start, procbuflen);
224    s = (char *)omAlloc(procbuflen+head+3);
225    myfread(s, head, 1, fp);
226    s[head] = '\n';
227    fseek(fp, pi->data.s.help_start, SEEK_SET);
228    myfread(s+head+1, procbuflen, 1, fp);
229    fclose(fp);
230    s[procbuflen+head+1] = '\n';
231    s[procbuflen+head+2] = '\0';
232    offset=0;
233    for(i=0;i<=procbuflen+head+2; i++)
234    {
235      if(s[i]=='\\' &&
236         (s[i+1]=='"' || s[i+1]=='{' || s[i+1]=='}' || s[i+1]=='\\'))
237      {
238        i++;
239        offset++;
240      }
241      if(offset>0) s[i-offset] = s[i];
242    }
243    return(s);
244  }
245  else if(part==1)
246  { // load proc part - must exist
247    procbuflen = pi->data.s.def_end - pi->data.s.proc_start;
248    char *ss=(char *)omAlloc(procbuflen+2);
249    //fgets(buf, sizeof(buf), fp);
250    myfread( ss, procbuflen, 1, fp);
251    char ct;
252    char *e;
253    s=iiProcName(ss,ct,e);
254    char *argstr=NULL;
255    *e=ct;
256    argstr=iiProcArgs(e,TRUE);
257
258    assume(pi->data.s.body_end > pi->data.s.body_start);
259
260    procbuflen = pi->data.s.body_end - pi->data.s.body_start;
261    pi->data.s.body = (char *)omAlloc( strlen(argstr)+procbuflen+15+
262                                      strlen(pi->libname) );
263    //Print("Body=%ld-%ld=%d\n", pi->data.s.body_end,
264    //    pi->data.s.body_start, procbuflen);
265    assume(pi->data.s.body != NULL);
266    fseek(fp, pi->data.s.body_start, SEEK_SET);
267    strcpy(pi->data.s.body,argstr);
268    myfread( pi->data.s.body+strlen(argstr), procbuflen, 1, fp);
269    fclose( fp );
270    procbuflen+=strlen(argstr);
271    omFree(argstr);
272    omFree(ss);
273    pi->data.s.body[procbuflen] = '\0';
274    strcat( pi->data.s.body+procbuflen, "\n;return();\n\n" );
275    strcat( pi->data.s.body+procbuflen+13,pi->libname);
276    s=(char *)strchr(pi->data.s.body,'{');
277    if (s!=NULL) *s=' ';
278    return NULL;
279  }
280  else if(part==2)
281  { // example
282    if ( pi->data.s.example_lineno == 0)
283      return NULL; // example part does not exist
284    // load example
285    fseek(fp, pi->data.s.example_start, SEEK_SET);
286    /*char *dummy=*/ (void) fgets(buf, sizeof(buf), fp); // skip line with "example"
287    procbuflen = pi->data.s.proc_end - pi->data.s.example_start - strlen(buf);
288    //Print("Example=%ld-%ld=%d\n", pi->data.s.proc_end,
289    //  pi->data.s.example_start, procbuflen);
290    s = (char *)omAlloc(procbuflen+14);
291    myfread(s, procbuflen, 1, fp);
292    s[procbuflen] = '\0';
293    strcat(s+procbuflen-3, "\n;return();\n\n" );
294    p=(char *)strchr(s,'{');
295    if (p!=NULL) *p=' ';
296    return(s);
297  }
298  return NULL;
299}
300#ifndef LIBSINGULAR
301// see below:
302struct soptionStruct
303{
304  const char * name;
305  unsigned   setval;
306  unsigned   resetval;
307};
308extern struct soptionStruct optionStruct[];
309extern struct soptionStruct verboseStruct[];
310#endif
311
312BOOLEAN iiAllStart(procinfov pi, char *p,feBufferTypes t, int l)
313{
314  newBuffer( omStrDup(p /*pi->data.s.body*/), t /*BT_proc*/,
315               pi, l );
316  #ifndef LIBSINGULAR
317  // see below:
318  BITSET save1=(test & ~TEST_RINGDEP_OPTS);
319  BITSET save2=verbose;
320  #endif
321  BOOLEAN err=yyparse();
322  if (sLastPrinted.rtyp!=0)
323  {
324    sLastPrinted.CleanUp();
325  }
326  #ifndef LIBSINGULAR
327  // the access to optionStruct and verboseStruct do not work
328  // on x86_64-Linux for pic-code
329  BITSET save11= ( test & ~TEST_RINGDEP_OPTS);
330  if ((TEST_V_ALLWARN) &&
331  (t==BT_proc) &&
332  ((save1!=save11)||(save2!=verbose)) &&
333  (pi->libname!=NULL) && (pi->libname[0]!='\0'))
334  {
335    Warn("option changed in proc %s from %s",pi->procname,pi->libname);
336    int i;
337    for (i=0; optionStruct[i].setval!=0; i++)
338    {
339      if ((optionStruct[i].setval & save11)
340      && (!(optionStruct[i].setval & save1)))
341      {
342          Print(" +%s",optionStruct[i].name);
343      }
344      if (!(optionStruct[i].setval & save11)
345      && ((optionStruct[i].setval & save1)))
346      {
347          Print(" -%s",optionStruct[i].name);
348      }
349    }
350    for (i=0; verboseStruct[i].setval!=0; i++)
351    {
352      if ((verboseStruct[i].setval & verbose)
353      && (!(verboseStruct[i].setval & save2)))
354      {
355          Print(" +%s",verboseStruct[i].name);
356      }
357      if (!(verboseStruct[i].setval & verbose)
358      && ((verboseStruct[i].setval & save2)))
359      {
360          Print(" -%s",verboseStruct[i].name);
361      }
362    }
363    PrintLn();
364  }
365  #endif
366  return err;
367}
368/*2
369* start a proc
370* parameters are built as exprlist
371* TODO:interrupt
372* return FALSE on success, TRUE if an error occurs
373*/
374BOOLEAN iiPStart(idhdl pn, sleftv  * v)
375{
376  procinfov pi=NULL;
377  int old_echo=si_echo;
378  BOOLEAN err=FALSE;
379  char save_flags=0;
380
381  /* init febase ======================================== */
382  /* we do not enter this case if filename != NULL !! */
383  if (pn!=NULL)
384  {
385    pi = IDPROC(pn);
386    if(pi!=NULL)
387    {
388      save_flags=pi->trace_flag;
389      if( pi->data.s.body==NULL )
390      {
391        iiGetLibProcBuffer(pi);
392        if (pi->data.s.body==NULL) return TRUE;
393      }
394//      omUpdateInfo();
395//      int m=om_Info.UsedBytes;
396//      Print("proc %s, mem=%d\n",IDID(pn),m);
397    }
398  }
399  else return TRUE;
400  /* generate argument list ======================================*/
401  if (v!=NULL)
402  {
403    iiCurrArgs=(leftv)omAllocBin(sleftv_bin);
404    memcpy(iiCurrArgs,v,sizeof(sleftv));
405    memset(v,0,sizeof(sleftv));
406  }
407  else
408  {
409    iiCurrArgs=NULL;
410  }
411  iiCurrProc=pn;
412  /* start interpreter ======================================*/
413  myynest++;
414  if (myynest > SI_MAX_NEST)
415  {
416    WerrorS("nesting too deep");
417    err=TRUE;
418  }
419  else
420  {
421    err=iiAllStart(pi,pi->data.s.body,BT_proc,pi->data.s.body_lineno-(v!=NULL));
422
423    //Print("kill locals for %s (level %d)\n",IDID(pn),myynest);
424    killlocals(myynest);
425#ifndef NDEBUG
426    checkall();
427#endif
428    //Print("end kill locals for %s (%d)\n",IDID(pn),myynest);
429  }
430  myynest--;
431  si_echo=old_echo;
432  if (pi!=NULL)
433    pi->trace_flag=save_flags;
434//  omUpdateInfo();
435//  int m=om_Info.UsedBytes;
436//  Print("exit %s, mem=%d\n",IDID(pn),m);
437  return err;
438}
439
440#ifdef USE_IILOCALRING
441ring    *iiLocalRing;
442#endif
443sleftv  iiRETURNEXPR;
444int     iiRETURNEXPR_len=0;
445
446#ifdef RDEBUG
447static void iiShowLevRings()
448{
449  int i;
450#ifdef USE_IILOCALRING
451  for (i=0;i<=myynest;i++)
452  {
453    Print("lev %d:",i);
454    if (iiLocalRing[i]==NULL) PrintS("NULL");
455    else                      Print("%lx",(long)iiLocalRing[i]);
456    PrintLn();
457  }
458#endif
459#if  0
460  i=myynest;
461  proclevel *p=procstack;
462  while (p!=NULL)
463  {
464    Print("lev %d:",i);
465    if (p->cRingHdl==NULL) PrintS("NULL");
466    else                   Print("%s",IDID(p->cRingHdl));
467    PrintLn();
468    p=p->next;
469  }
470#endif
471  if (currRing==NULL) PrintS("curr:NULL\n");
472  else                Print ("curr:%lx\n",(long)currRing);
473}
474#endif /* RDEBUG */
475
476static void iiCheckNest()
477{
478  if (myynest >= iiRETURNEXPR_len-1)
479  {
480#ifdef USE_IILOCALRING
481    iiLocalRing=(ring *)omreallocSize(iiLocalRing,
482                                   iiRETURNEXPR_len*sizeof(ring),
483                                   (iiRETURNEXPR_len+16)*sizeof(ring));
484    memset(&(iiLocalRing[iiRETURNEXPR_len]),0,16*sizeof(ring));
485#endif
486    iiRETURNEXPR_len+=16;
487  }
488}
489BOOLEAN iiMake_proc(idhdl pn, package pack, sleftv* sl)
490{
491  int err;
492  procinfov pi = IDPROC(pn);
493  if(pi->is_static && myynest==0)
494  {
495    Werror("'%s::%s()' is a local procedure and cannot be accessed by an user.",
496           pi->libname, pi->procname);
497    return TRUE;
498  }
499  iiCheckNest();
500#ifdef USE_IILOCALRING
501  iiLocalRing[myynest]=currRing;
502  //Print("currRing(%d):%s(%x) in %s\n",myynest,IDID(currRingHdl),currRing,IDID(pn));
503#endif
504  iiRETURNEXPR.Init();
505  procstack->push(pi->procname);
506  if ((traceit&TRACE_SHOW_PROC)
507  || (pi->trace_flag&TRACE_SHOW_PROC))
508  {
509    if (traceit&TRACE_SHOW_LINENO) PrintLn();
510    Print("entering%-*.*s %s (level %d)\n",myynest*2,myynest*2," ",IDID(pn),myynest);
511  }
512#ifdef RDEBUG
513  if (traceit&TRACE_SHOW_RINGS) iiShowLevRings();
514#endif
515  switch (pi->language)
516  {
517    default:
518    case LANG_NONE:
519                 WerrorS("undefined proc");
520                 err=TRUE;
521                 break;
522
523    case LANG_SINGULAR:
524                 if ((pi->pack!=NULL)&&(currPack!=pi->pack))
525                 {
526                   currPack=pi->pack;
527                   iiCheckPack(currPack);
528                   currPackHdl=packFindHdl(currPack);
529                   //Print("set pack=%s\n",IDID(currPackHdl));
530                 }
531                 else if ((pack!=NULL)&&(currPack!=pack))
532                 {
533                   currPack=pack;
534                   iiCheckPack(currPack);
535                   currPackHdl=packFindHdl(currPack);
536                   //Print("set pack=%s\n",IDID(currPackHdl));
537                 }
538                 err=iiPStart(pn,sl);
539                 break;
540    case LANG_C:
541                 leftv res = (leftv)omAlloc0Bin(sleftv_bin);
542                 err = (pi->data.o.function)(res, sl);
543                 memcpy(&iiRETURNEXPR,res,sizeof(iiRETURNEXPR));
544                 omFreeBin((ADDRESS)res,  sleftv_bin);
545                 break;
546  }
547  if ((traceit&TRACE_SHOW_PROC)
548  || (pi->trace_flag&TRACE_SHOW_PROC))
549  {
550    if (traceit&TRACE_SHOW_LINENO) PrintLn();
551    Print("leaving %-*.*s %s (level %d)\n",myynest*2,myynest*2," ",IDID(pn),myynest);
552  }
553  //char *n="NULL";
554  //if (currRingHdl!=NULL) n=IDID(currRingHdl);
555  //Print("currRing(%d):%s(%x) after %s\n",myynest,n,currRing,IDID(pn));
556#ifdef RDEBUG
557  if (traceit&TRACE_SHOW_RINGS) iiShowLevRings();
558#endif
559  if (err)
560  {
561    iiRETURNEXPR.CleanUp();
562    //iiRETURNEXPR.Init(); //done by CleanUp
563  }
564#ifdef USE_IILOCALRING
565#if 0
566  if(procstack->cRing != iiLocalRing[myynest]) Print("iiMake_proc: 1 ring not saved procs:%x, iiLocal:%x\n",procstack->cRing, iiLocalRing[myynest]);
567#endif
568  if (iiLocalRing[myynest] != currRing)
569  {
570    if (currRing!=NULL)
571    {
572      if (((iiRETURNEXPR.Typ()>BEGIN_RING)
573        && (iiRETURNEXPR.Typ()<END_RING))
574      || ((iiRETURNEXPR.Typ()==LIST_CMD)
575        && (lRingDependend((lists)iiRETURNEXPR.Data()))))
576      {
577        //idhdl hn;
578        const char *n;
579        const char *o;
580        idhdl nh=NULL, oh=NULL;
581        if (iiLocalRing[myynest]!=NULL)
582          oh=rFindHdl(iiLocalRing[myynest],NULL, NULL);
583        if (oh!=NULL)          o=oh->id;
584        else                   o="none";
585        if (currRing!=NULL)
586          nh=rFindHdl(currRing,NULL, NULL);
587        if (nh!=NULL)          n=nh->id;
588        else                   n="none";
589        Werror("ring change during procedure call: %s -> %s (level %d)",o,n,myynest);
590        iiRETURNEXPR.CleanUp();
591        err=TRUE;
592      }
593    }
594    currRing=iiLocalRing[myynest];
595  }
596  if ((currRing==NULL)
597  && (currRingHdl!=NULL))
598    currRing=IDRING(currRingHdl);
599  else
600  if ((currRing!=NULL) &&
601    ((currRingHdl==NULL)||(IDRING(currRingHdl)!=currRing)
602     ||(IDLEV(currRingHdl)>=myynest)))
603  {
604    rSetHdl(rFindHdl(currRing,NULL, NULL));
605    iiLocalRing[myynest]=NULL;
606  }
607#else /* USE_IILOCALRING */
608  if (procstack->cRing != currRing)
609  {
610    //if (procstack->cRingHdl!=NULL)
611    //Print("procstack:%s,",IDID(procstack->cRingHdl));
612    //if (currRingHdl!=NULL)
613    //Print(" curr:%s\n",IDID(currRingHdl));
614    //Print("pr:%x, curr: %x\n",procstack->cRing,currRing);
615    if (((iiRETURNEXPR.Typ()>BEGIN_RING)
616      && (iiRETURNEXPR.Typ()<END_RING))
617    || ((iiRETURNEXPR.Typ()==LIST_CMD)
618      && (lRingDependend((lists)iiRETURNEXPR.Data()))))
619    {
620      //idhdl hn;
621      char *n;
622      char *o;
623      if (procstack->cRing!=NULL)
624      {
625        //PrintS("reset ring\n");
626        procstack->cRingHdl=rFindHdl(procstack->cRing,NULL, NULL);
627        if (procstack->cRingHdl==NULL)
628          procstack->cRingHdl=
629           rFindHdl(procstack->cRing,NULL,procstack->currPack->idroot);
630        if (procstack->cRingHdl==NULL)
631          procstack->cRingHdl=
632           rFindHdl(procstack->cRing,NULL,basePack->idroot);
633        o=IDID(procstack->cRingHdl);
634        currRing=procstack->cRing;
635        currRingHdl=procstack->cRingHdl;
636      }
637      else                            o="none";
638      if (currRing!=NULL)             n=IDID(currRingHdl);
639      else                            n="none";
640      if (currRing==NULL)
641      {
642        Werror("ring change during procedure call: %s -> %s",o,n);
643        iiRETURNEXPR.CleanUp();
644        err=TRUE;
645      }
646    }
647    if (procstack->cRingHdl!=NULL)
648    {
649      rSetHdl(procstack->cRingHdl);
650    }
651    else
652    { currRingHdl=NULL; currRing=NULL; }
653  }
654#endif /* USE_IILOCALRING */
655  if (iiCurrArgs!=NULL)
656  {
657    if (!err) Warn("too many arguments for %s",IDID(pn));
658    iiCurrArgs->CleanUp();
659    omFreeBin((ADDRESS)iiCurrArgs, sleftv_bin);
660    iiCurrArgs=NULL;
661  }
662  procstack->pop();
663  if (err)
664    return TRUE;
665  return FALSE;
666}
667
668/*2
669* start an example (as a proc),
670* destroys the string 'example'
671*/
672BOOLEAN iiEStart(char* example, procinfo *pi)
673{
674  BOOLEAN err;
675  int old_echo=si_echo;
676
677  iiCheckNest();
678  procstack->push(example);
679#ifdef USE_IILOCALRING
680  iiLocalRing[myynest]=currRing;
681#endif
682  if (traceit&TRACE_SHOW_PROC)
683  {
684    if (traceit&TRACE_SHOW_LINENO) printf("\n");
685    printf("entering example (level %d)\n",myynest);
686  }
687  myynest++;
688
689  err=iiAllStart(pi,example,BT_example,(pi != NULL ? pi->data.s.example_lineno: 0));
690
691  killlocals(myynest);
692  myynest--;
693  si_echo=old_echo;
694  if (traceit&TRACE_SHOW_PROC)
695  {
696    if (traceit&TRACE_SHOW_LINENO) printf("\n");
697    printf("leaving  -example- (level %d)\n",myynest);
698  }
699#ifdef USE_IILOCALRING
700  if (iiLocalRing[myynest] != currRing)
701  {
702    if (iiLocalRing[myynest]!=NULL)
703    {
704      rSetHdl(rFindHdl(iiLocalRing[myynest],NULL, NULL));
705      iiLocalRing[myynest]=NULL;
706    }
707    else
708    {
709      currRingHdl=NULL;
710      currRing=NULL;
711    }
712  }
713#else /* USE_IILOCALRING */
714#endif /* USE_IILOCALRING */
715  if (NS_LRING != currRing)
716  {
717    if (NS_LRING!=NULL)
718    {
719      idhdl rh=procstack->cRingHdl;
720      if ((rh==NULL)||(IDRING(rh)!=NS_LRING))
721        rh=rFindHdl(NS_LRING,NULL, NULL);
722      rSetHdl(rh);
723    }
724    else
725    {
726      currRingHdl=NULL;
727      currRing=NULL;
728    }
729  }
730//#endif /* USE_IILOCALRING */
731  procstack->pop();
732  return err;
733}
734
735int staticdemo_mod_init(SModulFunctions*){ PrintS("init of staticdemo\n"); return (0); }
736
737#define SI_GET_BUILTIN_MOD_INIT(name) \
738  int SI_MOD_INIT(name)(SModulFunctions*); \
739  if (strcmp(libname, #name ".so") == 0) {  return SI_MOD_INIT(name); }
740
741
742SModulFunc_t
743iiGetBuiltinModInit(const char* libname)
744{
745  SI_FOREACH_BUILTIN(SI_GET_BUILTIN_MOD_INIT)
746
747  return NULL;
748}
749
750
751#undef SI_GET_BUILTIN_MOD_INIT
752
753
754/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
755BOOLEAN iiTryLoadLib(leftv v, const char *id)
756{
757  BOOLEAN LoadResult = TRUE;
758  char libnamebuf[128];
759  char *libname = (char *)omAlloc(strlen(id)+5);
760  const char *suffix[] = { "", ".lib", ".so", ".sl", NULL };
761  int i = 0;
762  // FILE *fp;
763  // package pack;
764  // idhdl packhdl;
765  lib_types LT;
766  for(i=0; suffix[i] != NULL; i++)
767  {
768    sprintf(libname, "%s%s", id, suffix[i]);
769    *libname = mytolower(*libname);
770    if((LT = type_of_LIB(libname, libnamebuf)) > LT_NOTFOUND)
771    {
772      char *s=omStrDup(libname);
773      char libnamebuf[256];
774
775      if (LT==LT_SINGULAR)
776        LoadResult = iiLibCmd(s, FALSE, FALSE,TRUE);
777      #ifdef HAVE_DYNAMIC_LOADING
778      else if ((LT==LT_ELF) || (LT==LT_HPUX))
779        LoadResult = load_modules(s,libnamebuf,FALSE);
780      #endif
781      else if (LT==LT_BUILTIN)
782      {
783        LoadResult=load_builtin(s,FALSE, iiGetBuiltinModInit(s));
784      }
785      if(!LoadResult )
786      {
787        v->name = iiConvName(libname);
788        break;
789      }
790    }
791  }
792  omFree(libname);
793  return LoadResult;
794}
795
796/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
797/* check, if library lib has already been loaded
798   if yes, writes filename of lib into where and returns TRUE,
799      no, returns FALSE
800*/
801BOOLEAN iiLocateLib(const char* lib, char* where)
802{
803  idhdl hl;
804
805  char *p;
806
807  hl = IDROOT->get("LIB", 0);
808  if (hl == NULL || (p=strstr(IDSTRING(hl), lib)) == NULL) return FALSE;
809  if ((p!=IDSTRING(hl)) && (*(p-1)!=',')) return FALSE;
810
811  if (strstr(IDSTRING(hl), ",") == NULL)
812  {
813    strcpy(where, IDSTRING(hl));
814  }
815  else
816  {
817    char* tmp = omStrDup(IDSTRING(hl));
818    char* tok = strtok(tmp, ",");
819    do
820    {
821      if (strstr(tok, lib) != NULL) break;
822      tok = strtok(NULL, ",");
823    }
824    while (tok != NULL);
825    assume(tok != NULL);
826    strcpy(where, tok);
827    omFree(tmp);
828  }
829  return TRUE;
830}
831
832BOOLEAN iiLibCmd( char *newlib, BOOLEAN autoexport, BOOLEAN tellerror, BOOLEAN force )
833{
834  char libnamebuf[128];
835  // procinfov pi;
836  // idhdl h;
837  idhdl pl;
838  // idhdl hl;
839  // long pos = 0L;
840  char *plib = iiConvName(newlib);
841  FILE * fp = feFopen( newlib, "r", libnamebuf, tellerror );
842  // int lines = 1;
843  BOOLEAN LoadResult = TRUE;
844
845  if (fp==NULL)
846  {
847    return TRUE;
848  }
849  pl = basePack->idroot->get(plib,0);
850  if (pl==NULL)
851  {
852    pl = enterid( plib,0, PACKAGE_CMD,
853                  &(basePack->idroot), TRUE );
854    IDPACKAGE(pl)->language = LANG_SINGULAR;
855    IDPACKAGE(pl)->libname=omStrDup(newlib);
856  }
857  else
858  {
859    if(IDTYP(pl)!=PACKAGE_CMD)
860    {
861      WarnS("not of type package.");
862      fclose(fp);
863      return TRUE;
864    }
865    if (!force) return FALSE;
866  }
867  LoadResult = iiLoadLIB(fp, libnamebuf, newlib, pl, autoexport, tellerror);
868  omFree((ADDRESS)newlib);
869
870  if(!LoadResult) IDPACKAGE(pl)->loaded = TRUE;
871  omFree((ADDRESS)plib);
872
873 return LoadResult;
874}
875/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
876static void iiCleanProcs(idhdl &root)
877{
878  idhdl prev=NULL;
879  loop
880  {
881    if (root==NULL) return;
882    if (IDTYP(root)==PROC_CMD)
883    {
884      procinfo *pi=(procinfo*)IDDATA(root);
885      if ((pi->language == LANG_SINGULAR)
886      && (pi->data.s.body_start == 0L))
887      {
888        // procinfo data incorrect:
889        // - no proc body can start at the beginning of the file
890        killhdl(root);
891        if (prev==NULL)
892          root=IDROOT;
893        else
894        {
895          root=prev;
896          prev=NULL;
897        }
898        continue;
899      }
900    }
901    prev=root;
902    root=IDNEXT(root);
903  }
904}
905static void iiRunInit(package p)
906{
907  idhdl h=p->idroot->get("mod_init",0);
908  if (h==NULL) return;
909  if (IDTYP(h)==PROC_CMD)
910  {
911    int save=yylineno;
912    myynest++;
913    // procinfo *pi=(procinfo*)IDDATA(h);
914    //PrintS("mod_init found\n");
915    iiMake_proc(h,p,NULL);
916    myynest--;
917    yylineno=save;
918  }
919}
920/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
921BOOLEAN iiLoadLIB(FILE *fp, const char *libnamebuf, const char*newlib,
922             idhdl pl, BOOLEAN autoexport, BOOLEAN tellerror)
923{
924  extern FILE *yylpin;
925  libstackv ls_start = library_stack;
926  lib_style_types lib_style;
927
928  yylpin = fp;
929  #if YYLPDEBUG > 1
930  print_init();
931  #endif
932  extern int lpverbose;
933  if (BVERBOSE(V_DEBUG_LIB)) lpverbose=1;
934  else lpverbose=0;
935  // yylplex sets also text_buffer
936  if (text_buffer!=NULL) *text_buffer='\0';
937  yylplex(newlib, libnamebuf, &lib_style, pl, autoexport);
938  if(yylp_errno)
939  {
940    Werror("Library %s: ERROR occured: in line %d, %d.", newlib, yylplineno,
941         current_pos(0));
942    if(yylp_errno==YYLP_BAD_CHAR)
943    {
944      Werror(yylp_errlist[yylp_errno], *text_buffer, yylplineno);
945      omFree((ADDRESS)text_buffer);
946      text_buffer=NULL;
947    }
948    else
949      Werror(yylp_errlist[yylp_errno], yylplineno);
950    Werror("Cannot load library,... aborting.");
951    reinit_yylp();
952    fclose( yylpin );
953    iiCleanProcs(IDROOT);
954    return TRUE;
955  }
956  if (BVERBOSE(V_LOAD_LIB))
957    Print( "// ** loaded %s %s\n", libnamebuf, text_buffer);
958  if( (lib_style == OLD_LIBSTYLE) && (BVERBOSE(V_LOAD_LIB)))
959  {
960    Warn( "library %s has old format. This format is still accepted,", newlib);
961    Warn( "but for functionality you may wish to change to the new");
962    Warn( "format. Please refer to the manual for further information.");
963  }
964  reinit_yylp();
965  fclose( yylpin );
966  fp = NULL;
967  iiRunInit(IDPACKAGE(pl));
968
969  {
970    libstackv ls;
971    for(ls = library_stack; (ls != NULL) && (ls != ls_start); )
972    {
973      if(ls->to_be_done)
974      {
975        ls->to_be_done=FALSE;
976        iiLibCmd(ls->get(),autoexport,tellerror,FALSE);
977        ls = ls->pop(newlib);
978      }
979    }
980#if 0
981    PrintS("--------------------\n");
982    for(ls = library_stack; ls != NULL; ls = ls->next)
983    {
984      Print("%s: LIB-stack:(%d), %s %s\n", newlib, ls->cnt, ls->get(),
985        ls->to_be_done ? "not loaded" : "loaded");
986    }
987    PrintS("--------------------\n");
988#endif
989  }
990
991  if(fp != NULL) fclose(fp);
992  return FALSE;
993}
994
995
996/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
997procinfo *iiInitSingularProcinfo(procinfov pi, const char *libname,
998              const char *procname, int line, long pos, BOOLEAN pstatic)
999{
1000  pi->libname = omStrDup(libname);
1001
1002  if( strcmp(procname,"_init")==0)
1003  {
1004    pi->procname = iiConvName(libname);
1005  }
1006  else
1007    pi->procname = omStrDup(procname);
1008  pi->language = LANG_SINGULAR;
1009  pi->ref = 1;
1010  pi->pack = NULL;
1011  pi->is_static = pstatic;
1012  pi->data.s.proc_start = pos;
1013  pi->data.s.def_end    = 0L;
1014  pi->data.s.help_start = 0L;
1015  pi->data.s.help_end   = 0L;
1016  pi->data.s.body_start = 0L;
1017  pi->data.s.body_end   = 0L;
1018  pi->data.s.example_start = 0L;
1019  pi->data.s.proc_lineno = line;
1020  pi->data.s.body_lineno = 0;
1021  pi->data.s.example_lineno = 0;
1022  pi->data.s.body = NULL;
1023  pi->data.s.help_chksum = 0;
1024  return(pi);
1025}
1026
1027#if 0
1028// TODO!?
1029procinfo *iiInitSingularProcinfo(procinfo* pi, const char *libname,
1030                                 const char *procname, int line, long pos,
1031                                 BOOLEAN pstatic /*= FALSE*/)
1032{
1033  pi->libname = (char *)malloc(strlen(libname)+1);
1034  memcpy(pi->libname, libname, strlen(libname));
1035  *(pi->libname+strlen(libname)) = '\0';
1036
1037  pi->procname = (char *)malloc(strlen(procname)+1);
1038  strcpy(pi->procname, procname/*, strlen(procname)*/);
1039  pi->language = LANG_SINGULAR;
1040  pi->ref = 1;
1041  pi->is_static = pstatic;
1042  pi->data.s.proc_start = pos;
1043  pi->data.s.def_end    = 0L;
1044  pi->data.s.help_start = 0L;
1045  pi->data.s.body_start = 0L;
1046  pi->data.s.body_end   = 0L;
1047  pi->data.s.example_start = 0L;
1048  pi->data.s.proc_lineno = line;
1049  pi->data.s.body_lineno = 0;
1050  pi->data.s.example_lineno = 0;
1051  pi->data.s.body = NULL;
1052  pi->data.s.help_chksum = 0;
1053  return(pi);
1054}
1055#endif
1056
1057/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
1058int iiAddCproc(const char *libname, const char *procname, BOOLEAN pstatic,
1059               BOOLEAN(*func)(leftv res, leftv v))
1060{
1061  procinfov pi;
1062  idhdl h;
1063
1064  #ifndef NDEBUG
1065  int dummy;
1066  if (IsCmd(procname,dummy))
1067  {
1068    Werror(">>%s< is a reserved name",procname);
1069    return 0;
1070  }
1071  #endif
1072
1073  h = enterid(procname,0, PROC_CMD, &IDROOT, TRUE);
1074  if ( h!= NULL )
1075  {
1076    pi = IDPROC(h);
1077    pi->libname = omStrDup(libname);
1078    pi->procname = omStrDup(procname);
1079    pi->language = LANG_C;
1080    pi->ref = 1;
1081    pi->is_static = pstatic;
1082    pi->data.o.function = func;
1083    return(1);
1084  }
1085  else
1086  {
1087    PrintS("iiAddCproc: failed.\n");
1088  }
1089  return(0);
1090}
1091
1092int iiAddCprocTop(const char *libname, const char *procname, BOOLEAN pstatic,
1093               BOOLEAN(*func)(leftv res, leftv v))
1094{
1095  int r=iiAddCproc(libname,procname,pstatic,func);
1096  package s=currPack;
1097  currPack=basePack;
1098  if (r) r=iiAddCproc(libname,procname,pstatic,func);
1099  currPack=s;
1100  return r;
1101}
1102
1103/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
1104#ifdef HAVE_DYNAMIC_LOADING
1105BOOLEAN load_modules(const char *newlib, char *fullname, BOOLEAN autoexport)
1106{
1107#ifdef HAVE_STATIC
1108  WerrorS("mod_init: static version can not load modules");
1109  return TRUE;
1110#else
1111/*
1112  typedef int (*fktn_t)(int(*iiAddCproc)(const char *libname, const char *procname,
1113                               BOOLEAN pstatic,
1114                               BOOLEAN(*func)(leftv res, leftv v)));
1115*/
1116  SModulFunc_t fktn;
1117  idhdl pl;
1118  char *plib = iiConvName(newlib);
1119  BOOLEAN RET=TRUE;
1120  int token;
1121  char FullName[256];
1122
1123  memset(FullName,0,256);
1124
1125  if( *fullname != '/' &&  *fullname != '.' )
1126    sprintf(FullName, "./%s", newlib);
1127  else strncpy(FullName, fullname,255);
1128
1129
1130  if(IsCmd(plib, token))
1131  {
1132    Werror("'%s' is resered identifier\n", plib);
1133    goto load_modules_end;
1134  }
1135  pl = IDROOT->get(plib,0);
1136  if (pl==NULL)
1137  {
1138    pl = enterid( plib,0, PACKAGE_CMD, &IDROOT,
1139                  TRUE );
1140    IDPACKAGE(pl)->language = LANG_C;
1141    IDPACKAGE(pl)->libname=omStrDup(newlib);
1142  }
1143  else
1144  {
1145    if(IDTYP(pl)!=PACKAGE_CMD)
1146    {
1147      Warn("not of type package.");
1148      goto load_modules_end;
1149    }
1150  }
1151  if (dynl_check_opened(FullName)) {
1152    if (BVERBOSE(V_LOAD_LIB)) Warn( "%s already loaded", fullname);
1153    return FALSE;
1154  }
1155  if((IDPACKAGE(pl)->handle=dynl_open(FullName))==(void *)NULL)
1156  {
1157    Werror("dynl_open failed:%s", dynl_error());
1158    Werror("%s not found", newlib);
1159    goto load_modules_end;
1160  }
1161  else
1162  {
1163    SModulFunctions sModulFunctions;
1164
1165    package s=currPack;
1166    currPack=IDPACKAGE(pl);
1167    fktn = (SModulFunc_t)dynl_sym(IDPACKAGE(pl)->handle, "mod_init");
1168    if( fktn!= NULL)
1169    {
1170      sModulFunctions.iiArithAddCmd = iiArithAddCmd;
1171      if (autoexport) sModulFunctions.iiAddCproc = iiAddCprocTop;
1172      else            sModulFunctions.iiAddCproc = iiAddCproc;
1173      (*fktn)(&sModulFunctions);
1174    }
1175    else Werror("mod_init: %s\n", dynl_error());
1176    if (BVERBOSE(V_LOAD_LIB)) Print( "// ** loaded %s \n", fullname);
1177    currPack->loaded=1;
1178    currPack=s;
1179  }
1180  RET=FALSE;
1181
1182  load_modules_end:
1183  return RET;
1184#endif /*STATIC */
1185}
1186#endif /* HAVE_DYNAMIC_LOADING */
1187/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
1188BOOLEAN load_builtin(const char *newlib, BOOLEAN autoexport, SModulFunc_t init)
1189{
1190  int iiAddCproc(const char *libname, const char *procname, BOOLEAN pstatic,
1191                 BOOLEAN(*func)(leftv res, leftv v));
1192/*
1193  typedef int (*fktn_t)(int(*iiAddCproc)(const char *libname, const char *procname,
1194                               BOOLEAN pstatic,
1195                               BOOLEAN(*func)(leftv res, leftv v)));
1196*/
1197  // SModulFunc_t fktn;
1198  idhdl pl;
1199  char *plib = iiConvName(newlib);
1200  // BOOLEAN RET=TRUE;
1201  // int token;
1202
1203  pl = IDROOT->get(plib,0);
1204  if (pl!=NULL)
1205  {
1206    if (BVERBOSE(V_LOAD_LIB)) Warn( "(builtin) %s already loaded", newlib);
1207    omFree(plib);
1208    return FALSE;
1209  }
1210
1211  pl = enterid( plib,0, PACKAGE_CMD, &IDROOT,
1212                TRUE );
1213  IDPACKAGE(pl)->language = LANG_C;
1214  IDPACKAGE(pl)->libname=omStrDup(newlib);
1215
1216  IDPACKAGE(pl)->handle=(void *)NULL;
1217  SModulFunctions sModulFunctions;
1218
1219  package s=currPack;
1220  currPack=IDPACKAGE(pl);
1221  if( init!= NULL)
1222  {
1223    sModulFunctions.iiArithAddCmd = iiArithAddCmd;
1224    if (autoexport) sModulFunctions.iiAddCproc = iiAddCprocTop;
1225    else            sModulFunctions.iiAddCproc = iiAddCproc;
1226    (*init)(&sModulFunctions);
1227  }
1228  if (BVERBOSE(V_LOAD_LIB)) Print( "// ** loaded (builtin) %s \n", newlib);
1229  currPack->loaded=1;
1230  currPack=s;
1231
1232  return FALSE;
1233}
1234/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
1235void module_help_main(const char *newlib,const char *help)
1236{
1237  char *plib = iiConvName(newlib);
1238  idhdl pl = basePack->idroot->get(plib,0);
1239  if ((pl==NULL)||(IDTYP(pl)!=PACKAGE_CMD))
1240    Werror(">>%s<< is not a package (trying to add package help)",plib);
1241  else
1242  {
1243    package s=currPack;
1244    currPack=IDPACKAGE(pl);
1245    idhdl h=enterid(omStrDup("info"),0,STRING_CMD,&IDROOT,FALSE);
1246    IDSTRING(h)=omStrDup(help);
1247    currPack=s;
1248  }
1249}
1250void module_help_proc(const char *newlib,const char *p, const char *help)
1251{
1252  char *plib = iiConvName(newlib);
1253  idhdl pl = basePack->idroot->get(plib,0);
1254  if ((pl==NULL)||(IDTYP(pl)!=PACKAGE_CMD))
1255    Werror(">>%s<< is not a package(trying to add help for %s)",plib,p);
1256  else
1257  {
1258    package s=currPack;
1259    currPack=IDPACKAGE(pl);
1260    char buff[256];
1261    buff[255]='\0';
1262    strncpy(buff,p,255);
1263    strncat(buff,"_help",255-strlen(p));
1264    idhdl h=enterid(omStrDup(buff),0,STRING_CMD,&IDROOT,FALSE);
1265    IDSTRING(h)=omStrDup(help);
1266    currPack=s;
1267  }
1268}
1269/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
1270
1271// loads a dynamic module from the binary path and returns a named function
1272// returns NULL, if something fails
1273void* binary_module_function(const char* newlib, const char* funcname)
1274{
1275  void* result = NULL;
1276
1277#if defined(HAVE_STATIC) || !defined(HAVE_DYNAMIC_LOADING)
1278  WerrorS("static version can not load function from dynamic modules");
1279#else
1280  const char* bin_dir = feGetResource('b');
1281  if (!bin_dir)  { return NULL; }
1282
1283  char path_name[MAXPATHLEN];
1284  sprintf(path_name, "%s%s%s.%s", bin_dir, DIR_SEPP, newlib, MODULE_SUFFIX_STRING);
1285
1286  void* openlib = dynl_open(path_name);
1287  if(!openlib)
1288  {
1289    Werror("dynl_open of %s failed:%s", path_name, dynl_error());
1290    return NULL;
1291  }
1292  result = dynl_sym(openlib, funcname);
1293  if (!result) Werror("%s: %s\n", funcname, dynl_error());
1294#endif
1295
1296  return result;
1297}
1298
1299
1300/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
1301char mytoupper(char c)
1302{
1303  if(c>=97 && c<=(97+26)) c-=32;
1304  return(c);
1305}
1306
1307char mytolower(char c)
1308{
1309  if(c>=65 && c<=(65+26)) c+=32;
1310  return(c);
1311}
1312
1313/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
1314//#if defined(WINNT)
1315//#  define  FS_SEP '\\'
1316//#else
1317//#  define FS_SEP '/'
1318//#endif
1319
1320char *iiConvName(const char *libname)
1321{
1322  char *tmpname = omStrDup(libname);
1323  char *p = strrchr(tmpname, DIR_SEP);
1324  char *r;
1325  if(p==NULL) p = tmpname;
1326  else p++;
1327  r = (char *)strchr(p, '.');
1328  if( r!= NULL) *r = '\0';
1329  r = omStrDup(p);
1330  *r = mytoupper(*r);
1331  // printf("iiConvName: '%s' '%s' => '%s'\n", libname, tmpname, r);
1332  omFree((ADDRESS)tmpname);
1333
1334  return(r);
1335}
1336
1337/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
1338#if 0 /* debug only */
1339void piShowProcList()
1340{
1341  idhdl h;
1342  procinfo *proc;
1343  char *name;
1344
1345  Print( "%-15s  %20s      %s,%s  %s,%s   %s,%s\n", "Library", "function",
1346         "line", "start", "line", "body", "line", "example");
1347  for(h = IDROOT; h != NULL; h = IDNEXT(h))
1348  {
1349    if(IDTYP(h) == PROC_CMD)
1350    {
1351      proc = IDPROC(h);
1352      if(strcmp(proc->procname, IDID(h))!=0)
1353      {
1354        name = (char *)omAlloc(strlen(IDID(h))+strlen(proc->procname)+4);
1355        sprintf(name, "%s -> %s", IDID(h), proc->procname);
1356        Print( "%d %-15s  %20s ", proc->is_static ? 1 : 0, proc->libname, name);
1357        omFree((ADDRESS)name);
1358      }
1359      else
1360        Print( "%d %-15s  %20s ", proc->is_static ? 1 : 0, proc->libname,
1361               proc->procname);
1362      if(proc->language==LANG_SINGULAR)
1363        Print("line %4d,%-5ld  %4d,%-5ld  %4d,%-5ld\n",
1364              proc->data.s.proc_lineno, proc->data.s.proc_start,
1365              proc->data.s.body_lineno, proc->data.s.body_start,
1366              proc->data.s.example_lineno, proc->data.s.example_start);
1367      else if(proc->language==LANG_C)
1368        Print("type: object\n");
1369    }
1370  }
1371}
1372#endif
1373
1374/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
1375//char *iiLineNo(char *procname, int lineno)
1376//{
1377//  char buf[256];
1378//  idhdl pn = ggetid(procname);
1379//  procinfo *pi = IDPROC(pn);
1380//
1381//  sprintf(buf, "%s %3d\0", procname, lineno);
1382//  //sprintf(buf, "%s::%s %3d\0", pi->libname, pi->procname,
1383//  //  lineno + pi->data.s.body_lineno);
1384//  return(buf);
1385//}
1386/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
1387#ifdef HAVE_LIBPARSER
1388void libstack::push(const char */*p*/, char *libn)
1389{
1390  libstackv lp;
1391  if( !iiGetLibStatus(libn))
1392  {
1393    for(lp = this;lp!=NULL;lp=lp->next)
1394    {
1395      if(strcmp(lp->get(), libn)==0) break;
1396    }
1397    if(lp==NULL)
1398    {
1399      libstackv ls = (libstack *)omAlloc0Bin(libstack_bin);
1400      ls->next = this;
1401      ls->libname = omStrDup(libn);
1402      ls->to_be_done = TRUE;
1403      if(this != NULL) ls->cnt = this->cnt+1; else ls->cnt = 0;
1404      library_stack = ls;
1405    }
1406  }
1407}
1408
1409libstackv libstack::pop(const char */*p*/)
1410{
1411  libstackv ls = this;
1412  //omFree((ADDRESS)ls->libname);
1413  library_stack = ls->next;
1414  omFreeBin((ADDRESS)ls,  libstack_bin);
1415  return(library_stack);
1416}
1417
1418#endif /* HAVE_LIBPARSER */
1419/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
Note: See TracBrowser for help on using the repository browser.