Changeset 519
- Timestamp:
- Nov 3, 2006, 9:23:21 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/systemf.c ¶
r441 r519 15 15 26 Jul 06 SHL Use convert_nl_to_nul 16 16 15 Aug 06 SHL More error popups 17 01 Nov 06 SHL runemf2: temp fix for hung windows caused by termq errors 17 18 18 19 ***********************************************************************/ … … 41 42 #define MAXSTRG (4096) /* used to build command line strings */ 42 43 43 / * quick and dirty program launcher for OS/2 2.x */44 //== ShowSession() bring session for foreground == 44 45 45 46 BOOL ShowSession(HWND hwnd, PID pid) … … 49 50 ULONG rc; 50 51 51 hswitch = WinQuerySwitchHandle( (pid)? (HWND)0 : hwnd, pid);52 hswitch = WinQuerySwitchHandle(pid ? (HWND)0 : hwnd, pid); 52 53 if (hswitch) { 53 54 rc = WinQuerySwitchEntry(hswitch, &swctl); … … 63 64 return FALSE; 64 65 } 66 67 //== ExecOnList() Invoke runemf2 for command and file/directory list == 65 68 66 69 int ExecOnList(HWND hwnd, char *command, int flags, char *tpath, … … 591 594 } 592 595 593 //== runemf2() run requested app, return -1 if problem starting else return rc ==596 //== runemf2() run requested app, return -1 if problem starting else return app rc == 594 597 595 598 int runemf2(int type, HWND hwnd, char *directory, char *environment, … … 616 619 int ret = -1; 617 620 RESULTCODES rt; 618 STARTDATA s tart;621 STARTDATA sdata; 619 622 REQUESTDATA rq; 620 ULONG sessID, apptype, ulLength, ctr = 0;623 ULONG ulSessID, apptype, ulLength, ctr = 0; 621 624 PID sessPID; 622 625 BOOL wasquote; 623 626 char *s = NULL, *s2 = NULL, object[32] = "", *p, savedir[CCHMAXPATH]; 624 HQUEUE hque = (HQUEUE) 0; 625 char queue_name[] = "\\QUEUES\\FM3WAIT", tempdir[CCHMAXPATH]; 626 PUSHORT pusInfo = (PUSHORT) NULL; 627 HQUEUE hque; 628 char szQueueName[] = "\\QUEUES\\FM3WAIT"; 629 char tempdir[CCHMAXPATH]; 630 typedef struct { 631 USHORT usSessID; 632 USHORT usRC; 633 } TERMINFO; 634 635 TERMINFO *pTermInfo = NULL; 627 636 BYTE bPriority; 628 637 APIRET rc; 638 PIB *ppib; 639 TIB *ptib; 629 640 630 641 if (directory && *directory) { … … 811 822 } 812 823 else { 813 if ( !(type & FULLSCREEN))824 if (~type & FULLSCREEN) 814 825 type |= WINDOWED; 815 826 rc = DosAllocMem((PVOID) & s2, MAXSTRG * 2, … … 821 832 } 822 833 *s2 = 0; 823 memset(&s tart, 0, sizeof(STARTDATA));834 memset(&sdata, 0, sizeof(STARTDATA)); 824 835 strip_lead_char(" \t", s); 825 836 p = s; … … 982 993 apptype = SSF_TYPE_FULLSCREEN; 983 994 } 995 // fixme parens? 984 996 else if (((type & FULLSCREEN) || !(type & WINDOWED) && 985 997 apptype == SSF_TYPE_WINDOWEDVDM)) … … 987 999 } 988 1000 if (apptype == SSF_TYPE_WINDOWEDVDM && (type & SEPARATEKEEP)) { 989 type &= (~SEPARATEKEEP);1001 type &= ~SEPARATEKEEP; 990 1002 type |= SEPARATE; 991 1003 } 992 1004 1005 DosGetInfoBlocks(&ptib, &ppib); 1006 fprintf(stderr,"runemf2 ptib %x pgm %s\n",ptib,s); 1007 993 1008 if (type & WAIT) { 994 if (DosCreateQueue(&hque, QUE_FIFO | QUE_CONVERT_ADDRESS, queue_name)) 995 hque = (HQUEUE) 0; 996 } 997 else 998 *queue_name = 0; 999 start.Length = sizeof(start); 1000 start.Related = ((type & WAIT) != 0) ? 1001 SSF_RELATED_CHILD : 1002 ((type & CHILD) != 0) ? 1003 SSF_RELATED_CHILD : 1004 SSF_RELATED_INDEPENDENT; 1005 start.FgBg = ((type & BACKGROUND) != 0) * SSF_FGBG_BACK; 1006 start.TraceOpt = SSF_TRACEOPT_NONE; 1007 start.PgmTitle = NULL; 1008 start.PgmName = s; 1009 start.PgmInputs = (*s2) ? s2 : NULL; 1010 start.TermQ = (*queue_name) ? queue_name : NULL; 1011 start.Environment = environment; 1012 start.InheritOpt = SSF_INHERTOPT_PARENT; 1013 start.SessionType = (USHORT) apptype; 1014 start.ObjectBuffer = object; 1015 start.ObjectBuffLen = 31; 1016 start.IconFile = NULL; 1017 start.PgmHandle = 0L; 1018 start.Reserved = 0; 1019 start.PgmControl = (USHORT) ((SSF_CONTROL_NOAUTOCLOSE * ((type & 15) == SEPARATEKEEP)) | 1009 rc = DosCreateQueue(&hque, QUE_FIFO | QUE_CONVERT_ADDRESS, szQueueName); 1010 if (rc) { 1011 if (rc != ERROR_QUE_DUPLICATE) 1012 Dos_Error(MB_CANCEL,rc,hwnd,pszSrcFile,__LINE__,"DosCreateQueue"); 1013 hque = (HQUEUE)0; // Try to survive 1014 *szQueueName = 0; // Try to survive 1015 } 1016 else 1017 fprintf(stderr,"runemf2 ptib %x hque %x created\n",ptib,hque); 1018 } 1019 else { 1020 hque = (HQUEUE)0; // No queue if not waiting 1021 *szQueueName = 0; // No queue if not waiting 1022 } 1023 sdata.Length = sizeof(sdata); 1024 sdata.Related = type & (WAIT | CHILD) ? 1025 SSF_RELATED_CHILD : SSF_RELATED_INDEPENDENT; 1026 sdata.FgBg = type & BACKGROUND ? SSF_FGBG_BACK : SSF_FGBG_FORE; 1027 sdata.TraceOpt = SSF_TRACEOPT_NONE; 1028 sdata.PgmTitle = NULL; 1029 sdata.PgmName = s; 1030 sdata.PgmInputs = (*s2) ? s2 : NULL; 1031 sdata.TermQ = *szQueueName ? szQueueName : NULL; 1032 sdata.Environment = environment; 1033 sdata.InheritOpt = SSF_INHERTOPT_PARENT; 1034 sdata.SessionType = (USHORT)apptype; 1035 sdata.ObjectBuffer = object; 1036 sdata.ObjectBuffLen = sizeof(object) - 1; 1037 sdata.IconFile = NULL; 1038 sdata.PgmHandle = 0L; 1039 sdata.Reserved = 0; 1040 sdata.PgmControl = (USHORT) ((SSF_CONTROL_NOAUTOCLOSE * ((type & 15) == SEPARATEKEEP)) | 1020 1041 (SSF_CONTROL_MAXIMIZE * ((type & MAXIMIZED) != 0)) | 1021 1042 (SSF_CONTROL_MINIMIZE * ((type & MINIMIZED) != 0)) | … … 1025 1046 switch_to(directory); 1026 1047 } 1027 ret = DosStartSession(&s tart, &sessID, &sessPID);1048 ret = DosStartSession(&sdata, &ulSessID, &sessPID); 1028 1049 if (directory && *directory) 1029 1050 switch_to(savedir); … … 1037 1058 1038 1059 if (!hque) { 1060 // No queue 1039 1061 STATUSDATA sd; 1040 1062 … … 1046 1068 { 1047 1069 DosSleep(200L); 1048 if (DosSetSession( sessID, &sd)) /* cheap trick */1070 if (DosSetSession(ulSessID, &sd)) // Check if session gone (i.e. finished) 1049 1071 break; 1050 if (ctr > 10) 1051 ShowSession(hwnd, sessPID); 1072 if (ctr > 10) { 1073 ShowSession(hwnd, sessPID); // Show every 2 seconds 1074 ctr = 0; 1075 } 1052 1076 } 1053 1077 } 1054 1078 else { 1079 // This thread owns queue 1080 fprintf(stderr,"runemf2 ptib %x hque %x sessID %x sessPID %x\n",ptib,hque,ulSessID,sessPID); 1081 fflush(stderr); 1055 1082 for (ctr = 0;; ctr++) 1056 1083 { 1057 ulLength = sizeof(rq); 1058 rc = DosReadQueue(hque, &rq, &ulLength, (PPVOID) & pusInfo, 0, 1084 // ulLength = sizeof(TERMINFO); 1085 // fixme to supply event semaphore or not wait 1086 rc = DosReadQueue(hque, &rq, &ulLength, (PPVOID)&pTermInfo, 0, 1059 1087 DCWW_NOWAIT, &bPriority, 0); 1060 1088 if (rc == ERROR_QUE_EMPTY) { 1061 1089 if (ctr > 20) { 1062 1090 ShowSession(hwnd, sessPID); 1063 ulLength = sizeof( rq);1064 DosReadQueue(hque, &rq, &ulLength, (PPVOID) & pusInfo, 0,1065 DCWW_WAIT, &bPriority, 0);1091 ulLength = sizeof(TERMINFO); 1092 rc = DosReadQueue(hque, &rq, &ulLength, (PPVOID)&pTermInfo, 0, 1093 DCWW_WAIT, &bPriority, 0); 1066 1094 break; 1067 1095 } 1068 DosSleep(100 L);1096 DosSleep(100); 1069 1097 } 1070 1098 else { 1071 ulLength = sizeof(rq); 1072 if (rc) 1073 DosReadQueue(hque, &rq, &ulLength, (PPVOID) & pusInfo, 0, 1074 DCWW_WAIT, &bPriority, 0); 1099 if (rc) { 1100 if (rc != ERROR_INVALID_PARAMETER) 1101 Dos_Error(MB_CANCEL,rc,hwnd,pszSrcFile,__LINE__,"DosReadQueue"); 1102 // ulLength = sizeof(TERMINFO); 1103 rc = DosReadQueue(hque, &rq, &ulLength, (PPVOID)&pTermInfo, 0, 1104 DCWW_WAIT, &bPriority, 0); 1105 } 1106 // fixme to be much smarter 1107 if (!rc && pTermInfo && pTermInfo->usSessID != ulSessID) { 1108 // fixme to requeue 1109 continue; 1110 } 1075 1111 break; 1076 1112 } 1077 } 1078 if (pusInfo) { 1079 ret = (!(!pusInfo[1])); 1080 DosFreeMem(pusInfo); 1113 } // for 1114 fprintf(stderr,"runemf2 ptib %x hque %x rq pid %x ul %d\n",ptib,hque,rq.pid,rq.ulData); 1115 if (pTermInfo) { 1116 ret = !(!pTermInfo->usRC); // Set TRUE if rc 0 1117 fprintf(stderr,"runemf2 ptib %x hque %x terminfo sessId %x rc %d\n",ptib,hque,pTermInfo->usSessID,pTermInfo->usRC); 1118 DosFreeMem(pTermInfo); 1081 1119 } 1082 1120 DosCloseQueue(hque); 1121 fprintf(stderr,"runemf2 ptib %x hque %x closed\n",ptib,hque); 1122 fflush(stderr); 1083 1123 } 1084 1124 } … … 1097 1137 } 1098 1138 1139 //== Exec() Start application with WinStartApp == 1140 1099 1141 HAPP Exec(HWND hwndNotify, BOOL child, char *startdir, char *env, 1100 PROGTYPE * 1142 PROGTYPE *progt, ULONG fl, char *formatstring,...) 1101 1143 { 1102 1144 PROGDETAILS pgd; 1103 1145 register char *p; 1104 1146 char *parameters = NULL, *executable = NULL; 1105 HAPP happ = (HAPP) 1147 HAPP happ = (HAPP)0; 1106 1148 ULONG ulOptions = SAF_INSTALLEDCMDLINE; 1107 1149 BOOL wasquote;
Note:
See TracChangeset
for help on using the changeset viewer.