Changeset 1604


Ignore:
Timestamp:
Aug 7, 2011, 7:23:33 PM (14 years ago)
Author:
Gregg Young
Message:

Cleanup of INI load code; added error checking to save directory load; improve code format.

Location:
trunk/dll
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/fm3res.rc

    r1592 r1604  
    33083308    IDS_CMINSERTERRTEXT                   "Record insert failed"
    33093309    IDS_CMALLOCRECERRTEXT                 "Record allocation failed"
     3310    IDS_FM3SAVEDIRERROR1TEXT              "Unable to find FM2.INI directory and current directory"
    33103311    IDS_NOWINDOWTEXT                      "No window"
    33113312    IDS_MAKEARCTITLETEXT                  "FM/2: Makearc                       "
  • TabularUnified trunk/dll/fm3str.h

    r1557 r1604  
    971971#define IDS_CMINSERTERRTEXT                                   964
    972972#define IDS_CMALLOCRECERRTEXT                                 965
     973#define IDS_FM3SAVEDIRERROR1TEXT                              966
    973974#define IDS_NOWINDOWTEXT                                      968
    974975#define IDS_2SYSTEMVIOTEXT                                    969
  • TabularUnified trunk/dll/init.c

    r1603 r1604  
    9595                aren't user settable; realappname should be used for setting applicable to
    9696                one or more miniapp but not to FM/2
    97   17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *.
     97  17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR
     98                CONSTANT * as CHAR *.
    9899  09 MAY 10 JBS Ticket 434: Make fDontSuggestAgain a "global" flag, not a per app flag
    99100  23 Oct 10 GKY Changes to populate and utilize a HELPTABLE for context specific help
     
    104105                by temp file creation failures.
    105106  03 Mar 11 SHL Try using FM3INI to create help instance if fm3.hlp not in current directory
     107  06 Aug 11 GKY Fixed failure to initalize pFM2SaveDirectory if TEMP and TMP were not present
     108                or invalid
    106109
    107110***********************************************************************/
     
    638641  CHAR dllfile[CCHMAXPATH];
    639642  CHAR temp[CCHMAXPATH];
     643  CHAR *p;
    640644  ULONG size;
    641645  BOOL fSeparateParmsApp;
     
    719723
    720724  //Save the FM2 save directory name. This is the location of the ini, dat files etc.
    721   save_dir2(temp);
     725  rc = save_dir2(temp);
     726  if (rc) {
     727    saymsg(MB_CANCEL | MB_ICONEXCLAMATION,
     728           HWND_DESKTOP,
     729           GetPString(IDS_ERRORTEXT), GetPString(IDS_FM3SAVEDIRERROR1TEXT));
     730    return FALSE;
     731  }
    722732  pFM2SaveDirectory = xstrdup(temp, pszSrcFile, __LINE__);
     733  if (!pFM2SaveDirectory)
     734    return FALSE; // already complained
    723735  // set up default root names for temp file storage and archive goodies
    724   env = getenv("TMP");
    725   if (env == NULL)
    726     env = getenv("TEMP");
     736  env = getenv("TEMP");
     737  if (env != NULL) {
     738    rc = 0;
     739    DosError(FERR_DISABLEHARDERR);
     740    rc = DosQueryPathInfo(env, FIL_STANDARD, &fs3, sizeof(fs3));
     741  }
     742  if (rc || env == NULL)
     743    env = getenv("TMP");
    727744  if (env != NULL) {
    728745    DosError(FERR_DISABLEHARDERR);
    729746    rc = DosQueryPathInfo(env, FIL_STANDARD, &fs3, sizeof(fs3));
    730747    if (!rc) {
    731       CHAR *enddir, *p, szTempName[CCHMAXPATH];
     748      CHAR *enddir, szTempName[CCHMAXPATH];
    732749      FILEFINDBUF3 ffb;
    733750      HDIR search_handle;
     
    834851
    835852  if ((!strchr(profile, '\\') && !strchr(profile, ':')) ||
    836       !(fmprof = PrfOpenProfile((HAB)0, profile)))
    837   {
     853      !(fmprof = PrfOpenProfile((HAB)0, profile))) {
    838854    /* figure out where to put INI file... */
    839855    CHAR inipath[CCHMAXPATH];
     
    854870      }
    855871    }
    856     if (!env) {
     872    else {
    857873      env = searchpath(profile);
    858874      if (!env)
    859875        env = profile;
    860876      strcpy(inipath, env);
    861     }
    862 
    863     /* in some odd cases the INI file can get set to readonly status */
    864     /* here we test it and reset the readonly bit if necessary */
     877    } //fixme the DosCopies probably fail if the INI isn't in the FM2 directory GKY 06 Aug 11
    865878    if (!*inipath)
    866879      strcpy(inipath, profile);
    867880    DosError(FERR_DISABLEHARDERR);
    868     // fixme to check for backup if ini not found GKY 1-30-09
    869881    rc = DosQueryPathInfo(inipath, FIL_STANDARD, &fs3, sizeof(fs3));
    870882    if (rc) {
    871       if (rc == ERROR_FILE_NOT_FOUND)
    872       fWantFirstTimeInit = TRUE;
    873     }
    874     else { //Check the ini file header and restore from backup if corupted
     883      if (rc == ERROR_FILE_NOT_FOUND) {
     884        DosCopy("FM3INI.BAK", "FM3.INI", 0);
     885      }
     886      rc = DosQueryPathInfo(inipath, FIL_STANDARD, &fs3, sizeof(fs3));
     887      if (rc)
     888        fWantFirstTimeInit = TRUE;
     889    }
     890    if (!fWantFirstTimeInit) { //Check the ini file header and restore from backup if corupted
    875891      if (!CheckFileHeader(inipath, "\xff\xff\xff\xff\x14\x00\x00\x00", 0L)) {
    876         saymsg(MB_ENTER,HWND_DESKTOP, GetPString(IDS_DEBUG_STRING),
    877                GetPString(IDS_INIFAILURETEXT));
    878         DosCopy("FM3.INI", "FM3INI.BAD", DCPY_EXISTING);
    879         DosCopy("FM3INI.BAK", "FM3.INI", DCPY_EXISTING);
    880         if (!CheckFileHeader(inipath, "\xff\xff\xff\xff\x14\x00\x00\x00", 0L)) {
    881           DosCopy("FM3.INI", "FM3INI2.BAD", DCPY_EXISTING);
    882           fWantFirstTimeInit = TRUE;
    883         }
     892        saymsg(MB_ENTER,HWND_DESKTOP, GetPString(IDS_DEBUG_STRING),
     893               GetPString(IDS_INIFAILURETEXT));
     894        DosCopy("FM3.INI", "FM3INI.BAD", DCPY_EXISTING);
     895        DosCopy("FM3INI.BAK", "FM3.INI", DCPY_EXISTING);
     896        if (!CheckFileHeader(inipath, "\xff\xff\xff\xff\x14\x00\x00\x00", 0L)) {
     897          DosCopy("FM3.INI", "FM3INI.BAD2", DCPY_EXISTING);
     898          fWantFirstTimeInit = TRUE;
     899        }
    884900      }
    885       if (!fWantFirstTimeInit) {
    886         fIniExisted = TRUE;
    887         if (fs3.attrFile & (FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM)) {
    888           fs3.attrFile &= ~(FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM);
    889           rc = xDosSetPathInfo(inipath, FIL_STANDARD, &fs3, sizeof(fs3), 0);
    890           if (rc) {
    891             Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
    892                         GetPString(IDS_INIREADONLYTEXT), inipath);
    893           }
    894         }
     901    }
     902    // in some odd cases the INI file can get set to readonly status
     903    // here we test it and reset the readonly bit if necessary
     904    if (!fWantFirstTimeInit) {
     905      fIniExisted = TRUE;
     906      if (fs3.attrFile & (FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM)) {
     907        fs3.attrFile &= ~(FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM);
     908        rc = xDosSetPathInfo(inipath, FIL_STANDARD, &fs3, sizeof(fs3), 0);
     909        if (rc) {
     910          Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
     911                      GetPString(IDS_INIREADONLYTEXT), inipath);
     912        }
    895913      }
    896914    }
  • TabularUnified trunk/dll/select.c

    r1565 r1604  
    389389
    390390    if (unmarkit)
    391       WinSendMsg(hwndCnr, CM_SETRECORDEMPHASIS, pci,
     391      WinSendMsg(hwndCnr, CM_SETRECORDEMPHASIS, MPFROMP(pci),
    392392                 MPFROM2SHORT(FALSE, CRA_SELECTED | CRA_CURSORED |
    393393                              CRA_INUSE | CRA_SOURCE));
Note: See TracChangeset for help on using the changeset viewer.