1 | /**************************************** |
---|
2 | * Computer Algebra System SINGULAR * |
---|
3 | ****************************************/ |
---|
4 | |
---|
5 | /* |
---|
6 | * ABSTRACT: general interface to links |
---|
7 | */ |
---|
8 | |
---|
9 | #include <kernel/mod2.h> |
---|
10 | |
---|
11 | #include <omalloc/omalloc.h> |
---|
12 | #include <misc/options.h> |
---|
13 | #include <misc/intvec.h> |
---|
14 | #include <reporter/si_signals.h> |
---|
15 | #include <coeffs/numbers.h> |
---|
16 | |
---|
17 | #include <polys/matpol.h> |
---|
18 | #include <polys/monomials/ring.h> |
---|
19 | |
---|
20 | #include <kernel/ideals.h> |
---|
21 | |
---|
22 | #include <Singular/lists.h> |
---|
23 | #include <Singular/cntrlc.h> |
---|
24 | #include <Singular/links/ssiLink.h> |
---|
25 | #include <Singular/links/pipeLink.h> |
---|
26 | #include <Singular/tok.h> |
---|
27 | #include <Singular/subexpr.h> |
---|
28 | #include <Singular/ipid.h> |
---|
29 | #include <Singular/links/silink.h> |
---|
30 | #include <Singular/ipshell.h> |
---|
31 | #include "feOpt.h" |
---|
32 | |
---|
33 | #include <stdio.h> |
---|
34 | #include <string.h> |
---|
35 | #include <sys/types.h> |
---|
36 | #include <sys/stat.h> |
---|
37 | #include <unistd.h> |
---|
38 | |
---|
39 | // #ifdef HAVE_DBM |
---|
40 | // #ifdef __CYGWIN__ |
---|
41 | // #define USE_GDBM |
---|
42 | // #endif |
---|
43 | // #endif |
---|
44 | |
---|
45 | omBin s_si_link_extension_bin = omGetSpecBin(sizeof(s_si_link_extension)); |
---|
46 | omBin sip_link_bin = omGetSpecBin(sizeof(sip_link)); |
---|
47 | omBin ip_link_bin = omGetSpecBin(sizeof(ip_link)); |
---|
48 | |
---|
49 | /* ====================================================================== */ |
---|
50 | static si_link_extension slTypeInit(si_link_extension s, const char* type); |
---|
51 | si_link_extension si_link_root=NULL; |
---|
52 | |
---|
53 | BOOLEAN slInit(si_link l, char *istr) |
---|
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 | } |
---|
131 | |
---|
132 | void slCleanUp(si_link l) |
---|
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 | } |
---|
150 | |
---|
151 | void slKill(si_link l) |
---|
152 | { |
---|
153 | defer_shutdown++; |
---|
154 | slCleanUp(l); |
---|
155 | if ((l!=NULL) &&(l->ref == 0)) |
---|
156 | omFreeBin((ADDRESS)l, ip_link_bin); |
---|
157 | defer_shutdown--; |
---|
158 | if (!defer_shutdown && do_shutdown) m2_end(1); |
---|
159 | } |
---|
160 | |
---|
161 | const char* slStatus(si_link l, const char *request) |
---|
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 | } |
---|
192 | |
---|
193 | //-------------------------------------------------------------------------- |
---|
194 | BOOLEAN slSetRingDummy(si_link, ring r, BOOLEAN send) |
---|
195 | { |
---|
196 | if (currRing!=r) rChangeCurrRing(r); |
---|
197 | return FALSE; |
---|
198 | } |
---|
199 | BOOLEAN slOpen(si_link l, short flag, leftv h) |
---|
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 | } |
---|
229 | |
---|
230 | BOOLEAN slPrepClose(si_link l) |
---|
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 | } |
---|
246 | |
---|
247 | BOOLEAN slClose(si_link l) |
---|
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); |
---|
264 | return res; |
---|
265 | } |
---|
266 | |
---|
267 | leftv slRead(si_link l, leftv a) |
---|
268 | { |
---|
269 | leftv v = NULL; |
---|
270 | if( ! SI_LINK_R_OPEN_P(l)) // open r ? |
---|
271 | { |
---|
272 | #ifdef HAVE_DBM |
---|
273 | #ifdef USE_GDBM |
---|
274 | if (! SI_LINK_CLOSE_P(l)) |
---|
275 | { |
---|
276 | if (slClose(l)) return NULL; |
---|
277 | } |
---|
278 | #endif |
---|
279 | #endif |
---|
280 | if (slOpen(l, SI_LINK_READ,NULL)) return NULL; |
---|
281 | } |
---|
282 | |
---|
283 | if (SI_LINK_R_OPEN_P(l)) |
---|
284 | { // open r |
---|
285 | if (a==NULL) |
---|
286 | { |
---|
287 | if (l->m->Read != NULL) v = l->m->Read(l); |
---|
288 | } |
---|
289 | else |
---|
290 | { |
---|
291 | if (l->m->Read2 != NULL) v = l->m->Read2(l,a); |
---|
292 | } |
---|
293 | } |
---|
294 | else |
---|
295 | { |
---|
296 | Werror("read: Error to open link of type %s, mode: %s, name: %s for reading", |
---|
297 | l->m->type, l->mode, l->name); |
---|
298 | return NULL; |
---|
299 | } |
---|
300 | |
---|
301 | // here comes the eval: |
---|
302 | if (v != NULL) |
---|
303 | { |
---|
304 | if (v->Eval() && !errorreported) |
---|
305 | WerrorS("eval: failed"); |
---|
306 | } |
---|
307 | else |
---|
308 | Werror("read: Error for link of type %s, mode: %s, name: %s", |
---|
309 | l->m->type, l->mode, l->name); |
---|
310 | return v; |
---|
311 | } |
---|
312 | |
---|
313 | BOOLEAN slWrite(si_link l, leftv v) |
---|
314 | { |
---|
315 | BOOLEAN res; |
---|
316 | |
---|
317 | if(! SI_LINK_W_OPEN_P(l)) // open w ? |
---|
318 | { |
---|
319 | #ifdef HAVE_DBM |
---|
320 | #ifdef USE_GDBM |
---|
321 | if (! SI_LINK_CLOSE_P(l)) |
---|
322 | { |
---|
323 | if (slClose(l)) return TRUE; |
---|
324 | } |
---|
325 | #endif |
---|
326 | #endif |
---|
327 | if (slOpen(l, SI_LINK_WRITE,NULL)) return TRUE; |
---|
328 | } |
---|
329 | |
---|
330 | if (SI_LINK_W_OPEN_P(l)) |
---|
331 | { // now open w |
---|
332 | if (l->m->Write != NULL) |
---|
333 | res = l->m->Write(l,v); |
---|
334 | else |
---|
335 | res = TRUE; |
---|
336 | |
---|
337 | if (res) |
---|
338 | Werror("write: Error for link of type %s, mode: %s, name: %s", |
---|
339 | l->m->type, l->mode, l->name); |
---|
340 | return res; |
---|
341 | } |
---|
342 | else |
---|
343 | { |
---|
344 | Werror("write: Error to open link of type %s, mode: %s, name: %s for writing", |
---|
345 | l->m->type, l->mode, l->name); |
---|
346 | return TRUE; |
---|
347 | } |
---|
348 | } |
---|
349 | |
---|
350 | BOOLEAN slDump(si_link l) |
---|
351 | { |
---|
352 | BOOLEAN res; |
---|
353 | |
---|
354 | if(! SI_LINK_W_OPEN_P(l)) // open w ? |
---|
355 | { |
---|
356 | if (slOpen(l, SI_LINK_WRITE,NULL)) return TRUE; |
---|
357 | } |
---|
358 | |
---|
359 | if(SI_LINK_W_OPEN_P(l)) |
---|
360 | { // now open w |
---|
361 | if (l->m->Dump != NULL) |
---|
362 | res = l->m->Dump(l); |
---|
363 | else |
---|
364 | res = TRUE; |
---|
365 | |
---|
366 | if (res) |
---|
367 | Werror("dump: Error for link of type %s, mode: %s, name: %s", |
---|
368 | l->m->type, l->mode, l->name); |
---|
369 | if (!SI_LINK_R_OPEN_P(l)) slClose(l); // do not close r/w links |
---|
370 | return res; |
---|
371 | } |
---|
372 | else |
---|
373 | { |
---|
374 | Werror("dump: Error to open link of type %s, mode: %s, name: %s for writing", |
---|
375 | l->m->type, l->mode, l->name); |
---|
376 | return TRUE; |
---|
377 | } |
---|
378 | } |
---|
379 | |
---|
380 | BOOLEAN slGetDump(si_link l) |
---|
381 | { |
---|
382 | BOOLEAN res; |
---|
383 | |
---|
384 | if(! SI_LINK_R_OPEN_P(l)) // open r ? |
---|
385 | { |
---|
386 | if (slOpen(l, SI_LINK_READ,NULL)) return TRUE; |
---|
387 | } |
---|
388 | |
---|
389 | if(SI_LINK_R_OPEN_P(l)) |
---|
390 | { // now open r |
---|
391 | if (l->m->GetDump != NULL) |
---|
392 | res = l->m->GetDump(l); |
---|
393 | else |
---|
394 | res = TRUE; |
---|
395 | |
---|
396 | if (res) |
---|
397 | Werror("getdump: Error for link of type %s, mode: %s, name: %s", |
---|
398 | l->m->type, l->mode, l->name); |
---|
399 | //res|=slClose(l); |
---|
400 | return res; |
---|
401 | } |
---|
402 | else |
---|
403 | { |
---|
404 | Werror("dump: Error open link of type %s, mode: %s, name: %s for reading", |
---|
405 | l->m->type, l->mode, l->name); |
---|
406 | return TRUE; |
---|
407 | } |
---|
408 | } |
---|
409 | |
---|
410 | /*------------Initialization at Start-up time------------------------*/ |
---|
411 | |
---|
412 | #include <Singular/links/slInit.h> |
---|
413 | |
---|
414 | static si_link_extension slTypeInit(si_link_extension s, const char* type) |
---|
415 | { |
---|
416 | assume(s != NULL); |
---|
417 | s->next = NULL; |
---|
418 | si_link_extension ns = (si_link_extension)omAlloc0Bin(s_si_link_extension_bin); |
---|
419 | |
---|
420 | if (0) |
---|
421 | ; // dummy |
---|
422 | #ifdef HAVE_DBM |
---|
423 | else if (strcmp(type, "DBM") == 0) |
---|
424 | s->next = slInitDBMExtension(ns); |
---|
425 | #endif |
---|
426 | #if 1 |
---|
427 | else if (strcmp(type, "ssi") == 0) |
---|
428 | s->next = slInitSsiExtension(ns); |
---|
429 | #endif |
---|
430 | #if 1 |
---|
431 | else if (strcmp(type, "|") == 0) |
---|
432 | s->next = slInitPipeExtension(ns); |
---|
433 | #endif |
---|
434 | else |
---|
435 | { |
---|
436 | Warn("Found unknown link type: %s", type); |
---|
437 | Warn("Use default link type: %s", si_link_root->type); |
---|
438 | omFreeBin(ns, s_si_link_extension_bin); |
---|
439 | return si_link_root; |
---|
440 | } |
---|
441 | |
---|
442 | if (s->next == NULL) |
---|
443 | { |
---|
444 | Werror("Can not initialize link type %s", type); |
---|
445 | omFreeBin(ns, s_si_link_extension_bin); |
---|
446 | return NULL; |
---|
447 | } |
---|
448 | return s->next; |
---|
449 | } |
---|
450 | |
---|