-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglpenv01.c
235 lines (224 loc) · 7.25 KB
/
glpenv01.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/* glpenv01.c (environment initialization/termination) */
/***********************************************************************
* This code is part of GLPK (GNU Linear Programming Kit).
*
* Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
* 2009, 2010, 2011, 2013 Andrew Makhorin, Department for Applied
* Informatics, Moscow Aviation Institute, Moscow, Russia. All rights
* reserved. E-mail: <[email protected]>.
*
* GLPK is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GLPK is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GLPK. If not, see <http://www.gnu.org/licenses/>.
***********************************************************************/
#include "glpapi.h"
/***********************************************************************
* NAME
*
* glp_init_env - initialize GLPK environment
*
* SYNOPSIS
*
* int glp_init_env(void);
*
* DESCRIPTION
*
* The routine glp_init_env initializes the GLPK environment. Normally
* the application program does not need to call this routine, because
* it is called automatically on the first call to any API routine.
*
* RETURNS
*
* The routine glp_init_env returns one of the following codes:
*
* 0 - initialization successful;
* 1 - environment has been already initialized;
* 2 - initialization failed (insufficient memory);
* 3 - initialization failed (unsupported programming model). */
int glp_init_env(void)
{ ENV *env;
int ok;
/* check if the programming model is supported */
ok = (CHAR_BIT == 8 && sizeof(char) == 1 &&
sizeof(short) == 2 && sizeof(int) == 4 &&
(sizeof(void *) == 4 || sizeof(void *) == 8));
if (!ok) return 3;
/* check if the environment is already initialized */
if (tls_get_ptr() != NULL) return 1;
/* allocate and initialize the environment block */
env = malloc(sizeof(ENV));
if (env == NULL) return 2;
env->magic = ENV_MAGIC;
sprintf(env->version, "%d.%d",
GLP_MAJOR_VERSION, GLP_MINOR_VERSION);
env->term_buf = malloc(TERM_BUF_SIZE);
if (env->term_buf == NULL)
{ free(env);
return 2;
}
env->term_out = GLP_ON;
env->term_hook = NULL;
env->term_info = NULL;
env->tee_file = NULL;
env->err_file = "";
env->err_line = 0;
env->err_hook = NULL;
env->err_info = NULL;
#if 1 /* 16/II-2012 */
env->mem_limit = SIZE_T_MAX;
env->mem_ptr = NULL;
env->mem_count = env->mem_cpeak = 0;
env->mem_total = env->mem_tpeak = (size_t)0;
#endif
env->file_ptr = NULL;
env->ioerr_msg = malloc(IOERR_MSG_SIZE);
if (env->ioerr_msg == NULL)
{ free(env->term_buf);
free(env);
return 2;
}
strcpy(env->ioerr_msg, "No error");
env->h_odbc = env->h_mysql = NULL;
/* save pointer to the environment block */
tls_set_ptr(env);
/* initialization successful */
return 0;
}
/***********************************************************************
* NAME
*
* get_env_ptr - retrieve pointer to environment block
*
* SYNOPSIS
*
* #include "glpenv.h"
* ENV *get_env_ptr(void);
*
* DESCRIPTION
*
* The routine get_env_ptr retrieves and returns a pointer to the GLPK
* environment block.
*
* If the GLPK environment has not been initialized yet, the routine
* performs initialization. If initialization fails, the routine prints
* an error message to stderr and terminates the program.
*
* RETURNS
*
* The routine returns a pointer to the environment block. */
ENV *get_env_ptr(void)
{ ENV *env = tls_get_ptr();
/* check if the environment has been initialized */
if (env == NULL)
{ /* not initialized yet; perform initialization */
if (glp_init_env() != 0)
{ /* initialization failed; display an error message */
fprintf(stderr, "GLPK initialization failed\n");
fflush(stderr);
/* and abnormally terminate the program */
abort();
}
/* initialization successful; retrieve the pointer */
env = tls_get_ptr();
}
/* check if the environment block is valid */
if (env->magic != ENV_MAGIC)
{ fprintf(stderr, "Invalid GLPK environment\n");
fflush(stderr);
abort();
}
return env;
}
/***********************************************************************
* NAME
*
* glp_version - determine library version
*
* SYNOPSIS
*
* const char *glp_version(void);
*
* RETURNS
*
* The routine glp_version returns a pointer to a null-terminated
* character string, which specifies the version of the GLPK library in
* the form "X.Y", where X is the major version number, and Y is the
* minor version number, for example, "4.16". */
const char *glp_version(void)
{ ENV *env = get_env_ptr();
return env->version;
}
/***********************************************************************
* NAME
*
* glp_free_env - free GLPK environment
*
* SYNOPSIS
*
* int glp_free_env(void);
*
* DESCRIPTION
*
* The routine glp_free_env frees all resources used by GLPK routines
* (memory blocks, etc.) which are currently still in use.
*
* Normally the application program does not need to call this routine,
* because GLPK routines always free all unused resources. However, if
* the application program even has deleted all problem objects, there
* will be several memory blocks still allocated for the library needs.
* For some reasons the application program may want GLPK to free this
* memory, in which case it should call glp_free_env.
*
* Note that a call to glp_free_env invalidates all problem objects as
* if no GLPK routine were called.
*
* RETURNS
*
* 0 - termination successful;
* 1 - environment is inactive (was not initialized). */
int glp_free_env(void)
{ ENV *env = tls_get_ptr();
MEM *desc;
/* check if the environment is active */
if (env == NULL) return 1;
/* check if the environment block is valid */
if (env->magic != ENV_MAGIC)
{ fprintf(stderr, "Invalid GLPK environment\n");
fflush(stderr);
abort();
}
/* close handles to shared libraries */
if (env->h_odbc != NULL)
xdlclose(env->h_odbc);
if (env->h_mysql != NULL)
xdlclose(env->h_mysql);
/* close streams which are still open */
while (env->file_ptr != NULL)
xfclose(env->file_ptr);
/* free memory blocks which are still allocated */
while (env->mem_ptr != NULL)
{ desc = env->mem_ptr;
env->mem_ptr = desc->next;
free(desc);
}
/* invalidate the environment block */
env->magic = -1;
/* free memory allocated to the environment block */
free(env->term_buf);
free(env->ioerr_msg);
free(env);
/* reset a pointer to the environment block */
tls_set_ptr(NULL);
/* termination successful */
return 0;
}
/* eof */