首页 / 专利库 / 计算机网络 / 对等网络 / Method for controlling the peer-to-peer processing of a distributed application across a synchronous request/response interface using push-down stack automata

Method for controlling the peer-to-peer processing of a distributed application across a synchronous request/response interface using push-down stack automata

阅读:940发布:2022-08-10

专利汇可以提供Method for controlling the peer-to-peer processing of a distributed application across a synchronous request/response interface using push-down stack automata专利检索,专利查询,专利分析的服务。并且A method for coordinating recursive requests and responses in the peer-to-peer processing of a distributed application across a synchronous request/response interface. The method utilizes, on each side of the interface, a decision table and a local LIFO stack of generated and received requests, responses, and input from the application. The local stack is run in a push-pop manner and assists the local decision table in conducting the peer- to-peer processing until the LIFO stack becomes exhausted. A fault on either side of the interface results in undoing the processing by unwinding each stack back to a predetermined point. If one side operates as a persistent server, its application program environment is saved from one request to another by a dynamic save and simulated return to the application. Lastly, a request/demand is substituted for a demand/request by the server so as to change the server and requester roles of either side of the interface.,下面是Method for controlling the peer-to-peer processing of a distributed application across a synchronous request/response interface using push-down stack automata专利的具体信息内容。

1. A method for managing the flow of control of the peer-to-peer processing of a distributed application over a synchronous request/response (CALL/RETURN) interface, peer-­to-peer processing connoting execution of at least one appli­cation or part thereof on at least a pair of communicating processors, each side of the interface regulating the peer-­coupled relationship by a finite state machine, comprising the steps at each side of the interface of:(a) generating and communicating a request or a response to the other side over the synchronous interface by the local finite state machine responsive to a request or response from the other side, input received from the local part of the application, and indicia provided at the top of a local LIFO stack;(b) concurrently pushing or popping onto or from the stack indicia of each generated and received request or response; and(c) repeating steps (a) - (b) until the local stack becomes exhausted.2. The method according to claim 1, wherein the LIFO stack preserves a nested windup and unwind order among the indicia of the requests and responses, and
wherein said method further comprises the step of:(d) responsive either to a local fault or a request or response from the other side indicative of a fault, undoing the processing by unwinding the indicia in the local stack back to a predetermined point.
3. The method according to claim 1, wherein one side and its local finite state machine being operative as a server by receiving only requests and generating only responses, the indicia in the local stack of the server normally being erased concurrent with the response from the server concluding the request, and
wherein the other side and its local finite state machine being operative as a requester by receiving only responses and generating only requests, and
wherein said method further comprises the step of:(e) dynamically saving the stack contents at the server side prior to sending the concluding response to the requester side and simulating a return to the local application, such that in the event of a second request restoring said saved stack contents and utilizing it in composing a response to said second request.
4. The method according to any proceeding claim, wherein said method further comprises the step at the server side of:(f) causing a CALL/RETURN instead of a RETURN/ CALL response to reverse requester and server sides.5. The method according to claim 1, wherein one side of the interface is a knowledge processing environment and the other side is a data processing environment.6. The method according to claim 1, wherein each finite state machine comprises:
a memory for storing a decision table and the local stack; and
means responsive to a request or response from the other side, input received from the local part of the application, and indicia provided at the top of a local LIFO stack, for accessing said table to obtain a request or response function, and causing said accessed function to be executed.
说明书全文

This invention relates to distributed processing, and more particularly, to a method for managing the peer-to-­peer processing of a distributed application across a synchronous request/response interface.

Distributed processing via networking is increasingly used to reduce the time taken to complete an application and share the cost of specialized nodes, such as file servers and the like. Such processing is layered. This means that an application runs at the highest logical level and is visible to the user. Subordinate to this are various servers, coordinators, and the like on the same or other processors which interact and process information enabling the application to complete. The subordinate functions are usually transparent to the user.

One type of distributed configuration involves programmable workstations (PWSs) operable as data processing environments (DPEs) and coupling a remote host. The host, in turn, might be operable as a knowledge processing environment (KPE). That is, a KPE is capable of processing applications involving rule-based code interspersed with procedural-based code. The interactions between processors occur over well-defined interfaces, usually of the synchronous request/response type.

Interactions between processes and/or processors in a symmetric relationship are denominated peer coupled. Information passes first in one direction and then in the other because of the half-duplex limitations of most request/response interfaces. Since KPEs are useful in applications in which a request may require additional information, one limitation of the art is that of failing to include a request for additional information in the types of responses. Thus, where a PWS-based DPE sends a request to a host-based KPE, the KPE in turn should be able to select a response from the set consisting of providing an answer, requesting additional information from the DPE, and indicating that a reply is not avail­able.

Typically, the KPE may operate as a server and the DPEs as requesters. Provision is not made in the prior art for the server to persist from request to request. That is, there is no continuity between requests since the application programming environment is collapsed after the server replies to the requester. In a related but distinct vein, KPEs and DPEs programmed as servers and requesters respectively do not provide for role inter­change.

It is known in the prior art to couple computation­ally dissimilar nodes over a synchronous request/response interface of the shared variable type. It is further known to ensure synchronous computation among coroutines by hierarchically nesting and modifying their calling relations in a predetermined manner. Lastly, it is known to use push- down stacks as a construct for recursive processing. This is evidenced by the Brown, Carlson, and Tenenbaum references.

Brown et al., U. S. Patent 4,736,321, "Communication Method Between an Interactive Language Processor Workspace and External Processes", issued April 5, 1988, disclose an explicit remote function call and response across a shared variable type synchronous request/response interface. The call is made by a defined function from within an inter­pretive APL language workspace to an external compiled FORTRAN object. The APL-defined function calls the external function by name and explicit arguments. Re­sponsively, the FORTRAN object operates on the arguments and returns a result. The defined function and the interface are locked for the duration of the remote call.

Carlson et al., U. S. Patent 4,410,940, "Transfer of Control Among Hierarchical Cooperating Sequential Pro­cesses", issued October 18, 1983, disclose a method for maintaining synchronous computations among a set of recursively nested cooperating sequential processes. Carlson achieves this by constraining transfers between processes to follow an implicit LIFO stack of process activation records using updated pointers.

As may be recalled, in a subroutine program struc­ture, there exists an asymmetric master/slave relationship between a calling process and its subroutine. In con­trast, coroutines are processes that may call each other but do not have this master/slave organization. That is, the relationship between coroutines is symmetric. Each coroutine is both master and slave. On exit from a coroutine, its state is saved. The next time the corou­tine is called, it resumes at exactly the point where it left previously with all of its internal variables un­changed. This means that the previous state of the corou­tine is restored.

Tenenbaum and Augenstein, "Data Structures Using PASCAL", copyright 1981 by Prentice-Hall Inc., pp. 56-75, describe a push-down stack as a dynamic data structure used in managing recursive computations such as those involving factorials. They exemplify a stack and pointer through use of a composite data type.

Summary of the Invention

The present invention is defined in the appended claim.

The problem of the invention is how to manage the flow of control of the peer-to-peer processing of a distributed application over a synchronous request/response (CALL/RETURN) interface where each side of the interface is managed by a finite state machine.

This problem is solved by a method utilizing, on each side of the interface, a decision table based finite state machine and a local LIFO stack of generated and received requests, responses, and input from the application. The local stack is run in a push-pop manner and assists the local decision table in conducting the peer-topeer process­ing until the LIFO stack becomes exhausted. A fault on either side of the interface results in undoing the processing by unwinding each stack back to a predetermined point.

If one side operates as a persistent server, its application program environment is saved from one request to another by a dynamic save and simulated return to the application. Lastly, a request/demand is substituted for a demand/request by the server so as to change the server and requester roles of either side of the interface.

Preferably the provided method manage nested requests and responses, and permits a graceful rolling back or undoing of an incomplete set of requests in the event of a fault. This is achieved by the invention as defined in claim 2.

More preferably the provided method permits persistence of servers across multiple requests, this being achieved with the invention as defined in claim 3. Suitably, such method provides for a role role inter­change between requesters and servers, and with the invention as defined in claim 4 this is achieved.

Below a detailed description of a preferred embodiment is given with reference to the drawings, in which

  • FIG. 1 shows placement of the coordination function according to the invention among peer-coupled processes in a distributed application,
  • FIG. 2 depicts both the coordination method and a persistent server application between peer-coupled processes residing at a host and a PWS,
  • FIG. 3 sets out a host KPE-based decision table and interpretation according to the invention,
  • FIG. 4 sets out a PWS DPE-based decision table and interpretation according to the invention, and
  • FIG. 5 illustrates an overview of the call/return patterns in implementing a persistent server according to the invention.

Description of the Preferred Embodiment

Peer Coupling and Layers

Referring now to FIG. 1, there is shown the peer-to-­peer processing flow among parts of a distributed applica­tion. Each processor (1, 2) supports at the top level an application (3, 5) or part thereof. A processor 1 communi­cates with another processor 2 over a well-defined communi­cation path 15 such as a synchronous request/response interface. An example of such an interface is the IBM Server/Request Programming Interface (SRPI) described in IBM publications "IBM Personal Computer Enhanced Connecti­vity Facilities", GC23-0957; and "Programmer's Guide to the Server-Requester Programming Interface for the IBM Personal Computer and the IBM 3270 PC", SC23-0959, copy­right 1986 by International Business Machines Corporation.

Neither the interface 15 nor its direct communica­tions support 11, 13 are the objects of this invention and are not further described except by reference to the aforementioned publications. From a software layer perspective, the method 7, 9 of this invention is inter­posed between the application layer 3, 5 and the communi­cations interface support level 11, 13.

Nesting of Requests and Responses

It should be appreciated that the method assists and coordinates the flow of control among peer-coupled pro­cesses. For instance, process A at a DPE requests/­invokes a function at a KPE process B. Process B may complete the function and return control to process A. Alternatively, process B may request further information from process A prior to completion of the original re­quest. This leads to a nesting relationship among the requests and responses.

Request/Response Interface is Half Duplexed

The method of this invention assumes that the syn­chronous request/response interface provides for half-­duplexed communication (one side sends while the other receives) with orderly alternation of sender and receiver. The method also assumes that the process on each side of the interface is logically synchronous. This means that if the process on one side has multiple threads or tasks, they are viewed as a single process or call stack.

LIFO Stack

A push-down, pop-up, or last-in/first-out (LIFO) stack is maintained on each side of the interface to assist a decision table implemented finite state machine in main­taining a syntactically correct sequence of request/­response processsing. A request function is usually pushed onto the stack. Subordinate requests would be pushed on top and popped therefrom as they are completed. This permits the stack to faithfully track the peer-coupled processing. Software implementing and managing of such stacks is set out in the Tenenbaum reference.

Illustrative Example and Protocol

Referring now to FIG. 2, there is depicted both the coordination method and a persistent server application between peer-coupled processes residing at a host and a PWS. Numbers in parentheses are correlated with the re­quests and responses used in the application. In the ensuing description of the preferred embodiment, reference will be made to FIG. 2, together with the decision tables local to the host in FIG. 3 and to the PWS in FIG. 4.

The description is based on an example drawn from the medical insurance field. The example assumes a benefits administrator sited at a PWS assisting an insured party in the selection of a physician. Selected information pro­cessing involves the PWS instigating the host.

Referring again to FIG. 2, the audio-visual computer (AVC) application being run upon the PWS is likely to be a computationally intensive audio-visual data processing task. The KAPPL application being run on the host is a mixed data base referencing and rule-based evaluation task.

Briefly, PWS 19 directly supports execution of the application 23 denominated AVC. AVC starts a session by invoking (1) host 17 KPE environment 21. KPE supports execution of the application 24 denominated KAPPL. KAPPL performs mixed rule-based and procedural processing and, at a predetermined point, requests (2) PWS AVC application to perform a remote dialog function. The AVC in turn makes an information request (3) of KAPPL. Nested within this information request (3) and its response (6) is a sub-­ordinate request (4) and response (5) to a KPE subroutine 25 and counterpart DPE-driven display 27.

Construing the Peer Coupling and the Decision Tables

A cycle of interpreting FIGS. 2-4 would be instructive. Step (1) in FIG. 2 involves invocation of the KAPPL at the host. At the host, assume that the KAPPL application inputs a code denominated '41' to the host-based, decision table implemented, finite state machine.

Referring to FIG. 3, there is shown the decision tables for the host-based machine. Note, the objective is to ascertain the next function to be performed with respect to either a request or a response. The next function to be selected will be a call to PWS. This is determined by the fact that the input '41' found on row 5 is provided by the application and not from the PWS. The column coordinate is to be found at column 5 since there is no function to be found at the top of the local LIFO stack. The selected function "C1" at row 5, column 5, requires the finite state machine to send function '41' and any data to PWS and push the indicia of function '41' onto the LIFO stack. The next round is sited at PWS.

Referring now to FIG. 4, there is shown the decision tables for the PWS-based finite state machine. Since the input '41' from the host is entered at row 5 and there is no function in the local PWS LIFO stack, then the selected PWS function to be performed is "A1" at row 5, column 1. Function A1 calls for a return to the caller host and pushes the function '41' onto the local stack.

Request/Response Conceptualization

To assist with the conceptualization of the ping-pong type interaction, a schema is used placing the host and its activities on the left-hand side and the PWS and its activities on the right-hand side.

In the steps below which refer to the steps in FIG. 2, each application or external description of the step is immediately followed by a description which shows the interaction of the coordination function in the PWS and host. Since the processing is logically serial, each step is shown as a series of actions and data. The term ROW N COL M refers to the appropriate (Host or PWS) decision table's row and column intersection.

Conceptualization of the Actions Expressed in Example

Following are the action steps defined first at the application level in FIG. 2, and second including in­formation regarding accessing the local decision table based finite state machine and stack.

1. The administrator starts a session from PWS causing the host knowledge application to be initiated.

2. The host application calls on AVC to show XRAYS and playback of two doctors' opinions of the condition and proposed treatment for the administrator's use, and begins to collect information for a decision from the insured and the system.

3. The administrator wants to refer to current statistical data and be able to manipulate it in spreadsheet form, and indicates this through AVC dialog. AVC dialog requests invocation of the host knowledge subroutine.

4. The host knowledge subroutine gets the latest data via some host function (e.g., SQL/DS or Database 2 data base access) and requests that the data be sent along with a DOS command to show the data on a Lotus spreadsheet. At its simplest, this could be the name of a BAT file with a parameter identifying the spreadsheet of interest selected from among a set regularly downloaded to an analyst's AVC by other customer business functions.

5. After examining the spreadsheet, manipulating it, and consulting with the insured, the administrator terminat­es the spreadsheet.

6. The host knowledge subroutine returns which, in turn, allows the administrator to convey the insured's decision to the AVC application.

7. The AVC application transmits the insured's decision and new information via common knowledge back to the host part of the knowledge application where further inferencing occurs to revalidate the decision. If the decision is valid, then the session will be terminated; otherwise 2-7 could be replayed with different data until a valid decision is reached.

8. The administrator decides to end the session.

Knowledge Processing Environment

The host supports a knowledge processing environment. By this is meant that facilities are extant for running applica­tions including procedural code interspersed with sequences of code involving rule-based programming or production systems.

A description of a cyclic, forward-chained, rule-based, data object sensitive production system is set out in copend­ing application Serial Number 07/114,485, filed on October 28, 1987. Said application is incorporated herein by reference. The object-sensitive, rule-based system described in the copending application includes means for storing data objects and rules, and means cooperating with the storage means for executing a control cycle.

KnowledgeTool™

The high-level procedural language facility of choice at the host is KnowledgeTool. This was first made available by IBM in December 1987. It is described in IBM publications "IBM KnowledgeTool User's Guide and Reference Release 1", SH20-9251, copyright 1987 by IBM.

This facility includes a PL/I compiler, rule-based language extensions and constructs based on the Carnegie-­Mellon OPS5 forward-chained language system, and other con­structs such as frames and frame management.

The KnowledgeTool system utilizes a method for compiling a data-driven, forward-chaining production system from a source code sequence combinatorially selected from a set consisting of block-structured language instructions (PL/I) and a rule-based extension of primitives (RESP). The extension primitives include such invocable constructs as a data base, a set of rules, and an inference engine.

The data base (working memory) includes data structures representative of the domain of the production system. The set of rules (production memory) is representative of domain knowledge of the production system. Lastly, the inference engine executes each rule selected from the set of rules whose patterns match the change in the data base occurring in a prior recurrent match, selection, and execution cycle.

Creation of a host executable application involves (a) forming and recording a sequence of instructions including said primitives; (b) converting the sequence into source code of the block-structured language and a description of the production memory; (c) forming a runtime executable production system including a comparison (RETE) network from the source code and the description; and (d) debugging said production system by selectively executing portions thereof and altering the source code at a demand/responsive, man/ machine inter­face, and compiling out an object code version of the proce­dural language sequences and link editing them to the appro­priate production system invocations.

Host-based Coordination Function

The coordination function as expressed in an extended language assigns specific function codes, subsets the applica­tion request into two subtypes, and subsets all response function codes into normal and exception responses for each valid request type.

The sequence of actions which is considered valid includ­es:

  • 1. Initialization as performed by a request from the operating system function such as MVSSERV/CMSSERV. This invokes the software for managing the host side of the interface relative to the PWS.
  • 2. Managing a request which contains the name of a program to invoke under KBS control in the parameter area of the CPRB. No data accompanies this request.
  • 3. Invocation of the host-based application which contains a parameter list. The list has one of the function codes (all function codes are in hexadecimal) 21, 31, or 41. This request is transmitted along with any common values to the PWS as its response to the initial request. See the cross-referenced, copending Beitel et al. application for further discussion of sharing and updating common values implicitly.

From this initial invocation sequence, the following pattern of interactions with the PWS is considered to be valid.

Referring again to FIG. 2, the host maintains a stack of requests. As FIG. 2 shows, the host validates the sequence of requests and their responses. It is the responsibility of the applications to coordinate the proper sequencing of their requests and responses. The diagnostic information will contain the stack depth and contents, so the offending re­questor may provide an error response set to clear the stack.

The rules associated with the request/response sequences are simple to monitor and enforce. They are in no way restrictive to the flow of data between the PWS application and the host application. While the depth of the stack could impose a restriction, the fact that it is single byte wide allows it to be arbitrarily deep, thereby imposing no practi­cal limit. The validation of the requests and responses can be an important debugging aid, and an important problem determination tool.

PWS-based Coordination Function

A similar validation is performed by the PWS code which manages the communications interface for its conversation with the host process.

The sequence of actions which is considered valid by the PWS side of the support is as follows:

  • 1. Initialization is performed by a request to the conversion code which initiates the communication with the host session. The initial request contains the name of the controlling application on the host.
  • 2. A request is made which contains the name of a program to invoke under KPE control. No data accompanies this request.

NOTE: The initial requester is returned to upon receipt of the first function code 21 or 41 transmitted from the host when the stack is empty.

From this initial invocation sequence, the pattern of interactions with the host is considered to be valid.

The Persistent Server

Referring now to FIG. 5, ther is shown an overview of the call/return patterns in implementing a persistent server according to the invention. In this regard, the host opera­tes as the server and the PWS as the requester. If the host application is such that the server should persist over two or more requests, then the application programming environment is dynamically saved prior to sending a response to the PWS. A simulated return is made to the application and PWS. On the next request, the application program environment is restored.

Rollback

The preferred error recovery is to unwind the request/­response stack to a point agreed upon by both sides as accept­able. This can be accomplished by the application code on each side. This would be transparent to the management of the peer-to-peer processing. However, to accomplish this at the peer-to-peer level, an adjustment or provision should be made in the functions and decision tables. Note that if the width of the stack entry includes a pointer variable, a language implementation dependent method can be used.

高效检索全球专利

专利汇是专利免费检索,专利查询,专利分析-国家发明专利查询检索分析平台,是提供专利分析,专利查询,专利检索等数据服务功能的知识产权数据服务商。

我们的产品包含105个国家的1.26亿组数据,免费查、免费专利分析。

申请试用

分析报告

专利汇分析报告产品可以对行业情报数据进行梳理分析,涉及维度包括行业专利基本状况分析、地域分析、技术分析、发明人分析、申请人分析、专利权人分析、失效分析、核心专利分析、法律分析、研发重点分析、企业专利处境分析、技术处境分析、专利寿命分析、企业定位分析、引证分析等超过60个分析角度,系统通过AI智能系统对图表进行解读,只需1分钟,一键生成行业专利分析报告。

申请试用

QQ群二维码
意见反馈