Apparatus and method for constructing a non-linear data object from a common gateway interface

Information

  • Patent Grant
  • 5787450
  • Patent Number
    5,787,450
  • Date Filed
    Wednesday, May 29, 1996
    30 years ago
  • Date Issued
    Tuesday, July 28, 1998
    27 years ago
Abstract
A computer implemented method and apparatus for creating a data structure comprising a non-linear data object with typed data fields and field names from a common gateway interface type input string.
Description

BACKGROUND OF THE INVENTION
1. Technical Field of the Invention
This invention relates to a computer implemented method and apparatus for creating a data structure. More specifically, to a method and apparatus for creating a data structure comprising a non-linear data object with typed data fields and field names from a common gateway interface type input string.
2. Background Art
When writing a common gateway interface (CGI) program to run under a hypertext markup language (HTML) document server, input data to the CGI program comes in one long text string in the format:
"KeyWordName1=value1&KeyWordName2=value2& . . .
KeyWordNameN=valueN".
This data can be cumbersome to parse into individual values. It is much preferred, for ease of use for many users of computing systems, to present data organized into useful records and fields.
For example, users of IBM AS/400 series machines tend to be most familiar using and viewing data as records and fields in a database. Also, such users are typically familiar with the use of data description specification (DDS) files to organize data into useful records and fields.
It is, therefore, an object of the invention to provide a method for organizing CGI input data, using a DDS file description as the template, into useful records and fields; that is, a data structure comprising a non-linear data object with typed data fields and field names derived from a common gateway interface type input string.
It is a further object of the invention to provide in that non-linear data object data which is converted to the proper data type for each field, such as alphanumeric, integer, or decimal.
SUMMARY OF THE INVENTION
This invention provides an apparatus and method for operating a digital computer to receive an input string including a plurality of text keyword/value pairs; to build from the keyword/value pairs a data structure of converted values without keywords.
In accordance with a further aspect of the invention, a template file listing is provided including for each keyword, the data type and size for the corresponding value; and the data structure is organized to place a converted value within said data structure at an offset determined with reference to the size associated with the keywords in the template file.
In accordance with a further aspect of the invention, a memory element (such as a computer disk or tape, or other non-volatile memory device), or a transmission medium (such as wire or air) or a volatile memory device (such as main memory) is provided to store or transmit signals which are adaptable to operate a computer in accordance with the processes set forth in the previous paragraphs.
Other features and advantages of this invention will become apparent from the following detailed description of the presently preferred embodiment of the invention, taken in conjunction with the accompanying drawings.





BRIEF DESCRIPTION OF THE DRAWINGS
FIG. 1 illustrates the format of a typical input string to a common gateway interface (CGI) program.
FIG. 2 illustrates a data description specification (DDS) file specification, or template file.
FIG. 3 illustrates the contents of the output buffer resulting from executing the method of the invention on the input string of FIG. 1.
FIG. 4 is a flow diagram of the method of the invention.





BEST MODE FOR CARRYING OUT THE INVENTION
Referring to FIGS. 1-3, the application program interface (API) of a preferred embodiment of this invention provides an interface for common gateway interface (CGI) programs to parse CGI input 100, defined as a series of keywords and their values, each keyword/value pair 102, 104, 106 being all text data separated by a delimiter character, in this embodiment "&", into a buffer 160 which is formatted according to a data definition specification (DDS) file specification or template 140.
Table 1 sets forth the API specification QtmhCvtDB, illustrating a preferred embodiment of the invention.
TABLE 1______________________________________QTMH.sub.-- EXTERN void QtmhCvtDb(void *, /* qualified DDS file name*/char *, /* buffer containing the string of CGI keyword parameters to be parsed.*/int *, /* length of the string of CGI keyword parameters to be parsed.*/void *, /* output buffer into which the parsed parameter values will be stored.*/int *, /* length of buffer provided for parsed paramter values.*/int *, /* response length.*/int *, /* response code.*/void *, /* error code.*/______________________________________
Referring to FIG. 2, DDS file specification includes, in this example, record name field 142 and a series of field pairs 144, 146 setting forth a template of field names 144 (in this example, field names FIRST, SECOND and THIRD), and corresponding data type and field size definitions 146 (in this example, 21 characters of alphanumeric, 9.3 poision floating point, and 3 position binary or integer, respectively.)
Referring to FIG. 3, the contents of output buffer 160 resulting from execution of the method of the invention shows a plurality of variable length records 162, 164, 166 located at offsets 168 of 1, 21 and 30, respectively, each record containing values converted to proper type from the corresponding text name/value pairs 102, 104, and 106 of the CGI input string.
The advantage to the user, or CGI programmer, is that returned data can be referenced by structure member name, and the data is returned in useable types. Thus, the CGI programmer enters:
CGI.sub.-- INPUT.sub.-- STRUCT.FIRST and the returned data is useable, such that 10% of the third parameter is
CGI.sub.-- INPUT.sub.-- STRUCT.THIRD * 0.1
Referring to FIG. 4, a flow chart of the method of the invention for constructing a typed data structure from a text input string is set forth. In step 200, initialization routines are executed which set up variables, establish working space in memory, read in the DDS template file 140, and receive the passed parameters, including:
______________________________________PtrDbFileName name of DB template file 140PtrParseString the input stringStringLength length of the input stringPtrRecBuffer variable to hold responseBufferLength length of bufferPtrRespLength length of responsePtrRespcode response codePtrEcStruc error code structure______________________________________
Various local variables are established, the passed pointers and variables are checked for validity, a signal handler is turned on to catch exceptions, null and zero fields are checked, user space to contain the output from the list APIs is created, and a previously created definition of fields from the db.sub.-- list�! array is found or a definition of fields is created using the appropriate APIs.
In step 202, a keyword/value pair 102 is read from input string 100. In step 204, template 140 is searched for a match of the keyword word from pair 102 with a keyword 144. If, in step 206, a match is not found in step 208, a bit or field is set in the return codes indicating such, and processing passes to block 220. Otherwise, upon a successful match in block 206, the data type and size for the value in keyword/value pair 102 is determined from entry 146 in template file 140 corresponding to the keyword 144. In step 212, the value in keyword/value pair 102 is converted to the correct data type and size determined in step 210. If the conversion is not successful, such as would be the case if the input value 102 is floating point and the correct data type is day-of-week, for example, then in step 216 a bit or field in the return code is set for unsuccessful conversion, and processing passes to step 220. Otherwise, if conversion is successful, in step 218 the converted value is placed in output buffer 168 at the appropriate offset (in this case, as the first keyword, from pair 102, is also the first keyword in template file 140, then the offset is zero. In this specific embodiment, for subsequent fields 164 and 166, the offset will be related to the sum of field sizes for previous entries in template 140.)
In step 220 it is determined if all keyword/value pairs have been read from input string 100 and, if not, processing passes to step 202 where the next keyword/value pair 104, for example, is read and processed through steps 218. When all keyword/value pairs have been read from input string 100, template 140 is examined to see if all template fields 144 have been used, and if not, in step 224 a bit or field is set in the return code indicating such. Processing then, in either case, passes to step 226 where buffer 168 and the return codes are returned to the calling program, and processing ends.
Table 2 sets forth a source code listing of the main routine implementing the process illustrated in FIG. 2. As will be apparent to those skilled in the art, and therefore not set forth in the source code listing of Table 2, initial routines are provided for declaring and initializing local variables; turning on a SignalHandler to catch exceptions; checking all passed pointers for validity, and that they are not null or zero; handling errors and raising exceptions; assuring that error code structures are valid. Table 2 includes a description, in lines 1825 through 1847, of the process for finding or creating user space to contain output from the list APIs QUSLFLD and QUSLRCD.
TABLE 2______________________________________MAIN ROUTINE______________________________________1825 if (list.sub.-- header == NULL)1826 create.sub.-- list.sub.-- space();1833 db.sub.-- cvt = find.sub.-- db.sub.-- cvt((char*)PtrDbFileName);1835 reset.sub.-- fields(db.sub.-- cvt);1836 memcpy(parm.sub.-- data, PtrParseString, StringLength);1837 parm.sub.-- data�*PtrStringLength! = '.backslash.0'1838 PtrTempReceiver = (char*)malloc(RequiredBuffersize);1839 RequestMethod = getenv("REQUEST.sub.-- METHOD");1842 if (strcmp(requestMethod, "GET") |=01843 {1844 ptr.sub.-- char = strcat("first?", parm.sub.-- data);1845 strcpy(parm.sub.-- data, ptr.sub.-- char);1846 }1847 strtok(parm.sub.-- data, "?");1848 while ((field.sub.-- name=strtok(NULL,"=")) |=NULL1849 {1850 if ((data = strtok(NULL,",&")) |=NULL1851 {1852 fill.sub.-- field(db.sub.-- cvt, (char*)PtrTempReceiver, cvt.sub.-- data(field.sub.-- name) ,cvt.sub.-- data(data), &error.sub.-- flag);1854 }1855 }1856 fill.sub.-- unused.sub.-- fields(db.sub.-- cvt,(char*) PtrTempReceiver,&error.sub.-- flag);1858 if (BufferLength >= RequiredBuffersize) memcpy(PtrRecBuffer, PtrTempReceiver, RequiredBufferSize);1861 *PtrRespLength = RequiredBufferSize;1862 if (error.sub.-- flag > 4) error.sub.-- flag &= 3;1864 *PtrRespCode = -(error.sub.-- flag);1865 signal (SIGALL, original.sub.-- handler);1866 return;1867 }______________________________________
Several functions are called in the course of processing the main routine and related routines, among them the following: (1) cvt.sub.-- to.sub.-- alpha copies data from source to result and pads with blanks; (2) cvt.sub.-- to.sub.-- pd converts data to packed decimal; and (3) cvt.sub.-- to.sub.-- f converts data to floating point notation; (4) cvt.sub.-- to.sub.-- i converts data to integer. C-code routines for several other functions and structures helpful to an understanding of a preferred embodiment of the invention are set forth in the following tables.
Table 3 describes the create.sub.-- list.sub.-- space function, which creates the space to be used by the list APIs QUSLFLD and QUSLRCD.
TABLE 3______________________________________CREATE LIST SPACE______________________________________void create.sub.-- list.sub.-- space(void)char attrb�10!;char desc�50!,void *space.sub.-- ptr;int error.sub.-- code = 0;sprintf(list.sub.-- space.sub.-- name, "%-10s%", LIST.sub.-- SPACE, LIST.sub.-- SPACE.sub.-- LIB);memset(attrb, ' ', 10);memset(desc, ' ', 50);sprintf(attrb, "%- 10s", LIST.sub.-- SPACE.sub.-- ATTR);sprintf(desc, "%-50s", LIST.sub.-- SPACE.sub.-- DESC);QUSCRTUS(list.sub.-- space.sub.-- name, attrb, LIST.sub.-- SPACE.sub.--SIZE, ".backslash.0", "*LIBCRTAUT", desc, "*YES", &error.sub.-- code);QUSPTRUS(list.sub.-- space.sub.-- name, &space.sub.-- ptr);list.sub.-- header = (header.sub.-- struct*)space.sub.-- ptr;}______________________________________
Table 4 describes the create.sub.-- db.sub.-- cvt function, which reads in the DDS template file and creates the db.sub.-- cvt.sub.-- t structure; list.sub.-- header contains the address of user space. A call to the List Record Formats API generates a list of record formats available for the file named in the calling parameter list (db.sub.-- name). This code assumes there will only be one record format returned (it only looks at the first record format name returned.) The List Fields API is called to generate a list of field names and descriptions from the record format name returned by the QUSLRCD() API.
TABLE 4______________________________________CREATE DB CONVERT STRUCTURE______________________________________DB.sub.-- CVT.sub.-- t *create.sub.-- db.sub.-- cvt(char *db.sub.--name)Qdb.sub.-- Lrcd RCDL0100.sub.-- t *record.sub.-- list;Qdb.sub.-- Lfld.sub.-- FLDL0100.sub.-- t *field.sub.-- list;DB.sub.-- CVT.sub.-- t *db.sub.-- cvt;FIELD.sub.-- CVT.sub.-- t *field.sub.-- cvt;int field;QUSLRCD(list.sub.-- space.sub.-- name, "RCDL0100", db.sub.-- name,"0") ;record.sub.-- list = (Qdb.sub.-- Lrcd.sub.-- RCDL0100 *) ((char*)list.sub.-- header + list.sub.-- header->list.sub.-- section.sub.-- offset);QUSLFLD(list.sub.-- space.sub.-- name, "FLDL0100", db.sub.-- name,record list->Format Name, "0");field.sub.-- list = (Qdb.sub.-- Lfld.sub.-- FLDL0100 *)((char*)list.sub.-- header +list.sub.-- header->list section.sub.-- offset);db.sub.-- cvt = (DB.sub.-- CVT.sub.-- t*)malloc(size of(DB.sub.--CVT.sub.-- t) +(list.sub.-- header->number.sub.--of.sub.-- entries - 1) *sizeof(FIELD.sub.-- CVT.sub.-- t));db.sub.-- cvt->field.sub.-- count = list.sub.-- header->number.sub.-- of.sub.-- entries;memcpy(db.sub.-- list�db.sub.-- count! .db.sub.-- name,db.sub.-- name, 20);db.sub.-- list�db.sub.-- count! .db.sub.-- cvt = db.sub.-- cvt;db.sub.-- count++;field.sub.-- cvt = db.sub.-- cvt->field.sub.-- cvt;for (field = 0; field < db.sub.-- cvt->field.sub.-- count;field++, field.sub.-- cvt++){ memcpy(field.sub.-- cvt->field.sub.-- name, field.sub.-- list->Field Name, 10); field.sub.-- cvt->field.sub.-- offset = field.sub.-- list->Input.sub.-- Buffer.sub.-- Position - 1; field.sub.-- cvt->field.sub.-- type = field list->Data.sub.-- Type; RequiredBufferSize = field.sub.-- list->Input.sub.-- Buffer.sub.-- Position - 1 + field list->Field.sub.-- Length.sub.-- Bytes; switch (field.sub.-- cvt->field.sub.-- type) {case 'A':case 'S':case 'T':case 'L':case 'Z': field.sub.-- cvt->field.sub.-- length =field.sub.-- list->Field Length.sub.-- Bytes;field.sub.-- cvt->field.sub.-- dec.sub.-- pos = 0;field.sub.-- cvt->convert.sub.-- function =cvt.sub.-- to.sub.-- alpha;break;case 'P': field.sub.-- cvt->field.sub.-- length =field.sub.-- list->Digits;field.sub.-- cvt->field.sub.-- dec.sub.-- pos =field.sub.-- list->Decimal Positions;field.sub.-- cvt->convert.sub.-- function =cvt.sub.-- to.sub.-- pd;break;case "F": field.sub.-- cvt->field.sub.-- length =field.sub.-- list->Field.sub.-- Length.sub.-- Bytes;field.sub.-- cvt->field.sub.-- dec.sub.-- pos =field.sub.-- list->Decimal.sub.-- Positions;field.sub.-- cvt->convert.sub.-- function =cvt.sub.-- to.sub.-- f;break;case "B": field.sub.-- cvt->field.sub.-- length =field.sub.-- list->Field.sub.-- Length.sub.-- Bytes;field.sub.-- cvt->field.sub.-- dec.sub.-- pos = 0;field.sub.-- cvt->convert.sub.-- function =cvt.sub.-- to.sub.-- i;break;}field list = (Qdb.sub.-- Lfld.sub.-- FLDL0100 *)((char *)field.sub.-- list + list.sub.-- header ->size.sub.-- of.sub.-- entry);}return db.sub.-- cvt;}______________________________________
Table 5 describes the find.sub.-- db.sub.-- cvt function, which finds an existing db.sub.-- cvt.sub.-- t structure, if it exists, containing field definitions that have already been created.
TABLE 5______________________________________FIND DB CONVERT______________________________________DB.sub.-- CVT.sub.-- t *find.sub.-- db.sub.-- cvt(char *db.sub.-- name)int i;for (i = 0; i < db.sub.-- count; i++)if (memcmp(db.sub.-- list�i! .db.sub.-- name,db.sub.-- name, 20) == 0)return db.sub.-- list�i! .db.sub.-- cvt;return create.sub.-- db.sub.-- cvt(db.sub.-- name);}______________________________________
Table 6 describes the reset.sub.-- fields function.
TABLE 6______________________________________RESET FIELDS______________________________________void reset.sub.-- fields(DB.sub.-- CVT.sub.-- t *db.sub.-- cvt)int i;FIELD.sub.-- CVT.sub.-- t *field.sub.-- cvt;field.sub.-- cvt = db.sub.-- cvt->field.sub.-- cvt;for (i = 0; i < db.sub.-- cvt->field.sub.-- count; i++,field.sub.-- cvt++) field.sub.-- cvt->field.sub.-- used = 0}______________________________________
Table 7 describes the fill.sub.-- unused.sub.-- fields function, which fills all the unused fields with appropriate filler.
TABLE 7______________________________________FILL UNUSED FIELDS______________________________________void fill.sub.-- unused.sub.-- fields(DB.sub.-- CVT.sub.-- t *db.sub.--cvt, char*buffer, int *error.sub.-- field)int i;FIELD.sub.-- CVT.sub.-- t *field.sub.-- cvt;int error;field.sub.-- cvt = db.sub.-- cvt->field.sub.-- cvt;for (i = 0; i < db.sub.--cvt-> field.sub.-- count;i++, field.sub.-- cvt++)if (field.sub.-- cvt->field.sub.-- used == 0){*error.sub.-- field = *error field .vertline. 1;switch (field.sub.-- cvt->field.sub.-- type){case 'A':case 'S':case 'T':case 'L':case 'Z':field.sub.-- cvt->convert.sub.-- function(buffer +field.sub.-- cvt->field.sub.-- offset, " "field.sub.-- cvt->field.sub.-- length, 0, &error);break;case 'B':case 'P':case 'F':field.sub.-- cvt->convert.sub.-- function(buffer +field.sub.-- cvt->field.sub.-- offset, "0",field.sub.-- cvt->field.sub.-- length,field.sub.-- cvt->field.sub.-- dec.sub.-- pos, &error);break;}}}______________________________________
Table 8 describes the cvt.sub.-- data function, which converts the data passed to upper case, converts plus signs to blanks, and converts escape sequences (identified by % sign) to a single character.
TABLE 8______________________________________CONVERT DATA______________________________________char *cvt.sub.-- data(char *s)char *c;c = s;while ((c = strchr(c, '+')) |= NULL)*c++ = ' ';c = s;while ((c = strchr(c, '%')) |= NULL){*(c + 1) = toupper(*(c + 1));*(c + 2) = toupper(*(c + 2));cvtch(c, c + 1, 2);strcpy(c + 1, c + 3);c++;}return s;}______________________________________
Table 9 describes the fill.sub.-- field function, which fills in the buffer with the information for this field and creates padded names.
TABLE 9______________________________________FILL FIELD______________________________________void fill.sub.-- field(DB.sub.-- CVT.sub.-- t *db.sub.-- cvt, char*buffer, char*field.sub.-- name, char *data, int *error.sub.-- field)FIELD.sub.-- CVT.sub.-- t *field.sub.-- cvt;char padded.sub.-- name�11!;int error;int i = strlen(field.sub.-- name);char *c = padded.sub.-- name;sprintf(padded.sub.-- name, "%-10s", field.sub.-- name);while (i--){*c = toupper(*c);c++;}field.sub.-- cvt = db.sub.-- cvt->field.sub.-- cvt;for (i = 0; i < db.sub.-- cvt->field.sub.-- count; i++,field.sub.-- cvt++){if (memcmp(padded.sub.-- name, field.sub.-- cvt->field.sub.-- name,10) == 0){switch (field.sub.-- cvt->field.sub.-- type){case 'A':case 'B':case 'S':case 'T':case 'L':case 'Z':case 'P':case 'F': field.sub.-- cvt->convert.sub.-- function(buffer +field.sub.-- cvt->field.sub.-- offset,data, field.sub.-- cvt->field.sub.-- length,field.sub.-- cvt->field.sub.-- dec.sub.-- pos,&error);field.sub.-- cvt->field.sub.-- used = 1;if (error |= 0)*error.sub.-- field = *error.sub.-- field .vertline.4;return;}}else if (i == (db.sub.-- cvt->field.sub.-- count -1))*error.sub.-- field = *error.sub.-- field .vertline. 2;}}______________________________________
Advantages over the Prior Art
This invention provides a method and programming structure for creating a data structure comprising a non-linear data object with typed data fields and field names from a common gateway interface type input string.
Alternative Embodiments
It will be appreciated that, although specific embodiments of the invention have been described herein for purposes of illustration, various modifications may be made without departing from the spirit and scope of the invention. For example, the digital signals required to operate the computer to perform the method of the invention may be stored in or transmitted through a storage or transmission medium.
Accordingly, the scope of protection of this invention is limited only by the following claims and their equivalents.
Claims
  • 1. A method for constructing a data structure including data defined data types from a text input string including a plurality of pairs of keywords and corresponding values, comprising the steps of:
  • generating in a template file an ordered list of fields defining for each keyword a data type and size;
  • receiving from a calling program said input string;
  • reading a pair from said input string;
  • searching said template file for a field name matching the keyword in the pair;
  • determining from the template file the data type for the matching field name;
  • converting said value from text to the data type of said matching field;
  • writing the converted value to an output buffer at a location in said data structure corresponding to said matching field; and
  • repeating said reading, searching, determining, converting, and writing steps for each pair in said input string.
  • 2. The method of claim 1, comprising the further steps of:
  • during said reading, searching, determining, converting, and writing steps, keeping track of unused template fields within said template, and of pairs not having a matching field within said template;
  • generating a response code indicating whether or not all fields in said template were filled, whether all input data was used, and whether all data was successfully converted; and
  • returning said output buffer and said response code to the calling program.
  • 3. A method for constructing a data structure including data of data description specification (DDS) defined data types from a common gateway interface (CGI) input string, comprising the steps of:
  • generating a template file of DDS definitions;
  • receiving from a calling program a CGI input string including alpha-numeric data arranged in a plurality of pairs of text keywords and corresponding text values;
  • reading a pair from said input string;
  • searching a template file of DDS definitions for a field matching said text keyword;
  • determining from the matching DDS definition the data type of the matching text value;
  • converting said value from text to the data type of said matching field;
  • writing the converted value to an output buffer at a location in said data structure corresponding to said matching field; and
  • repeating said reading, searching, determining, converting, and writing steps for each pair.
  • 4. The method of claim 3, comprising the further steps of:
  • during said reading, searching, determining converting, and writing steps, keeping track of unused template fields within said template, and of pairs not having a matching field within said template;
  • generating a response code indicating whether or not all fields in said template were filled, whether all input data was used, and whether all data was successfully converted; and
  • returning said output buffer and said response code to the calling program.
  • 5. A memory device for storing control signals operable to cause a digital computer to construct a data structure including data defined data types from a text input string including a plurality of pairs of text keywords and text values, said control signals including signals for operating said computer to:
  • provide in a template file an ordered list of fields defining for each keyword a data type and size;
  • receive from a calling program said text input string;
  • read a pair from said input string;
  • search said template file for a field name matching the keyword in the pair;
  • determine from the template file the data type for the matching field name;
  • convert said value from text to the data type of said matching field;
  • write the converted value to an output buffer at a location in said data structure corresponding to said matching field; and
  • repeat read, search, determine, convert, and write steps for each pair in said input string.
  • 6. A signal transmission medium for transmitting control signals operable to cause a digital computer to construct a data structure including data defined data types from a text input string including a plurality of keyword/value pairs, said control signals including signals for operating said computer to:
  • provide in a template file an ordered list of fields defining for each keyword a data type and size;
  • receive from a calling program said text input string;
  • read a pair from said input string;
  • search said template file for a field name matching the keyword in the pair;
  • determine from the template file the data type for the matching field name;
  • convert said value from text to the data type of said matching field;
  • write the converted value to an output buffer at a location in said data structure corresponding to said matching field; and
  • repeat read, search, determine, convert, and write steps for each pair in said input string.
US Referenced Citations (13)
Number Name Date Kind
4787035 Bourne Nov 1988
4839853 Deerwester et al. Jun 1989
4905138 Bourne Feb 1990
5297249 Bernstein et al. Mar 1994
5337233 Hofert et al. Aug 1994
5365433 Steinberg et al. Nov 1994
5369577 Kadashevich et al. Nov 1994
5414841 Bingham et al. May 1995
5475588 Schabes et al. Dec 1995
5530852 Meske et al. Jun 1996
5548699 Ishida et al. Aug 1996
5623679 Rivette et al. Apr 1997
5649218 Saito Jul 1997
Non-Patent Literature Citations (3)
Entry
IBM Technical Disclosure Bulletin, vol. 37, No. 12, Dec. 1994, "Providing Hypertext Links to Code", J. A. Kelly.
IBM Technical Disclosure Bulletin, vol. 38, No. 12, Dec. 1995, "Sequence Reception Method for a Fibre Channel Protocol Chip", G. M. Nordstrom.
IBM Technical Disclosure Bulletin, vol. 27, No.7A, Dec. 1984, Instruction for Text Manipulation (Find Long), J. T. Brady.