home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xc212os2.zip / ISODEF / strings.def < prev    next >
Text File  |  1994-12-22  |  7KB  |  145 lines

  1. DEFINITION MODULE Strings;
  2.  
  3.   (* Facilities for manipulating strings *)
  4.  
  5. TYPE
  6.   String1 = ARRAY [0..0] OF CHAR;
  7.     (* String1 is provided for constructing a value of a single-character string type from a
  8.        single character value in order to pass CHAR values to ARRAY OF CHAR parameters.
  9.     *)
  10.  
  11. PROCEDURE Length (stringVal: ARRAY OF CHAR): CARDINAL;
  12.   (* Returns the length of stringVal (the same value as would be returned by the
  13.      pervasive function LENGTH).
  14.   *)
  15.  
  16.  
  17. (* The following seven procedures construct a string value, and attempt to assign it to a
  18.    variable parameter.  They all have the property that if the length of the constructed string
  19.    value exceeds the capacity of the variable parameter, a truncated value is assigned, while
  20.    if the length of the constructed string value is less than the capacity of the variable
  21.    parameter, a string terminator is appended before assignment is performed.
  22. *)
  23.  
  24. PROCEDURE Assign (source: ARRAY OF CHAR; VAR destination: ARRAY OF CHAR);
  25.   (* Copies source to destination *)
  26.  
  27. PROCEDURE Extract (source: ARRAY OF CHAR; startIndex, numberToExtract: CARDINAL;
  28.                    VAR destination: ARRAY OF CHAR);
  29.   (* Copies at most numberToExtract characters from source to destination, starting at position
  30.      startIndex in source.
  31.   *)
  32.  
  33. PROCEDURE Delete (VAR stringVar: ARRAY OF CHAR; startIndex, numberToDelete: CARDINAL);
  34.   (* Deletes at most numberToDelete characters from stringVar, starting at position
  35.      startIndex.
  36.   *)
  37.  
  38. PROCEDURE Insert (source: ARRAY OF CHAR; startIndex: CARDINAL;
  39.                   VAR destination: ARRAY OF CHAR);
  40.   (* Inserts source into destination at position startIndex *)
  41.  
  42. PROCEDURE Replace (source: ARRAY OF CHAR; startIndex: CARDINAL;
  43.                    VAR destination: ARRAY OF CHAR);
  44.   (* Copies source into destination, starting at position startIndex. Copying stops when
  45.      all of source has been copied, or when the last character of the string value in
  46.      destination has been replaced.
  47.   *)
  48.  
  49. PROCEDURE Append (source: ARRAY OF CHAR; VAR destination: ARRAY OF CHAR);
  50.   (* Appends source to destination. *)
  51.  
  52. PROCEDURE Concat (source1, source2: ARRAY OF CHAR; VAR destination: ARRAY OF CHAR);
  53.   (* Concatenates source2 onto source1 and copies the result into destination. *)
  54.  
  55. (* The following predicates provide for pre-testing of the operation-completion
  56.    conditions for the procedures above.
  57. *)
  58.  
  59. PROCEDURE CanAssignAll (sourceLength: CARDINAL; VAR destination: ARRAY OF CHAR): BOOLEAN;
  60.   (* Returns TRUE if a number of characters, indicated by sourceLength, will fit into
  61.      destination; otherwise returns FALSE.
  62.   *)
  63.  
  64. PROCEDURE CanExtractAll (sourceLength, startIndex, numberToExtract: CARDINAL;
  65.                          VAR destination: ARRAY OF CHAR): BOOLEAN;
  66.   (* Returns TRUE if there are numberToExtract characters starting at startIndex and
  67.      within the sourceLength of some string, and if the capacity of destination is
  68.      sufficient to hold numberToExtract characters; otherwise returns FALSE.
  69.   *)
  70.  
  71. PROCEDURE CanDeleteAll (stringLength, startIndex, numberToDelete: CARDINAL): BOOLEAN;
  72.   (* Returns TRUE if there are numberToDelete characters starting at startIndex and
  73.      within the stringLength of some string; otherwise returns FALSE.
  74.   *)
  75.  
  76. PROCEDURE CanInsertAll (sourceLength, startIndex: CARDINAL;
  77.                         VAR destination: ARRAY OF CHAR): BOOLEAN;
  78.   (* Returns TRUE if there is room for the insertion of sourceLength characters from
  79.      some string into destination starting at startIndex; otherwise returns FALSE.
  80.   *)
  81.  
  82. PROCEDURE CanReplaceAll (sourceLength, startIndex: CARDINAL;
  83.                          VAR destination: ARRAY OF CHAR): BOOLEAN;
  84.   (* Returns TRUE if there is room for the replacement of sourceLength characters in
  85.      destination starting at startIndex; otherwise returns FALSE.
  86.   *)
  87.  
  88. PROCEDURE CanAppendAll (sourceLength: CARDINAL; VAR destination: ARRAY OF CHAR): BOOLEAN;
  89.   (* Returns TRUE if there is sufficient room in destination to append a string of
  90.      length sourceLength to the string in destination; otherwise returns FALSE.
  91.   *)
  92.  
  93. PROCEDURE CanConcatAll (source1Length, source2Length: CARDINAL;
  94.                         VAR destination: ARRAY OF CHAR): BOOLEAN;
  95.   (* Returns TRUE if there is sufficient room in destination for a two strings of
  96.      lengths source1Length and source2Length; otherwise returns FALSE.
  97.   *)
  98.  
  99. (* The following type and procedures provide for the comparison of string values, and for the
  100.    location of substrings within strings.
  101. *)
  102.  
  103. TYPE
  104.   CompareResults = (less, equal, greater);
  105.  
  106. PROCEDURE Compare (stringVal1, stringVal2: ARRAY OF CHAR): CompareResults;
  107.   (* Returns less, equal, or greater, according as stringVal1 is lexically less than,
  108.      equal to, or greater than stringVal2.
  109.   *)
  110.  
  111. PROCEDURE Equal (stringVal1, stringVal2: ARRAY OF CHAR): BOOLEAN;
  112.   (* Returns Strings.Compare(stringVal1, stringVal2) = Strings.equal *)
  113.  
  114. PROCEDURE FindNext (pattern, stringToSearch: ARRAY OF CHAR; startIndex: CARDINAL;
  115.                     VAR patternFound: BOOLEAN; VAR posOfPattern: CARDINAL);
  116.   (* Looks forward for next occurrence of pattern in stringToSearch, starting the search at
  117.      position startIndex. If startIndex < LENGTH(stringToSearch) and pattern is found,
  118.      patternFound is returned as TRUE, and posOfPattern contains the start position in
  119.      stringToSearch of pattern. Otherwise patternFound is returned as FALSE, and posOfPattern
  120.      is unchanged.
  121.   *)
  122.  
  123. PROCEDURE FindPrev (pattern, stringToSearch: ARRAY OF CHAR; startIndex: CARDINAL;
  124.                     VAR patternFound: BOOLEAN; VAR posOfPattern: CARDINAL);
  125.   (* Looks backward for the previous occurrence of pattern in stringToSearch and returns the
  126.      position of the first character of the pattern if found. The search for the pattern
  127.      begins at startIndex. If pattern is found, patternFound is returned as TRUE, and
  128.      posOfPattern contains the start position in stringToSearch of pattern in the range
  129.      [0..startIndex]. Otherwise patternFound is returned as FALSE, and posOfPattern is unchanged.
  130.   *)
  131.  
  132. PROCEDURE FindDiff (stringVal1, stringVal2: ARRAY OF CHAR;
  133.                     VAR differenceFound: BOOLEAN; VAR posOfDifference: CARDINAL);
  134.   (* Compares the string values in stringVal1 and stringVal2 for differences. If they
  135.      are equal, differenceFound is returned as FALSE, and TRUE otherwise. If
  136.      differenceFound is TRUE, posOfDifference is set to the position of the first
  137.      difference; otherwise posOfDifference is unchanged.
  138.   *)
  139.  
  140. PROCEDURE Capitalize (VAR stringVar: ARRAY OF CHAR);
  141.   (* Applies the function CAP to each character of the string value in stringVar. *)
  142.  
  143. END Strings.
  144.  
  145.