Changeset 1287


Ignore:
Timestamp:
Nov 21, 2008, 3:08:11 PM (16 years ago)
Author:
John Small
Message:

Ticket 297: 1) More robust, flexible and user-friendly editing of DEF file
option description lines; 2) Support for compiling a copyright string
and linking it into distributed EXE and DLL files; 3) Improved update of
copyright years on a year change, including the About box;

Location:
trunk
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/ReleaseEdit.cmd

    r1281 r1287  
    33 *
    44 * ReleaseEdit: a program which will set the version number
    5  *      and the date and time of a FM/2 release
     5 *    and the date and time of a FM/2 release
    66 *
    77 * Usage:
    8  *      ReleaseEdit <version> <filename>
    9  *
    10  *      where <version> is x.y.z
    11  *
    12  *      and <filename> is ONE of the files (i.e. no wildcards)
    13  *      which need a version number and/or date/time:
    14  *         *.def, file_id.diz, dll\version.h, warpin\fm2.wis
     8 *    ReleaseEdit <version> <relative-filename>
     9 *
     10 *    where <version> is x.y.z
     11 *
     12 *    and <relative-filename> is ONE of the files (i.e. no wildcards)
     13 *    which need a version number and/or date/time:
     14 *       *.def, file_id.diz, dll\version.h, warpin\fm2.wis
    1515 *
    1616 * Change log:
    17  *      18 Nov 08 JBS Ticket 297: Various build improvements/corrections
    18  *      - Use SysTempFilename instead of hard-coded temp file name
    19  *       - Commented out support for changing version in FM2.WIS
     17 *    18 Nov 08 JBS Ticket 297: Various build improvements/corrections
     18 *       -  Use SysTempFilename instead of hard-coded temp file name
     19 *       -  Removed support for changing version in FM2.WIS (not needed)
     20 *    21 Nov 08 JBS Ticket 297: Various build improvements/corrections
     21 *       -  Changed code for option description lines in DEF files.
     22 *          Instead of reading the current lines, they are recontructed
     23 *          scratch. The data for these lines is:
     24 *          - provided as a parameter (version/revision)
     25 *          - read from a repository file, option_descriptions.txt
     26 *            - all fields read from have default values
     27 *            - support for environment variables
     28 *          - edits length of all fields in option description
     29 *       - added support for changing copyright years in:
     30 *          - dll\copyright.c
     31 *          - dll\fm3res.rc
     32 *          - dll\fm3res.dlg (About box)
     33 *       - improved error handling: tmp file renamed back to deleted file
     34 *       - improved "usage" routine
    2035 *
    2136*/
     
    3146*/
    3247
     48/*
     49   sed_separator:
     50     - used only for SED edits of DEF file descriptions
     51     - MUST be a character not found in ANY DEF file description!
     52     - MUST be a character acceptable to SED as a separator
     53*/
     54sed_separator = '&'
     55
     56/* Process parameters */
    3357parse arg ver file .
    3458if ver = '' | file = '' then
    35    call Usage 0                 /* and exit */
     59   call Usage           /* and exit */
    3660else if stream(file, 'c', 'query exists') = '' then
    37    call Usage 2                 /* and exit */
     61   call Usage           /* and exit */
     62/* Set extension, if none set it to uppercase(file) */
     63ext = substr(translate(file), lastpos('.', file) +1)
    3864parse var ver major '.' minor '.' CSDLevel
    3965if CSDlevel = '' then
    4066   CSDlevel = 0
     67
     68/* Set fixed strings */
     69globals = 'repository copyright_year_marker copyright_year_marker_len'
     70repository = 'option_descriptions.txt'
    4171mkstr_makefile  = 'DLL\INTERNAL\MAKEFILE'
    4272warpin_makefile = 'WARPIN\MAKEFILE'
    43 warpin_db_ver = (major + 0) || '\\' || (minor + 0) || '\\' || (CSDlevel + 0)
    44 warpin_makefile_ver  = major || '-' || minor || '-' || CSDlevel
    45 ext = substr(translate(file), lastpos('.', file) +1)   /* if no extension, ext <-- uppercase(file) */
    4673parse value date('s') with year 5 month 7 day
     74last_year = year - 1
     75
     76/* Prepare temporary file */
    4777call RxFuncAdd 'SysTempFilename', 'REXXUTIL', 'SysTempFilename'
    4878tmpfile = SysTempFilename('redittmp.???')
     
    5383      exit 1
    5484   end
    55 'del' file
     85if wordpos(ext, 'C RC DLG') = 0 then
     86   'del' file
     87
     88/* Process the request */
    5689select
    5790   when ext = 'DEF' then
    5891      do
    59          'sed -r -e "/Copyright/s/(Copyright.*20[0-9][0-9], )[0-9]*/\1' || year || '/g" -e "/desc/s/(SLAInc:).*(#@##1## )[0-9/]+ [0-9:]+/\1' || ver || '\2' || month || '\/' || day || '\/' || year right(major, 2, '0') || ':' || right(minor, 2, '0') || ':' || right(CSDlevel, 2, '0') || '/" ' || tmpfile || ' >' file
     92         copyright_year_marker = 'copyright-year'
     93         copyright_year_marker_len = length(copyright_year_marker)
     94
     95         vendor         = GetFromRepository( 'vendor', 'The Netlabs FM/2 team', 31 )
     96         revision       = ver
     97         buildhost      = GetFromRepository( 'buildhost', 'GKYBuild', 11 )
     98         asd_feature_id = GetFromRepository( 'asd_feature_id', '', 11 )
     99         language_code  = GetFromRepository( 'language_code', 'EN', 4 )
     100         country_code   = GetFromRepository( 'country_code', 'US', 4 )
     101         build          = GetFromRepository( 'build', '0', 7 )
     102         processor_type = GetFromRepository( 'processor_type', 'U', 1 )
     103         fixpack_ver    = GetFromRepository( 'fixpack_ver', '', 11 )
     104         description    = GetFromRepository( 'desc.' || left(file, pos('.', file) - 1), '', 79 )
     105         call stream repository, 'c', 'close'
     106
     107         option_description = '@#' || vendor || ':' || revision || '#@##1## ' || ,
     108                              month || '/' || day || '/' || year || ' ' || ,  /* or day month year? */
     109                              right(major, 2, '0') || ':' || right(minor, 2, '0') || ':' || right(CSDlevel, 2, '0') || ,
     110                              copies(' ', 6) || buildhost || ':' || asd_feature_id || ':' || ,
     111                              language_code || ':' || country_code || ':' || build || ':' || ,
     112                              processor_type || ':' || fixpack_ver || '@@' || description
     113         do forever
     114            p = pos(copyright_year_marker, option_description)
     115            if p = 0 then
     116               leave
     117            else
     118               if p = 1 then
     119                  option_description = year || substr(option_description, p + copyright_year_marker_len)
     120               else
     121                  if p + copyright_year_marker_len >= length(option_description) then
     122                     option_description = left(option_description, p - 1) || year
     123                  else
     124                     option_description = left(option_description, p - 1) || year || substr(option_description, p + copyright_year_marker_len)
     125         end
     126         option_description = "option description '" || option_description || "'"
     127         'sed -r -e "/option description/s' || sed_separator || '.*' || sed_separator || option_description || sed_separator || '" ' || tmpfile || ' >' file
     128      end
     129   when wordpos(ext, 'C RC DLG') > 0 then
     130      do
     131         signal off error
     132         'grep -E "Copyright.*' || last_year || '[^,]" ' || file || ' >nul && del ' || file || ' && sed -r -e "/Copyright.*' || last_year || '[^,]/s/' || last_year || '/' || year || '/" ' || tmpfile || ' >' file
     133         signal on error
    60134      end
    61135   when ext = 'H' then
     
    73147   when right(ext, length(warpin_makefile)) = warpin_makefile then
    74148      do
     149         warpin_db_ver = (major + 0) || '\\' || (minor + 0) || '\\' || (CSDlevel + 0)
     150         warpin_makefile_ver  = major || '-' || minor || '-' || CSDlevel
    75151         'sed -r -e "/FM2_VER=-/s/(FM2_VER=-)[-0-9]+/\1' || warpin_makefile_ver || '/" ' || tmpfile || ' >' file
    76152      end
    77153   otherwise
    78       nop                       /* Or error message or usage info? */
     154      nop         /* Or error message or usage info? */
    79155end
    80156'@if exist' tmpfile 'del' tmpfile
    81157return
    82158
     159/* Subroutines */
     160GetFromRepository: procedure expose (globals)
     161   parse arg value_name, value_default, max_value_len
     162   /* Replace this with code for each DEF file */
     163   call SysFileSearch value_name || '=', repository, 'lines.'
     164   if lines.0 = 0 then
     165      if left(value_name, 5) = 'desc.' then
     166         call MissingDescriptionInRepository value_name
     167      else
     168         value_value = value_default
     169   else
     170      do
     171         n = lines.0
     172         parse var lines.n . '=' value_value
     173      end
     174   value_value = strip(value_value)
     175   if length(value_value) > 1 then
     176      if left(value_value, 1) = '%' & right(value_value, 1) = '%' then
     177         do
     178            value_value = value(substr(value_value, 2, length(value_value) - 2),, 'OS2ENVIRONMENT')
     179            if value_value = '' then
     180               value_value = value_default
     181         end
     182   if pos(copyright_year_marker, value_value) > 0 then
     183      value_len = length(value_value) - copyright_year_marker_len + 4
     184   else
     185      value_len = length(value_value)
     186   if value_len > max_value_len then
     187      do
     188         say
     189         say 'Error in length of data field!'
     190         say '  Field name:' value_name
     191         say '  Length    :' value_len
     192         say '  Max. len. :' max_value_len
     193         say '  Field     :' value_value
     194         say '  Trunc''d  :' left(value_value, max_value_len)
     195         say
     196         say 'This should be corrected in the repository:' repository
     197         say
     198         '@pause'
     199      end
     200return value_value
     201
    83202Usage:
    84    parse arg plus
    85         say;say;say
    86         lastline = sigl - (14 + plus)
    87         do i = 1 to lastline
    88                 say sourceline(i)
    89         end
    90 exit
     203   say;say;say
     204   i = 1
     205   do forever
     206      srcline = sourceline(i)
     207      if pos('CHANGE LOG', translate(srcline)) > 0 then
     208         exit
     209      say srcline
     210      i = i + 1
     211   end
    91212
    92213/*=== Error() Report ERROR, FAILURE etc. and exit ===*/
     
    107228    trace '?A'
    108229    say 'Exiting.'
     230    'ren' tmpfile file
    109231    call 'SYSSLEEP' 2
    110232    exit 'CONDITION'('C')
     
    119241   signal ErrorExit
    120242
    121 
     243/*
     244 * bldlevel string docs:
     245    Format of BLDLEVEL string (Type III)
     246
     247@#<Vendor>:<Revision>#@##1## DD.MM.YY hh:mm:ss      <BuildHost>:<ASDFeatureID>:<LanguageCode>:<CountryCode>:<Build>:<Unknown>:<FixPackVer>@@<Description>
     248
     249where
     250
     251    * DD.MM.YY is the build date in day/month/year, preceded by 1 space
     252    * hh:mm:ss is the build time in hour/minute/second, preceded by 1 space
     253    * <BuildHost> is machine on which build compiled, preceded by 8 spaces
     254    * <ASDFeatureID> is identifier of ASD feature
     255    * <LanguageCode> is code of language of component
     256    * <CountryCode> is country code of component
     257    * <Build> is build number
     258    * <Unknown> is not known information (must be empty)
     259    * <FixPackVer> is FixPack version (if distibuted as part of).
     260
     261Note: If you leave build date and/or build time empty you still have to provide the same amount of spaces to replace build date/build time.
     262
     263
     264*/
     265
     266
  • TabularUnified trunk/ReleaseTool.cmd

    r1281 r1287  
    146146      when action = 6 then
    147147         do /* Ensure the edits build */
     148            'set WARNALL=1'
    148149            'wmake -a all'
    149150         end
     
    178179      when action = 10 then
    179180         do /* Build for the release */
    180             'set FORTIFY=& set DEBUG=& wmake -a all'
     181            'set FORTIFY='
     182            'set DEBUG='
     183            'wmake -a all'
    181184         end
    182185      when action = 11 then
     
    349352        version_filelist = version_filelist 'viewinfs.def vtree.def file_id.diz'
    350353        version_filelist = version_filelist 'warpin\makefile dll\internal\makefile'
     354        version_filelist = version_filelist 'dll\copyright.c dll\fm3res.rc dll\fm3res.dlg'
    351355return
    352356
     
    376380      say '18. TRAC updates.'
    377381      say '19. Upload to distribution points and announce release.'
    378       say '20. Set next version.'
     382      say '20. Set next version (no HISTORY or README update).'
    379383      say
    380384      call charout , 'Enter the number of your choice (''X'' to exit; ''0'' to open a command line): '
  • TabularUnified trunk/dll/fm3res.rc

    r1240 r1287  
    4545#include "fm3dll2.h"
    4646#include "fm3dlg.h"
     47
     48#define IDS_COPYRIGHT 1
    4749
    4850ICON        MAIN_FRAME          ..\icons\FM3.ICO
     
    23362338}
    23372339
     2340STRINGTABLE
     2341  BEGIN
     2342    IDS_COPYRIGHT, "Copyright (c) 1993, 1998 M. Kimes, " \
     2343                     "Copyright (c) 2001, 2008 Steven Levine and Associates, Inc." \
     2344                     "All rights reserved";
     2345  END
     2346
     2347
    23382348HELPTABLE ID_HELPTABLE
    23392349{
  • TabularUnified trunk/makefile_post.mk

    r1285 r1287  
    1616# Executable specific paramters go in .def
    1717
    18 $(BASE).exe: $(BASE).lrf $(BASE).obj $(BASE).res $(BASE).def .explicit
     18$(BASE).exe: $(BASE).lrf $(BASE).obj $(BASE).res $(BASE).def dll\copyright.obj .explicit
    1919  $(LINK) @$(BASE).lrf @$(BASE).def
    2020  @echo.
     
    2727   @%append $^@ name $(BASE)
    2828   @%append $^@ file $(BASE).obj
     29   @%append $^@ file dll\copyright.obj
    2930!ifdef %EXCEPTQ
    3031    @%append $^@ file exceptq.lib
Note: See TracChangeset for help on using the changeset viewer.