forked from manojgudi/sciscipy-1.0.0
-
Notifications
You must be signed in to change notification settings - Fork 1
/
util.c
148 lines (121 loc) · 2.73 KB
/
util.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#include "Python.h"
#include "util.h"
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include "api_scilab.h"
const int sci_max_len = 1024 ;
static const char* SCI_ETC_FILE = "/etc/sciscilab" ;
/** Return the scilab type
*
* Returns the scilab type of the scilab variable name
*
* */
int read_sci_type(char *name)
{
char job[BUFSIZE] ;
int m, n ;
double type[1] ;
SciErr sciErr;
snprintf(job, BUFSIZE, "_tmp_value_ = type(%s);", name) ;
SendScilabJob(job) ;
sciErr = readNamedMatrixOfDouble(pvApiCtx, "_tmp_value_", &m, &n, NULL);
if (sciErr.iErr)
{
printError(&sciErr, 0);
}
if (m*n != 1)
{
return -1 ;
}
sciErr = readNamedMatrixOfDouble(pvApiCtx, "_tmp_value_", &m, &n, &type[0]);
if (sciErr.iErr)
{
printError(&sciErr, 0);
}
return (int) type[0] ;
} ;
/** Check if a matrix is real or not
*
* Returns 1 if the matrix is real
*
*/
int is_real(char *name)
{
return !isNamedVarComplex(pvApiCtx, name);
}
void sci_debug(const char *format, ...)
{
#if SCIDEBUG == 1
va_list argp ;
va_start(argp, format) ;
vprintf(format, argp) ;
va_end(argp) ;
#endif
}
void sci_error(const char *format, ...)
{
va_list argp ;
va_start(argp, format) ;
vprintf(format, argp) ;
va_end(argp) ;
}
/** Put a Python object in a list
*/
PyObject* create_list(PyObject *obj)
{
PyObject* new_list ;
new_list = PyList_New(1) ;
PyList_SET_ITEM(new_list, 0, obj) ;
return new_list ;
} ;
/** Return the root directory of scilab
Tries to open a file SCI_ETC_FILE and looks
for a line SCI=where/is/scilab_root
and return where/is/scilab_root
sci must point to a big enough allocated space
*/
char *get_SCI(char *sci)
{
FILE* fd = NULL ;
char var[sci_max_len] ;
*sci = '\0' ;
fd = fopen(SCI_ETC_FILE, "r") ;
if (!fd)
{
return sci;
}
else
while (!feof(fd))
{
char *str = fgets(var, sci_max_len, fd) ;
if (str == NULL)
{
goto finally ;
}
var[sci_max_len - 1] = '\0' ;
if (strncmp(var, "SCI", 3) == 0)
{
char *ptr ;
sci = &var[3] ;
while (*sci == ' ' || *sci == '=' )
{
sci++ ;
}
ptr = sci ;
while (*ptr != '\0')
if (*ptr == ' ' || *ptr == '\n')
{
*ptr = '\0' ;
}
else
{
ptr++ ;
}
goto finally ;
}
}
finally:
fclose(fd) ;
return sci ;
}