Changeset 519


Ignore:
Timestamp:
Nov 3, 2006, 9:23:21 PM (18 years ago)
Author:
root
Message:

runemf2: temp fix for hung windows caused by termq errors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/systemf.c

    r441 r519  
    1515  26 Jul 06 SHL Use convert_nl_to_nul
    1616  15 Aug 06 SHL More error popups
     17  01 Nov 06 SHL runemf2: temp fix for hung windows caused by termq errors
    1718
    1819***********************************************************************/
     
    4142#define MAXSTRG (4096)                  /* used to build command line strings */
    4243
    43 /* quick and dirty program launcher for OS/2 2.x */
     44//== ShowSession() bring session for foreground ==
    4445
    4546BOOL ShowSession(HWND hwnd, PID pid)
     
    4950  ULONG rc;
    5051
    51   hswitch = WinQuerySwitchHandle((pid) ? (HWND)0 : hwnd, pid);
     52  hswitch = WinQuerySwitchHandle(pid ? (HWND)0 : hwnd, pid);
    5253  if (hswitch) {
    5354    rc = WinQuerySwitchEntry(hswitch, &swctl);
     
    6364  return FALSE;
    6465}
     66
     67//== ExecOnList() Invoke runemf2 for command and file/directory list ==
    6568
    6669int ExecOnList(HWND hwnd, char *command, int flags, char *tpath,
     
    591594}
    592595
    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 ==
    594597
    595598int runemf2(int type, HWND hwnd, char *directory, char *environment,
     
    616619  int ret = -1;
    617620  RESULTCODES rt;
    618   STARTDATA start;
     621  STARTDATA sdata;
    619622  REQUESTDATA rq;
    620   ULONG sessID, apptype, ulLength, ctr = 0;
     623  ULONG ulSessID, apptype, ulLength, ctr = 0;
    621624  PID sessPID;
    622625  BOOL wasquote;
    623626  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;
    627636  BYTE bPriority;
    628637  APIRET rc;
     638  PIB *ppib;
     639  TIB *ptib;
    629640
    630641  if (directory && *directory) {
     
    811822    }
    812823    else {
    813       if (!(type & FULLSCREEN))
     824      if (~type & FULLSCREEN)
    814825        type |= WINDOWED;
    815826      rc = DosAllocMem((PVOID) & s2, MAXSTRG * 2,
     
    821832      }
    822833      *s2 = 0;
    823       memset(&start, 0, sizeof(STARTDATA));
     834      memset(&sdata, 0, sizeof(STARTDATA));
    824835      strip_lead_char(" \t", s);
    825836      p = s;
     
    982993          apptype = SSF_TYPE_FULLSCREEN;
    983994        }
     995        // fixme parens?
    984996        else if (((type & FULLSCREEN) || !(type & WINDOWED) &&
    985997                  apptype == SSF_TYPE_WINDOWEDVDM))
     
    987999      }
    9881000      if (apptype == SSF_TYPE_WINDOWEDVDM && (type & SEPARATEKEEP)) {
    989         type &= (~SEPARATEKEEP);
     1001        type &= ~SEPARATEKEEP;
    9901002        type |= SEPARATE;
    9911003      }
    9921004
     1005      DosGetInfoBlocks(&ptib, &ppib);
     1006      fprintf(stderr,"runemf2 ptib %x pgm %s\n",ptib,s);
     1007
    9931008      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)) |
    10201041                        (SSF_CONTROL_MAXIMIZE * ((type & MAXIMIZED) != 0)) |
    10211042                        (SSF_CONTROL_MINIMIZE * ((type & MINIMIZED) != 0)) |
     
    10251046        switch_to(directory);
    10261047      }
    1027       ret = DosStartSession(&start, &sessID, &sessPID);
     1048      ret = DosStartSession(&sdata, &ulSessID, &sessPID);
    10281049      if (directory && *directory)
    10291050        switch_to(savedir);
     
    10371058
    10381059        if (!hque) {
     1060          // No queue
    10391061          STATUSDATA sd;
    10401062
     
    10461068          {
    10471069            DosSleep(200L);
    1048             if (DosSetSession(sessID, &sd))     /* cheap trick */
     1070            if (DosSetSession(ulSessID, &sd))   // Check if session gone (i.e. finished)
    10491071              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            }
    10521076          }
    10531077        }
    10541078        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);
    10551082          for (ctr = 0;; ctr++)
    10561083          {
    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,
    10591087                              DCWW_NOWAIT, &bPriority, 0);
    10601088            if (rc == ERROR_QUE_EMPTY) {
    10611089              if (ctr > 20) {
    10621090                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);
    10661094                break;
    10671095              }
    1068               DosSleep(100L);
     1096              DosSleep(100);
    10691097            }
    10701098            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              }
    10751111              break;
    10761112            }
    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);
    10811119          }
    10821120          DosCloseQueue(hque);
     1121          fprintf(stderr,"runemf2 ptib %x hque %x closed\n",ptib,hque);
     1122          fflush(stderr);
    10831123        }
    10841124      }
     
    10971137}
    10981138
     1139//== Exec() Start application with WinStartApp ==
     1140
    10991141HAPP Exec(HWND hwndNotify, BOOL child, char *startdir, char *env,
    1100           PROGTYPE * progt, ULONG fl, char *formatstring,...)
     1142          PROGTYPE *progt, ULONG fl, char *formatstring,...)
    11011143{
    11021144  PROGDETAILS pgd;
    11031145  register char *p;
    11041146  char *parameters = NULL, *executable = NULL;
    1105   HAPP happ = (HAPP) 0;
     1147  HAPP happ = (HAPP)0;
    11061148  ULONG ulOptions = SAF_INSTALLEDCMDLINE;
    11071149  BOOL wasquote;
Note: See TracChangeset for help on using the changeset viewer.