sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Provides a Symbian version of the main program and Tcl_AppInit
|
sl@0
|
15 |
// procedure for Tcl applications (without Tk).
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "tcl.h"
|
sl@0
|
20 |
#include "tclPort.h"
|
sl@0
|
21 |
#include "tclInt.h"
|
sl@0
|
22 |
#include "tclIntPlatDecls.h"
|
sl@0
|
23 |
#include <e32test.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
#ifdef __WINSCW__
|
sl@0
|
26 |
#include <e32std.h> //RPointerArray
|
sl@0
|
27 |
|
sl@0
|
28 |
#include <pls.h> // For emulator WSD API
|
sl@0
|
29 |
const TUid KTCLDLLUid3 = {0}; // Must change
|
sl@0
|
30 |
const TInt KMaxDataKey = 10;
|
sl@0
|
31 |
#endif // __WINSCW__
|
sl@0
|
32 |
|
sl@0
|
33 |
/*
|
sl@0
|
34 |
* The following macros convert between TclFile's and fd's. The conversion
|
sl@0
|
35 |
* simple involves shifting fd's up by one to ensure that no valid fd is ever
|
sl@0
|
36 |
* the same as NULL. Note that this code is duplicated from tclUnixPipe.c
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
|
sl@0
|
39 |
#define MakeFile(fd) ((TclFile)((fd)+1))
|
sl@0
|
40 |
#define GetFd(file) (((int)file)-1)
|
sl@0
|
41 |
|
sl@0
|
42 |
#ifdef __WINSCW__
|
sl@0
|
43 |
//The following code will run only on the emulator
|
sl@0
|
44 |
|
sl@0
|
45 |
//Put the global count into a structure
|
sl@0
|
46 |
struct DLLData
|
sl@0
|
47 |
{
|
sl@0
|
48 |
// TCL globals
|
sl@0
|
49 |
char* tclExecutableName;
|
sl@0
|
50 |
char* tclNativeExecutableName;
|
sl@0
|
51 |
|
sl@0
|
52 |
void* dataKey[KMaxDataKey];
|
sl@0
|
53 |
int inFinalize;
|
sl@0
|
54 |
int subsystemsInitialized;
|
sl@0
|
55 |
void* allocHead;
|
sl@0
|
56 |
void* defaultEncoding;
|
sl@0
|
57 |
void* systemEncoding;
|
sl@0
|
58 |
Tcl_HashTable encodingTable;
|
sl@0
|
59 |
SyncObjRecord keyRecord;
|
sl@0
|
60 |
Tcl_HashTable typeTable;
|
sl@0
|
61 |
int typeTableInitialized;
|
sl@0
|
62 |
int encodingsInitialized;
|
sl@0
|
63 |
char* tclDefaultEncodingDir;
|
sl@0
|
64 |
char* tclLibraryPathStr;
|
sl@0
|
65 |
int opTableInitialized;
|
sl@0
|
66 |
Tcl_HashTable opHashTable;
|
sl@0
|
67 |
Tcl_HashTable auxDataTypeTable;
|
sl@0
|
68 |
int auxDataTypeTableInitialized;
|
sl@0
|
69 |
void* cwdPathPtr;
|
sl@0
|
70 |
int cwdPathEpoch;
|
sl@0
|
71 |
void* refArray;
|
sl@0
|
72 |
int spaceAvl;
|
sl@0
|
73 |
int inUse;
|
sl@0
|
74 |
TclPlatformType tclPlatform;
|
sl@0
|
75 |
void* firstNotifierPtr;
|
sl@0
|
76 |
|
sl@0
|
77 |
// Symbian globals
|
sl@0
|
78 |
char fileNames[8][L_tmpnam + 9];
|
sl@0
|
79 |
};
|
sl@0
|
80 |
|
sl@0
|
81 |
//Initialization function
|
sl@0
|
82 |
TInt InitializeGlobals(DLLData* aData)
|
sl@0
|
83 |
{
|
sl@0
|
84 |
memset(aData, 0, sizeof(DLLData));
|
sl@0
|
85 |
aData->tclPlatform = TCL_PLATFORM_UNIX;
|
sl@0
|
86 |
return KErrNone;
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
//Define a way to access the structure
|
sl@0
|
90 |
//On the first call to this function, memory will be allocated with the specified
|
sl@0
|
91 |
//Uid as an identifier and the Initialization function will be called
|
sl@0
|
92 |
//Subsequent calls to this function return the allocated memory
|
sl@0
|
93 |
struct DLLData* GetGlobals()
|
sl@0
|
94 |
{
|
sl@0
|
95 |
return Pls<DLLData>(KTCLDLLUid3, InitializeGlobals);
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
//Clean up memory allocated for PLS used for storing globals
|
sl@0
|
99 |
int CleanupGlobals(void)
|
sl@0
|
100 |
{
|
sl@0
|
101 |
return FreePls(GetGlobals());
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
void* get_gFileName(int index)
|
sl@0
|
105 |
{
|
sl@0
|
106 |
return &(GetGlobals()->fileNames[index]);
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
char** get_tclExecutableName()
|
sl@0
|
110 |
{
|
sl@0
|
111 |
return &(GetGlobals()->tclExecutableName);
|
sl@0
|
112 |
}
|
sl@0
|
113 |
|
sl@0
|
114 |
char** get_tclNativeExecutableName()
|
sl@0
|
115 |
{
|
sl@0
|
116 |
return &(GetGlobals()->tclNativeExecutableName);
|
sl@0
|
117 |
}
|
sl@0
|
118 |
|
sl@0
|
119 |
void** get_dataKey(int index)
|
sl@0
|
120 |
{
|
sl@0
|
121 |
return &(GetGlobals()->dataKey[index]);
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
void* get_inFinalize()
|
sl@0
|
125 |
{
|
sl@0
|
126 |
return &(GetGlobals()->inFinalize);
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
void* get_subsystemsInitialized()
|
sl@0
|
130 |
{
|
sl@0
|
131 |
return &(GetGlobals()->subsystemsInitialized);
|
sl@0
|
132 |
}
|
sl@0
|
133 |
|
sl@0
|
134 |
void** get_allocHead()
|
sl@0
|
135 |
{
|
sl@0
|
136 |
return &(GetGlobals()->allocHead);
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
void** get_defaultEncoding()
|
sl@0
|
140 |
{
|
sl@0
|
141 |
return &(GetGlobals()->defaultEncoding);
|
sl@0
|
142 |
}
|
sl@0
|
143 |
|
sl@0
|
144 |
void** get_systemEncoding()
|
sl@0
|
145 |
{
|
sl@0
|
146 |
return &(GetGlobals()->systemEncoding);
|
sl@0
|
147 |
}
|
sl@0
|
148 |
|
sl@0
|
149 |
void* get_encodingTable()
|
sl@0
|
150 |
{
|
sl@0
|
151 |
return &(GetGlobals()->encodingTable);
|
sl@0
|
152 |
}
|
sl@0
|
153 |
|
sl@0
|
154 |
void* get_keyRecord()
|
sl@0
|
155 |
{
|
sl@0
|
156 |
return &(GetGlobals()->keyRecord);
|
sl@0
|
157 |
}
|
sl@0
|
158 |
|
sl@0
|
159 |
void* get_typeTable()
|
sl@0
|
160 |
{
|
sl@0
|
161 |
return &(GetGlobals()->typeTable);
|
sl@0
|
162 |
}
|
sl@0
|
163 |
|
sl@0
|
164 |
void* get_typeTableInitialized()
|
sl@0
|
165 |
{
|
sl@0
|
166 |
return &(GetGlobals()->typeTableInitialized);
|
sl@0
|
167 |
}
|
sl@0
|
168 |
|
sl@0
|
169 |
void* get_encodingsInitialized()
|
sl@0
|
170 |
{
|
sl@0
|
171 |
return &(GetGlobals()->encodingsInitialized);
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
char** get_tclDefaultEncodingDir()
|
sl@0
|
175 |
{
|
sl@0
|
176 |
return &(GetGlobals()->tclDefaultEncodingDir);
|
sl@0
|
177 |
}
|
sl@0
|
178 |
|
sl@0
|
179 |
char** get_tclLibraryPathStr()
|
sl@0
|
180 |
{
|
sl@0
|
181 |
return &(GetGlobals()->tclLibraryPathStr);
|
sl@0
|
182 |
}
|
sl@0
|
183 |
|
sl@0
|
184 |
void* get_opTableInitialized()
|
sl@0
|
185 |
{
|
sl@0
|
186 |
return &(GetGlobals()->opTableInitialized);
|
sl@0
|
187 |
}
|
sl@0
|
188 |
|
sl@0
|
189 |
void* get_opHashTable()
|
sl@0
|
190 |
{
|
sl@0
|
191 |
return &(GetGlobals()->opHashTable);
|
sl@0
|
192 |
}
|
sl@0
|
193 |
|
sl@0
|
194 |
void* get_auxDataTypeTableInitialized()
|
sl@0
|
195 |
{
|
sl@0
|
196 |
return &(GetGlobals()->auxDataTypeTableInitialized);
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
void* get_auxDataTypeTable()
|
sl@0
|
200 |
{
|
sl@0
|
201 |
return &(GetGlobals()->auxDataTypeTable);
|
sl@0
|
202 |
}
|
sl@0
|
203 |
|
sl@0
|
204 |
void** get_cwdPathPtr()
|
sl@0
|
205 |
{
|
sl@0
|
206 |
return &(GetGlobals()->cwdPathPtr);
|
sl@0
|
207 |
}
|
sl@0
|
208 |
|
sl@0
|
209 |
void* get_cwdPathEpoch()
|
sl@0
|
210 |
{
|
sl@0
|
211 |
return &(GetGlobals()->cwdPathEpoch);
|
sl@0
|
212 |
}
|
sl@0
|
213 |
|
sl@0
|
214 |
void** get_refArray()
|
sl@0
|
215 |
{
|
sl@0
|
216 |
return &(GetGlobals()->refArray);
|
sl@0
|
217 |
}
|
sl@0
|
218 |
|
sl@0
|
219 |
void* get_spaceAvl()
|
sl@0
|
220 |
{
|
sl@0
|
221 |
return &(GetGlobals()->spaceAvl);
|
sl@0
|
222 |
}
|
sl@0
|
223 |
|
sl@0
|
224 |
void* get_inUse()
|
sl@0
|
225 |
{
|
sl@0
|
226 |
return &(GetGlobals()->inUse);
|
sl@0
|
227 |
}
|
sl@0
|
228 |
|
sl@0
|
229 |
/*
|
sl@0
|
230 |
*----------------------------------------------------------------------
|
sl@0
|
231 |
*
|
sl@0
|
232 |
* TclPlatformExit --
|
sl@0
|
233 |
*
|
sl@0
|
234 |
* This procedure implements the Symbian specific exit routine.
|
sl@0
|
235 |
* Modelled after Macintosh version.
|
sl@0
|
236 |
*
|
sl@0
|
237 |
* Results:
|
sl@0
|
238 |
* None.
|
sl@0
|
239 |
*
|
sl@0
|
240 |
* Side effects:
|
sl@0
|
241 |
* We exit the process.
|
sl@0
|
242 |
*
|
sl@0
|
243 |
*----------------------------------------------------------------------
|
sl@0
|
244 |
*/
|
sl@0
|
245 |
|
sl@0
|
246 |
void
|
sl@0
|
247 |
TclpExit(
|
sl@0
|
248 |
int status) /* Ignored. */
|
sl@0
|
249 |
{
|
sl@0
|
250 |
// Free the PLS
|
sl@0
|
251 |
CleanupGlobals();
|
sl@0
|
252 |
|
sl@0
|
253 |
exit(status);
|
sl@0
|
254 |
}
|
sl@0
|
255 |
|
sl@0
|
256 |
void* get_tclPlatform()
|
sl@0
|
257 |
{
|
sl@0
|
258 |
return &(GetGlobals()->tclPlatform);
|
sl@0
|
259 |
}
|
sl@0
|
260 |
|
sl@0
|
261 |
void** get_firstNotifierPtr()
|
sl@0
|
262 |
{
|
sl@0
|
263 |
return &(GetGlobals()->firstNotifierPtr);
|
sl@0
|
264 |
}
|
sl@0
|
265 |
|
sl@0
|
266 |
#else
|
sl@0
|
267 |
//Target device code
|
sl@0
|
268 |
char tmpFileName[L_tmpnam + 9];
|
sl@0
|
269 |
char fifoFileName[L_tmpnam + 9];
|
sl@0
|
270 |
char inFileName[L_tmpnam + 9];
|
sl@0
|
271 |
char outFileName[L_tmpnam + 9];
|
sl@0
|
272 |
char errFileName[L_tmpnam + 9];
|
sl@0
|
273 |
char inFileName1[L_tmpnam + 9];
|
sl@0
|
274 |
char outFileName1[L_tmpnam + 9];
|
sl@0
|
275 |
char errFileName1[L_tmpnam + 9];
|
sl@0
|
276 |
|
sl@0
|
277 |
#endif
|
sl@0
|
278 |
|
sl@0
|
279 |
#include "tclSymbianGlobals.h"
|
sl@0
|
280 |
|
sl@0
|
281 |
#ifdef __cplusplus
|
sl@0
|
282 |
extern "C" {
|
sl@0
|
283 |
#endif
|
sl@0
|
284 |
|
sl@0
|
285 |
#define ADDPARAMTOCHILD 4
|
sl@0
|
286 |
|
sl@0
|
287 |
EXPORT_C void ChildProcessCleanup(int isChildProcess, int argc, char **argv)
|
sl@0
|
288 |
{
|
sl@0
|
289 |
RDebug::Print(_L("###TclSqlite3: Child process cleanup - begin. argc = %d.\r\n"), argc);
|
sl@0
|
290 |
TBuf<256> buf;
|
sl@0
|
291 |
for(TInt i=0;i<argc;++i)
|
sl@0
|
292 |
{
|
sl@0
|
293 |
TPtrC8 p((const unsigned char*)(argv[i]));
|
sl@0
|
294 |
buf.Copy(p);
|
sl@0
|
295 |
RDebug::Print(_L(" ### arg %d, value \"%S\"\r\n"), i, &buf);
|
sl@0
|
296 |
}
|
sl@0
|
297 |
|
sl@0
|
298 |
// add fifo close & unlink
|
sl@0
|
299 |
if (isChildProcess == 1)
|
sl@0
|
300 |
{
|
sl@0
|
301 |
RDebug::Print(_L(" ### Unlink 0.\r\n"));
|
sl@0
|
302 |
|
sl@0
|
303 |
TPtrC8 p1((const unsigned char*)tmpFileName);
|
sl@0
|
304 |
buf.Copy(p1);
|
sl@0
|
305 |
RDebug::Print(_L(" ### tmp file name \"%S\"\r\n"), &buf);
|
sl@0
|
306 |
|
sl@0
|
307 |
TPtrC8 p2((const unsigned char*)fifoFileName);
|
sl@0
|
308 |
buf.Copy(p2);
|
sl@0
|
309 |
RDebug::Print(_L(" ### fifo file name \"%S\"\r\n"), &buf);
|
sl@0
|
310 |
|
sl@0
|
311 |
TPtrC8 p3((const unsigned char*)inFileName);
|
sl@0
|
312 |
buf.Copy(p3);
|
sl@0
|
313 |
RDebug::Print(_L(" ### input file name \"%S\"\r\n"), &buf);
|
sl@0
|
314 |
|
sl@0
|
315 |
TPtrC8 p4((const unsigned char*)outFileName);
|
sl@0
|
316 |
buf.Copy(p4);
|
sl@0
|
317 |
RDebug::Print(_L(" ### output file name \"%S\"\r\n"), &buf);
|
sl@0
|
318 |
|
sl@0
|
319 |
TPtrC8 p5((const unsigned char*)errFileName);
|
sl@0
|
320 |
buf.Copy(p5);
|
sl@0
|
321 |
RDebug::Print(_L(" ### err file name \"%S\"\r\n"), &buf);
|
sl@0
|
322 |
|
sl@0
|
323 |
RDebug::Print(_L(" ### Close stdin, stdout and stderr.\r\n"));
|
sl@0
|
324 |
close (TCL_STDIN);
|
sl@0
|
325 |
close (TCL_STDOUT);
|
sl@0
|
326 |
close (TCL_STDERR);
|
sl@0
|
327 |
for(TInt i=0, idx=argc-i-1; i<ADDPARAMTOCHILD && idx >= 0; ++i, --idx)
|
sl@0
|
328 |
{
|
sl@0
|
329 |
if(argv[idx])
|
sl@0
|
330 |
{
|
sl@0
|
331 |
TPtrC8 p((const unsigned char*)(argv[idx]));
|
sl@0
|
332 |
buf.Copy(p);
|
sl@0
|
333 |
RDebug::Print(_L(" ### Unlink. Arg %d. Value \"%S\".\r\n"), idx, &buf);
|
sl@0
|
334 |
unlink(argv[idx]);
|
sl@0
|
335 |
}
|
sl@0
|
336 |
}
|
sl@0
|
337 |
}
|
sl@0
|
338 |
else
|
sl@0
|
339 |
{
|
sl@0
|
340 |
RDebug::Print(_L(" ### Unlink 1.\r\n"));
|
sl@0
|
341 |
|
sl@0
|
342 |
TPtrC8 p1((const unsigned char*)inFileName1);
|
sl@0
|
343 |
buf.Copy(p1);
|
sl@0
|
344 |
RDebug::Print(_L(" ### 1 input file name \"%S\"\r\n"), &buf);
|
sl@0
|
345 |
|
sl@0
|
346 |
TPtrC8 p2((const unsigned char*)outFileName1);
|
sl@0
|
347 |
buf.Copy(p2);
|
sl@0
|
348 |
RDebug::Print(_L(" ### 1 output file name \"%S\"\r\n"), &buf);
|
sl@0
|
349 |
|
sl@0
|
350 |
TPtrC8 p3((const unsigned char*)errFileName1);
|
sl@0
|
351 |
buf.Copy(p3);
|
sl@0
|
352 |
RDebug::Print(_L(" ### 1 err file name \"%S\"\r\n"), &buf);
|
sl@0
|
353 |
|
sl@0
|
354 |
unlink(inFileName1);
|
sl@0
|
355 |
unlink(outFileName1);
|
sl@0
|
356 |
unlink(errFileName1);
|
sl@0
|
357 |
}
|
sl@0
|
358 |
RDebug::Print(_L("###TclSqlite3: Child process cleanup - end.\r\n"));
|
sl@0
|
359 |
}
|
sl@0
|
360 |
|
sl@0
|
361 |
// Symbian main hook for tclappinit
|
sl@0
|
362 |
EXPORT_C int ChildProcessInit (int *argc, char ***argv)
|
sl@0
|
363 |
{
|
sl@0
|
364 |
//set the stdin,stdout,stderr to the child process. the fds pass to the posix_spawn() in argv
|
sl@0
|
365 |
TclFile inputFile = NULL;
|
sl@0
|
366 |
TclFile outputFile= NULL;
|
sl@0
|
367 |
TclFile errorFile = NULL;
|
sl@0
|
368 |
int joinThisError;
|
sl@0
|
369 |
int fd[4] = {0, 0, 0, 0};
|
sl@0
|
370 |
char errSpace[200 + TCL_INTEGER_SPACE];
|
sl@0
|
371 |
int anerr = 0;
|
sl@0
|
372 |
TBuf<256> buf;
|
sl@0
|
373 |
|
sl@0
|
374 |
RDebug::Print(_L("###TclSqlite3: Child process init - begin. argc = %d.\r\n"), argc != NULL ? *argc : 0);
|
sl@0
|
375 |
if(argc)
|
sl@0
|
376 |
{
|
sl@0
|
377 |
for(TInt i=0;i<*argc;++i)
|
sl@0
|
378 |
{
|
sl@0
|
379 |
TPtrC8 p((const unsigned char*)((*argv)[i]));
|
sl@0
|
380 |
buf.Copy(p);
|
sl@0
|
381 |
RDebug::Print(_L(" ### arg %d, value \"%S\"\r\n"), i, &buf);
|
sl@0
|
382 |
}
|
sl@0
|
383 |
}
|
sl@0
|
384 |
//set the stdin,stdout,stderr and pipeid to the child process. the fds pass to the posix_spawn() in argv
|
sl@0
|
385 |
if (*argc >= 5)
|
sl@0
|
386 |
{
|
sl@0
|
387 |
// fifoFile
|
sl@0
|
388 |
RDebug::Print(_L(" ### Fifo file. Arg %d.\r\n"), *argc-4);
|
sl@0
|
389 |
if((*argv)[*argc-4])
|
sl@0
|
390 |
{
|
sl@0
|
391 |
fd[0] = open((*argv)[*argc-4],O_WRONLY);
|
sl@0
|
392 |
if (fd[0] == -1)
|
sl@0
|
393 |
{
|
sl@0
|
394 |
RDebug::Print(_L(" ### fd[0](fifoFile) errno is %d\r\n"), errno);
|
sl@0
|
395 |
}
|
sl@0
|
396 |
else
|
sl@0
|
397 |
{
|
sl@0
|
398 |
TPtrC8 p((const unsigned char*)((*argv)[*argc-4]));
|
sl@0
|
399 |
buf.Copy(p);
|
sl@0
|
400 |
RDebug::Print(_L(" ### fifoFile is \"%S\", fd[0] is %d\r\n"), &buf, fd[0]);
|
sl@0
|
401 |
}
|
sl@0
|
402 |
//fd = atoi((*argv)[*argc-1]);
|
sl@0
|
403 |
}
|
sl@0
|
404 |
else
|
sl@0
|
405 |
{
|
sl@0
|
406 |
RDebug::Print(_L(" ### Fifo file - (*argv)[*argc-4] is 0.\r\n"));
|
sl@0
|
407 |
//should add later
|
sl@0
|
408 |
}
|
sl@0
|
409 |
// inputFile
|
sl@0
|
410 |
RDebug::Print(_L(" ### Input file. Arg %d.\r\n"), *argc-3);
|
sl@0
|
411 |
if(((*argv)[*argc-3])&&(strcmp((*argv)[*argc-3],"STD")))
|
sl@0
|
412 |
{
|
sl@0
|
413 |
fd[3] = open((*argv)[*argc-3],O_RDONLY);
|
sl@0
|
414 |
inputFile = MakeFile(fd[3]);
|
sl@0
|
415 |
if (fd[3] == -1)
|
sl@0
|
416 |
{
|
sl@0
|
417 |
RDebug::Print(_L(" ### fd[3](inputFile) errno is %d\r\n"), errno);
|
sl@0
|
418 |
}
|
sl@0
|
419 |
else
|
sl@0
|
420 |
{
|
sl@0
|
421 |
TPtrC8 p((const unsigned char*)((*argv)[*argc-3]));
|
sl@0
|
422 |
buf.Copy(p);
|
sl@0
|
423 |
RDebug::Print(_L(" ### inputFile is \"%S\", fd[3] is %d\r\n"), &buf, fd[3]);
|
sl@0
|
424 |
}
|
sl@0
|
425 |
//inputFile = (TclFile) (atoi((*argv)[*argc-4]));
|
sl@0
|
426 |
}
|
sl@0
|
427 |
else
|
sl@0
|
428 |
{
|
sl@0
|
429 |
RDebug::Print(_L(" ### Input file - ((*argv)[*argc-3])&&(strcmp((*argv)[*argc-3],\"STD\")) is 0.\r\n"));
|
sl@0
|
430 |
//should add later
|
sl@0
|
431 |
}
|
sl@0
|
432 |
// outputFile
|
sl@0
|
433 |
RDebug::Print(_L(" ### Output file. Arg %d\r\n"), *argc-2);
|
sl@0
|
434 |
if(((*argv)[*argc-2])&&(strcmp((*argv)[*argc-2],"STD")))
|
sl@0
|
435 |
{
|
sl@0
|
436 |
fd[2] = open((*argv)[*argc-2],O_WRONLY);
|
sl@0
|
437 |
outputFile = MakeFile(fd[2]);
|
sl@0
|
438 |
if (fd[2] == -1)
|
sl@0
|
439 |
{
|
sl@0
|
440 |
RDebug::Print(_L(" ### fd[2](outputFile) errno is %d\r\n"), errno);
|
sl@0
|
441 |
}
|
sl@0
|
442 |
else
|
sl@0
|
443 |
{
|
sl@0
|
444 |
TPtrC8 p((const unsigned char*)((*argv)[*argc-2]));
|
sl@0
|
445 |
buf.Copy(p);
|
sl@0
|
446 |
RDebug::Print(_L(" ### outputFile is \"%S\", fd[2] is %d\r\n"), &buf, fd[2]);
|
sl@0
|
447 |
}
|
sl@0
|
448 |
|
sl@0
|
449 |
//outputFile = (TclFile) (atoi((*argv)[*argc-3]));
|
sl@0
|
450 |
}
|
sl@0
|
451 |
else
|
sl@0
|
452 |
{
|
sl@0
|
453 |
RDebug::Print(_L(" ### Output file - ((*argv)[*argc-2])&&(strcmp((*argv)[*argc-2],\"STD\")) is 0.\r\n"));
|
sl@0
|
454 |
//should add later
|
sl@0
|
455 |
//outputFile = MakeFile(1);
|
sl@0
|
456 |
}
|
sl@0
|
457 |
// errorFile
|
sl@0
|
458 |
RDebug::Print(_L(" ### Error file. Arg %d\r\n"), *argc-1);
|
sl@0
|
459 |
if(((*argv)[*argc-1])&&(strcmp((*argv)[*argc-1],"STD")))
|
sl@0
|
460 |
{
|
sl@0
|
461 |
fd[1] = open((*argv)[*argc-1],O_WRONLY);
|
sl@0
|
462 |
errorFile = MakeFile(fd[1]);
|
sl@0
|
463 |
if (fd[1] == -1)
|
sl@0
|
464 |
{
|
sl@0
|
465 |
RDebug::Print(_L(" ### fd[1] errorFile errno is %d\r\n"), errno);
|
sl@0
|
466 |
}
|
sl@0
|
467 |
else
|
sl@0
|
468 |
{
|
sl@0
|
469 |
TPtrC8 p((const unsigned char*)((*argv)[*argc-1]));
|
sl@0
|
470 |
buf.Copy(p);
|
sl@0
|
471 |
RDebug::Print(_L(" ### errorFile is \"%S\", fd[1] is %d\r\n"), &buf, fd[1]);
|
sl@0
|
472 |
}
|
sl@0
|
473 |
//errorFile = (TclFile) (atoi((*argv)[*argc-2]));
|
sl@0
|
474 |
}
|
sl@0
|
475 |
else
|
sl@0
|
476 |
{
|
sl@0
|
477 |
RDebug::Print(_L(" ### Output file - ((*argv)[*argc-1])&&(strcmp((*argv)[*argc-1],\"STD\")) is 0.\r\n"));
|
sl@0
|
478 |
//should add later
|
sl@0
|
479 |
}
|
sl@0
|
480 |
//*argc = *argc-4;
|
sl@0
|
481 |
|
sl@0
|
482 |
joinThisError = errorFile && (errorFile == outputFile);
|
sl@0
|
483 |
|
sl@0
|
484 |
//fd = GetFd(errPipeOut);
|
sl@0
|
485 |
|
sl@0
|
486 |
//
|
sl@0
|
487 |
// Set up stdio file handles for the child process.
|
sl@0
|
488 |
//
|
sl@0
|
489 |
|
sl@0
|
490 |
if (!SetupStdFile(inputFile, TCL_STDIN)
|
sl@0
|
491 |
|| !SetupStdFile(outputFile, TCL_STDOUT)
|
sl@0
|
492 |
|| (!joinThisError && !SetupStdFile(errorFile, TCL_STDERR))
|
sl@0
|
493 |
|| (joinThisError &&
|
sl@0
|
494 |
((dup2(1,2) == -1) ||
|
sl@0
|
495 |
(fcntl(2, F_SETFD, 0) != 0))))
|
sl@0
|
496 |
//if (!SetupStdFile(errorFile, TCL_STDERR))
|
sl@0
|
497 |
{
|
sl@0
|
498 |
RDebug::Print(_L(" ### child process couldn't set up input/output, error: %d\r\n"), errno);
|
sl@0
|
499 |
sprintf(errSpace,"child process couldn't set up input/output, error: %d\r\n", errno);
|
sl@0
|
500 |
write(fd[0], errSpace, (size_t) strlen(errSpace));
|
sl@0
|
501 |
close(fd[0]);
|
sl@0
|
502 |
unlink((*argv)[*argc-4]);
|
sl@0
|
503 |
RDebug::Print(_L("###TclSqlite3: Child process init - end 1.\r\n"));
|
sl@0
|
504 |
_exit(1);
|
sl@0
|
505 |
}
|
sl@0
|
506 |
|
sl@0
|
507 |
sprintf(errSpace,"OK\r\n");
|
sl@0
|
508 |
write(fd[0], errSpace, (size_t) strlen(errSpace));
|
sl@0
|
509 |
anerr = close(fd[0]);
|
sl@0
|
510 |
anerr = unlink((*argv)[*argc-4]);
|
sl@0
|
511 |
RDebug::Print(_L("###TclSqlite3: Child process init - end 2. anerr=%d.\r\n"), anerr);
|
sl@0
|
512 |
return 1;
|
sl@0
|
513 |
}
|
sl@0
|
514 |
|
sl@0
|
515 |
RDebug::Print(_L("###TclSqlite3: Child process init - end 3.\r\n"));
|
sl@0
|
516 |
return 0;
|
sl@0
|
517 |
}
|
sl@0
|
518 |
|
sl@0
|
519 |
void TclPrint1(const char* aFmt, const char* aStr)
|
sl@0
|
520 |
{
|
sl@0
|
521 |
TBuf<128> fmt;
|
sl@0
|
522 |
fmt.Copy(TPtrC8((const TUint8*)aFmt));
|
sl@0
|
523 |
TBuf<128> str;
|
sl@0
|
524 |
str.Copy(TPtrC8((const TUint8*)aStr));
|
sl@0
|
525 |
RDebug::Print(fmt, &str);
|
sl@0
|
526 |
}
|
sl@0
|
527 |
|
sl@0
|
528 |
void TclPrint2(const char* aFmt, const char* aStr, int aNum)
|
sl@0
|
529 |
{
|
sl@0
|
530 |
TBuf<128> fmt;
|
sl@0
|
531 |
fmt.Copy(TPtrC8((const TUint8*)aFmt));
|
sl@0
|
532 |
TBuf<128> str;
|
sl@0
|
533 |
str.Copy(TPtrC8((const TUint8*)aStr));
|
sl@0
|
534 |
RDebug::Print(fmt, &str, aNum);
|
sl@0
|
535 |
}
|
sl@0
|
536 |
|
sl@0
|
537 |
void TclPrint3(const char* aFmt)
|
sl@0
|
538 |
{
|
sl@0
|
539 |
TBuf<128> fmt;
|
sl@0
|
540 |
fmt.Copy(TPtrC8((const TUint8*)aFmt));
|
sl@0
|
541 |
RDebug::Print(fmt);
|
sl@0
|
542 |
}
|
sl@0
|
543 |
|
sl@0
|
544 |
#ifdef __cplusplus
|
sl@0
|
545 |
}
|
sl@0
|
546 |
#endif
|