Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Provides a Symbian version of the main program and Tcl_AppInit
15 // procedure for Tcl applications (without Tk).
22 #include "tclIntPlatDecls.h"
26 #include <e32std.h> //RPointerArray
28 #include <pls.h> // For emulator WSD API
29 const TUid KTCLDLLUid3 = {0}; // Must change
30 const TInt KMaxDataKey = 10;
34 * The following macros convert between TclFile's and fd's. The conversion
35 * simple involves shifting fd's up by one to ensure that no valid fd is ever
36 * the same as NULL. Note that this code is duplicated from tclUnixPipe.c
39 #define MakeFile(fd) ((TclFile)((fd)+1))
40 #define GetFd(file) (((int)file)-1)
43 //The following code will run only on the emulator
45 //Put the global count into a structure
49 char* tclExecutableName;
50 char* tclNativeExecutableName;
52 void* dataKey[KMaxDataKey];
54 int subsystemsInitialized;
56 void* defaultEncoding;
58 Tcl_HashTable encodingTable;
59 SyncObjRecord keyRecord;
60 Tcl_HashTable typeTable;
61 int typeTableInitialized;
62 int encodingsInitialized;
63 char* tclDefaultEncodingDir;
64 char* tclLibraryPathStr;
65 int opTableInitialized;
66 Tcl_HashTable opHashTable;
67 Tcl_HashTable auxDataTypeTable;
68 int auxDataTypeTableInitialized;
74 TclPlatformType tclPlatform;
75 void* firstNotifierPtr;
78 char fileNames[8][L_tmpnam + 9];
81 //Initialization function
82 TInt InitializeGlobals(DLLData* aData)
84 memset(aData, 0, sizeof(DLLData));
85 aData->tclPlatform = TCL_PLATFORM_UNIX;
89 //Define a way to access the structure
90 //On the first call to this function, memory will be allocated with the specified
91 //Uid as an identifier and the Initialization function will be called
92 //Subsequent calls to this function return the allocated memory
93 struct DLLData* GetGlobals()
95 return Pls<DLLData>(KTCLDLLUid3, InitializeGlobals);
98 //Clean up memory allocated for PLS used for storing globals
99 int CleanupGlobals(void)
101 return FreePls(GetGlobals());
104 void* get_gFileName(int index)
106 return &(GetGlobals()->fileNames[index]);
109 char** get_tclExecutableName()
111 return &(GetGlobals()->tclExecutableName);
114 char** get_tclNativeExecutableName()
116 return &(GetGlobals()->tclNativeExecutableName);
119 void** get_dataKey(int index)
121 return &(GetGlobals()->dataKey[index]);
124 void* get_inFinalize()
126 return &(GetGlobals()->inFinalize);
129 void* get_subsystemsInitialized()
131 return &(GetGlobals()->subsystemsInitialized);
134 void** get_allocHead()
136 return &(GetGlobals()->allocHead);
139 void** get_defaultEncoding()
141 return &(GetGlobals()->defaultEncoding);
144 void** get_systemEncoding()
146 return &(GetGlobals()->systemEncoding);
149 void* get_encodingTable()
151 return &(GetGlobals()->encodingTable);
154 void* get_keyRecord()
156 return &(GetGlobals()->keyRecord);
159 void* get_typeTable()
161 return &(GetGlobals()->typeTable);
164 void* get_typeTableInitialized()
166 return &(GetGlobals()->typeTableInitialized);
169 void* get_encodingsInitialized()
171 return &(GetGlobals()->encodingsInitialized);
174 char** get_tclDefaultEncodingDir()
176 return &(GetGlobals()->tclDefaultEncodingDir);
179 char** get_tclLibraryPathStr()
181 return &(GetGlobals()->tclLibraryPathStr);
184 void* get_opTableInitialized()
186 return &(GetGlobals()->opTableInitialized);
189 void* get_opHashTable()
191 return &(GetGlobals()->opHashTable);
194 void* get_auxDataTypeTableInitialized()
196 return &(GetGlobals()->auxDataTypeTableInitialized);
199 void* get_auxDataTypeTable()
201 return &(GetGlobals()->auxDataTypeTable);
204 void** get_cwdPathPtr()
206 return &(GetGlobals()->cwdPathPtr);
209 void* get_cwdPathEpoch()
211 return &(GetGlobals()->cwdPathEpoch);
214 void** get_refArray()
216 return &(GetGlobals()->refArray);
221 return &(GetGlobals()->spaceAvl);
226 return &(GetGlobals()->inUse);
230 *----------------------------------------------------------------------
234 * This procedure implements the Symbian specific exit routine.
235 * Modelled after Macintosh version.
241 * We exit the process.
243 *----------------------------------------------------------------------
248 int status) /* Ignored. */
256 void* get_tclPlatform()
258 return &(GetGlobals()->tclPlatform);
261 void** get_firstNotifierPtr()
263 return &(GetGlobals()->firstNotifierPtr);
268 char tmpFileName[L_tmpnam + 9];
269 char fifoFileName[L_tmpnam + 9];
270 char inFileName[L_tmpnam + 9];
271 char outFileName[L_tmpnam + 9];
272 char errFileName[L_tmpnam + 9];
273 char inFileName1[L_tmpnam + 9];
274 char outFileName1[L_tmpnam + 9];
275 char errFileName1[L_tmpnam + 9];
279 #include "tclSymbianGlobals.h"
285 #define ADDPARAMTOCHILD 4
287 EXPORT_C void ChildProcessCleanup(int isChildProcess, int argc, char **argv)
289 RDebug::Print(_L("###TclSqlite3: Child process cleanup - begin. argc = %d.\r\n"), argc);
291 for(TInt i=0;i<argc;++i)
293 TPtrC8 p((const unsigned char*)(argv[i]));
295 RDebug::Print(_L(" ### arg %d, value \"%S\"\r\n"), i, &buf);
298 // add fifo close & unlink
299 if (isChildProcess == 1)
301 RDebug::Print(_L(" ### Unlink 0.\r\n"));
303 TPtrC8 p1((const unsigned char*)tmpFileName);
305 RDebug::Print(_L(" ### tmp file name \"%S\"\r\n"), &buf);
307 TPtrC8 p2((const unsigned char*)fifoFileName);
309 RDebug::Print(_L(" ### fifo file name \"%S\"\r\n"), &buf);
311 TPtrC8 p3((const unsigned char*)inFileName);
313 RDebug::Print(_L(" ### input file name \"%S\"\r\n"), &buf);
315 TPtrC8 p4((const unsigned char*)outFileName);
317 RDebug::Print(_L(" ### output file name \"%S\"\r\n"), &buf);
319 TPtrC8 p5((const unsigned char*)errFileName);
321 RDebug::Print(_L(" ### err file name \"%S\"\r\n"), &buf);
323 RDebug::Print(_L(" ### Close stdin, stdout and stderr.\r\n"));
327 for(TInt i=0, idx=argc-i-1; i<ADDPARAMTOCHILD && idx >= 0; ++i, --idx)
331 TPtrC8 p((const unsigned char*)(argv[idx]));
333 RDebug::Print(_L(" ### Unlink. Arg %d. Value \"%S\".\r\n"), idx, &buf);
340 RDebug::Print(_L(" ### Unlink 1.\r\n"));
342 TPtrC8 p1((const unsigned char*)inFileName1);
344 RDebug::Print(_L(" ### 1 input file name \"%S\"\r\n"), &buf);
346 TPtrC8 p2((const unsigned char*)outFileName1);
348 RDebug::Print(_L(" ### 1 output file name \"%S\"\r\n"), &buf);
350 TPtrC8 p3((const unsigned char*)errFileName1);
352 RDebug::Print(_L(" ### 1 err file name \"%S\"\r\n"), &buf);
355 unlink(outFileName1);
356 unlink(errFileName1);
358 RDebug::Print(_L("###TclSqlite3: Child process cleanup - end.\r\n"));
361 // Symbian main hook for tclappinit
362 EXPORT_C int ChildProcessInit (int *argc, char ***argv)
364 //set the stdin,stdout,stderr to the child process. the fds pass to the posix_spawn() in argv
365 TclFile inputFile = NULL;
366 TclFile outputFile= NULL;
367 TclFile errorFile = NULL;
369 int fd[4] = {0, 0, 0, 0};
370 char errSpace[200 + TCL_INTEGER_SPACE];
374 RDebug::Print(_L("###TclSqlite3: Child process init - begin. argc = %d.\r\n"), argc != NULL ? *argc : 0);
377 for(TInt i=0;i<*argc;++i)
379 TPtrC8 p((const unsigned char*)((*argv)[i]));
381 RDebug::Print(_L(" ### arg %d, value \"%S\"\r\n"), i, &buf);
384 //set the stdin,stdout,stderr and pipeid to the child process. the fds pass to the posix_spawn() in argv
388 RDebug::Print(_L(" ### Fifo file. Arg %d.\r\n"), *argc-4);
391 fd[0] = open((*argv)[*argc-4],O_WRONLY);
394 RDebug::Print(_L(" ### fd[0](fifoFile) errno is %d\r\n"), errno);
398 TPtrC8 p((const unsigned char*)((*argv)[*argc-4]));
400 RDebug::Print(_L(" ### fifoFile is \"%S\", fd[0] is %d\r\n"), &buf, fd[0]);
402 //fd = atoi((*argv)[*argc-1]);
406 RDebug::Print(_L(" ### Fifo file - (*argv)[*argc-4] is 0.\r\n"));
410 RDebug::Print(_L(" ### Input file. Arg %d.\r\n"), *argc-3);
411 if(((*argv)[*argc-3])&&(strcmp((*argv)[*argc-3],"STD")))
413 fd[3] = open((*argv)[*argc-3],O_RDONLY);
414 inputFile = MakeFile(fd[3]);
417 RDebug::Print(_L(" ### fd[3](inputFile) errno is %d\r\n"), errno);
421 TPtrC8 p((const unsigned char*)((*argv)[*argc-3]));
423 RDebug::Print(_L(" ### inputFile is \"%S\", fd[3] is %d\r\n"), &buf, fd[3]);
425 //inputFile = (TclFile) (atoi((*argv)[*argc-4]));
429 RDebug::Print(_L(" ### Input file - ((*argv)[*argc-3])&&(strcmp((*argv)[*argc-3],\"STD\")) is 0.\r\n"));
433 RDebug::Print(_L(" ### Output file. Arg %d\r\n"), *argc-2);
434 if(((*argv)[*argc-2])&&(strcmp((*argv)[*argc-2],"STD")))
436 fd[2] = open((*argv)[*argc-2],O_WRONLY);
437 outputFile = MakeFile(fd[2]);
440 RDebug::Print(_L(" ### fd[2](outputFile) errno is %d\r\n"), errno);
444 TPtrC8 p((const unsigned char*)((*argv)[*argc-2]));
446 RDebug::Print(_L(" ### outputFile is \"%S\", fd[2] is %d\r\n"), &buf, fd[2]);
449 //outputFile = (TclFile) (atoi((*argv)[*argc-3]));
453 RDebug::Print(_L(" ### Output file - ((*argv)[*argc-2])&&(strcmp((*argv)[*argc-2],\"STD\")) is 0.\r\n"));
455 //outputFile = MakeFile(1);
458 RDebug::Print(_L(" ### Error file. Arg %d\r\n"), *argc-1);
459 if(((*argv)[*argc-1])&&(strcmp((*argv)[*argc-1],"STD")))
461 fd[1] = open((*argv)[*argc-1],O_WRONLY);
462 errorFile = MakeFile(fd[1]);
465 RDebug::Print(_L(" ### fd[1] errorFile errno is %d\r\n"), errno);
469 TPtrC8 p((const unsigned char*)((*argv)[*argc-1]));
471 RDebug::Print(_L(" ### errorFile is \"%S\", fd[1] is %d\r\n"), &buf, fd[1]);
473 //errorFile = (TclFile) (atoi((*argv)[*argc-2]));
477 RDebug::Print(_L(" ### Output file - ((*argv)[*argc-1])&&(strcmp((*argv)[*argc-1],\"STD\")) is 0.\r\n"));
482 joinThisError = errorFile && (errorFile == outputFile);
484 //fd = GetFd(errPipeOut);
487 // Set up stdio file handles for the child process.
490 if (!SetupStdFile(inputFile, TCL_STDIN)
491 || !SetupStdFile(outputFile, TCL_STDOUT)
492 || (!joinThisError && !SetupStdFile(errorFile, TCL_STDERR))
494 ((dup2(1,2) == -1) ||
495 (fcntl(2, F_SETFD, 0) != 0))))
496 //if (!SetupStdFile(errorFile, TCL_STDERR))
498 RDebug::Print(_L(" ### child process couldn't set up input/output, error: %d\r\n"), errno);
499 sprintf(errSpace,"child process couldn't set up input/output, error: %d\r\n", errno);
500 write(fd[0], errSpace, (size_t) strlen(errSpace));
502 unlink((*argv)[*argc-4]);
503 RDebug::Print(_L("###TclSqlite3: Child process init - end 1.\r\n"));
507 sprintf(errSpace,"OK\r\n");
508 write(fd[0], errSpace, (size_t) strlen(errSpace));
509 anerr = close(fd[0]);
510 anerr = unlink((*argv)[*argc-4]);
511 RDebug::Print(_L("###TclSqlite3: Child process init - end 2. anerr=%d.\r\n"), anerr);
515 RDebug::Print(_L("###TclSqlite3: Child process init - end 3.\r\n"));
519 void TclPrint1(const char* aFmt, const char* aStr)
522 fmt.Copy(TPtrC8((const TUint8*)aFmt));
524 str.Copy(TPtrC8((const TUint8*)aStr));
525 RDebug::Print(fmt, &str);
528 void TclPrint2(const char* aFmt, const char* aStr, int aNum)
531 fmt.Copy(TPtrC8((const TUint8*)aFmt));
533 str.Copy(TPtrC8((const TUint8*)aStr));
534 RDebug::Print(fmt, &str, aNum);
537 void TclPrint3(const char* aFmt)
540 fmt.Copy(TPtrC8((const TUint8*)aFmt));