Changeset 297


Ignore:
Timestamp:
Feb 7, 2012, 9:28:57 PM (13 years ago)
Author:
dmik
Message:

warpin-conflicts.cmd: Use WIC -p to get Package version.

This fixes infamous random errors when accessing the INI file
directly from REXX.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified rpm/trunk/scripts/warpin-conflicts.cmd

    r199 r297  
    1313 * Author: Dmitriy Kuminov
    1414 *
     15 * Version: 1.2 - 2012-02-08
     16 *   - Use WIC -p to get the Package version. This should solve infamous random
     17 *     errors when accessing the INI file directly from REXX.
    1518 * Version: 1.1 - 2011-09-08
    1619 *   - Skip incomplete IDs (they will not match anything).
     
    5760Main: procedure expose (Globals)
    5861
     62    G.Args = strip(G.Args)
    5963    if (G.Args \== '') then do
    6064        ver = GetPkgVersion(G.Args)
     
    105109    parse var aPkgId v1'\'a1'\'p1
    106110    if (v1 == '' | a1 == '' | p1 == '') then return ''
     111    ver = ''
    107112    WarpInDir = strip(SysIni('USER', 'WarpIN', 'Path'), 'T', '0'x)
    108113    if (WarpInDir \== '') then do
     114        /* first, check if we have WIC that supports -p (1.0.16+) */
     115        wic_ver = ''
     116        wic_exe = stream(WarpInDir'\WIC.EXE', 'C', 'QUERY EXISTS')
     117        if (wic_exe \== '') then do
     118            temp_dir = value('TMP',, 'OS2ENVIRONMENT')
     119            if (temp_dir = '') then temp_dir = value('TEMP',, 'OS2ENVIRONMENT')
     120            temp_file = SysTempFileName(temp_dir'\wic?????.tmp')
     121            call SysSetExtLibPath WarpInDir';%BEGINLIBPATH%', 'B'
     122            address 'cmd' wic_exe '-h 2>nul 1>'temp_file
     123            if (rc == 0) then do
     124                str = linein(temp_file)
     125                call lineout temp_file
     126                parse var str 'wic V'wic_ver .
     127                if (wic_ver >= '1.0.16') then do
     128                    address 'cmd' wic_exe '-p "'aPkgId'" 2>nul 1>'temp_file
     129                    if (rc == 0) then do
     130                        str = linein(temp_file)
     131                        call lineout temp_file
     132                        parse var str v2'\'a2'\'p2'\'v2'='ver
     133                    end
     134                    else if (rc == -1 /* not found */) then rc = 0
     135                end
     136                else wic_ver = ''
     137            end
     138            call SysFileDelete temp_file
     139            if (wic_ver \= '' & rc == 0) then return ver
     140            if (rc == 5636) then do
     141                say; say 'ERROR:'; say
     142                say 'Failed to query the WarpIn database because the WarpIn application'
     143                say 'is already running.'; say
     144                say 'Please close the WarpIn application and try again.'; say
     145                exit 5
     146            end
     147            else if (rc \= 0) then do
     148                say; say 'ERROR:'; say
     149                say 'Failed to access the WarpIn database. Executing the program'; say
     150                say '  'wic_exe; say
     151                say 'failed with exit code 'rc'. Please make sure that the WarpIn'
     152                say 'application is installed correctly and try again.'; say
     153                exit 5
     154            end
     155        end
     156        /* sad, but we failed with WIC and have to use the old unsatable method... */
    109157        rc = SysFileTree(WarpInDir'\DATBAS_?.INI', 'inis', 'FO')
    110158        if (rc == 0) then do
Note: See TracChangeset for help on using the changeset viewer.