home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / dosutils / xeq140.arj / XEQ.DOC < prev   
Text File  |  1992-02-01  |  15KB  |  339 lines

  1. comment *
  2.                    XEQ
  3.                -----
  4.        XEQ - COM File Library and Command Executor
  5.  
  6. This program allows COM files to be stored inside XEQ's code and executed
  7. by the command:
  8.     XEQ command
  9. For example, if BEEP.COM has been added to XEQ then:
  10.     XEQ BEEP
  11. will execute the BEEP program stored inside XEQ. The original BEEP.COM
  12. can be removed from the hard disk (onto a backup floppy!!!). If the
  13. specified command is not in XEQ it is passed to the DOS for execution as
  14. if directly typed at the DOS prompt.
  15.  
  16. PURPOSE
  17.     The purpose is to prevent wasted hard-disk space by those pesky
  18. little COM files we don't seem to be able to do without. When hard disks
  19. are formatted they are given an allocation size (called a cluster size)
  20. and this is typically 2048 or 4096 bytes. So when you save a 7 byte
  21. COM file like BEEP.COM, it takes up a full cluster. By combining these
  22. COM files into this program or LIBRARY, several COM files can be stored
  23. in one file (the XEQ program itself) and still be accessed without this waste
  24. in hard disk space.
  25.  
  26. In order to make the body of XEQ as small as possible, only a limited
  27. number of options are available. They are
  28.  
  29.     XEQ [/R]<command> Execute <command> if it is in the library
  30.                 or passes it to DOS for execution if not
  31.     XEQ /A<command>   Add <command>.COM to library if not existent
  32.     XEQ /D<command>   Delete command from library if existent
  33.     XEQ /E<command>   Extract command from library to .COM file if existent
  34.     XEQ /L          List the <commands> in the library
  35.     XEQ /H          Display HELP information
  36.     XEQ           Attempt to run internal AUTOXEQ.COM, else HELP
  37.     XEQ /P<parms>      As above but passed <parms> to AUTOXEQ.COM
  38.     XEQ /C<command>      Suppress the reprocessing of the command line
  39.     XEQ /F          Freeze library
  40.  
  41. COMMAND DETAILS
  42.  
  43. /R - run a command
  44.  
  45. If no switch is given, the /R is assumed. If the given command name
  46. is in the library it is executed directly from there. XEQ internally
  47. relocates the stored file in memory so that the memory image is
  48. identical to the image if it had been loaded from the COM file on
  49. disk. This includes the way DOS loaded a COM file and the pretests
  50. for argument suitability and register set up. Thus ALL COM files
  51. should execute normally when run from within XEQ.
  52.  
  53. If the command is not found in XEQ then the string is passed to a DOS
  54. shell for execution. A second copy of COMMAND.COM is spawned with the
  55. command added after the /C switch. Therefore the command can be an
  56. internal, external, batch, EXE or COM file. (NOTE: SEE TSR LIMITATION
  57. BELOW.)
  58.  
  59. /A - add a command
  60.  
  61. Adds a COM file to the XEQ library. The filename given must either
  62. have no extension or .COM and the name part can contain standard DOS
  63. wildcards. A drive and/or path may be given to the target file.
  64. If the file is already in the library it will not be added. A warning
  65. message is given in this eventuality. Similarly if there is
  66. insufficient room to add a file, the addition of this file will be
  67. skipped with a warning. When wildcards exist, XEQ will attempt to add
  68. all files even if a given file cannot be found or is too big. Any attempt
  69. to add the current XEQ.COM file to itself (even if renamed under
  70. DOS3.x) will be prevented. (In DOS 2.x this safety feature can be
  71. thwarted by renaming XEQ.COM. A file called XEQ.COM is the only one
  72. excluded from being added.)
  73.  
  74. /D - delete a command
  75.  
  76. Removes the named command from the library. The filename given must either
  77. have no extension or .COM and the name part can contain standard DOS
  78. wildcards. A prompt asks for confirmation of the delete. 'Y' will
  79. delete the command, 'N' will skip deleting the command, 'G' will GO
  80. and delete this command and all further matching ones without asking
  81. again and 'A' will abort the entire delete process. Obviously 'G' is final
  82. and cannot be aborted once selected. Abort will cancel the effect of
  83. any 'Y' answers previously, AND NO COMMANDS WILL HAVE BEEN DELETED.
  84.  
  85. /E - extract a COM file
  86.  
  87. When the /E switch is used to extract a COM file, a full path for the
  88. resulting file may be specified. If the file already exists at that location,
  89. extraction does not occur. The filename given must either
  90. have no extension or .COM and the name part can contain standard DOS
  91. wildcards. The extracted file has the same date stamp as the COM file it was
  92. originally stored from. The file is NOT deleted from the library.
  93.  
  94. /L - list the library files
  95.  
  96. Displays a list of all files stored in XEQ. The original time and
  97. date stamp are displayed along with the file's byte size. At the end
  98. of the list the remaining space in XEQ is displayed, along with an
  99. indication of how much space has been saved by using XEQ (and
  100. deleting the original COM files). This computation is based upon
  101. the following:
  102.  
  103. DOS 2.x
  104. The value is the difference between the total clusters used by
  105. XEQ.COM on the default drive and the sum of all the clusters which
  106. would have been used on the default drive if each command was in its
  107. own COM file.
  108. The results can be misleading if say, you run XEQ/L while
  109. the drive default points to a floppy with a cluster size of 1024, but
  110. the DOS path executed XEQ.COM from the harddisk with a different
  111. cluster size. In this case the savings indicated are the bytes saved
  112. IF XEQ.COM WAS LOCATED ON THE DEFAULT DRIVE.
  113.  
  114. DOS 3.x
  115. The value is as above, but uses the cluster size of the drive it
  116. found XEQ.COM on and assumes that the COM files would have been on
  117. that drive if they were in separate files.
  118. Under DOS 3.x the savings always relate to the drive the path found
  119. XEQ.COM on and is independent of the default drive cluster size.
  120.  
  121. /H - Display the help screen
  122.  
  123. NO ARGUMENTS
  124. XEQ will try to find internal command AUTOXEQ.COM and if found will
  125. execute it. This can be any COM file so named. Arguments can be supplied
  126. using the /P command. If no such internal file exists, then HELP is
  127. displayed.
  128.  
  129. This feature can make XEQ perform a certain action if no arguments
  130. are supplied to it.
  131.  
  132. /P Run AUTOXEQ with parameters
  133. This performs as with NO ARGUMENTS above, but also passes the given
  134. parameters to the AUTOXEQ internal program. For example, if LIST.COM
  135. was stored in XEQ.COM as AUTOXEQ, then XEQ /PXEQ.DOC will start
  136. LIST.COM and pass it the file name XEQ.DOC.
  137.  
  138. /C Run the command but do not reprocess the command line
  139. Normally when XEQ is run without the /C switch, both the command line
  140. is reprocessed and the final program name is inserted for PMAP etc.
  141. (see below). When the /C switch is present, the original command line
  142. from the DOS prompt is passed to the final program and the program
  143. name returned by the program as argument 0 is the original XEQ name.
  144. For example:
  145.  
  146. If the DOS line is:
  147.  
  148. C> XEQ pgm arg1
  149.  
  150. then <pgm> sees only 1 argument <arg1> and the internally stored
  151. program name is <pgm>. If <pgm> was in C, argv[0] = pgm and argv[1] =
  152. arg1.
  153.  
  154. If the DOS line is:
  155.  
  156. C> XEQ /C pgm arg1
  157.  
  158. then <pgm> sees 3 arguments </C> <pgm> and <arg1> and the internally
  159. stored program name is <XEQ>. If <pgm> was in C, argv[0]=XEQ,
  160. argv[1]=/C, argv[2]=pgm and argv[3]=arg1.
  161.  
  162. The primary purpose of the /C switch is to allow programs resident in
  163. XEQ to ascertain where they originally came from, when this is desirable.
  164.  
  165. Note that is not possible to use the /C in conjunction with the
  166. AUTOXEQ function unless AUTOXEQ is specifically called out on the
  167. command line.
  168.  
  169. /F Freeze the library.  If you enter this switch and then answer Y,
  170. the library file will be frozen. This means ALL commands are
  171. inoperative except the /R or implied /R.  This prevents, among other
  172. things, an end-user of the library from seeing or changing its
  173. contents. A frozen library cannot be readily unfrozen.  In an
  174. emergency you can use a BINARY file editor (or DEBUG/SYMDEB) to
  175. change a single BYTE as follows:
  176.  
  177.     VERSION            OFFSET        OLD    NEW
  178.       1.40             05BFH         1     8
  179.  
  180. WARNING! This is version specific data.    
  181.  
  182. LIMITATIONS
  183.  
  184.     As a COM file can only be 64K long, COM files cannot
  185. be added to XEQ if this figure would be violated, as XEQ is a COM file
  186. itself. The /L command indicates the amount of space left and any
  187. attempt to add a file which would exceed the 64k limit is prevented. Any
  188. number of COM files can be added until this number is reached.
  189.         When a command is added or deleted from XEQ, a new copy of XEQ must
  190. be rewritten to disk. How it is written back depends on the version of DOS
  191. you are running.
  192.  
  193. DOS 2.x users
  194.  
  195. The revised library is always written to the current drive and directory as
  196. XEQ.COM, regardless of where the original copy of XEQ was found
  197. (it may have been loaded from elsewhere because of DOS's path
  198. capability). Therefore to update the original copy of XEQ, the /D or /A
  199. commands should be performed in the drive and directory of the
  200. original. If not, then the original copy of XEQ will still exist in its
  201. original location and the updated version in the current drive and
  202. directory. The new version of XEQ will always be called XEQ.COM, regardless
  203. of whether the original program was called XEQ.COM or not.
  204.  
  205. DOS3.x users
  206.  
  207. The revised library will be written over the original using the original's
  208. name. Thus doing a proper update of the original. The library can be given
  209. any name and this will be retained during the updating.
  210.  
  211. MULTIPLE LIBRARIES
  212.  
  213. For DOS 2.x user it is recommended that only one library XEQ.COM exist on the
  214. system. As adding or deleting from a renamed library file results in
  215. the new copy being called XEQ.COM on the current drive, care would
  216. have to be taken to prevent the overwriting of a legitimate XEQ.COM,
  217. and the new XEQ.COM would have to be renamed to the original name of
  218. the revised library.
  219.  
  220. For DOS 3.x users multiple libraries are more feasible as the updated library
  221. is always the original file no matter what it was called or where it
  222. was located. Thus maintaining multiple libraries is much simpler. CED
  223. (see below) can be used to avoid the need to remember which library
  224. contains a given command.
  225.  
  226. TERMINATE & STAY RESIDENT PROGRAMS
  227.  
  228. TSR programs can be stored inside XEQ and will install just like the
  229. original program. HOWEVER, NEVER RUN A TSR PROGRAM THROUGH XEQ WHICH
  230. IS NOT STORED IN XEQ. When XEQ cannot find a program it passes the name to
  231. DOS to run in a shell. If this program is a TSR it will freeze more
  232. memory than needed. XEQ has no way of knowing if a program it is
  233. about to execute externally is a TSR.
  234.  
  235. Beginning with version 1.10, XEQ will put the name of the file being
  236. run into the space between the end of the environment table and the
  237. start of the program. This is where DOS 3.x puts the running program
  238. name and XEQ will only duplicate this when running under DOS3.x. The
  239. purpose of this is to allow the running program to know its own name
  240. and to let TSR memory map programs like MAP.COM and MAPMEM.COM show
  241. the real program name which is resident.
  242.  
  243. A limitation exists for this however. The name stored is of the form
  244. d:\path\filename.COM. The space available to store this string cannot
  245. be increased and is set by the original running of XEQ. So if XEQ is
  246. the name of the comm library, the name of the actual program stored
  247. can only use the first 3 letters, truncating the full name. If this
  248. is important to you, the solution is to rename the library to a
  249. filename of 8 letters.  This will ensure sufficient space for any
  250. revision to any other name.  Starting with version 1.3 this is the
  251. mode of operation. Earlier versions destroyed the path information
  252. and this gave trouble to programs expecting to be able to recover the
  253. full drive, path and name information from argv[0] (in C) or %0 (in
  254. compiled batch files).
  255.  
  256. Starting with version 1.30, the final program name is also correctly
  257. set for such memory mapping programs as PMAP.
  258.  
  259. USAGE TIP
  260.  
  261. The CED utility and its synonym feature can make the use of XEQ
  262. transparent in use. For example, if BEEP.COM is stored inside XEQ then a 
  263. synonym like
  264.     SYN BEEP XEQ BEEP
  265. will cause BEEP to be run out of the XEQ file just by entering BEEP.
  266.  
  267. DISCLAIMER
  268.  
  269.     Hardwood Software Associates guarantees XEQ.COM will do NOTHING
  270. useful at all. You use it at your own risk (make backups of the COM files
  271. stored within XEQ before deleting them from your hard disk). However, it
  272. seems to perform as described here and may be of use to you.
  273.  
  274.     Colin J. Stearman [71036,256]
  275.     Senior Associate
  276.     HS Associates
  277.     143 Ash Street
  278.     Hopkinton, MA 01748
  279.  
  280. ======================================================================
  281.             EDIT LOG
  282.     REV    DATE        NAME        DETAIL
  283.     1.01    14-MAR-87    C.STEARMAN    Fixed bug if COM file name
  284.                         is one character
  285.     1.02    27-MAR-87       C.STEARMAN    Aligned file size column
  286.                         Added disk bytes saved calc
  287.     1.03    1-APR-87        C.STEARMAN      Fixed bug if in list if file
  288.                         was longer than 9999 bytes.
  289.                         Fixed error in saved space
  290.                         computation
  291.     1.10    2-APR-87    C.STEARMAN    Under DOS 3.x updating writes
  292.                         to original file. Also updates
  293.                         command name in environment 
  294.                         for MAP, added wildcard,
  295.                         fixed yet another space
  296.                         computation bug, used local
  297.                         stack for external run only
  298.     1.11   13-APR-87        C.STEARMAN    Revised space saved compute,
  299.                         see note above
  300.     1.12   16-APR-87        C.STEARMAN      Fixed bug in load_run module
  301.                         which did not initialize stack
  302.                         correctly. Bug manifested it-
  303.                         self when MODE was run
  304.                         internally. Returned bad
  305.                         parameters message
  306.         1.13   22-APR-87       C.STEARMAN       Fixed wrong message of file
  307.                         not found in /A
  308.                         Improved construction of PSP
  309.                         when running internals. May
  310.                         clean up some compatability
  311.                         problems. Fixed drive validity
  312.                         test. If wild cards in argu-
  313.                         ments, did not set AX correct-
  314.                         ly per DOS loaded.
  315.     1.14  29-APR-87       C.STEARMAN        Fixed bug when executing ext-
  316.                         ernal commands. Local stack
  317.                         trashed passed command string.
  318.                         Also stack crash caused by
  319.                         allowing XEQ.COM to grow to
  320.                         large. Caused random crashes.
  321.                         Added confirm delete
  322.     1.15 30-MAY-87          C.STEARMAN    Cleaned up help screen and
  323.                         identified which library file
  324.                         was accessed. Fixed bug in
  325.                         extract where a 1 character
  326.                         filename did not have .COM
  327.                         added to it.
  328.     1.20 15-MAR-91          C.STEARMAN    Added /H and the search for 
  329.                         internal command AUTOXEQ.COM
  330.     1.21 24-MAR-91          C.STEARMAN    Added /P for parameters to
  331.                         AUTOXEQ.COM
  332.     1.30 24-APR-91          C.STEARMAN    Modified storage method for
  333.                         program name to include path,
  334.                         added program name for PMAP
  335.     1.31 24-APR-91          C.STEARMAN    Added the /C switch
  336.     1.40 01-FEB-92          C.STEARMAN    Added /F switch
  337. ======================================================================
  338. *
  339.