Functions | Variables
silink.cc File Reference
#include <kernel/mod2.h>
#include <omalloc/omalloc.h>
#include <misc/options.h>
#include <misc/intvec.h>
#include <reporter/si_signals.h>
#include <coeffs/numbers.h>
#include <polys/matpol.h>
#include <polys/monomials/ring.h>
#include <kernel/ideals.h>
#include <Singular/lists.h>
#include <Singular/cntrlc.h>
#include <Singular/links/ssiLink.h>
#include <Singular/links/pipeLink.h>
#include <Singular/tok.h>
#include <Singular/subexpr.h>
#include <Singular/ipid.h>
#include <Singular/links/silink.h>
#include <Singular/ipshell.h>
#include "feOpt.h"
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <Singular/links/slInit.h>

Go to the source code of this file.

Functions

static si_link_extension slTypeInit (si_link_extension s, const char *type)
 
BOOLEAN slInit (si_link l, char *istr)
 
void slCleanUp (si_link l)
 
void slKill (si_link l)
 
const char * slStatus (si_link l, const char *request)
 
BOOLEAN slSetRingDummy (si_link, ring r, BOOLEAN send)
 
BOOLEAN slOpen (si_link l, short flag, leftv h)
 
BOOLEAN slPrepClose (si_link l)
 
BOOLEAN slClose (si_link l)
 
leftv slRead (si_link l, leftv a)
 
BOOLEAN slWrite (si_link l, leftv v)
 
BOOLEAN slDump (si_link l)
 
BOOLEAN slGetDump (si_link l)
 

Variables

omBin s_si_link_extension_bin = omGetSpecBin(sizeof(s_si_link_extension))
 
omBin sip_link_bin = omGetSpecBin(sizeof(sip_link))
 
omBin ip_link_bin = omGetSpecBin(sizeof(ip_link))
 
si_link_extension si_link_root =NULL
 

Function Documentation

void slCleanUp ( si_link  l)

Definition at line 132 of file silink.cc.

133 {
134  defer_shutdown++;
135  (l->ref)--;
136  if (l->ref == 0)
137  {
138  if (SI_LINK_OPEN_P(l))
139  {
140  if (l->m->Close != NULL) l->m->Close(l);
141  }
142  if ((l->data != NULL) && (l->m->Kill != NULL)) l->m->Kill(l);
143  omFree((ADDRESS)l->name);
144  omFree((ADDRESS)l->mode);
145  memset((void *) l, 0, sizeof(ip_link));
146  }
147  defer_shutdown--;
148  if (!defer_shutdown && do_shutdown) m2_end(1);
149 }
void m2_end(int i)
Definition: misc_ip.cc:1069
void * ADDRESS
Definition: auxiliary.h:161
volatile BOOLEAN do_shutdown
Definition: cntrlc.cc:84
#define omFree(addr)
Definition: omAllocDecl.h:261
#define NULL
Definition: omList.c:10
volatile int defer_shutdown
Definition: cntrlc.cc:85
int l
Definition: cfEzgcd.cc:94
BOOLEAN slClose ( si_link  l)

Definition at line 247 of file silink.cc.

248 {
249 
250  if(! SI_LINK_OPEN_P(l))
251  return FALSE;
252 
253  defer_shutdown++;
254  BOOLEAN res = TRUE;
255  if (l->m->Close != NULL)
256  {
257  res = l->m->Close(l);
258  if (res)
259  Werror("close: Error for link of type: %s, mode: %s, name: %s",
260  l->m->type, l->mode, l->name);
261  }
262  defer_shutdown--;
263  if (!defer_shutdown && do_shutdown) m2_end(1);
265  return res;
266 }
#define FALSE
Definition: auxiliary.h:140
void m2_end(int i)
Definition: misc_ip.cc:1069
#define TRUE
Definition: auxiliary.h:144
poly res
Definition: myNF.cc:322
volatile BOOLEAN do_shutdown
Definition: cntrlc.cc:84
#define NULL
Definition: omList.c:10
volatile int defer_shutdown
Definition: cntrlc.cc:85
int BOOLEAN
Definition: auxiliary.h:131
void Werror(const char *fmt,...)
Definition: reporter.cc:199
int l
Definition: cfEzgcd.cc:94
BOOLEAN slDump ( si_link  l)

Definition at line 351 of file silink.cc.

352 {
353  BOOLEAN res;
354 
355  if(! SI_LINK_W_OPEN_P(l)) // open w ?
356  {
357  if (slOpen(l, SI_LINK_WRITE,NULL)) return TRUE;
358  }
359 
360  if(SI_LINK_W_OPEN_P(l))
361  { // now open w
362  if (l->m->Dump != NULL)
363  res = l->m->Dump(l);
364  else
365  res = TRUE;
366 
367  if (res)
368  Werror("dump: Error for link of type %s, mode: %s, name: %s",
369  l->m->type, l->mode, l->name);
370  if (!SI_LINK_R_OPEN_P(l)) slClose(l); // do not close r/w links
371  return res;
372  }
373  else
374  {
375  Werror("dump: Error to open link of type %s, mode: %s, name: %s for writing",
376  l->m->type, l->mode, l->name);
377  return TRUE;
378  }
379 }
#define TRUE
Definition: auxiliary.h:144
poly res
Definition: myNF.cc:322
#define NULL
Definition: omList.c:10
int BOOLEAN
Definition: auxiliary.h:131
void Werror(const char *fmt,...)
Definition: reporter.cc:199
int l
Definition: cfEzgcd.cc:94
BOOLEAN slGetDump ( si_link  l)

Definition at line 381 of file silink.cc.

382 {
383  BOOLEAN res;
384 
385  if(! SI_LINK_R_OPEN_P(l)) // open r ?
386  {
387  if (slOpen(l, SI_LINK_READ,NULL)) return TRUE;
388  }
389 
390  if(SI_LINK_R_OPEN_P(l))
391  { // now open r
392  if (l->m->GetDump != NULL)
393  res = l->m->GetDump(l);
394  else
395  res = TRUE;
396 
397  if (res)
398  Werror("getdump: Error for link of type %s, mode: %s, name: %s",
399  l->m->type, l->mode, l->name);
400  //res|=slClose(l);
401  return res;
402  }
403  else
404  {
405  Werror("dump: Error open link of type %s, mode: %s, name: %s for reading",
406  l->m->type, l->mode, l->name);
407  return TRUE;
408  }
409 }
#define TRUE
Definition: auxiliary.h:144
poly res
Definition: myNF.cc:322
#define NULL
Definition: omList.c:10
int BOOLEAN
Definition: auxiliary.h:131
void Werror(const char *fmt,...)
Definition: reporter.cc:199
int l
Definition: cfEzgcd.cc:94
BOOLEAN slInit ( si_link  l,
char *  istr 
)

Definition at line 53 of file silink.cc.

54 {
55  char *type = NULL, *mode = NULL, *name = NULL;
56  int i = 0, j;
57 
58  // set mode and type
59  if (istr != NULL)
60  {
61  // find the first colon char in istr
62  i = 0;
63  while (istr[i] != ':' && istr[i] != '\0') i++;
64  if (istr[i] == ':')
65  {
66  // if found, set type
67  if (i > 0)
68  {
69  istr[i] = '\0';
70  type = omStrDup(istr);
71  istr[i] = ':';
72  }
73  // and check for mode
74  j = ++i;
75  while (istr[j] != ' ' && istr[j] != '\0') j++;
76  if (j > i)
77  {
78  mode = omStrDup(&(istr[i]));
79  mode[j - i] = '\0';
80  }
81  // and for the name
82  while (istr[j] == ' '&& istr[j] != '\0') j++;
83  if (istr[j] != '\0') name = omStrDup(&(istr[j]));
84  }
85  else // no colon find -- string is entire name
86  {
87  j=0;
88  while (istr[j] == ' '&& istr[j] != '\0') j++;
89  if (istr[j] != '\0') name = omStrDup(&(istr[j]));
90  }
91  }
92 
93  // set the link extension
94  if (type != NULL)
95  {
96  si_link_extension s = si_link_root;
97  si_link_extension prev = s;
98 
99  while (strcmp(s->type, type) != 0)
100  {
101  if (s->next == NULL)
102  {
103  prev = s;
104  s = NULL;
105  break;
106  }
107  else
108  {
109  s = s->next;
110  }
111  }
112 
113  if (s != NULL)
114  l->m = s;
115  else
116  {
117  l->m = slTypeInit(prev, type);
118  }
119  omFree(type);
120  }
121  else
122  l->m = si_link_root;
123 
124  if (l->m == NULL) return TRUE;
125 
126  l->name = (name != NULL ? name : omStrDup(""));
127  l->mode = (mode != NULL ? mode : omStrDup(""));
128  l->ref = 1;
129  return FALSE;
130 }
const CanonicalForm int s
Definition: facAbsFact.cc:55
#define FALSE
Definition: auxiliary.h:140
#define TRUE
Definition: auxiliary.h:144
int j
Definition: myNF.cc:70
#define omFree(addr)
Definition: omAllocDecl.h:261
int i
Definition: cfEzgcd.cc:123
char name(const Variable &v)
Definition: factory.h:178
#define NULL
Definition: omList.c:10
int l
Definition: cfEzgcd.cc:94
#define omStrDup(s)
Definition: omAllocDecl.h:263
void slKill ( si_link  l)

Definition at line 151 of file silink.cc.

152 {
153  defer_shutdown++;
154  slCleanUp(l);
155  if ((l!=NULL) &&(l->ref == 0))
157  defer_shutdown--;
158  if (!defer_shutdown && do_shutdown) m2_end(1);
159 }
void m2_end(int i)
Definition: misc_ip.cc:1069
void * ADDRESS
Definition: auxiliary.h:161
volatile BOOLEAN do_shutdown
Definition: cntrlc.cc:84
#define NULL
Definition: omList.c:10
volatile int defer_shutdown
Definition: cntrlc.cc:85
#define omFreeBin(addr, bin)
Definition: omAllocDecl.h:259
int l
Definition: cfEzgcd.cc:94
BOOLEAN slOpen ( si_link  l,
short  flag,
leftv  h 
)

Definition at line 199 of file silink.cc.

200 {
201  BOOLEAN res = TRUE;
202  if (l!=NULL)
203  {
204 
205  if (l->m == NULL) slInit(l, ((char*)""));
206 
207  if (feOptValue(FE_OPT_NO_SHELL)) {WerrorS("no links allowed");return TRUE;}
208 
209  const char *c="_";;
210  if (h!=NULL) c=h->Name();
211 
212  if (SI_LINK_OPEN_P(l))
213  {
214  Warn("open: link of type: %s, mode: %s, name: %s is already open",
215  l->m->type, l->mode, l->name);
216  return FALSE;
217  }
218  else if (l->m->Open != NULL)
219  {
220  res = l->m->Open(l, flag, h);
221  if (res)
222  Werror("open: Error for link %s of type: %s, mode: %s, name: %s",
223  c, l->m->type, l->mode, l->name);
224  }
225  if (l->m->SetRing==NULL) l->m->SetRing=slSetRingDummy;
226  }
227  return res;
228 }
static void * feOptValue(feOptIndex opt)
Definition: feOpt.h:40
#define FALSE
Definition: auxiliary.h:140
#define TRUE
Definition: auxiliary.h:144
void WerrorS(const char *s)
Definition: feFopen.cc:24
const char * Name()
Definition: subexpr.h:121
poly res
Definition: myNF.cc:322
#define NULL
Definition: omList.c:10
int BOOLEAN
Definition: auxiliary.h:131
void Werror(const char *fmt,...)
Definition: reporter.cc:199
int l
Definition: cfEzgcd.cc:94
#define Warn
Definition: emacs.cc:80
BOOLEAN slPrepClose ( si_link  l)

Definition at line 230 of file silink.cc.

231 {
232 
233  if(! SI_LINK_OPEN_P(l))
234  return FALSE;
235 
236  BOOLEAN res = TRUE;
237  if (l->m->PrepClose != NULL)
238  {
239  res = l->m->PrepClose(l);
240  if (res)
241  Werror("close: Error for link of type: %s, mode: %s, name: %s",
242  l->m->type, l->mode, l->name);
243  }
244  return res;
245 }
#define FALSE
Definition: auxiliary.h:140
#define TRUE
Definition: auxiliary.h:144
poly res
Definition: myNF.cc:322
#define NULL
Definition: omList.c:10
int BOOLEAN
Definition: auxiliary.h:131
void Werror(const char *fmt,...)
Definition: reporter.cc:199
int l
Definition: cfEzgcd.cc:94
leftv slRead ( si_link  l,
leftv  a 
)

Definition at line 268 of file silink.cc.

269 {
270  leftv v = NULL;
271  if( ! SI_LINK_R_OPEN_P(l)) // open r ?
272  {
273 #ifdef HAVE_DBM
274 #ifdef USE_GDBM
275  if (! SI_LINK_CLOSE_P(l))
276  {
277  if (slClose(l)) return NULL;
278  }
279 #endif
280 #endif
281  if (slOpen(l, SI_LINK_READ,NULL)) return NULL;
282  }
283 
284  if (SI_LINK_R_OPEN_P(l))
285  { // open r
286  if (a==NULL)
287  {
288  if (l->m->Read != NULL) v = l->m->Read(l);
289  }
290  else
291  {
292  if (l->m->Read2 != NULL) v = l->m->Read2(l,a);
293  }
294  }
295  else
296  {
297  Werror("read: Error to open link of type %s, mode: %s, name: %s for reading",
298  l->m->type, l->mode, l->name);
299  return NULL;
300  }
301 
302  // here comes the eval:
303  if (v != NULL)
304  {
305  if (v->Eval() && !errorreported)
306  WerrorS("eval: failed");
307  }
308  else
309  Werror("read: Error for link of type %s, mode: %s, name: %s",
310  l->m->type, l->mode, l->name);
311  return v;
312 }
Class used for (list of) interpreter objects.
Definition: subexpr.h:83
int Eval()
Definition: subexpr.cc:1741
void WerrorS(const char *s)
Definition: feFopen.cc:24
short errorreported
Definition: feFopen.cc:23
const Variable & v
< [in] a sqrfree bivariate poly
Definition: facBivar.h:37
#define NULL
Definition: omList.c:10
void Werror(const char *fmt,...)
Definition: reporter.cc:199
int l
Definition: cfEzgcd.cc:94
BOOLEAN slSetRingDummy ( si_link  ,
ring  r,
BOOLEAN  send 
)

Definition at line 194 of file silink.cc.

195 {
196  if (currRing!=r) rChangeCurrRing(r);
197  return FALSE;
198 }
#define FALSE
Definition: auxiliary.h:140
ring currRing
Widely used global variable which specifies the current polynomial ring for Singular interpreter and ...
Definition: polys.cc:12
const ring r
Definition: syzextra.cc:208
void rChangeCurrRing(ring r)
Definition: polys.cc:14
const char* slStatus ( si_link  l,
const char *  request 
)

Definition at line 161 of file silink.cc.

162 {
163  if (l == NULL) return "empty link";
164  else if (l->m == NULL) return "unknown link type";
165  else if (strcmp(request, "type") == 0) return l->m->type;
166  else if (strcmp(request, "mode") == 0) return l->mode;
167  else if (strcmp(request, "name") == 0) return l->name;
168  else if (strcmp(request, "exists") ==0)
169  {
170  struct stat buf;
171  if (si_lstat(l->name,&buf)==0) return "yes";
172  else return "no";
173  }
174  else if (strcmp(request, "open") == 0)
175  {
176  if (SI_LINK_OPEN_P(l)) return "yes";
177  else return "no";
178  }
179  else if (strcmp(request, "openread") == 0)
180  {
181  if (SI_LINK_R_OPEN_P(l)) return "yes";
182  else return "no";
183  }
184  else if (strcmp(request, "openwrite") == 0)
185  {
186  if (SI_LINK_W_OPEN_P(l)) return "yes";
187  else return "no";
188  }
189  else if (l->m->Status == NULL) return "unknown status request";
190  else return l->m->Status(l, request);
191 }
int status int void * buf
Definition: si_signals.h:59
#define NULL
Definition: omList.c:10
int l
Definition: cfEzgcd.cc:94
static si_link_extension slTypeInit ( si_link_extension  s,
const char *  type 
)
static

Definition at line 415 of file silink.cc.

416 {
417  assume(s != NULL);
418  s->next = NULL;
419  si_link_extension ns = (si_link_extension)omAlloc0Bin(s_si_link_extension_bin);
420 
421  if (0)
422  ; // dummy
423 #ifdef HAVE_DBM
424  else if (strcmp(type, "DBM") == 0)
425  s->next = slInitDBMExtension(ns);
426 #endif
427 #if 1
428  else if (strcmp(type, "ssi") == 0)
429  s->next = slInitSsiExtension(ns);
430 #endif
431 #if 1
432  else if (strcmp(type, "|") == 0)
433  s->next = slInitPipeExtension(ns);
434 #endif
435  else
436  {
437  Warn("Found unknown link type: %s", type);
438  Warn("Use default link type: %s", si_link_root->type);
440  return si_link_root;
441  }
442 
443  if (s->next == NULL)
444  {
445  Werror("Can not initialize link type %s", type);
447  return NULL;
448  }
449  return s->next;
450 }
const CanonicalForm int s
Definition: facAbsFact.cc:55
#define assume(x)
Definition: mod2.h:405
#define omAlloc0Bin(bin)
Definition: omAllocDecl.h:206
#define NULL
Definition: omList.c:10
si_link_extension slInitDBMExtension(si_link_extension s)
#define omFreeBin(addr, bin)
Definition: omAllocDecl.h:259
void Werror(const char *fmt,...)
Definition: reporter.cc:199
#define Warn
Definition: emacs.cc:80
BOOLEAN slWrite ( si_link  l,
leftv  v 
)

Definition at line 314 of file silink.cc.

315 {
316  BOOLEAN res;
317 
318  if(! SI_LINK_W_OPEN_P(l)) // open w ?
319  {
320 #ifdef HAVE_DBM
321 #ifdef USE_GDBM
322  if (! SI_LINK_CLOSE_P(l))
323  {
324  if (slClose(l)) return TRUE;
325  }
326 #endif
327 #endif
328  if (slOpen(l, SI_LINK_WRITE,NULL)) return TRUE;
329  }
330 
331  if (SI_LINK_W_OPEN_P(l))
332  { // now open w
333  if (l->m->Write != NULL)
334  res = l->m->Write(l,v);
335  else
336  res = TRUE;
337 
338  if (res)
339  Werror("write: Error for link of type %s, mode: %s, name: %s",
340  l->m->type, l->mode, l->name);
341  return res;
342  }
343  else
344  {
345  Werror("write: Error to open link of type %s, mode: %s, name: %s for writing",
346  l->m->type, l->mode, l->name);
347  return TRUE;
348  }
349 }
#define TRUE
Definition: auxiliary.h:144
poly res
Definition: myNF.cc:322
#define NULL
Definition: omList.c:10
int BOOLEAN
Definition: auxiliary.h:131
void Werror(const char *fmt,...)
Definition: reporter.cc:199
int l
Definition: cfEzgcd.cc:94

Variable Documentation

omBin ip_link_bin = omGetSpecBin(sizeof(ip_link))

Definition at line 47 of file silink.cc.

omBin s_si_link_extension_bin = omGetSpecBin(sizeof(s_si_link_extension))

Definition at line 45 of file silink.cc.

si_link_extension si_link_root =NULL

Definition at line 51 of file silink.cc.

omBin sip_link_bin = omGetSpecBin(sizeof(sip_link))

Definition at line 46 of file silink.cc.