1 | #ifndef OUTPUT_H |
---|
2 | #define OUTPUT_H |
---|
3 | /**************************************** |
---|
4 | * Computer Algebra System SINGULAR * |
---|
5 | ****************************************/ |
---|
6 | /* |
---|
7 | * ABSTRACT: basic output |
---|
8 | */ |
---|
9 | #include <stdio.h> |
---|
10 | #include <string.h> |
---|
11 | #include <misc/auxiliary.h> |
---|
12 | |
---|
13 | extern char* feErrors; |
---|
14 | extern int feErrorsLen; |
---|
15 | extern FILE* feProtFile; |
---|
16 | extern int pagelength, colmax; |
---|
17 | extern int yy_blocklineno; |
---|
18 | extern int yy_noeof; |
---|
19 | extern const char feNotImplemented[]; |
---|
20 | extern BOOLEAN errorreported; |
---|
21 | extern int feProt; |
---|
22 | extern BOOLEAN feWarn; |
---|
23 | extern BOOLEAN feOut; |
---|
24 | extern int traceit ; |
---|
25 | #define TRACE_SHOW_PROC 1 |
---|
26 | #define TRACE_SHOW_LINENO 2 |
---|
27 | #define TRACE_SHOW_LINE 4 |
---|
28 | #define TRACE_SHOW_RINGS 8 |
---|
29 | #define TRACE_SHOW_LINE1 16 |
---|
30 | #define TRACE_BREAKPOINT 32 |
---|
31 | #define TRACE_TMP_BREAKPOINT 64 |
---|
32 | |
---|
33 | #define PROT_NONE 0 |
---|
34 | #define PROT_I 1 |
---|
35 | #define PROT_O 2 |
---|
36 | #define PROT_IO 3 |
---|
37 | |
---|
38 | /* the C-part: */ |
---|
39 | #define mflush() fflush(stdout) |
---|
40 | |
---|
41 | #ifdef __cplusplus |
---|
42 | extern "C" { |
---|
43 | #endif |
---|
44 | |
---|
45 | void Werror(const char *fmt, ...) __attribute__((format(printf,1,2))); |
---|
46 | void WerrorS(const char *s); |
---|
47 | void WarnS(const char *s); |
---|
48 | void Print(const char* fmt, ...) __attribute__((format(printf,1,2))); |
---|
49 | /* Print should not produce more than strlen(fmt)+510 characters! */ |
---|
50 | |
---|
51 | void PrintNSpaces(const int n); |
---|
52 | void PrintLn(); |
---|
53 | void PrintS(const char* s); |
---|
54 | |
---|
55 | #ifdef __cplusplus |
---|
56 | } |
---|
57 | /* the C++-part: */ |
---|
58 | |
---|
59 | char * StringAppend(const char *fmt, ...); |
---|
60 | char * StringAppendS(const char *s); |
---|
61 | char * StringSetS(const char* s); |
---|
62 | void Warn(const char *fmt, ...); |
---|
63 | |
---|
64 | const char * eati(const char *s, int *i); |
---|
65 | |
---|
66 | // Prints resources into string with StringAppend, etc |
---|
67 | void feStringAppendResources(int warn = -1); |
---|
68 | #endif /* c++ only */ |
---|
69 | |
---|
70 | /* everything in between calls to these procedures is printed into a string |
---|
71 | * which is returned by SprintEnd() |
---|
72 | * Shall ONLY be used for a temporary redirection of the standard output |
---|
73 | * (i.e. if Singular runs as a server) |
---|
74 | */ |
---|
75 | void SPrintStart(); |
---|
76 | char* SPrintEnd(); |
---|
77 | |
---|
78 | /* error reporting */ |
---|
79 | #ifdef __cplusplus |
---|
80 | extern "C" |
---|
81 | { |
---|
82 | #endif |
---|
83 | extern void (*WerrorS_callback)(const char *s); |
---|
84 | extern int dReportError(const char* fmt, ...); |
---|
85 | #define dReportBug(s) \ |
---|
86 | dReportError("Bug reported: %s\n occured at %s,%d\n", s, __FILE__, __LINE__) |
---|
87 | |
---|
88 | // this is just a dummy procedure which is called after the error |
---|
89 | // has been reported. Within the debugger, set a breakpoint on this |
---|
90 | // proc. |
---|
91 | extern void dErrorBreak(); |
---|
92 | #ifdef __cplusplus |
---|
93 | } |
---|
94 | #endif |
---|
95 | |
---|
96 | #ifndef HAVE_ASSUME |
---|
97 | #define assume(x) ((void) 0) |
---|
98 | #define r_assume(x) ((void) 0) |
---|
99 | #else /* ! HAVE_ASSUME */ |
---|
100 | |
---|
101 | #define assume_violation(s,f,l) \ |
---|
102 | dReportError("assume violation at %s:%d condition: %s", f,l,s) |
---|
103 | |
---|
104 | #define assume(x) _assume(x, __FILE__, __LINE__) |
---|
105 | #define r_assume(x) _r_assume(x, __FILE__, __LINE__) |
---|
106 | |
---|
107 | #define _assume(x, f, l) \ |
---|
108 | do \ |
---|
109 | { \ |
---|
110 | if (! (x)) \ |
---|
111 | { \ |
---|
112 | assume_violation(#x, f, l); \ |
---|
113 | } \ |
---|
114 | } \ |
---|
115 | while (0) |
---|
116 | |
---|
117 | #define _r_assume(x, f, l) \ |
---|
118 | do \ |
---|
119 | { \ |
---|
120 | if (! (x)) \ |
---|
121 | { \ |
---|
122 | assume_violation(#x, f, l); \ |
---|
123 | return 0; \ |
---|
124 | } \ |
---|
125 | } \ |
---|
126 | while (0) |
---|
127 | #endif /* HAVE_ASSUME */ |
---|
128 | |
---|
129 | #endif /* ifndef OUTPUT_H */ |
---|