WO2003096209A1 - Cooperation of concurrent, distributed networks of resources - Google Patents

Cooperation of concurrent, distributed networks of resources Download PDF

Info

Publication number
WO2003096209A1
WO2003096209A1 PCT/US2003/014440 US0314440W WO03096209A1 WO 2003096209 A1 WO2003096209 A1 WO 2003096209A1 US 0314440 W US0314440 W US 0314440W WO 03096209 A1 WO03096209 A1 WO 03096209A1
Authority
WO
WIPO (PCT)
Prior art keywords
query
computer
expression
processes
readable medium
Prior art date
Application number
PCT/US2003/014440
Other languages
French (fr)
Inventor
Gregory L. Meredith
Steve Bjorg
David Richter
Original Assignee
Microsoft Corporation
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Priority claimed from US10/303,343 external-priority patent/US7216335B2/en
Priority claimed from US10/303,445 external-priority patent/US7055142B2/en
Priority claimed from US10/303,407 external-priority patent/US20030212761A1/en
Priority claimed from US10/303,379 external-priority patent/US7117487B2/en
Application filed by Microsoft Corporation filed Critical Microsoft Corporation
Priority to EP03731128A priority Critical patent/EP1504362A4/en
Priority to JP2004504130A priority patent/JP4276168B2/en
Priority to KR1020047018145A priority patent/KR101187486B1/en
Priority to AU2003241394A priority patent/AU2003241394A1/en
Publication of WO2003096209A1 publication Critical patent/WO2003096209A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F15/00Digital computers in general; Data processing equipment in general
    • G06F15/16Combinations of two or more digital computers each having at least an arithmetic unit, a program unit and a register, e.g. for a simultaneous processing of several programs
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/546Message passing systems or structures, e.g. queues
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/31Programming languages or programming paradigms
    • G06F8/314Parallel programming languages

Definitions

  • the present invention relates generally to networked computers, and more particularly, to methods for causing cooperation of concurrent, distributed networks of computing resources.
  • Natural language is a language spoken or written by humans, as opposed to a programming language or a machine language.
  • a programming language is any artificial language that can be used to define a sequence of instructions that can ultimately be processed and executed by a computer. Defining what is or is not a programming language can be tricky, but general usage implies that the translation process — from the source code which is expressed using the programming language, to the machine code, which is the code that the computer needs to work with — be automated by means of another program, such as a compiler.
  • Both natural languages and programming languages are systematic means of communicating information and instructions from one entity to another, such as man to man or man to machine. Unfortunately, prior programming languages have been an imperfect way of communicating information and instructions from man to machine.
  • assembly languages were used to form low-level programming languages.
  • Assembly languages use abbreviations or mnemonic codes in which each statement corresponds to a single machine instruction.
  • the high-level languages of today which provide a level of abstraction above the underlying machine language, evolved from assembly languages.
  • High-level language statements generally use keywords (usually in English) that are translated into more than one machine-language instruction.
  • High-level languages have built-in support for data structures and define a set of syntactic and semantic rules that define the structure of the language.
  • a compiler which transforms the program into object code by following a predetermined set of syntactic and semantic rules, either reflows the object code as necessary to correspond with the change made to the program or unabashedly informs a programmer of the apparent programming error.
  • APIs application programming interfaces
  • An API is an interface of a program that defines the sort of inputs the program will accept to perform a desired task and the sort of outputs the program will return after the performance of the desired task. APIs allow programs to cooperate together to provide greater functionality than each could provide alone.
  • APIs do not capture this ordering idea, or any other ideas that express how programs should cooperate. As a result, like the laborious tasks of maintaining the assembly programs of yesteryear, programmers must once again fit square pegs into round holes by working within the limit of the expressiveness of present high-level languages to ensure that programs correctly cooperate.
  • Web services are basically programs located on any number of computing devices interconnected by the Internet.
  • the specification and the laborious verification of the cooperation of programs within a single computing device can be undertaken — albeit arduously — the task of verifying the intricate ballet associated with the cooperation of multiple Web services (which send multiple messages from multiple computing devices) is an insurmountable problem because of the lack of the expressiveness of present high-level languages.
  • What is needed is a programming language that can express the cooperative dimensions of programs or services, such as ordering and timing, among other things, so that such cooperative dimensions can be programmatically verified.
  • ⁇ -calculus is a mathematical language for describing processes in interactive, concurrent systems, such as a system 100 shown in FIGURE 1.
  • the system 100 includes a client 102, which is a computer that accesses shared network resources being provided by another computer, such as a server 106, on a local area network or a wide area network, such as the Internet 104.
  • a number of Web services 108, 116 are statically stored as programs on the client 102 and the server 106.
  • a thread is the basic unit used by the operating system to allocate processor time to a program.
  • a thread can include any part of the programming code, including parts currently being executed by another thread.
  • a processor is capable of executing only one thread at a time.
  • a multi-tasking operating system i.e., an operating system that allows users to run multiple programs, appears to execute multiple programs at the same time.
  • a multi-tasking operating system continually alternates among programs, executing a thread from one program, then a thread from another program, etc. As each thread finishes its sub-task, the processor is given another thread to execute. The extraordinary speed of the processor provides the illusion that all of the threads execute at the same time.
  • Multi-processing requires multiprocessors. If a machine has only one processor, the operating system can multi-task, but not multi-process. If a single machine has multiple processors or there are multiple machines (the client 102 and the server 106), each of which has a processor, the operating system of the single machine or the operating systems of multiple machines can both multi-task and multi-process. Both a single machine having multiple processors and multiple machines, each having a processor, define a concurrent system. This is an object of interest for ⁇ -calculus.
  • the core of ⁇ -calculus consists of systems of independent, parallel processes (such as Web services 108, 116) that communicate via links (such as a link 124).
  • Links can be any of the following: APIs that become as remote procedure calls; hypertext links that can be created, passed around, and removed; and object references (e.g., "rose") passed as arguments of method invocations in object-oriented systems.
  • object references e.g., "rose”
  • the possibilities of communication for a process with other processes depends on its knowledge of various different links. Links may be restricted so that only certain processes can communicate on them. What sets the ⁇ -calculus apart from other process languages is that the scope of a restriction (the context in which a link may be used) may change during execution.
  • the Web Service 116 sends a restricted name, such as an API previously known only to the Web Service 116, as a message to the Web service 108, which is outside the scope of the restriction, the scope is expanded (or extruded in the mathematic idiom of ⁇ -calculus).
  • a restricted name such as an API previously known only to the Web Service 116
  • the scope is expanded (or extruded in the mathematic idiom of ⁇ -calculus).
  • the scope of the API is enlarged to embrace the Web service 108 receiving the API.
  • the Web service 108 can now invoke the function represented by the API whereas before the Web service 108 had no knowledge of the API, hence was unable to invoke the API.
  • This procedure allows the communication possibilities of a process to change over time within the framework of ⁇ -calculus.
  • a process can learn the names of new links via scope extrusion.
  • a link is a transferable quantity for enhancing communication.
  • ⁇ -calculus places great emphasis on pure names, each of which is defined to be only a bit pattern.
  • a pure name is the 128-bit space GUID (Globally Unique Identifier) that uniquely identifies an interface or an implementation in the COM component model.
  • GUID Globally Unique Identifier
  • Another example of a pure name is a function signature or an API as described above.
  • impure names in the context of ⁇ -calculus are data with some kind of recognizable structure, such as an extensible markup language (XML) document.
  • XML extensible markup language
  • computer scientists have investigated the possibility of allowing processes to flow in communication over links. For example, a process 110 may send to the process 118 a message which represents a third process (not shown). This is known as higher-order ⁇ -calculus. Because of the rigidity with which ⁇ -calculus handles pure names, instead of sending a process over a link, even higher-order ⁇ -calculus variants send a name, which gives access to a desired process, instead of sending the process itself.
  • Sending a name, rather than a process, can be likened to the traditional programming technique of passing by reference, i.e., passing an address of a parameter from a calling routine to a called routine, which uses the address to retrieve or modify the value of the parameter.
  • the main problem with employing the passing by reference technique in higher-order ⁇ -calculus variants is that the technique can inhibit the ability of a concurrent system to become distributed.
  • ⁇ -calculus namely PICT, Nomadic PICT, TyCO, Oz, and Join, among others.
  • these other implementations are either not distributed (PICT) or are not higher-order forms of the ⁇ -calculus (Nomadic PICT, TyCo, Oz, and Join).
  • a system, method, and computer-readable medium for processing programs written in a process-based language comprises a computer-readable means for storing a program.
  • the program includes expressions written in a process-based language for representing protocol-based applications as processes.
  • the system also includes a process kernel for executing the expressions in the program.
  • the expressions specify the interactions of processes by allowing a named organizational scheme of data written in a customizable, tag-based language to be exchanged as a process among processes.
  • the named organizational scheme of data is bound to the scopes of processes that send and receive the named organizational scheme of data.
  • the method form of the invention is implementable in a computer system.
  • the method comprises representing protocol-based applications as processes when process expressions in a program written in a process-based language are executed.
  • the method further includes representing named organizational schemes of data written in a customizable, tag-based language as processes when query expressions are executed.
  • the method causes processes to communicate when processes send or receive the named organizational schemes of data as queries to or from queues.
  • the named organizational schemes of data are bound to the scopes of processes that send or receive the named organizational schemes of data.
  • another system form of the invention includes a query virtual machine for defining queries and for governing the interactions among queries and queues in a program written in a process-based language.
  • the system also includes a process virtual machine for defining processes and for governing interactions among processes in the program, processes including protocol- based applications.
  • the system further includes a reaction virtual machine for defining valid interactions among queries, queues, and processes and further for governing the interactions among queries, queues, and processes by interpreting queries as processes.
  • a method and computer-readable medium for processing programs written in a process-based language comprises parsing the expression to obtain syntactical elements that represent a queue, a set of queue delimiters, a query, a sequence delimiter, and other actions.
  • the method translates the expression as a process whose first action is submitting the query as another process to the queue and after which the process continues with other actions.
  • the query includes an organization scheme formed from a customizable, tag-based language that contains data and describes data.
  • a method form of the invention for executing a set of equational laws governing structural equivalence of expressions written in a process-based language.
  • the method parses a first expression.
  • the first expression describes that a query is being executed in parallel with a process.
  • the query has a head, which is empty, and a body, which contains a first name being bound to a second name.
  • the method translates the first expression as structurally equivalent to a second expression.
  • the second expression describes that the query is executed in parallel with the process if the query is in canonical form. Each occurrence of the first name in the process is replaceable with the second name.
  • a method, and computer-readable medium for processing programs written in a process-based language is provided.
  • a method form of the invention for executing sets of operational semantics rules governing the meanings of expressions ' written in a process-based language is provided.
  • the method includes parsing a first expression.
  • the first expression describes that a process is a choice of two processes.
  • the first process of the two processes expresses that a first query is submitted to a queue, " after which the first process continues with a first set of actions.
  • the second process of the two processes expresses that a second query is submitted to the queue, after which the second process continues with a second set of actions.
  • the method further includes reducing the first expression to a second expression.
  • the second expression describes that a third query is submitted to the queue after which the first process runs in parallel with the second process if the third query is in canonical form.
  • a further method for executing sets of operational semantics rules governing the meanings of expressions written in a process-based language parses a first expression.
  • the first expression describes a first process whose first action is submitting a query to a queue and after which the first process continues with a second process.
  • the method further includes reducing the first expression to a second expression.
  • the second expression describes that a lifted query runs in parallel with the second process if the first query is in canonical form.
  • FIGURE 1 is a block diagram illustrating a conventional, concurrent system using ⁇ -calculus for passing a name, such as an API, on a link between two Web services.
  • FIGURE 2 is a block diagram illustrating an exemplary computing device.
  • FIGURES 3A-3C are block diagrams illustrating an exemplary concurrent, distributed system formed in accordance with the invention for communicating structured messages among multiple processes.
  • FIGURE 4 is a block diagram illustrating major syntactical categories of an exemplary programming language, which is an artificial language that can be used to define a sequence of instructions that can ultimately be processed and executed by the exemplary computing device in a concurrent, distributed network of computing resources.
  • FIGURE 5 is a block diagram illustrating in greater detail an exemplary queue formed in accordance with the invention for storing processes as messages for communication between the two processes.
  • FIGURES 6A-6B are block diagrams illustrating a technique for determining structural equivalence between two programmatic documents formed in accordance with the invention.
  • FIGURES 7A-7B are block diagrams illustrating a technique for fusing two queues for enhancing communication between two processes in a concurrent, distributed system formed in accordance with this invention.
  • FIGURE 8 is a block diagram illustrating an exemplary system formed in accordance with this invention for fusing two queues to enhance communication among processes in a concurrent, distributed system formed in accordance with this invention.
  • FIGURES 9A-9B are block diagrams illustrating an exemplary system for reducing two database forms allowing two separate processes to communicate in a concurrent, distributed system formed in accordance with this invention.
  • FIGURES 10 A- IOC are block diagrams illustrating an exemplary system formed in accordance with this invention for discovering a name that can be used to access multiple databases by a process in a concurrent, distributed system formed in accordance with this invention.
  • FIGURES 11A-11V are method diagrams illustrating an exemplary method formed in accordance with this invention for compiling a program via a compiler or executing a process via a process kernel.
  • FIGURE 2 illustrates an example of a suitable computing system environment 200 for practicing certain aspects of the invention, such as processing queries, queues, and processes generated in accordance with the invention and/or executing the hereinafter described process kernel.
  • the computing system environment 200 is only one example of a suitable computing environment and is not intended to suggest any limitation as to the scope of use or functionality of the invention.
  • the invention is operational with numerous other general purpose or special purpose computing system environments or configurations.
  • Examples of well-known computing systems, environments and/or configurations that may be suitable for use with the invention include, but are not limited to, personal computers, server computers, hand- held or laptop devices, multiprocessor systems, microprocessor-based systems, set top boxes, programmable consumer electronics, network PCs, minicomputers, mainframe computers, distributed computing environments that include any of the above systems or devices, and the like.
  • program modules include routines, programs, objects, components, data structures, etc., that perform particular tasks or implement particular abstract data types.
  • the invention may also be practiced in distributed computing environments where tasks are performed by remote processing devices that are linked through a communications network.
  • program modules may be located in both local and remote computer storage media, including memory storage devices.
  • the computing system environment illustrated in FIGURE 2 includes a general purpose computing device in the form of a computer 210.
  • Components of computer 210 may include, but are not limited to, a processing unit 220, a system memory 230, and a system bus 221 that couples various system components, including the system memory to the processing unit 220.
  • the system bus 221 may be any of several types of bus structures, including a memory bus or memory controller, a peripheral bus, and a local bus using any of a variety of bus architectures.
  • bus architectures include Industry Standard Architecture (ISA) bus, Micro Channel Architecture (MCA) bus, Enhanced ISA (EISA) bus, Video Electronics Standards Association (VESA) local bus, and Peripheral Component Interconnect (PCI) bus, also known as Mezzanine bus.
  • ISA Industry Standard Architecture
  • MCA Micro Channel Architecture
  • EISA Enhanced ISA
  • VESA Video Electronics Standards Association
  • PCI Peripheral Component Interconnect
  • Computer 210 typically includes a variety of computer-readable media.
  • Computer-readable media can be any available media that can be accessed by computer 210 and includes both volatile and nonvolatile media, removable and non- removable media.
  • Computer-readable media may comprise computer storage media and communication media.
  • Computer storage media includes both volatile and nonvolatile, removable and non-removable media implemented in any method or technology for storage of information, such as computer-readable instructions, data structures, program modules, or other data.
  • Computer storage media include, but is not limited to, RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DVD) or other optical disk storage, magnetic cassettes, magnetic tapes, magnetic disk storage or other magnetic storage devices, or any other computer storage media.
  • Communication media typically embody computer-readable instructions, data structures, program modules or other data in a modulated data signal, such as a carrier wave or other transport mechanism that includes any information delivery media.
  • modulated data signal means a signal that has one or more of its characteristics set or changed in such a manner as to encode information in the signal.
  • communication media include wired media, such as a wired network or direct-wired connection, and wireless media, such as acoustic, RF infrared, and other wireless media. A combination of any of the above should also be included within the scope of computer-readable media.
  • the system memory 230 includes computer storage media in the form of volatile and/or nonvolatile memory, such as read only memory (ROM) 231 and random access memory (RAM) 232.
  • ROM read only memory
  • RAM random access memory
  • BIOS basic input/output system 233
  • RAM 232 typically contains data and/or program modules that are immediately accessible and/or presently being operated on by processing unit 220.
  • FIGURE 2 illustrates operating system 234, application programs 235, other program modules 236, and program data 237.
  • the computer 210 may also include other removable/non-removable, volatile/nonvolatile computer storage media.
  • FIGURE 2 illustrates the hard disk drive 241 that reads from or writes to non-removable, nonvolatile magnetic media, the magnetic disk drive 251 that reads from or writes to a removable, nonvolatile magnetic disk 252, and an optical disk drive 255 that reads from or writes to a removable, nonvolatile optical disk 256, such as a CD-ROM or other optical media.
  • removable/non-removable, volatile/nonvolatile computer storage media that can be used in the exemplary operating environment include, but are not limited to, magnetic tape cassettes, flash memory cards, digital versatile disks, digital videotapes, solid state RAM, solid state ROM, and the like.
  • the hard disk drive 241 is typically connected to the system bus 221 through a non-removable memory interface, such as interface 240, and the magnetic disk drive 251 and optical disk drive 255 are typically connected to the system bus 221 by a removable memory interface, such as interface 250.
  • the drives and their associated computer storage media discussed above and illustrated in FIGURE 2 provide storage of computer-readable instructions, data structures, program modules and other data for the computer 210;
  • hard disk drive 241 is illustrated as storing operating system 244, application programs 245, other program modules 246, and program data 247. Note that these components can either be the same as or different from operating system 234, application programs 235, other program modules 236, and program data 237.
  • Operating system 244, application programs 245, other program modules 246, and program data 247 are given different numbers here to illustrate that, at a minimum, they are different copies.
  • a user may enter commands and information into the computer 210 through input devices, such as a keyboard 262 and pointing device 261, the latter of which is commonly referred to as a mouse, trackball, or touch pad.
  • Other input devices may include a microphone, joystick, game pad, satellite dish, scanner, or the like.
  • a monitor 291 or other type of display device is also connected to the system bus 221 via an interface, such as a video interface 290.
  • computers may also include other peripheral output devices, such as speakers 297 and printer 296, which may be connected through an input/output peripheral interface 295.
  • the computer 210 may operate in a networked environment using logical connections to one or more remote computers, such as a remote computer 280.
  • the remote computer 280 may be a personal computer, a server, a router, a network PC, a peer device, or other common network node, and typically includes many or all of the elements described above relative to the computer 210, although only a memory storage device 281 has been illustrated in FIGURE 2.
  • the logical connections depicted in FIGURE 2 include a local area network (LAN) 271 and a wide area network (WAN) 273, but may also include other networks.
  • LAN local area network
  • WAN wide area network
  • Such network environments are commonplace in offices, enterprise- wide computer networks, intranets, and the Internet.
  • the computer 210 When used in a LAN networking environment, the computer 210 is connected to the LAN 271 through a network interface or adapter 270. When used in a WAN networking environment, the computer 210 typically includes a modem 272 or other means for establishing communications over the WAN 273, such as the Internet.
  • the modem 272 which may be internal or external, may be connected to the system bus 221 via the input/output peripheral interface 295, or other appropriate mechanism.
  • program modules depicted relative to the computer 210, or portions thereof, may be stored in the remote memory storage device.
  • FIGURE 2 illustrates remote application programs 285 as residing on memory device 281.
  • FIGURE 3A A system 300, which is a collection of component elements that work together to perform one or more computing tasks, is illustrated in FIGURE 3A.
  • a hardware system 344 which can comprise a number of computing devices, such as a personal digital assistant 302, a cellular phone 334, and a desktop computer 336, each comprising a microprocessor, its allied chips and circuitry, input and output devices, and peripheral devices (not shown).
  • PDAs personal digital assistants
  • the system 300 includes an operating system 342, comprising a set of programs and data files, such as an operating system kernel 303A, one or more device drivers 303B, and a process kernel 302C.
  • an operating system 342 comprising a set of programs and data files, such as an operating system kernel 303A, one or more device drivers 303B, and a process kernel 302C.
  • Subjacently coupled to the operating system 342 is a hardware abstraction layer 301.
  • the hardware abstraction layer 301 is an application programming interface for use by programmers to access devices of the hardware system 344 (such as the computing device 302, the cellular phone 334, and the desktop computer 336).
  • the operating system kernel 303A is the core of the operating system 342 and is designed to manage memory, files, and peripheral devices (via the hardware abstraction layer 301); maintain the time and date; launche applications, such as a Web service 302A; and allocate system resources.
  • Device drivers 303B are separate components that permit the Web service 302 A to communicate with a device, such as the computing device 302.
  • the process kernel 302C represents the Web service 302 A as a process 302B, manages the process 302B, and facilitates the communication of the process 302B with other processes (described below).
  • the operating system kernel 303A, the device drivers 303B, and the process kernel 303C reside in the kernel- mode portion of the operating system 342 while the Web service 302A and the process 302B reside in a user-mode portion 346 of the operating system 342.
  • the process kernel 303C can reside in the user-mode portion 346 when it is superjacently coupled to other system software components 305, 307 (FIGURE 3B), such as COM (Component Object Model).
  • process used in accordance with the present invention means a dynamic representation of one or more computation entities that have the capability to evolve by performing actions or that allow other processes to evolve.
  • process represents one of a duality of natures of a computation entity.
  • a computation entity When a computation entity is at rest, it can be examined, such as by viewing a program.
  • a computation entity When a computation entity is mobile (as a process), it cannot be seen, but its behaviors can be expressed and verified by a programming language 400 formed in accordance with the present invention (described below).
  • the Web service 302 A is designed to specialize in a certain service. To obtain greater functionality, the Web service 302 A can enlist the help of other Web services that can provide services not within the scope of the Web service 302A. To track down other Web services, the Web service 302A can communicate with a directory framework 326.
  • the directory framework 326 is a platform-independent piece of software (a directory framework) that provides a way to locate and register Web services on the Internet.
  • the directory framework 326 includes a store 330 containing a number of registered Web services and including detailed technical information about these Web services.
  • a discovery component 328 of the directory framework 326 acts as a broker between the process 302B and the store 330 to locate a desired Web service.
  • FIGURE 3 B illustrates a discovered Web service 304 A.
  • the process kernel 304C represents the Web service 304 A as a process 304B, which interacts with the process 302B over a communication means, such as a queue 310, to accomplish tasks of Web services 302 A, 304A.
  • the queue 310 through which processes communicate can take various forms, such as databases, channels, or other suitable structured stores. Because the computing devices 302, 304 can be located at geographic locations well away from each other, processes 302B, 304B cannot communicate via shared memory. Suitable communication means, such as the queue 310, include technology that enables processes 302B, 304B while running at different times to communicate across heterogeneous networks and systems that may be temporarily offline. Processes 302B, 304B send messages to communication means, and read messages from communication means. Communication means can provide guaranteed message delivery, efficient routing, security, and priority- based messaging. Additionally, communication means can be used to implement solutions for both asynchronous and synchronous scenarios requiring high performance.
  • suitable communication means include channels, queues, or databases, among other structured stores.
  • the queues 310-316 are databases, they are files composed of records, each containing fields together with a set of operations for searching, sorting, recombining, and other processing functions, organized in multiple tables, each of which are data structures characterized by rows and columns, with data occupying or potentially occupying each cell formed by a row-column intersection.
  • process kernels 302C, 304C include process virtual machines 302C1, 304C1, which contain software components for defining processes and for governing interactions among processes; query virtual machines 302C3, 304C3, which contain software components for defining queries and for governing the interactions among queries and queues; reaction virtual machines 302C2, 304C2, which contain software components for governing the interactions among queries, queues, and processes; and transition virtual machines 302C4, 304C4, which contain software components for isolating the process kernels 302C, 304C from the specifics of system software components 305, 307 (such as COM and the operating system, among others) on computing devices 302, 304.
  • system software components 305, 307 such as COM and the operating system, among others
  • Computing devices 302, 304 interact, communicate, and exchange information over a local area network, wide area network, or wireless network 338.
  • Processes 302B, 304B communicate over a queue 310 to exchange messages, such as a message 318.
  • the system 300 formed in accordance with the invention allows messages, such as the message 318, to be represented as processes by process kernels 302C, 304C in the exchange between processes 302B, 304B.
  • process kernels 302C, 304C in the exchange between processes 302B, 304B.
  • This allows cooperative dimensions of programs or Web services, such as the invocation ordering of APIs, among many, other things, to be expressed between processes 302B, 304B.
  • FIGURE 3 C illustrates the system 300 as a non-centralized network comprising numerous computing devices 302, 304, 306, 308 that can communicate with one another and that appear to users as parts of a single, large, accessible "storehouse" of shared hardware, software, and data.
  • the system 300 in the idiom of computer scientists, is a distributed system, which is conceptually the opposite of a centralized, or monolithic, system in which dumb clients connect to a single, smart central computer, such as a mainframe.
  • the system 300 is a dynamic network topology in which highly distributed, concurrent processes 302B, 304B, 306B, 308B interact in parallel on computing devices 302-308.
  • Processes 302B-308B cooperate to express to each other information sent as messages or queries to queues 310-314.
  • Pieces of information sent over a communication means include ordering of execution, timing of data, quality of service, and passing of, among processes 302B-308B, an organizational scheme formed from a customizable, tag-based language that contains data and describes data in such a way as to facilitate the interpretation of data or the performance of operations on data.
  • a customizable, tag-based language is extensible mark-up language (XML)
  • XML extensible mark-up language
  • the invention is not limited to this language. Other customizable, tag-based languages can be used.
  • Cooperative communication between processes 302B-308B is provided by the programming language 400 (FIGURE 4) formed in accordance with this invention.
  • the language 400 is a high-order variant of the ⁇ -calculus.
  • the language 400 is a process-based language. More specifically, in addition to other properties discussed below, the language 400 has the ability to programmatically detect "liveness.” Liveness is an indication that a process is alive. This quality needs to be programmatically verified in order for a program to be trusted to do the things it is designed to do.
  • a program, such as the Web service 302 A written in the language 400 can be programatically verified for "liveness.”
  • Other properties include the ability to analyze the security of processes 302B-308B and resource access run-time errors.
  • Security problems include the protection of computing devices 302-308 and their data from harm or loss.
  • the Web service 302A written in the language 400 can be verified to detect security problems induced by untrustworthy Web programs or untrustworthy computing devices.
  • the formal mathematical definition of the language 400 is given in the Appendix.
  • the language 400 includes the grammar, the rules for structural equivalents, and the rules for operational semantics.
  • the grammar of the language 400 is the system of rules that define the way in which the syntactical elements of queries and processes are put together to form permissible programming statements. In other words, unless one can express correctly in the grammar of the language 400, one cannot communicate concepts, such as the invocation of APIs, from one process to another process. Once an expression is correctly formed, the rules of semantics connect the expression with meanings. Because processes are dynamic, the language 400 uses operational semantics to couple meanings to processes. In other words, processes evolve by acting or interacting with other processes. Understanding the meaning of an expression of the language 400 relates directly to understanding its operations.
  • the rules for structural equivalence allow the operational semantics of the language 400 to be simplified in that an expression can be likened to another expression. Thus, the number of rules for operational semantics can be kept small since these rules can be applied to permutations of expressions.
  • the language 400 has several major syntactical categories: a queue syntax 402, which represents queues, databases, communication channels, or any structured stores that allow processes running at different times or at the same time to communicate via messages; a query syntax 404, which represents instructions written in a data manipulation language to assemble and disassemble messages, manipulate structured stores represented by the queue syntax 402, and detect message patterns; and a process syntax 406, which represents a dynamic aspect of a computation entity that can exchange not only names, such as an API, but also processes as messages over structured stores represented by the queue syntax 402.
  • the queue syntax 402, the query syntax 404, and the process syntax 406 together .form the major syntactical elements of the language 400.
  • Syntactical elements 402-406 of the language 400 can be used alone or can be combined in permutations to express cooperating nuances among processes, such as processes 302B-308B.
  • the syntactical rules (described in detail with reference to FIGURE 11 C-l IF and Section 1.1 of the Appendix), the structural equivalent rules (discussed in greater detail below with reference to FIGURE 11J and section 2.1 of the Appendix), and the operational semantics rules (discussed in greater detail below with reference to FIGURES 11O-11R and section 3.1 of the Appendix) in connection with queries are placed in the query virtual machines 302C3, 304C3.
  • the syntactical rules (described in detail with reference to FIGURE 11 G- 111 and Section 1.2 of the Appendix), the structural equivalence rules (discussed in greater detail below with reference to FIGURES UK- UN and section 2.2 of the Appendix), and the operational semantics rules (discussed in greater detail below with reference to FIGURES 11S-11V and section 3.2 of the Appendix) in connection with processes are placed in the process virtual machines 302C1, 304C1.
  • the reaction virtual machines 302C2, 304C2 contain operational semantics rules that define a method by which queues, queries, and processes react to each other.
  • the programming language 400 allows expressions to be formed for describing processes, such as processes 302B-308B, that run in parallel and interact over communication means, such as the queues 310-314.
  • processes such as processes 302B-308B
  • communication means such as the queues 310-314.
  • Queues 310-314 are represented by names (which correspondingly, are "X,” “Y,” “Z,” and “W.”).
  • the programming language 301 allows the passage of certain classes of processes, such as processes 318-324, among other things, to be expressed as messages over queues 310-314.
  • the processes 318-324 embody an organizational scheme formed from a customizable, tag-based language that contains data and describes data in a way that facilitates the interpretation of data or the performance of operations on data.
  • One exemplary organizational scheme includes a query.
  • Another exemplary organizational scheme includes a message.
  • a further exemplary organizational scheme includes an XML document.
  • a query contains data and information to manipulate data.
  • the computing device 302 represents a computer at a publisher and the computing device 304 represents a computer at a bookstore. Both the publisher and the bookstore have the independent ability to define, in XML, their own tags for information about authors, titles, and publication dates of books. Such book information can be organized into XML documents with appropriate tags.
  • the information is exchanged by the computing device 302 at the publisher or the computing device 304 at the bookstore transforming the XML documents into queries, which is represented by process kernels 302C-30C as processes, such as the process 318 to be communicated over the queue 310 between the process 302B and the process 304B.
  • Prior ⁇ -calculus variants do not allow structured information, such as XML documents, to be communicated over communication means, such as the queue 310.
  • structured information such as XML documents
  • communication means such as the queue 310.
  • a case in point includes structured information that expresses the invocation ordering of APIs.
  • Another case in point is the example discussed above between the publisher and the bookstore.
  • the programming language 400 allows multidimensional data (data structures) to be embodied in processes, such as processes 318-324, to be communicated as messages passed among processes 302B-308B.
  • the language 400 allows the creation of an environment for facilitating the exchange of an organizational scheme (which is expressed in a customizable, tag-based language that contains data and describes data in such a way as to facilitate the interpretation of data or the performance of operations on data) among processes over queues in a non-centralized network that is concurrent and distributed.
  • an organizational scheme which is expressed in a customizable, tag-based language that contains data and describes data in such a way as to facilitate the interpretation of data or the performance of operations on data
  • FIGURE 5 visually illustrates syntactical expressions that relate a queue 310 (X), queries 504, 506 (Q 0 , Q , and processes 302B, 304B (T, P).
  • Stored in the queues 310-316 are one or more queries 502, which are processes embodying structured data or names with no apparent structure.
  • queries 502 which are processes embodying structured data or names with no apparent structure.
  • the process 302B converts the XML document 500A into a query 500B and then writes the query 500B into the queue 310.
  • the query 500B is treated as a process by the process kernels 302C-308C.
  • the programming language 400 allows processes, such as the query 500B, to pass through communication means, such as the queue 310.
  • the query 500B contains more than a pure name in that the query 500B also contains the structured contents of the XML document 500A.
  • the process 304B reads the queue 310.
  • the programming language 400 provides a set of query operations that are used to assemble and disassemble queries, manipulate queues, and detect patterns in queries. Other query operations are used to put messages into queues, get messages from the queues, and build new messages from existing messages.
  • a query comprises two portions: a head and a body.
  • the head of a query defines a set of parameters and their corresponding types.
  • the body is a set of bindings.
  • a query is invoked by binding its parameters to arguments and activating its sets of bindings.
  • a binding defines a relation between two terms. Not all terms can be bound together.
  • a valid binding exists when the binding binds a term of some type to a term of its complementary type.
  • a query can be likened to a traditional procedure; the head of the query is like the signature of the procedure; the body of the query is like the set of programming statements of the procedure; and each binding is a programming statement that uses the data stored in the parameters of the signature of the procedure or places data into the parameters of the signature of the procedure.
  • the relationship among the queue 310, a query 500B, and a process 304B can be syntactically expressed as X[Q 0 ].P, where X is the queue 310; Q 0 is the query 500B; and P represents the process 304B, which is a point of continuation after the query Q 0 has been written to the queue X.
  • the mathematical expression X[Q 0 ].P describes the process of depositing the query 500B at the queue 310 after which the process is continued with the execution of the process 304B.
  • both Q 0 and P are processes in the mathematical notation X[Q 0 ].P.
  • the programming language 400 identifies a subset (or certain classes) of processes that can be passed as messages over the queue X. This subset contains queries, each of which is correlated to customizable, tag-based data structures, such as those contained in XML documents.
  • One major aspect of the language 400 is its collection of equational laws for determining structural equivalence among queries and processes.
  • the process of determining structural equivalence with these equational laws of the language 400 disencumbers minor differences between two programmatic documents, such as two programs or two software specifications, to ascertain whether they conform in every relevant respect.
  • These laws of structural equivalence allow the operational semantics of the language 400 to be simplified as described above.
  • FIGURE 6A shows a program 602 written in a language suitable for this illustration.
  • the program 602 includes a main() function which is the starting point of execution for certain languages, such as C or C++.
  • the test condition determines whether a variable A is equal to the value 7. If the test condition is true, programming statements contained within the second set curly of brackets are executed. There are two programming statements inside the second set of curly brackets.
  • the first programming statement invokes a fork() function that takes a variable P0 as an argument.
  • fork() functions in certain languages initiate a child process in a concurrent system after a parent process has been started. In this case, the child process is represented by the argument P0.
  • the child process P0 runs in parallel with the parent process executing the program 602.
  • the second programming statement also contains an invocation of the fork() function, but instead of taking the variable P0 as an argument, the second invocation of the fork() function takes a variable PI as an argument.
  • Another child process represented by the argument PI is initiated with the invocation of the second fork() function.
  • Child processes P0, PI run in parallel with each other at the egress of the program flow from the closing curly bracket of the second set of curly brackets.
  • Another program 604 is similar to the program 602 in many respects, but there are some differences.
  • One difference is the test condition of the IF statement of the program 604, which contains a variable B instead of the variable A.
  • Another difference is that the child process PI is initiated with the first invocation of the fork() function before the invocation of the child process PO.
  • the logic flow in both programs 602, 604 will ultimately reach the fork() statements of both programs 602, 604 if the test conditions of both IF statements are true.
  • the difference in the names of the variables A, B are negligible, and do not affect the logic structure of programs 602,604.
  • child processes P0, PI run in parallel, the sequence of their invocation is also negligible.
  • the program 602 can be written by many different programming languages, each containing different and diverse grammatical constructions that hinder structural equivalent analysis.
  • the program 602 can be expressed by a quality apart from the grammatical specifics of the program 602.
  • the essence of the program 602 is the execution of child processes P0, PI in parallel. This essence can be expressed by the language 400 by translating the program 602 into a specification 602A.
  • the parallel execution of processes P0, PI is expressed in the program 602 A as "P0
  • the statement "P0 1 PI" is nested between a tag ⁇ I_DO> and its corresponding ending tag ⁇ /I_DO>.
  • the process 302B requires a service in which the child process P0 is desired to be executed in parallel with another child process P2.
  • This requirement is captured by a statement "P0 1 P2" as indicated in a specification 302D written in the language 400.
  • the statement "P0 1 P2" is situated between a tag ⁇ I_NEED> and its corresponding ending tag ⁇ /I_NEED>.
  • the process 302B obtains the specification 602A from the discovery component 328 to determine whether the program 602 is suited for the task that the process 302B wishes to accomplish. Using structural equivalence analysis, the process 302B can quickly determine that the program 602 A will not be able to provide the requested service as specified by the specification 302D. This is the case because the program 602 executes child processes P0, PI in parallel whereas the process 302B requires child processes P0, P2 running in parallel instead.
  • the process 302B uses the queue 310 (queue X) for sending and receiving messages (or writing and reading queries). Instead of using the queue 310, the process 304B communicates with a queue 702 (queue X') for sending and receiving messages (or writing and reading queries).
  • processes 302B, 304B can discover a new way of accessing a queue (or database, or channel, among other structured stores).
  • the input/output mechanism (I/O) of prior variants of ⁇ -calculus is asymmetric.
  • UX.P U(Y).Q where U and U refer to the same link, but U denotes that the link is outputting something, such as X, and U denotes that the link is inputting something, such as Y; X is output data; Y is input data; and P, Q are processes, which continue after the expressions UX and U(Y) have been executed.
  • the asymmetry arises from the fact that X as output data is not bound to the channel U whereas Y as input data is bound to the channel U.
  • bound means that the operative scope of Y is restricted to the link for which Y is bound.
  • Asymmetric I/O inhibits the formation of a distributed network topology, such as the system 300.
  • the present invention overcomes or reduces the above problems by providing symmetric I/O.
  • FIGURE 8 illustrates the symmetric I/O aspect of the system 300 formed in accordance with the present invention.
  • the process T is executed in parallel with the process P, or mathematically, T
  • the process XN.W.S is deployed to the queue 310 (X) and the process X.Y.Z.R is also deployed to the queue 310.
  • processes Y.W.S , Y.Z.R are deployed to the queue 312 (Y).
  • the queue 316 (W) is fused with the queue 314 (Z). Any input or output at W will be communicated to Z, and correspondingly, any input or output at Z will be communicated to W, hence forming a distributed network topology.
  • the language 400 in addition to its syntax, has a set of rules for describing the evolution of processes. In other words, these rules define the operational semantics of the language 400.
  • the operational semantics of the language 400 describe the relationship between the syntactical elements 402-406 and their intended meanings. Thus a program statement written in the language 400 can be syntactically correct, but semantically incorrect. In other words, a statement written in the language 400 can be in an acceptable form, but still convey the wrong meaning.
  • One example of the operational semantics of the language 400 is the communication reduction rule, which is pictorially illustrated by FIGURES 9A-9B (implemented in the reaction virtual machines 302C2, 304C2).
  • a query 902A (Qo) is ready to be submitted to the database 904 (V) by the process 302B (T).
  • the query 902A is shown as a database form.
  • a form contains data as well as a "hole" that can potentially be filled when the data is computed by the database 904.
  • a query can be likened to a question that has information for the question to be answered.
  • the information is the data in the form and the answer is the data to fill the hole in the form.
  • a form can be likened to a linear simultaneous equation that can be algebraically solved if sufficient information is available.
  • V[Q Q ].S the process of submitting the form 902A to the database 904 and continuing at the process 306B can be described as follows: V[Q Q ].S, where V represents the database 904, Q 0 represents the form 902A, and S represents the process 306B.
  • the form 906A represents a computation of the two forms 902A, 902C for which no further computation can be carried out without more data.
  • FIGURES 10 A- 10C pictorially illustrate another operation semantics rule for the evolution of processes, the lift rule (discussed in greater detail with reference to FIGURE 11U and section 3.2 of the Appendix).
  • the process 302B separately communicates with databases 1006, 904 to send and receive messages (or queries).
  • the database 1006 is named "U" and the database 904 is named "N".
  • the process 306B submits to the database 904 a query 1002 A containing a binding that expresses a relationship between the name "U" and the name "V.
  • the process 302B With the submission of the query 1002A, the process 302B will realize that the names "U”, “V refer to the same database. In other words, messages that are deposited by the process 302B at the database 1006 will be forwarded to the database 904, and correspondingly, messages that are deposited at the database 904 by the process 302B will be forwarded to the database 1006. There are certain conditions that must be satisfied (discussed in detail below with reference to FIGURE 11U) before the process 302B can interpret from the query 1002A that the names "U", "N" refer to the same database or that there are two separate databases that will forward messages sent by the process 302B to each other.
  • a system 1010 is shown in 10C showing multiple computing devices dispersed over a number of geographic areas.
  • the process 302B is executed on the computing device 302 in the San Francisco geographic area 1012.
  • the process 304B is executed on the computing device 304 in the Seattle geographic area 1016 and the process 308B is executed on the computing device 308 in the Portland geographic area 1014.
  • the process 302B has obtained the help of the process 304B to perform certain tasks. Unbeknownst to the process 302B, the process 304B cannot accomplish all the tasks specified by the process 302B. Thus the process 304B has contracted the help of the process 308B to perform tasks that are not within the scope of the process 304B.
  • messages coming from the process 302B, such as a message 1020, to the database 1006 will be automatically forwarded to the database 904 so that the process 308B can perform required tasks.
  • the process 302B can directly communicate with the database 904 to exchange messages.
  • the process 302B need not do so and can continue to communicate with the database 1006.
  • FIGURES 11 A-l IN illustrate a method 1100 for compiling or executing a program, such as the Web service 302 A (hereinafter, "the program 302 A"), by a process kernel, such as the process kernel 302C.
  • the program 302 A is written in the language 400.
  • the method 1100 will execute sets of syntactical rules governing the structure and content of query expressions and process expressions. Sets of equational laws governing structural equivalence of query expressions and process expressions are also executed by the process kernel 302C.
  • the language 400 also includes sets of operational semantics rules governing the meanings of query expressions and process expressions that are correctly formed in accordance with the sets of syntactical rules of the language 400. These sets of operational semantics rules are executed by the process kernel 302C.
  • the following description of the method 11.00 makes references to various elements illustrated in connection with the system 300 shown in FIGURES 3 A-3C.
  • the method 1100 proceeds to a set of method steps 1102, defined between a continuation terminal ("terminal A") and an exit terminal ("terminal B").
  • the set of method steps 1102 runs the program against the syntactical rules governing the structure and content of .query statements formed from the queue syntax 402.
  • terminal A (FIGURE 1 IC)
  • the method 1100 proceeds to a block 1114 where the process kernel 302C obtains a query expression (Q) from the program 302 A.
  • the process kernel 302C decides whether the query Q expression has the syntactical form ⁇ T*)(C*).
  • Each query written in the language 400 has the syntactical form (T*)(C*), where the syntactical element (T*) denotes the head of the query and the syntactical element (C*) denotes the body of the query.
  • Each query written in the language 400 has a head and a body. The head declares the number of parameters and their respective types. The body contains a set of bindings.
  • the query can be likened to a traditional programming procedure in that a query is a named sequence of statements (although unnamed queries can be expressed using the language 400) with associated constants, data types, and variables, that usually performs a single task.
  • the head of the query is similar to the signature of a procedure whereas the body of the query is similar to the sequence of statements contained inside a procedure.
  • Contained inside the head delimiters () is a symbol T*, which denotes zero or more query terms (defined below).
  • Contained inside the body delimiters () is the symbol C*, which denotes zero or more constraints (described below).
  • the process kernel 302C determines whether the query term T is a literal (hereinafter, "TOP").
  • TOP a literal
  • a literal is a value, used in a program that is expressed as itself rather than as a variable or the result of an expression. Examples of literals include the numbers 25 and 32.1, the character a, the string Hello, and the Boolean value TRUE. If the answer at decision block 1120 is YES, the method 1100 proceeds to another continuation terminal ("terminal A5"). From terminal A5 the method 1100 proceeds to decision block 1146 where the process kernel 302C determines whether there is another query expression to analyze. If the answer is NO, the method 1100 proceeds to another continuation terminal ("terminal B"). Otherwise, the answer at decision block 1146 is YES, and the method 1100 loops back to block 1114 to obtain another query expression from the program 302A for analysis.
  • the method 1100 proceeds to another decision block 1122 where the process kernel 302C determines whether the query term T is a complimentary literal (hereinafter "bottom"). Complimentary literals are inversions of literals. If the answer at decision block 1122 is YES, the method 1100 proceeds to terminal A5 (described above). If instead, the answer at decision block 1122 is NO, the method 1100 proceeds to another decision block 1124.
  • the process kernel 302C determines whether the query term T is a discarder (delimited by the symbol "_"). A discarder is a query that takes in only input parameters and provides no output parameters. If the answer at decision block 1124 is YES, the method 1100 proceeds to the terminal A5 described above. At decision block 1124, if the answer is NO, the method 1100 proceeds to another continuation terminal ("terminal Al ").
  • the method 1100 proceeds to decision block 1126 where the process kernel 302C verifies whether the query term T is a name (or a literal string, such as "hello").
  • a name or a literal string, such as "hello”
  • an alphabetic letter is treated syntactically by the language 400 as a variable, which is a named storage location capable of containing data that can be modified during program execution. If an alphabetic letter is preceded by a "name" in the language 400, the alphabetic letter is treated by the language 400 as a literal string instead of a variable. If the answer at decision block 1126 is YES, the method 1100 proceeds to the terminal A5 (described above).
  • the method 1100 proceeds to another decision block 1128 where the process kernel 302C determines whether the query term T is a variable (such as X). If the answer is YES, the method 1100 proceeds to the terminal A5 (described above).
  • the method proceeds to decision block 1159 where the process kernel 302C determines whether the query term T is a local variable with the form "X ⁇ ".
  • the form X ⁇ contains the term X, which denotes a variable in a program written in the language 400; the caret, which is a small, up-pointing symbol ( A ) typically found over the 6 key on the top row of a microcomputer keyboard, denotes that the variable X is a local variable (in the idiom of computer science, a local variable means a variable whose scope is limited to a given block of code, usually a subroutine, but in the present invention, the scope of a local variable is limited to a process); and the term X ⁇ denotes the creation, in a process, of a local variable X, which is capable of exporting information to be consumed in a continuation process. If the answer is YES at decision block 1159, the method 1100 proceeds to the terminal A5 (described above).
  • the method proceeds to decision block 1157 where the process kernel 302C determines whether the query term T is a local variable with the form " ⁇ X".
  • the form ⁇ X contains the term X, which denotes a variable; the term ⁇ is a caret; and the term ⁇ X denotes, in a process, a local variable X, which is capable of importing information (to be consumed) from the computing environment in which the process evolves.
  • the answer is YES at decision block 1157, the method 1100 proceeds to the terminal A5 (described above). Otherwise, the decision is NO, and the method 1100 proceeds to another continuation terminal ("terminal A2").
  • the method flow proceeds to decision block 1130 where the process kernel 302C checks the query term T to see whether it is an inversion (delimited by the ⁇ symbol). If the decision is YES, method flow proceeds to the terminal A5 (described above). Otherwise, the decision is NO, and the method 1100 enters decision block 1132.
  • the process kernel 302C determines whether the query term T is a tuple, which is a set of ordered elements. There are two symbols in the language 400 for signifying tuples: the syntactical symbol "*" and the syntactical symbol "#". If the answer at decision block 1132 is YES, method flow proceeds to the terminal A5 (described above).
  • the method 1100 proceeds to decision block 1134.
  • the process kernel 302C checks to see whether the query terminal T is of the form ⁇ X*)(Q,Q), where X* denotes one or more variables and Q denotes a query.
  • the process expression (X* ⁇ (Q,Q) denotes zero or more variables in the head of the query and two other queries in the body of the query which are separated by a comma. If the decision is YES at decision block 1134, the method flow proceeds to terminal A5 (described above). If the decision is NO, the method 1100 proceeds to decision block 1136.
  • the process kernel 302C checks whether the query term T is a left injection (INR(X)).
  • the left injection operator "inl()" is used to indicate the source of an element in a union of two sets. For example, suppose a set A is summed with a set B (which is denoted as A+B). Each element of the set A+B is, in effect, tagged with the label inl to indicate that the element originated in set A
  • the constructor inl is preferably used to indicate operation (described below) on the left-sided Q of the body of the query expression (X*)(Q,Q). If the answer is YES to decision block 1136, the method flow proceeds to the terminal A5 (described above).
  • the method 1100 proceeds to decision block 1138 where the process kernel 302C determines whether the query term T is a right injection (INR(X)).
  • the process kernel 302C determines whether the query term T is of the form ⁇ X*)(Q L Q R ).
  • the left injection constructor (INL(X)) allows the variable X to be bound to the constraint QL and the right injection constructor (INR(X)) allows the variable X to be bound to the constraint Q R
  • the method 1100 proceeds to the terminal A5 (described above). Otherwise, the method flow proceeds to decision block 1140 where the process kernel 302C determines whether the query term T is of the form ⁇ X*)(Q).
  • the method 1100 proceeds to the terminal A5 if the answer at decision block 1140 is YES. Otherwise, another decision block 1142 is entered by the method flow.
  • the process kernel 302C determines whether the query term T is of the form ?T. See decision block 1142. The operator "?” can be considered as a read operator that binds the term T to the first term in the head of the query Q who is contained in the body of a . query ⁇ X*)(Q). If the answer is YES at decision block 1142, the method flow proceeds to the terminal A5 (described above). If the answer is NO, the method determines whether the query term T is a copy operation (e.g., "T@T").
  • terminal A5 is entered by the method 1100 (described above). If instead the answer is NO, which means that the query Q has not been written in a syntactical form that is recognizable by the language 400, the method 1100 finishes execution and terminates. From terminal B (FIGURE 11 A) the method 1100 proceeds to a set of processing steps 1104 defined between a continuation terminal ("terminal C") and an exit terminal ("terminal D"). This set of processing steps 1104 runs the program 302A against the syntactical rules governing the structure and content of process statements. From terminal C (FIGURE 11G) the process kernel 302C obtains a process expression (II) from the program 302A. See block 1148.
  • II process expression
  • the process kernel 302C determines whether the process expression IT is a "0" which denotes a process stop or inactivity of a process. If the answer YES, the method flow proceeds to another continuation terminal ("terminal C3"). Otherwise, the method flow proceeds to another decision block 1152.
  • the process kernel 302C decides whether the process expression IT has a form X[Q].P, where X is a variable representing a channel, a queue, a database, or other structured stores; Q denotes a query having a syntax described above and illustrated in FIGURES 11C-11F; X[Q] denotes that the query Q is submitted or deposited at X; the period ".” denotes a sequence from a process X[Q] to another process P or denotes a sequence from a portion of a process X[Q] to another portion P of the same process. If the answer at decision block 1152 is YES, the method 1100 proceeds to the terminal C3. Otherwise, if the answer is NO, the method 1100 proceeds to decision block 1154.
  • the process kernel 302C determines whether the process expression IT is a summation of a number of X[QJ.Pj, such as X[Qo].Po+X[Q ⁇ ]-P ⁇ - The summation indicates that a process represented by the process expression IT can execute one of many alternatives. For example, with the summation of X[Qo].Po+X[Q ⁇ ]-P ⁇ , the process represented by IT can execute either X[Q Q ].P Q or If the answer at decision block 1154 is YES, the method 1100 proceeds to the terminal C3. Otherwise, if the answer is NO, the method flow proceeds to another continuation terminal ("terminal Cl").
  • the method 1100 proceeds to decision block 1156 where the process kernel 302C determines whether the process expression IT is of the form (NEW X)P where NEW denotes an operator in the language 400 for creating a new name which is bound to some process; (NEW X) denotes the creation of a new name X in some process; and (NEW X)P denotes that a new variable X is created and is bound to a process P. If the decision at decision block 1156 is YES, the method 1100 continues at terminal C3. If the answer is NO, decision block 1158 is entered by the method 1100.
  • the process kernel 302C determines whether the process expression IT is of the form P
  • the process kernel 302C determines at decision block 1160 whether the process expression IT is of the form !P, where the exclamation mark "! denotes a replication operator and !P denotes an infinite composition P
  • the replication operator ! allows a developer to express infinite behaviors of processes using the language 400. If the decision is YES at decision block 1160, the method 1100 proceeds to the terminal C3. Otherwise, the method 1100 enters another continuation terminal ("terminal C2").
  • the method 1100 proceeds to decision block 1162 where the process kernel 302C determines whether the process expression IT is of the form X[P].
  • the syntactical form X[P] indicates that a developer using the language 400 can deposit or submit a process P at X, which as described before includes channels, queues, and databases, among other structured stores. If the answer at decision block 1162 is YES, the method 1100 proceeds to the terminal C3. Otherwise, the answer is NO, and the method flow proceeds to decision block 1164.
  • the process kernel 302C determines whether the process expression IT is of the form (Q), which is a lifted query (described in further detail below).
  • the terminal C3 is entered by the method 1100. Otherwise, the answer is NO and the method 1100 finishes execution and terminates.
  • the reason for the termination of the method 1100 at this point is because the process expression IT was formed in a way incompatible with the grammar of the language 400.
  • the method 1100 proceeds to decision block 1166 where the process kernel 302C determines whether the program 302A contains other process expressions to be checked. If the answer is NO, the method flow proceeds to another continuation terminal ("terminal D"). Otherwise, the answer is YES, and the method 1100 proceeds to another continuation terminal ("terminal C4"), which loops back to block 1148 wherein the above-described method steps are repeated.
  • the query context K denotes multiple queries that have holes that can be adapted to be filled by one or more constraints.
  • the method 1100 proceeds to the terminal El, which proceeds to another decision block 1174.
  • the process kernel 302C determines whether there are more query expressions in the program to analyze for structural equivalents. See block 1174. If the answer is NO, the method 1100 proceeds to the exit terminal F. Otherwise, the answer is YES, and the method 1100 loops back to block 1168 where the above-described method steps are repeated.
  • the method 1100 proceeds to another continuation terminal ("terminal G"). From terminal G (FIGURE 1 IB), the method 1100 proceeds to a set of processing steps 1108 defined between a continuation terminal ("terminal H") and an exit terminal ("terminal l"). Among these processing steps 1108 the method runs the program using a set of equational laws governing structural equivalence of processed statements. From terminal H (FIGURE 1 IK) the method 1100 proceeds to block 1176 where the process kernel 302C obtains several process expressions (III and 112) from the program 302A for structural equivalence analysis. Next, the method determines whether the process expression III is of the form P Q I Pi- See decision block 1178A.
  • the process expression III is structurally equivalent to the process expression 112 if 112 has the form P 0
  • the method 1100 proceeds to another continuation terminal ("terminal H7"). If the answer is NO at decision block 1178 A, the method 1100 proceeds to another decision block 1180A where the process kernel 302C determines whether the process expression 111 has the form P 1 0. If the answer is YES at decision block 1180A, the process expression III is structurally equivalent to the process expression IT2 if the process expression IT2 has the form P. See block 1180B. Next, the method flow proceeds to the terminal H7. If the answer is NO at decision block 1180A, the method 1100 proceeds to another decision block 1182A.
  • the process kernel 302C determines whether the process expression ITl has the form !P. If the answer is NO, the method 1100 proceeds to another continuation terminal ("terminal H2"). If the answer is YES at decision block 1182A, the method 1100 proceeds to yet another continuation terminal ("terminal HI ").
  • the method 1100 proceeds to block 1182B where the process expression III is determined to be structurally equivalent to the process expression 112 if the process expression IT2 has the form P
  • the method 1100 proceeds to decision block 1184A where the process kernel 302C determines whether the process expression ITl has the form Po+Pi- If the answer is YES to decision block 1184A, the process kernel 302C determines that the process expression ITl is structurally equivalent to the process expression IT2 if the process expression IT2 has the form P ⁇ +Po- See block 1184B.
  • the method flow proceeds to the terminal H7. If instead the answer at decision block 1184A is NO, the method 1100 proceeds to another decision block 1186 A.
  • the process kernel 302C determines whether the process expression III has the form P ⁇ +0.
  • the method 1100 flows to block 1186B where the process kernel 302C determines that the process expression III is structurally equivalent to the process expression IT2 if the process expression 112 has the form P.
  • the method 1100 flows to the terminal H7. If the answer is NO, the method flow proceeds to another decision block 1188A.
  • the process kernel 302C determines whether the process expression III has the form (NEW X)(NEW Y)P. If the answer is YES, the method 1100 proceeds to another continuation terminal ("terminal H3"). Otherwise, if the answer is NO, the method 1100 proceeds to another continuation terminal ("terminal H4").
  • the method 1100 proceeds to block 1188B where the process expression LU is determined to be structurally equivalent to the process expression IT2 if the process expression IT2 has the form (NEW Y)(NEW X)P.
  • the method 1100 proceeds to another block 1190 A where the process kernel 302C determines whether the process expression ITl has the form (NEW X)(NE X)P. If the answer is YES to decision block 1190A, the process expression 111 is structurally equivalent to the process expression J-T2 if the process expression IT2 has the form (NEW X)P. See block 1190B.
  • the method 1100 proceeds to the terminal H7.
  • the method 1100 proceeds to another decision block 1192 A.
  • the process kernel 302C determines whether the process expression ITl has the form (NEW X)P
  • the name X is preferably a free name in the process Q. In other words, the name X is not bound to the process Q.
  • method 1100 proceeds to the terminal H7.
  • the method 1100 enters decision block 1194 A.
  • the method 1100 proceeds to another decision block 1194B.
  • a query is said to be canonical, or alternatively, is in canonical form if and only if all of its constraints (the bindings in the body of the query) are irreducible and the query is not a failure.
  • a constraint is irreducible in a query if and only if there exists a second query such that the query maps or reduces to the second query, and the constraint is an element of the second query.
  • a query is said to fail if and only if the query is mapped or reduced to another query and the other query contains a failure.
  • a constraint of the form Lo: :L ⁇ s a failure if L Q is not equivalent to the complement of L j where L Q , L ⁇ are literals.
  • the process expression P ⁇ X7X ⁇ denotes that whenever in the process P there is an occurrence of the name X, such an occurrence can be replaced with the name X'.
  • the processing steps 1194A-1194C programmatically describe the substitution equivalent, which was discussed above in connection with FIGURES 7A-7B.
  • the method 1100 proceeds to the terminal H7. If the answer at decision block 1194B is NO, the method 1100 proceeds to the terminal H7. From terminal H7, the method 1100 proceeds to another decision block 1196 where the process kernel 302C checks to see whether there are more process expressions for structural equivalence analysis. If the answer is NO at decision block 1196, the method flow proceeds to the exit terminal I. Otherwise, the method 1100 proceeds to a continuation terminal ("terminal H8"). From terminal H8 (FIGURE UK) the method 1100 loops back to block 1176 and the above-described method steps are repeated.
  • the method 1100 proceeds to a set of processing steps 1110 where the method runs the program 302 A against the operational symatics rules governing the meanings of query statements in the program 302 A.
  • the set of processing steps 1110 are defined between a continuation terminal ("terminal J") and an exit terminal ("terminal K").
  • operational symantics rules are basically a series of evolving relations of processes. A process by its nature is dynamic so that from one point in time to the next the process is continually changing or evolving.
  • the operational symantics rules of language 400 provide a carefully guided evolution of processes expressed in the language 400. It is through the syntactical rules described above in FIGURES 11C-11I that a developer can express the nuances in which processes evolve through the operational symantics of the language 400.
  • the method 1100 proceeds to block 1198 where the process kernel 302C obtains a binding from query expressions in the program.
  • the method flow proceeds to terminal J4. If the answer is NO, the method 1100 proceeds to another continuation terminal ("terminal Jl").
  • the method 1100 proceeds to the terminal J4. If the answer is NO to decision block 1191A, the method 1100 proceeds to another decision block 1189 A.
  • the method 1100 proceeds to another decision block 1189A.
  • the method 1100 proceeds to the terminal J4. If the answer to decision block 1185 A is
  • the method 1100 proceeds to another decision block 1183 A.
  • the method 1100 proceeds to another decision block 1181 A where the process kernel 302C determines whether the binding B has the form (T)( 0 (5 ,0,0 ! j . In other words, the process kernel 302C determines whether binding B is in a form of a query with the list T in the head and three constraint lists in the body, which include . If the answer at decision block 1181 A is YES, the process kernel 302C further determines whether the list C can be reduced to C . See decision block 1181B. If the answer is YES to decision block 1181B, the binding B is reduced to a query (T J ( C 0 , C ', C x ) . See block 1181C. The method flow proceeds to the terminal J4.
  • the method 1100 proceeds to another decision block 1179 A.
  • the answer at decision block 1179A is NO, and the method flow proceeds to the terminal J4, which proceeds to another decision block 1177.
  • the process kernel 302C determines whether there is another query expression to apply the semantic rules of the language 400. If the answer is NO, the method 1100 proceeds to the exit terminal K. If the answer at decision block 1177 is YES, the method 1100 proceeds to another continuation terminal ("terminal J5"). From terminal J5, the method 1100 loops back to block 1198 where the above-described method steps are repeated.
  • the method 1100 proceeds to a set of processing steps 1112 where the method runs the program 302 A against the operational semantics rules governing the meanings of process expressions.
  • the set of processing steps 1112 are defined between a continuation terminal ("terminal L") and an exit terminal ("terminal M").
  • method 1100 proceeds to a block 1175 where the process kernel 302C obtains a process expression (II) in the program 302 A.
  • the process kernel 302C determines whether the process expression II contains a summation X[Q 0 ].P ⁇ +...+X[Q ⁇ ].P ⁇ +.... If the answer is YES at decision block 1173 A, the method 1100 proceeds to another decision block 1173B.
  • the process kernel 302C determines whether there is a binding of a form that is reducible to another query Q canonically.
  • Both ⁇ , ⁇ define a permutation that maps or reduces a term (see Definition 3.2.1 in Section 3.2 of the Appendix). Both ⁇ , ⁇ j are preferably interpreted as a database join. If the answer at decision block 1173B is
  • process kernel 302C reduces the process expression IT to a process X[Q].(P ⁇ I Pi), which denotes that the reduced query Q is submitted to a structured store X and afterward both processes P ⁇ , ? ⁇ execute in parallel. See block 1173 C. Processing steps 1173A-1173C are discussed above in connection with FIGURES 9A-9B. Next, from block 1173 C, the method 1100 proceeds to another continuation terminal ("terminal L6").
  • the method 1100 proceeds to another decision block 1171 A.
  • the process kernel 302C determines whether the process expression II contains P
  • the method 1100 proceeds to block 1171C where process kernel 302C reduces the process expression II to P
  • the method flow proceeds to the terminal L6.
  • the method 1100 proceeds to another decision block 1169 A where the process kernel 302C determines whether the process expression IT contains (NEW X)P. If the answer is YES, the method flow proceeds to decision block 1169B where the process kernel 302C determines whether the process P can be reduced to P'. If the answer at decision block 1169B is YES, process kernel 302C reduces the process expression II to (NEW X)P ⁇ See block 1169C. Next, the method 1100 proceeds to the terminal L6.
  • the method flow proceeds to another decision block 1167A.
  • the process kernel 302C determines whether the process expression IT contains X[P]. If the answer is YES, the method 1100 proceeds to another decision block 1167B. The process kernel 302C determines whether the process P can be reduced to another process P'. See decision block 1167B. If the answer at decision block 1167B is YES, the method flow proceeds to another continuation terminal ("terminal L3"). If the answer at decision blocks 1167 A, 1167B is NO, the method 1100 proceeds to another continuation terminal ("terminal L4").
  • the method 1100 proceeds to block 1167C where process kernel 302C reduces the process expression II to X[P'].
  • the method flow proceeds to terminal L6.
  • C which denotes a list of constraints or binding relationships (such as conditions that bind ports to ports), or the term
  • the process kernel 302C further determines whether the query Q is in canonical form. See decision block 1165C. If the test at decision block 1165C is YES, process kernel 302C reduces the process expression II to a process of the form Q '
  • Q' is a lifted query, which is equivalent to ⁇ )(Cj , and was previously discussed above in FIGURES 10A-10C.
  • a lifted query ( )(Cj is a query that contains no terms in the head and its body contains binding relationships, which are described in the list of constraints C , which are globally known.
  • is a process, which
  • the process X[Q].P can be evolved to a process of a form (Q')
  • the method 1100 proceeds to the terminal L6.
  • the process kernel 302C determines whether the process expression IT contains P ⁇ , which has an equivalent relation to P Q '.
  • the method 1100 proceeds to decision block 1163B where the process kernel 302C determines whether P ⁇ ' can be reduced to
  • the process kernel 302C determines whether the process P ⁇ has an equivalent relation with a process Pj. See decision block 1163C. If the test at decision block 1163C is YES, the process kernel 302C reduces the process P ⁇ to the process P ⁇ See block 1163D. Next, the method 1100 proceeds to the terminal L6. If the answer at decision blocks 1163B, 1163C is NO, the method 1100 also proceeds to the terminal L6.
  • the method 1100 proceeds to another decision block 1161 where the process kernel 302C checks to see whether there are more process expressions to be analyzed under the operational semantic rules of the language 400. If the answer is NO, the method flow proceeds to the exit terminal M. If the answer at decision block 1161 is YES, the method 1100 proceeds to another continuation terminal ("terminal L7"). From terminal L7, the method 1100 loops back to block 1175 where the method steps discussed above are repeated. While the preferred embodiment of the invention has been illustrated and described, it will be appreciated that various changes can be made therein without departing from the spirit " and scope of the invention.
  • Q is canonical (alternatively, in canonical form) iff all of its constraints are irreducible and Q is not a failure.

Abstract

A program (324, 320) that includes expressions written in a process-based language for representing protocol-based applications as processes is disclosed. A process kernel (320C, 306C, 304C, 308C) executes the expressions in the program. The expressions specify the interactions of processes by allowing a named organizational scheme of data written in a customizable, tag-based language (302, 304, 306, 308) to be exchanged as a process among processes that send and receive the named organizational scheme of data.

Description

COOPERATION OF CONCURRENT, DISTRIBUTED NETWORKS OF RESOURCES
CROSS-REFERENCE TO RELATED APPLICATIONS This application claims the benefit of U.S. Provisional Application No. 60/379,864, filed May 10, 2002, entitled "Process Programming Language," which is expressly incorporated herein by reference; U.S. Application No. 10/303,407, filed November 22, 2002, entitled "Process Kernel," which is expressly incorporated herein by reference; U.S. Application No. 10/303,445, filed November 22, 2002, entitled "Permutation Nuances of the Integration of Processes and Queries as Processes at Queues," which is expressly incorporated herein by reference; U.S. Application No. 10/303,379, filed November 22, 2002, entitled "Structural Equivalence of Expressions Containing Processes and Queries," which is expressly incorporated herein by reference; U.S. Application No. 10/303,343, filed November 22, 2002, entitled "Operational Semantics Rules Governing Evolution of Processes and Queries as Processes," which is expressly incorporated herein by reference.
FIELD OF THE INVENTION The present invention relates generally to networked computers, and more particularly, to methods for causing cooperation of concurrent, distributed networks of computing resources. BACKGROUND OF THE INVENTION
Natural language is a language spoken or written by humans, as opposed to a programming language or a machine language. A programming language is any artificial language that can be used to define a sequence of instructions that can ultimately be processed and executed by a computer. Defining what is or is not a programming language can be tricky, but general usage implies that the translation process — from the source code which is expressed using the programming language, to the machine code, which is the code that the computer needs to work with — be automated by means of another program, such as a compiler. Both natural languages and programming languages are systematic means of communicating information and instructions from one entity to another, such as man to man or man to machine. Unfortunately, prior programming languages have been an imperfect way of communicating information and instructions from man to machine. For example, early in the computing era, assembly languages were used to form low-level programming languages. Assembly languages use abbreviations or mnemonic codes in which each statement corresponds to a single machine instruction. Along with the advantage of high efficiency due to direct programmer interaction with system hardware and resources came the undesirable consequence of having to manually update ad hoc organizational schemes, such as data structures, when even slight changes were made to an assembly language program. The high-level languages of today, which provide a level of abstraction above the underlying machine language, evolved from assembly languages. High-level language statements generally use keywords (usually in English) that are translated into more than one machine-language instruction. High-level languages have built-in support for data structures and define a set of syntactic and semantic rules that define the structure of the language. When a slight change is made to a program written in a high-level language, a compiler, which transforms the program into object code by following a predetermined set of syntactic and semantic rules, either reflows the object code as necessary to correspond with the change made to the program or unabashedly informs a programmer of the apparent programming error.
Programmers have leveraged the ability of a compiler to detect errors in the invocation of application programming interfaces (APIs) by checking the signature of an invoking API against the corresponding signature of a defined API. An API is an interface of a program that defines the sort of inputs the program will accept to perform a desired task and the sort of outputs the program will return after the performance of the desired task. APIs allow programs to cooperate together to provide greater functionality than each could provide alone.
An API only specifies what must be provided to the API and what will be returned from the API — not the behaviors of the program underlying the API. For example, to properly cooperate, an "initialization" program must be called before a "do work" program is called, and correspondingly, the "do work" program must be called before a "clean up" program is called. APIs do not capture this ordering idea, or any other ideas that express how programs should cooperate. As a result, like the laborious tasks of maintaining the assembly programs of yesteryear, programmers must once again fit square pegs into round holes by working within the limit of the expressiveness of present high-level languages to ensure that programs correctly cooperate. The foregoing problem is exacerbated with the proliferation of Web services, which are basically programs located on any number of computing devices interconnected by the Internet. Whereas the specification and the laborious verification of the cooperation of programs within a single computing device can be undertaken — albeit arduously — the task of verifying the intricate ballet associated with the cooperation of multiple Web services (which send multiple messages from multiple computing devices) is an insurmountable problem because of the lack of the expressiveness of present high-level languages. What is needed is a programming language that can express the cooperative dimensions of programs or services, such as ordering and timing, among other things, so that such cooperative dimensions can be programmatically verified.
One partial solution is the use of π-calculus, which is a mathematical language for describing processes in interactive, concurrent systems, such as a system 100 shown in FIGURE 1. The system 100 includes a client 102, which is a computer that accesses shared network resources being provided by another computer, such as a server 106, on a local area network or a wide area network, such as the Internet 104. A number of Web services 108, 116 are statically stored as programs on the client 102 and the server 106.
Early operating systems allowed users to run only one program at a time. Users ran a program, waited for it to finish, and then ran another one. Modern operating systems allow users to execute (run) more than one program at a time or even multiple copies of the same program at the same time. A thread is the basic unit used by the operating system to allocate processor time to a program. A thread can include any part of the programming code, including parts currently being executed by another thread. A processor is capable of executing only one thread at a time. However, a multi-tasking operating system, i.e., an operating system that allows users to run multiple programs, appears to execute multiple programs at the same time. In reality, a multi-tasking operating system continually alternates among programs, executing a thread from one program, then a thread from another program, etc. As each thread finishes its sub-task, the processor is given another thread to execute. The extraordinary speed of the processor provides the illusion that all of the threads execute at the same time.
While the terms multi-tasking and multi-processing are sometimes used interchangeably, they have different meanings. Multi-processing requires multiprocessors. If a machine has only one processor, the operating system can multi-task, but not multi-process. If a single machine has multiple processors or there are multiple machines (the client 102 and the server 106), each of which has a processor, the operating system of the single machine or the operating systems of multiple machines can both multi-task and multi-process. Both a single machine having multiple processors and multiple machines, each having a processor, define a concurrent system. This is an object of interest for π-calculus.
The core of π-calculus consists of systems of independent, parallel processes (such as Web services 108, 116) that communicate via links (such as a link 124). Links can be any of the following: APIs that become as remote procedure calls; hypertext links that can be created, passed around, and removed; and object references (e.g., "rose") passed as arguments of method invocations in object-oriented systems. The possibilities of communication for a process with other processes depends on its knowledge of various different links. Links may be restricted so that only certain processes can communicate on them. What sets the π-calculus apart from other process languages is that the scope of a restriction (the context in which a link may be used) may change during execution. For example, when the Web Service 116 sends a restricted name, such as an API previously known only to the Web Service 116, as a message to the Web service 108, which is outside the scope of the restriction, the scope is expanded (or extruded in the mathematic idiom of π-calculus). This means that the scope of the API is enlarged to embrace the Web service 108 receiving the API. In other words, the Web service 108 can now invoke the function represented by the API whereas before the Web service 108 had no knowledge of the API, hence was unable to invoke the API. This procedure allows the communication possibilities of a process to change over time within the framework of π-calculus. A process can learn the names of new links via scope extrusion. Thus a link is a transferable quantity for enhancing communication.
What has been central, foundational, and unchanging about π-calculus is its intense focus on names, such as "rose," and the passing of names as messages over links. In particular, π-calculus places great emphasis on pure names, each of which is defined to be only a bit pattern. One example of a pure name is the 128-bit space GUID (Globally Unique Identifier) that uniquely identifies an interface or an implementation in the COM component model. Another example of a pure name is a function signature or an API as described above. For additional emphasis, consider the above-discussed problem in this light: suppose there are three APIs ("initialization," "do work," and "clean up") sent to the Web service 108 from the Web service 116, but the Web service 116 must invoke these three APIs only in a particular order (e.g., "initialization" and then "do work" and then "clean up"). While existing π-calcύlus and its variants allow the three APIs to be sent over the link 124 to reach the Web service 108 from the Web service 116, the existing π-calculus and its variants lack a way for the Web service 116 to express to the Web service 108 the particular order in which the three APIs are to be invoked. In this sense, existing π-calculus and its variants cannot completely express the cooperative dimensions of programs or services, such as ordering and timing, among other things, so that such cooperative dimensions can be programmatically verified. One Elizabethan poet succinctly provided this adage, metaphorical in form but embodying a timeless observation: "What's in a name? That which we call a rose by any other name would smell as sweet." This observation made long ago precisely points to a present problem of π-calculus and its variants — a lack of tolerance for the passage of structured data on named links (such as the link 124). In fact, π-calculus unfavorably refers to structured data as "impure names," which is a negative linguistic construction. Pureness is desirable while impurity is abhorred. Thus impure names in the context of π-calculus are data with some kind of recognizable structure, such as an extensible markup language (XML) document. In practice, it is useful (and at times necessary) for one process to communicate structured data to another process. Without a flow of data, it is difficult to facilitate communication between processes — except in a very indirect way — to represent mobility or dynamism among processes. To solve this problem, computer scientists have investigated the possibility of allowing processes to flow in communication over links. For example, a process 110 may send to the process 118 a message which represents a third process (not shown). This is known as higher-order π-calculus. Because of the rigidity with which π-calculus handles pure names, instead of sending a process over a link, even higher-order π-calculus variants send a name, which gives access to a desired process, instead of sending the process itself.
Sending a name, rather than a process, can be likened to the traditional programming technique of passing by reference, i.e., passing an address of a parameter from a calling routine to a called routine, which uses the address to retrieve or modify the value of the parameter. The main problem with employing the passing by reference technique in higher-order π-calculus variants is that the technique can inhibit the ability of a concurrent system to become distributed. There are many implementations of π-calculus, namely PICT, Nomadic PICT, TyCO, Oz, and Join, among others. However, these other implementations are either not distributed (PICT) or are not higher-order forms of the π-calculus (Nomadic PICT, TyCo, Oz, and Join). Thus there is a need for better methods and systems for allowing processes in concurrent, distributed computing networks to interact while avoiding or reducing the foregoing and other problems associated with existing π-calculus and its variants.
SUMMARY OF THE INVENTION In accordance with this invention, a system, method, and computer-readable medium for processing programs written in a process-based language is provided. The system form of the invention comprises a computer-readable means for storing a program. The program includes expressions written in a process-based language for representing protocol-based applications as processes. The system also includes a process kernel for executing the expressions in the program. The expressions specify the interactions of processes by allowing a named organizational scheme of data written in a customizable, tag-based language to be exchanged as a process among processes. The named organizational scheme of data is bound to the scopes of processes that send and receive the named organizational scheme of data.
In accordance with further aspects of this invention, the method form of the invention is implementable in a computer system. The method comprises representing protocol-based applications as processes when process expressions in a program written in a process-based language are executed. The method further includes representing named organizational schemes of data written in a customizable, tag-based language as processes when query expressions are executed. The method causes processes to communicate when processes send or receive the named organizational schemes of data as queries to or from queues. The named organizational schemes of data are bound to the scopes of processes that send or receive the named organizational schemes of data.
In accordance with the further aspects of this invention, another system form of the invention includes a query virtual machine for defining queries and for governing the interactions among queries and queues in a program written in a process-based language. The system also includes a process virtual machine for defining processes and for governing interactions among processes in the program, processes including protocol- based applications. The system further includes a reaction virtual machine for defining valid interactions among queries, queues, and processes and further for governing the interactions among queries, queues, and processes by interpreting queries as processes.
In accordance with this invention, a method and computer-readable medium for processing programs written in a process-based language is provided. In accordance with this invention, a method form of the invention comprises parsing the expression to obtain syntactical elements that represent a queue, a set of queue delimiters, a query, a sequence delimiter, and other actions. The method translates the expression as a process whose first action is submitting the query as another process to the queue and after which the process continues with other actions. The query includes an organization scheme formed from a customizable, tag-based language that contains data and describes data.
In accordance with one aspect of this invention, a method form of the invention for executing a set of equational laws governing structural equivalence of expressions written in a process-based language is provided. The method parses a first expression. The first expression describes that a query is being executed in parallel with a process. The query has a head, which is empty, and a body, which contains a first name being bound to a second name. The method translates the first expression as structurally equivalent to a second expression. The second expression describes that the query is executed in parallel with the process if the query is in canonical form. Each occurrence of the first name in the process is replaceable with the second name. In accordance with this invention, a method, and computer-readable medium for processing programs written in a process-based language is provided. A method form of the invention for executing sets of operational semantics rules governing the meanings of expressions 'written in a process-based language is provided. The method includes parsing a first expression. The first expression describes that a process is a choice of two processes. The first process of the two processes expresses that a first query is submitted to a queue," after which the first process continues with a first set of actions. The second process of the two processes expresses that a second query is submitted to the queue, after which the second process continues with a second set of actions. The method further includes reducing the first expression to a second expression. The second expression describes that a third query is submitted to the queue after which the first process runs in parallel with the second process if the third query is in canonical form.
In accordance with further aspects of this invention, a further method for executing sets of operational semantics rules governing the meanings of expressions written in a process-based language is provided. The method parses a first expression. The first expression describes a first process whose first action is submitting a query to a queue and after which the first process continues with a second process. The method further includes reducing the first expression to a second expression. The second expression describes that a lifted query runs in parallel with the second process if the first query is in canonical form.
BRIEF DESCRIPTION OF THE DRAWINGS The foregoing aspects and many of the attendant advantages of this invention will become more readily appreciated as the same become better understood by reference to the following detailed description, when taken in conjunction with the accompanying drawings, wherein:
FIGURE 1 is a block diagram illustrating a conventional, concurrent system using π-calculus for passing a name, such as an API, on a link between two Web services. FIGURE 2 is a block diagram illustrating an exemplary computing device. FIGURES 3A-3C are block diagrams illustrating an exemplary concurrent, distributed system formed in accordance with the invention for communicating structured messages among multiple processes.
FIGURE 4 is a block diagram illustrating major syntactical categories of an exemplary programming language, which is an artificial language that can be used to define a sequence of instructions that can ultimately be processed and executed by the exemplary computing device in a concurrent, distributed network of computing resources.
FIGURE 5 is a block diagram illustrating in greater detail an exemplary queue formed in accordance with the invention for storing processes as messages for communication between the two processes. FIGURES 6A-6B are block diagrams illustrating a technique for determining structural equivalence between two programmatic documents formed in accordance with the invention.
FIGURES 7A-7B are block diagrams illustrating a technique for fusing two queues for enhancing communication between two processes in a concurrent, distributed system formed in accordance with this invention.
FIGURE 8 is a block diagram illustrating an exemplary system formed in accordance with this invention for fusing two queues to enhance communication among processes in a concurrent, distributed system formed in accordance with this invention. FIGURES 9A-9B are block diagrams illustrating an exemplary system for reducing two database forms allowing two separate processes to communicate in a concurrent, distributed system formed in accordance with this invention.
FIGURES 10 A- IOC are block diagrams illustrating an exemplary system formed in accordance with this invention for discovering a name that can be used to access multiple databases by a process in a concurrent, distributed system formed in accordance with this invention.
FIGURES 11A-11V are method diagrams illustrating an exemplary method formed in accordance with this invention for compiling a program via a compiler or executing a process via a process kernel.
DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENT
FIGURE 2 illustrates an example of a suitable computing system environment 200 for practicing certain aspects of the invention, such as processing queries, queues, and processes generated in accordance with the invention and/or executing the hereinafter described process kernel. The computing system environment 200 is only one example of a suitable computing environment and is not intended to suggest any limitation as to the scope of use or functionality of the invention.
Neither should the computing environment 200 be interpreted as having any dependency or requirement relating to any one or combination of the illustrated and described components.
The invention is operational with numerous other general purpose or special purpose computing system environments or configurations. Examples of well-known computing systems, environments and/or configurations that may be suitable for use with the invention include, but are not limited to, personal computers, server computers, hand- held or laptop devices, multiprocessor systems, microprocessor-based systems, set top boxes, programmable consumer electronics, network PCs, minicomputers, mainframe computers, distributed computing environments that include any of the above systems or devices, and the like.
The invention is described in the general context of computer-executable instructions, such as program modules being executed by a computer. Generally, program modules include routines, programs, objects, components, data structures, etc., that perform particular tasks or implement particular abstract data types. The invention may also be practiced in distributed computing environments where tasks are performed by remote processing devices that are linked through a communications network. In a distributed computing environment, program modules may be located in both local and remote computer storage media, including memory storage devices.
The computing system environment illustrated in FIGURE 2 includes a general purpose computing device in the form of a computer 210. Components of computer 210 may include, but are not limited to, a processing unit 220, a system memory 230, and a system bus 221 that couples various system components, including the system memory to the processing unit 220. The system bus 221 may be any of several types of bus structures, including a memory bus or memory controller, a peripheral bus, and a local bus using any of a variety of bus architectures. By way of example, and not limitation, such bus architectures include Industry Standard Architecture (ISA) bus, Micro Channel Architecture (MCA) bus, Enhanced ISA (EISA) bus, Video Electronics Standards Association (VESA) local bus, and Peripheral Component Interconnect (PCI) bus, also known as Mezzanine bus.
Computer 210 typically includes a variety of computer-readable media. Computer-readable media can be any available media that can be accessed by computer 210 and includes both volatile and nonvolatile media, removable and non- removable media. By way of example, and not limitation, computer-readable media may comprise computer storage media and communication media. Computer storage media includes both volatile and nonvolatile, removable and non-removable media implemented in any method or technology for storage of information, such as computer-readable instructions, data structures, program modules, or other data. Computer storage media include, but is not limited to, RAM, ROM, EEPROM, flash memory or other memory technology, CD-ROM, digital versatile disks (DVD) or other optical disk storage, magnetic cassettes, magnetic tapes, magnetic disk storage or other magnetic storage devices, or any other computer storage media. Communication media typically embody computer-readable instructions, data structures, program modules or other data in a modulated data signal, such as a carrier wave or other transport mechanism that includes any information delivery media. The term "modulated data signal" means a signal that has one or more of its characteristics set or changed in such a manner as to encode information in the signal. By way of example, and not limitation, communication media include wired media, such as a wired network or direct-wired connection, and wireless media, such as acoustic, RF infrared, and other wireless media. A combination of any of the above should also be included within the scope of computer-readable media.
The system memory 230 includes computer storage media in the form of volatile and/or nonvolatile memory, such as read only memory (ROM) 231 and random access memory (RAM) 232. A basic input/output system 233 (BIOS), containing the basic routines that help to transfer information between elements within computer 210, such as during start-up, is typically stored in ROM 231. RAM 232 typically contains data and/or program modules that are immediately accessible and/or presently being operated on by processing unit 220. By way of example, and not limitation, FIGURE 2 illustrates operating system 234, application programs 235, other program modules 236, and program data 237.
The computer 210 may also include other removable/non-removable, volatile/nonvolatile computer storage media. By way of example only, FIGURE 2 illustrates the hard disk drive 241 that reads from or writes to non-removable, nonvolatile magnetic media, the magnetic disk drive 251 that reads from or writes to a removable, nonvolatile magnetic disk 252, and an optical disk drive 255 that reads from or writes to a removable, nonvolatile optical disk 256, such as a CD-ROM or other optical media. Other removable/non-removable, volatile/nonvolatile computer storage media that can be used in the exemplary operating environment include, but are not limited to, magnetic tape cassettes, flash memory cards, digital versatile disks, digital videotapes, solid state RAM, solid state ROM, and the like. The hard disk drive 241 is typically connected to the system bus 221 through a non-removable memory interface, such as interface 240, and the magnetic disk drive 251 and optical disk drive 255 are typically connected to the system bus 221 by a removable memory interface, such as interface 250.
The drives and their associated computer storage media discussed above and illustrated in FIGURE 2 provide storage of computer-readable instructions, data structures, program modules and other data for the computer 210; In FIGURE 2, for example, hard disk drive 241 is illustrated as storing operating system 244, application programs 245, other program modules 246, and program data 247. Note that these components can either be the same as or different from operating system 234, application programs 235, other program modules 236, and program data 237. Operating system 244, application programs 245, other program modules 246, and program data 247 are given different numbers here to illustrate that, at a minimum, they are different copies. A user may enter commands and information into the computer 210 through input devices, such as a keyboard 262 and pointing device 261, the latter of which is commonly referred to as a mouse, trackball, or touch pad. Other input devices (not shown) may include a microphone, joystick, game pad, satellite dish, scanner, or the like. These and other input devices are often connected to the processing unit 220 through a user input interface 260 that is coupled to the system bus, but may be connected by other interface and bus structures, such as a parallel port, game port, or universal serial bus (USB). A monitor 291 or other type of display device is also connected to the system bus 221 via an interface, such as a video interface 290. In addition to the monitor, computers may also include other peripheral output devices, such as speakers 297 and printer 296, which may be connected through an input/output peripheral interface 295.
The computer 210 may operate in a networked environment using logical connections to one or more remote computers, such as a remote computer 280. The remote computer 280 may be a personal computer, a server, a router, a network PC, a peer device, or other common network node, and typically includes many or all of the elements described above relative to the computer 210, although only a memory storage device 281 has been illustrated in FIGURE 2. The logical connections depicted in FIGURE 2 include a local area network (LAN) 271 and a wide area network (WAN) 273, but may also include other networks. Such network environments are commonplace in offices, enterprise- wide computer networks, intranets, and the Internet.
When used in a LAN networking environment, the computer 210 is connected to the LAN 271 through a network interface or adapter 270. When used in a WAN networking environment, the computer 210 typically includes a modem 272 or other means for establishing communications over the WAN 273, such as the Internet. The modem 272, which may be internal or external, may be connected to the system bus 221 via the input/output peripheral interface 295, or other appropriate mechanism. In a networked environment, program modules depicted relative to the computer 210, or portions thereof, may be stored in the remote memory storage device. By way of example, and not limitation, FIGURE 2 illustrates remote application programs 285 as residing on memory device 281. It will be appreciated that the network connections shown are for illustrative purposes only and other means of establishing a communication link between the computers may be used. A system 300, which is a collection of component elements that work together to perform one or more computing tasks, is illustrated in FIGURE 3A. One example is a hardware system 344, which can comprise a number of computing devices, such as a personal digital assistant 302, a cellular phone 334, and a desktop computer 336, each comprising a microprocessor, its allied chips and circuitry, input and output devices, and peripheral devices (not shown). For ease of illustration, the only depicted computing devices in subsequent figures are personal digital assistants (PDAs).
The system 300 includes an operating system 342, comprising a set of programs and data files, such as an operating system kernel 303A, one or more device drivers 303B, and a process kernel 302C. Subjacently coupled to the operating system 342 is a hardware abstraction layer 301. The hardware abstraction layer 301 is an application programming interface for use by programmers to access devices of the hardware system 344 (such as the computing device 302, the cellular phone 334, and the desktop computer 336). The operating system kernel 303A is the core of the operating system 342 and is designed to manage memory, files, and peripheral devices (via the hardware abstraction layer 301); maintain the time and date; launche applications, such as a Web service 302A; and allocate system resources. Device drivers 303B are separate components that permit the Web service 302 A to communicate with a device, such as the computing device 302. The process kernel 302C represents the Web service 302 A as a process 302B, manages the process 302B, and facilitates the communication of the process 302B with other processes (described below). The operating system kernel 303A, the device drivers 303B, and the process kernel 303C reside in the kernel- mode portion of the operating system 342 while the Web service 302A and the process 302B reside in a user-mode portion 346 of the operating system 342. Alternatively, the process kernel 303C can reside in the user-mode portion 346 when it is superjacently coupled to other system software components 305, 307 (FIGURE 3B), such as COM (Component Object Model).
The term "process" used in accordance with the present invention means a dynamic representation of one or more computation entities that have the capability to evolve by performing actions or that allow other processes to evolve. In other words, the term "process" represents one of a duality of natures of a computation entity. When a computation entity is at rest, it can be examined, such as by viewing a program. When a computation entity is mobile (as a process), it cannot be seen, but its behaviors can be expressed and verified by a programming language 400 formed in accordance with the present invention (described below).
The Web service 302 A is designed to specialize in a certain service. To obtain greater functionality, the Web service 302 A can enlist the help of other Web services that can provide services not within the scope of the Web service 302A. To track down other Web services, the Web service 302A can communicate with a directory framework 326. The directory framework 326 is a platform-independent piece of software (a directory framework) that provides a way to locate and register Web services on the Internet. The directory framework 326 includes a store 330 containing a number of registered Web services and including detailed technical information about these Web services. A discovery component 328 of the directory framework 326 acts as a broker between the process 302B and the store 330 to locate a desired Web service.
Once the directory framework 326 finds an appropriate Web service requested by the Web service 302 A, the Web service 302 A can begin to interact with the discovered Web service to accomplish a desired task. FIGURE 3 B illustrates a discovered Web service 304 A. The process kernel 304C represents the Web service 304 A as a process 304B, which interacts with the process 302B over a communication means, such as a queue 310, to accomplish tasks of Web services 302 A, 304A.
The queue 310 through which processes communicate can take various forms, such as databases, channels, or other suitable structured stores. Because the computing devices 302, 304 can be located at geographic locations well away from each other, processes 302B, 304B cannot communicate via shared memory. Suitable communication means, such as the queue 310, include technology that enables processes 302B, 304B while running at different times to communicate across heterogeneous networks and systems that may be temporarily offline. Processes 302B, 304B send messages to communication means, and read messages from communication means. Communication means can provide guaranteed message delivery, efficient routing, security, and priority- based messaging. Additionally, communication means can be used to implement solutions for both asynchronous and synchronous scenarios requiring high performance. As indicated above, specific examples of suitable communication means include channels, queues, or databases, among other structured stores. When the queues 310-316 are databases, they are files composed of records, each containing fields together with a set of operations for searching, sorting, recombining, and other processing functions, organized in multiple tables, each of which are data structures characterized by rows and columns, with data occupying or potentially occupying each cell formed by a row-column intersection.
The internal architecture of process kernels 302C, 304C include process virtual machines 302C1, 304C1, which contain software components for defining processes and for governing interactions among processes; query virtual machines 302C3, 304C3, which contain software components for defining queries and for governing the interactions among queries and queues; reaction virtual machines 302C2, 304C2, which contain software components for governing the interactions among queries, queues, and processes; and transition virtual machines 302C4, 304C4, which contain software components for isolating the process kernels 302C, 304C from the specifics of system software components 305, 307 (such as COM and the operating system, among others) on computing devices 302, 304.
Computing devices 302, 304 interact, communicate, and exchange information over a local area network, wide area network, or wireless network 338. Processes 302B, 304B communicate over a queue 310 to exchange messages, such as a message 318. Unlike prior systems implementing π-calculus and its variants, the system 300 formed in accordance with the invention allows messages, such as the message 318, to be represented as processes by process kernels 302C, 304C in the exchange between processes 302B, 304B. This allows cooperative dimensions of programs or Web services, such as the invocation ordering of APIs, among many, other things, to be expressed between processes 302B, 304B.
FIGURE 3 C illustrates the system 300 as a non-centralized network comprising numerous computing devices 302, 304, 306, 308 that can communicate with one another and that appear to users as parts of a single, large, accessible "storehouse" of shared hardware, software, and data. The system 300, in the idiom of computer scientists, is a distributed system, which is conceptually the opposite of a centralized, or monolithic, system in which dumb clients connect to a single, smart central computer, such as a mainframe. The system 300 is a dynamic network topology in which highly distributed, concurrent processes 302B, 304B, 306B, 308B interact in parallel on computing devices 302-308.
Processes 302B-308B cooperate to express to each other information sent as messages or queries to queues 310-314. Pieces of information sent over a communication means include ordering of execution, timing of data, quality of service, and passing of, among processes 302B-308B, an organizational scheme formed from a customizable, tag-based language that contains data and describes data in such a way as to facilitate the interpretation of data or the performance of operations on data. While one suitable customizable, tag-based language is extensible mark-up language (XML), the invention is not limited to this language. Other customizable, tag-based languages can be used.
Cooperative communication between processes 302B-308B is provided by the programming language 400 (FIGURE 4) formed in accordance with this invention. The language 400 is a high-order variant of the π-calculus. In other words, the language 400 is a process-based language. More specifically, in addition to other properties discussed below, the language 400 has the ability to programmatically detect "liveness." Liveness is an indication that a process is alive. This quality needs to be programmatically verified in order for a program to be trusted to do the things it is designed to do. A program, such as the Web service 302 A written in the language 400 can be programatically verified for "liveness." Other properties include the ability to analyze the security of processes 302B-308B and resource access run-time errors. Security problems include the protection of computing devices 302-308 and their data from harm or loss. One major focus of security, especially for non-centralized networks, such as the system 300, that are accessed by many people through multiple queues 310, 312, 314, 316, is the prevention of access by unauthorized individuals. The Web service 302A written in the language 400 can be verified to detect security problems induced by untrustworthy Web programs or untrustworthy computing devices.
The formal mathematical definition of the language 400 is given in the Appendix. The language 400 includes the grammar, the rules for structural equivalents, and the rules for operational semantics. The grammar of the language 400 is the system of rules that define the way in which the syntactical elements of queries and processes are put together to form permissible programming statements. In other words, unless one can express correctly in the grammar of the language 400, one cannot communicate concepts, such as the invocation of APIs, from one process to another process. Once an expression is correctly formed, the rules of semantics connect the expression with meanings. Because processes are dynamic, the language 400 uses operational semantics to couple meanings to processes. In other words, processes evolve by acting or interacting with other processes. Understanding the meaning of an expression of the language 400 relates directly to understanding its operations. The rules for structural equivalence allow the operational semantics of the language 400 to be simplified in that an expression can be likened to another expression. Thus, the number of rules for operational semantics can be kept small since these rules can be applied to permutations of expressions. The language 400 has several major syntactical categories: a queue syntax 402, which represents queues, databases, communication channels, or any structured stores that allow processes running at different times or at the same time to communicate via messages; a query syntax 404, which represents instructions written in a data manipulation language to assemble and disassemble messages, manipulate structured stores represented by the queue syntax 402, and detect message patterns; and a process syntax 406, which represents a dynamic aspect of a computation entity that can exchange not only names, such as an API, but also processes as messages over structured stores represented by the queue syntax 402. The queue syntax 402, the query syntax 404, and the process syntax 406 together .form the major syntactical elements of the language 400. Syntactical elements 402-406 of the language 400 can be used alone or can be combined in permutations to express cooperating nuances among processes, such as processes 302B-308B. The syntactical rules (described in detail with reference to FIGURE 11 C-l IF and Section 1.1 of the Appendix), the structural equivalent rules (discussed in greater detail below with reference to FIGURE 11J and section 2.1 of the Appendix), and the operational semantics rules (discussed in greater detail below with reference to FIGURES 11O-11R and section 3.1 of the Appendix) in connection with queries are placed in the query virtual machines 302C3, 304C3. The syntactical rules (described in detail with reference to FIGURE 11 G- 111 and Section 1.2 of the Appendix), the structural equivalence rules (discussed in greater detail below with reference to FIGURES UK- UN and section 2.2 of the Appendix), and the operational semantics rules (discussed in greater detail below with reference to FIGURES 11S-11V and section 3.2 of the Appendix) in connection with processes are placed in the process virtual machines 302C1, 304C1. The reaction virtual machines 302C2, 304C2 contain operational semantics rules that define a method by which queues, queries, and processes react to each other.
The programming language 400 allows expressions to be formed for describing processes, such as processes 302B-308B, that run in parallel and interact over communication means, such as the queues 310-314. Mathematically, if T and P are processes, the expression T | P describes that processes T, P are running in parallel, possibly communicating with each other or with the outside world along communication means.
Queues 310-314 are represented by names (which correspondingly, are "X," "Y," "Z," and "W."). The programming language 301 allows the passage of certain classes of processes, such as processes 318-324, among other things, to be expressed as messages over queues 310-314. The processes 318-324 embody an organizational scheme formed from a customizable, tag-based language that contains data and describes data in a way that facilitates the interpretation of data or the performance of operations on data. One exemplary organizational scheme includes a query. Another exemplary organizational scheme includes a message. A further exemplary organizational scheme includes an XML document.
A query contains data and information to manipulate data. Consider this example: the computing device 302 represents a computer at a publisher and the computing device 304 represents a computer at a bookstore. Both the publisher and the bookstore have the independent ability to define, in XML, their own tags for information about authors, titles, and publication dates of books. Such book information can be organized into XML documents with appropriate tags. The information is exchanged by the computing device 302 at the publisher or the computing device 304 at the bookstore transforming the XML documents into queries, which is represented by process kernels 302C-30C as processes, such as the process 318 to be communicated over the queue 310 between the process 302B and the process 304B.
Prior π-calculus variants do not allow structured information, such as XML documents, to be communicated over communication means, such as the queue 310. However, the actual performance of applications at times requires some exchange of structured information. A case in point includes structured information that expresses the invocation ordering of APIs. Another case in point is the example discussed above between the publisher and the bookstore. The programming language 400 allows multidimensional data (data structures) to be embodied in processes, such as processes 318-324, to be communicated as messages passed among processes 302B-308B. The language 400 allows the creation of an environment for facilitating the exchange of an organizational scheme (which is expressed in a customizable, tag-based language that contains data and describes data in such a way as to facilitate the interpretation of data or the performance of operations on data) among processes over queues in a non-centralized network that is concurrent and distributed.
FIGURE 5 visually illustrates syntactical expressions that relate a queue 310 (X), queries 504, 506 (Q0, Q , and processes 302B, 304B (T, P). Stored in the queues 310-316 are one or more queries 502, which are processes embodying structured data or names with no apparent structure. To communicate a structured data file, such as an XML document 500A from the process 302B to the process 304B via the queue 310, the process 302B converts the XML document 500A into a query 500B and then writes the query 500B into the queue 310. The query 500B is treated as a process by the process kernels 302C-308C. Unlike prior variants of π-calculus, the programming language 400 allows processes, such as the query 500B, to pass through communication means, such as the queue 310. The query 500B contains more than a pure name in that the query 500B also contains the structured contents of the XML document 500A. To obtain the query 500B, the process 304B reads the queue 310. The programming language 400 provides a set of query operations that are used to assemble and disassemble queries, manipulate queues, and detect patterns in queries. Other query operations are used to put messages into queues, get messages from the queues, and build new messages from existing messages. A query comprises two portions: a head and a body. The head of a query defines a set of parameters and their corresponding types. The body is a set of bindings. A query is invoked by binding its parameters to arguments and activating its sets of bindings. A binding defines a relation between two terms. Not all terms can be bound together. A valid binding exists when the binding binds a term of some type to a term of its complementary type. A query can be likened to a traditional procedure; the head of the query is like the signature of the procedure; the body of the query is like the set of programming statements of the procedure; and each binding is a programming statement that uses the data stored in the parameters of the signature of the procedure or places data into the parameters of the signature of the procedure.
Mathematically, the relationship among the queue 310, a query 500B, and a process 304B can be syntactically expressed as X[Q0].P, where X is the queue 310; Q0 is the query 500B; and P represents the process 304B, which is a point of continuation after the query Q0 has been written to the queue X. Thus linguistically, the mathematical expression X[Q0].P describes the process of depositing the query 500B at the queue 310 after which the process is continued with the execution of the process 304B. In the framework of the programming language 400, both Q0 and P are processes in the mathematical notation X[Q0].P. The programming language 400 identifies a subset (or certain classes) of processes that can be passed as messages over the queue X. This subset contains queries, each of which is correlated to customizable, tag-based data structures, such as those contained in XML documents.
One major aspect of the language 400 is its collection of equational laws for determining structural equivalence among queries and processes. The process of determining structural equivalence with these equational laws of the language 400 disencumbers minor differences between two programmatic documents, such as two programs or two software specifications, to ascertain whether they conform in every relevant respect. These laws of structural equivalence allow the operational semantics of the language 400 to be simplified as described above.
FIGURE 6A shows a program 602 written in a language suitable for this illustration. The program 602 includes a main() function which is the starting point of execution for certain languages, such as C or C++. Nesting between the first set of curly brackets is an IF statement containing a test condition (A=7). The test condition determines whether a variable A is equal to the value 7. If the test condition is true, programming statements contained within the second set curly of brackets are executed. There are two programming statements inside the second set of curly brackets. The first programming statement invokes a fork() function that takes a variable P0 as an argument. fork() functions in certain languages initiate a child process in a concurrent system after a parent process has been started. In this case, the child process is represented by the argument P0. After this invocation of the fork() function, the child process P0 runs in parallel with the parent process executing the program 602. The second programming statement also contains an invocation of the fork() function, but instead of taking the variable P0 as an argument, the second invocation of the fork() function takes a variable PI as an argument. Another child process represented by the argument PI is initiated with the invocation of the second fork() function. Child processes P0, PI run in parallel with each other at the egress of the program flow from the closing curly bracket of the second set of curly brackets.
Another program 604 is similar to the program 602 in many respects, but there are some differences. One difference is the test condition of the IF statement of the program 604, which contains a variable B instead of the variable A. Another difference is that the child process PI is initiated with the first invocation of the fork() function before the invocation of the child process PO. Despite these differences, the logic flow in both programs 602, 604 will ultimately reach the fork() statements of both programs 602, 604 if the test conditions of both IF statements are true. Thus the difference in the names of the variables A, B are negligible, and do not affect the logic structure of programs 602,604. Moreover, because child processes P0, PI run in parallel, the sequence of their invocation is also negligible.
The program 602, as discussed above, can be written by many different programming languages, each containing different and diverse grammatical constructions that hinder structural equivalent analysis. Using the language 400, the program 602 can be expressed by a quality apart from the grammatical specifics of the program 602. For example, the essence of the program 602 is the execution of child processes P0, PI in parallel. This essence can be expressed by the language 400 by translating the program 602 into a specification 602A. The parallel execution of processes P0, PI is expressed in the program 602 A as "P0 | PI." The statement "P0 1 PI" is nested between a tag <I_DO> and its corresponding ending tag </I_DO>.
Suppose the process 302B requires a service in which the child process P0 is desired to be executed in parallel with another child process P2. This requirement is captured by a statement "P0 1 P2" as indicated in a specification 302D written in the language 400. The statement "P0 1 P2" is situated between a tag <I_NEED> and its corresponding ending tag </I_NEED>. Suppose further that the process 302B obtains the specification 602A from the discovery component 328 to determine whether the program 602 is suited for the task that the process 302B wishes to accomplish. Using structural equivalence analysis, the process 302B can quickly determine that the program 602 A will not be able to provide the requested service as specified by the specification 302D. This is the case because the program 602 executes child processes P0, PI in parallel whereas the process 302B requires child processes P0, P2 running in parallel instead.
One equational law from the set of equational laws of the language 400 allows seemingly separate queues to be fused so that one queue can be substituted for another queue in operation. This is called substitution equivalence in section 2.2 of the Appendix. As shown in FIGURE 7 A, the process 302B uses the queue 310 (queue X) for sending and receiving messages (or writing and reading queries). Instead of using the queue 310, the process 304B communicates with a queue 702 (queue X') for sending and receiving messages (or writing and reading queries). Suppose a query is placed at the queue 702 in which the name X is bound to the name X' (name X:=:name X'), where the operator :=: is a binding operator, in the idiom of the language 400. This denotes that the queue 310 is essentially fused with the queue 702, hence allowing processes 302B-304B to operate or communicate on the same queue, such as the queue 310. See FIGURE 7B.
Using the equational laws of the language 400, processes 302B, 304B can discover a new way of accessing a queue (or database, or channel, among other structured stores).
The input/output mechanism (I/O) of prior variants of π-calculus is asymmetric. Consider the following mathematical example: UX.P U(Y).Q, where U and U refer to the same link, but U denotes that the link is outputting something, such as X, and U denotes that the link is inputting something, such as Y; X is output data; Y is input data; and P, Q are processes, which continue after the expressions UX and U(Y) have been executed. The asymmetry arises from the fact that X as output data is not bound to the channel U whereas Y as input data is bound to the channel U. The term "bound" means that the operative scope of Y is restricted to the link for which Y is bound. In other words, after the Web service 116 (U) has communicated to the Web service 108 the API with which the Web service 108 is to invoked, the Web service 116 lost its knowledge of the API. Asymmetric I/O inhibits the formation of a distributed network topology, such as the system 300. The present invention overcomes or reduces the above problems by providing symmetric I/O.
FIGURE 8 illustrates the symmetric I/O aspect of the system 300 formed in accordance with the present invention. Suppose the process 302B is mathematically defined as T = XN.W.S , where T is the process 302B; X refers the queue 310 while it is outputting something; Y refers to the queue 312 while it is outputting something; W refers to the queue 316 while it is outputting something; and S refers to the process 306B. Suppose further that the process 304B is defined mathematically as follows: P=X.Y.Z.R, where P is the process 304B; X refers to the queue 310 while it is inputting something; Y refers to the queue 312 while it is intputting something; Z refers to the queue 314 while it is inputting something; and R refers to the process 308B. Suppose the process T is executed in parallel with the process P, or mathematically, T | P. In execution, the process XN.W.S is deployed to the queue 310 (X) and the process X.Y.Z.R is also deployed to the queue 310. After these two processes, XN.W.S and X.Y.Z.R, have reacted at the queue 310, processes Y.W.S , Y.Z.R are deployed to the queue 312 (Y). Suppose at this point, at the queue 312, a query is issued in parallel with the running processes, which binds the queue 316 to the queue 314, or mathematically (}(W:=:Z). With the issuance of such a query, the queue 316 (W) is fused with the queue 314 (Z). Any input or output at W will be communicated to Z, and correspondingly, any input or output at Z will be communicated to W, hence forming a distributed network topology. From the channel 312, another subprocess W.S is deployed to the queue 316 (W) and another subprocess Z.R is deployed to the queue 314 (Z). From the queue 316, the process 306B (process S) is deployed as a point of continuation and executed. From the queue 314, the process 308B (process R) is also deployed as another point of continuation and executed.
The language 400, in addition to its syntax, has a set of rules for describing the evolution of processes. In other words, these rules define the operational semantics of the language 400. The operational semantics of the language 400 describe the relationship between the syntactical elements 402-406 and their intended meanings. Thus a program statement written in the language 400 can be syntactically correct, but semantically incorrect. In other words, a statement written in the language 400 can be in an acceptable form, but still convey the wrong meaning. One example of the operational semantics of the language 400 is the communication reduction rule, which is pictorially illustrated by FIGURES 9A-9B (implemented in the reaction virtual machines 302C2, 304C2). A query 902A (Qo) is ready to be submitted to the database 904 (V) by the process 302B (T).
For ease of discussion, the query 902A is shown as a database form. A form contains data as well as a "hole" that can potentially be filled when the data is computed by the database 904. For example, a query can be likened to a question that has information for the question to be answered. Thus, the information is the data in the form and the answer is the data to fill the hole in the form. As another example, a form can be likened to a linear simultaneous equation that can be algebraically solved if sufficient information is available. After the submission of the query 902 A to the database 904, the process continues with the execution of the process 306B (S). Mathematically, the process of submitting the form 902A to the database 904 and continuing at the process 306B can be described as follows: V[QQ].S, where V represents the database 904, Q0 represents the form 902A, and S represents the process 306B.
Suppose that instead of submitting the form 902A to the database 904 and continuing at the process 306B, the process submits a form 902C to the database 904 and afterward continues at the process 308B. Mathematically, this can be described as follows: V[Qι].R, where V represents the database 904, Qj represents the form 902C, and T represents the process 308B.
In the presence of such a choice between executing the process V[QQ].S and executing the process V[Q^].R, such a choice can be reduced to a form 906A (Q) being submitted to the database 904, and afterward both processes 306B, 308B will run in parallel. See FIGURE 9B. Mathematically, this result is expressed as V[Q].(S | R). The formation of the form 906 A is caused by the joining of forms 902 A, 904A in a way such that the query 906A is in canonical form (described below). Whereas before only one selection can be made between two alternatives (N[Qo]-S or N[Q^].R), with the formation of the query 906 A from two separate and distinct forms 902A, 902C, a single form 906 A can be submitted to the database 904 and both processes 306B, 308B become alive and execute in parallel. One way to understand this is to liken the form 902A to a first linear simultaneous equation having three terms and to liken the form 902C to a second linear simultaneous equation having three terms. From the mathematics of linear algebra, one can conclude that there is not yet a solution to the two linear simultaneous equations, but the two linear simultaneous equations can be computed to a form such that when additional data is given (another linear simultaneous equation), all terms can be solved. The form 906A represents a computation of the two forms 902A, 902C for which no further computation can be carried out without more data. FIGURES 10 A- 10C pictorially illustrate another operation semantics rule for the evolution of processes, the lift rule (discussed in greater detail with reference to FIGURE 11U and section 3.2 of the Appendix). As shown in FIGURE 10 A, the process 302B separately communicates with databases 1006, 904 to send and receive messages (or queries). The database 1006 is named "U" and the database 904 is named "N". Suppose the process 306B submits to the database 904 a query 1002 A containing a binding that expresses a relationship between the name "U" and the name "V. With the submission of the query 1002A, the process 302B will realize that the names "U", "V refer to the same database. In other words, messages that are deposited by the process 302B at the database 1006 will be forwarded to the database 904, and correspondingly, messages that are deposited at the database 904 by the process 302B will be forwarded to the database 1006. There are certain conditions that must be satisfied (discussed in detail below with reference to FIGURE 11U) before the process 302B can interpret from the query 1002A that the names "U", "N" refer to the same database or that there are two separate databases that will forward messages sent by the process 302B to each other.
A system 1010 is shown in 10C showing multiple computing devices dispersed over a number of geographic areas. The process 302B is executed on the computing device 302 in the San Francisco geographic area 1012. The process 304B is executed on the computing device 304 in the Seattle geographic area 1016 and the process 308B is executed on the computing device 308 in the Portland geographic area 1014. The process 302B has obtained the help of the process 304B to perform certain tasks. Unbeknownst to the process 302B, the process 304B cannot accomplish all the tasks specified by the process 302B. Thus the process 304B has contracted the help of the process 308B to perform tasks that are not within the scope of the process 304B. With the issuance of a query, such as the query 1002A, to the database 1006, messages coming from the process 302B, such as a message 1020, to the database 1006 will be automatically forwarded to the database 904 so that the process 308B can perform required tasks. Alternatively, the process 302B can directly communicate with the database 904 to exchange messages. However, the process 302B need not do so and can continue to communicate with the database 1006.
FIGURES 11 A-l IN illustrate a method 1100 for compiling or executing a program, such as the Web service 302 A (hereinafter, "the program 302 A"), by a process kernel, such as the process kernel 302C. The program 302 A is written in the language 400. In the analysis of the program, the method 1100 will execute sets of syntactical rules governing the structure and content of query expressions and process expressions. Sets of equational laws governing structural equivalence of query expressions and process expressions are also executed by the process kernel 302C. The language 400 also includes sets of operational semantics rules governing the meanings of query expressions and process expressions that are correctly formed in accordance with the sets of syntactical rules of the language 400. These sets of operational semantics rules are executed by the process kernel 302C. For clarity purposes, the following description of the method 11.00 makes references to various elements illustrated in connection with the system 300 shown in FIGURES 3 A-3C.
From a start block, the method 1100 proceeds to a set of method steps 1102, defined between a continuation terminal ("terminal A") and an exit terminal ("terminal B"). The set of method steps 1102 runs the program against the syntactical rules governing the structure and content of .query statements formed from the queue syntax 402. From terminal A (FIGURE 1 IC), the method 1100 proceeds to a block 1114 where the process kernel 302C obtains a query expression (Q) from the program 302 A. Next, at decision block 1116, the process kernel 302C decides whether the query Q expression has the syntactical form <T*)(C*).
Each query written in the language 400 has the syntactical form (T*)(C*), where the syntactical element (T*) denotes the head of the query and the syntactical element (C*) denotes the body of the query. Each query written in the language 400 has a head and a body. The head declares the number of parameters and their respective types. The body contains a set of bindings. The query can be likened to a traditional programming procedure in that a query is a named sequence of statements (although unnamed queries can be expressed using the language 400) with associated constants, data types, and variables, that usually performs a single task. For example, the head of the query is similar to the signature of a procedure whereas the body of the query is similar to the sequence of statements contained inside a procedure. Contained inside the head delimiters () is a symbol T*, which denotes zero or more query terms (defined below). Contained inside the body delimiters () is the symbol C*, which denotes zero or more constraints (described below).
If the answer is NO to the test at decision block 1116, which means that the query Q has not been written in a syntactical form recognized by the language 400, the method 1100 finishes execution and terminates. If the answer is YES, the method 1100 proceeds to another decision block 1118 where the process kernel 302C determines whether each constraint C in the body of the query has the syntactical form T:=:T, where T as described above and further described below is a query term, and the symbol :=: denotes a binding that defines a relation between two query terms. If the answer is NO, which means one constraint of the body of the query has not been written in the form acceptable to the language 400, the method 1100 finishes execution and terminates. Otherwise, the answer at decision block 1118 is YES, and the method proceeds to another decision block 1120. At decision block 1120, the process kernel 302C determines whether the query term T is a literal (hereinafter, "TOP"). A literal is a value, used in a program that is expressed as itself rather than as a variable or the result of an expression. Examples of literals include the numbers 25 and 32.1, the character a, the string Hello, and the Boolean value TRUE. If the answer at decision block 1120 is YES, the method 1100 proceeds to another continuation terminal ("terminal A5"). From terminal A5 the method 1100 proceeds to decision block 1146 where the process kernel 302C determines whether there is another query expression to analyze. If the answer is NO, the method 1100 proceeds to another continuation terminal ("terminal B"). Otherwise, the answer at decision block 1146 is YES, and the method 1100 loops back to block 1114 to obtain another query expression from the program 302A for analysis.
At decision block 1120, if the answer is NO, the method 1100 proceeds to another decision block 1122 where the process kernel 302C determines whether the query term T is a complimentary literal (hereinafter "bottom"). Complimentary literals are inversions of literals. If the answer at decision block 1122 is YES, the method 1100 proceeds to terminal A5 (described above). If instead, the answer at decision block 1122 is NO, the method 1100 proceeds to another decision block 1124. Here, the process kernel 302C determines whether the query term T is a discarder (delimited by the symbol "_"). A discarder is a query that takes in only input parameters and provides no output parameters. If the answer at decision block 1124 is YES, the method 1100 proceeds to the terminal A5 described above. At decision block 1124, if the answer is NO, the method 1100 proceeds to another continuation terminal ("terminal Al ").
From terminal Al (FIGURE 1 ID) If the answer is NO, the method 1100 proceeds to decision block 1126 where the process kernel 302C verifies whether the query term T is a name (or a literal string, such as "hello"). Preferably, an alphabetic letter is treated syntactically by the language 400 as a variable, which is a named storage location capable of containing data that can be modified during program execution. If an alphabetic letter is preceded by a "name" in the language 400, the alphabetic letter is treated by the language 400 as a literal string instead of a variable. If the answer at decision block 1126 is YES, the method 1100 proceeds to the terminal A5 (described above). At decision block 1126, if the answer is NO, the method 1100 proceeds to another decision block 1128 where the process kernel 302C determines whether the query term T is a variable (such as X). If the answer is YES, the method 1100 proceeds to the terminal A5 (described above).
At decision block 1128, if the answer is NO, the method proceeds to decision block 1159 where the process kernel 302C determines whether the query term T is a local variable with the form "XΛ". The form XΛ contains the term X, which denotes a variable in a program written in the language 400; the caret, which is a small, up-pointing symbol (A) typically found over the 6 key on the top row of a microcomputer keyboard, denotes that the variable X is a local variable (in the idiom of computer science, a local variable means a variable whose scope is limited to a given block of code, usually a subroutine, but in the present invention, the scope of a local variable is limited to a process); and the term XΛ denotes the creation, in a process, of a local variable X, which is capable of exporting information to be consumed in a continuation process. If the answer is YES at decision block 1159, the method 1100 proceeds to the terminal A5 (described above).
At decision block 1159, if the answer is NO, the method proceeds to decision block 1157 where the process kernel 302C determines whether the query term T is a local variable with the form "ΛX". The form ΛX contains the term X, which denotes a variable; the term Λ is a caret; and the term ΛX denotes, in a process, a local variable X, which is capable of importing information (to be consumed) from the computing environment in which the process evolves. If the answer is YES at decision block 1157, the method 1100 proceeds to the terminal A5 (described above). Otherwise, the decision is NO, and the method 1100 proceeds to another continuation terminal ("terminal A2").
From the terminal A2, the method flow proceeds to decision block 1130 where the process kernel 302C checks the query term T to see whether it is an inversion (delimited by the ~ symbol). If the decision is YES, method flow proceeds to the terminal A5 (described above). Otherwise, the decision is NO, and the method 1100 enters decision block 1132. At decision block 1132, the process kernel 302C determines whether the query term T is a tuple, which is a set of ordered elements. There are two symbols in the language 400 for signifying tuples: the syntactical symbol "*" and the syntactical symbol "#". If the answer at decision block 1132 is YES, method flow proceeds to the terminal A5 (described above). Otherwise, if the decision is NO, the method 1100 proceeds to decision block 1134. Here, the process kernel 302C checks to see whether the query terminal T is of the form <X*)(Q,Q), where X* denotes one or more variables and Q denotes a query. Thus the process expression (X*}(Q,Q) denotes zero or more variables in the head of the query and two other queries in the body of the query which are separated by a comma. If the decision is YES at decision block 1134, the method flow proceeds to terminal A5 (described above). If the decision is NO, the method 1100 proceeds to decision block 1136. Here, the process kernel 302C checks whether the query term T is a left injection (INR(X)). Traditionally, the left injection operator "inl()" is used to indicate the source of an element in a union of two sets. For example, suppose a set A is summed with a set B (which is denoted as A+B). Each element of the set A+B is, in effect, tagged with the label inl to indicate that the element originated in set A
(visually because the alphabetic letter A is to the left of the set A+B). In the present invention, the constructor inl is preferably used to indicate operation (described below) on the left-sided Q of the body of the query expression (X*)(Q,Q). If the answer is YES to decision block 1136, the method flow proceeds to the terminal A5 (described above).
Otherwise, the method 1100 enters another continuation terminal ("terminal A3").
From terminal A3, the method 1100 proceeds to decision block 1138 where the process kernel 302C determines whether the query term T is a right injection (INR(X)). As briefly described above, in the presence of a query of the form <X*)(QLQR), the left injection constructor (INL(X)) allows the variable X to be bound to the constraint QL and the right injection constructor (INR(X)) allows the variable X to be bound to the constraint QR If the answer at decision block 1138 is YES, the method 1100 proceeds to the terminal A5 (described above). Otherwise, the method flow proceeds to decision block 1140 where the process kernel 302C determines whether the query term T is of the form <X*)(Q). The method 1100 proceeds to the terminal A5 if the answer at decision block 1140 is YES. Otherwise, another decision block 1142 is entered by the method flow. Here, the process kernel 302C determines whether the query term T is of the form ?T. See decision block 1142. The operator "?" can be considered as a read operator that binds the term T to the first term in the head of the query Q who is contained in the body of a . query <X*)(Q). If the answer is YES at decision block 1142, the method flow proceeds to the terminal A5 (described above). If the answer is NO, the method determines whether the query term T is a copy operation (e.g., "T@T"). If the answer at decision block 1144 is YES, terminal A5 is entered by the method 1100 (described above). If instead the answer is NO, which means that the query Q has not been written in a syntactical form that is recognizable by the language 400, the method 1100 finishes execution and terminates. From terminal B (FIGURE 11 A) the method 1100 proceeds to a set of processing steps 1104 defined between a continuation terminal ("terminal C") and an exit terminal ("terminal D"). This set of processing steps 1104 runs the program 302A against the syntactical rules governing the structure and content of process statements. From terminal C (FIGURE 11G) the process kernel 302C obtains a process expression (II) from the program 302A. See block 1148. Next, at decision block 1150, the process kernel 302C determines whether the process expression IT is a "0" which denotes a process stop or inactivity of a process. If the answer YES, the method flow proceeds to another continuation terminal ("terminal C3"). Otherwise, the method flow proceeds to another decision block 1152. The process kernel 302C decides whether the process expression IT has a form X[Q].P, where X is a variable representing a channel, a queue, a database, or other structured stores; Q denotes a query having a syntax described above and illustrated in FIGURES 11C-11F; X[Q] denotes that the query Q is submitted or deposited at X; the period "." denotes a sequence from a process X[Q] to another process P or denotes a sequence from a portion of a process X[Q] to another portion P of the same process. If the answer at decision block 1152 is YES, the method 1100 proceeds to the terminal C3. Otherwise, if the answer is NO, the method 1100 proceeds to decision block 1154. The process kernel 302C determines whether the process expression IT is a summation of a number of X[QJ.Pj, such as X[Qo].Po+X[Qι]-Pι- The summation indicates that a process represented by the process expression IT can execute one of many alternatives. For example, with the summation of X[Qo].Po+X[Qι]-Pι, the process represented by IT can execute either X[QQ].PQ or
Figure imgf000032_0001
If the answer at decision block 1154 is YES, the method 1100 proceeds to the terminal C3. Otherwise, if the answer is NO, the method flow proceeds to another continuation terminal ("terminal Cl").
From terminal Cl (FIGURE 11 H), the method 1100 proceeds to decision block 1156 where the process kernel 302C determines whether the process expression IT is of the form (NEW X)P where NEW denotes an operator in the language 400 for creating a new name which is bound to some process; (NEW X) denotes the creation of a new name X in some process; and (NEW X)P denotes that a new variable X is created and is bound to a process P. If the decision at decision block 1156 is YES, the method 1100 continues at terminal C3. If the answer is NO, decision block 1158 is entered by the method 1100. Here, the process kernel 302C determines whether the process expression IT is of the form P | P, which denotes that a process is executed in parallel with another process. If the answer is YES at decision block 1158, the method flow proceeds to the terminal C3. Otherwise, the method 1100 proceeds to decision block 1160. The process kernel 302C determines at decision block 1160 whether the process expression IT is of the form !P, where the exclamation mark "!" denotes a replication operator and !P denotes an infinite composition P | P | .... The replication operator ! allows a developer to express infinite behaviors of processes using the language 400. If the decision is YES at decision block 1160, the method 1100 proceeds to the terminal C3. Otherwise, the method 1100 enters another continuation terminal ("terminal C2"). From terminal C2 (FIGURE 111), the method 1100 proceeds to decision block 1162 where the process kernel 302C determines whether the process expression IT is of the form X[P]. The syntactical form X[P] indicates that a developer using the language 400 can deposit or submit a process P at X, which as described before includes channels, queues, and databases, among other structured stores. If the answer at decision block 1162 is YES, the method 1100 proceeds to the terminal C3. Otherwise, the answer is NO, and the method flow proceeds to decision block 1164. The process kernel 302C determines whether the process expression IT is of the form (Q), which is a lifted query (described in further detail below). If the decision is YES at decision block 1164, the terminal C3 is entered by the method 1100. Otherwise, the answer is NO and the method 1100 finishes execution and terminates. The reason for the termination of the method 1100 at this point is because the process expression IT was formed in a way incompatible with the grammar of the language 400.
From terminal C3 (FIGURE 111), the method 1100 proceeds to decision block 1166 where the process kernel 302C determines whether the program 302A contains other process expressions to be checked. If the answer is NO, the method flow proceeds to another continuation terminal ("terminal D"). Otherwise, the answer is YES, and the method 1100 proceeds to another continuation terminal ("terminal C4"), which loops back to block 1148 wherein the above-described method steps are repeated.
From terminal D (FIGURE 11 A) the method 1100 proceeds to a group of processing steps 1106 where the method runs the program using a set of equational laws governing the structural equivalence of query expressions (see FIGURE 11J). Processing steps 1106 are defined between a continuation terminal ("terminal E") and an exit terminal ("terminal F"). From terminal E (FIGURE 11J) the method 1100 proceeds to block 1168 where the process kernel 302C obtains two or more query expressions for structural equivalence comparison purposes. Next, the method determines whether a query context (K) is of the form K[T:=:U]. The query context K denotes multiple queries that have holes that can be adapted to be filled by one or more constraints. If the answer at decision block 1178 is YES, the query context K is structurally equivalent to another query context K[U:=:T]. See block 1170B. Then, the method flow proceeds to another continuation terminal ("terminal El"). Otherwise, if the decision at decision block 1170A is NO, another decision block 1172A is entered by the method 1100. Here, the process kernel 302C determines whether the query context K has the form K[T0:=:Uo, Tι:=:U]J. If the answer is YES to decision block 1172A, the query context K is structurally equivalent to another query context
Figure imgf000034_0001
See block 1172B. Next, the method flow proceeds to the terminal El. If instead, the answer is NO at decision block 1172 A, the method 1100 proceeds to the terminal El, which proceeds to another decision block 1174. The process kernel 302C determines whether there are more query expressions in the program to analyze for structural equivalents. See block 1174. If the answer is NO, the method 1100 proceeds to the exit terminal F. Otherwise, the answer is YES, and the method 1100 loops back to block 1168 where the above-described method steps are repeated.
From terminal F (FIGURE 11 A), the method 1100 proceeds to another continuation terminal ("terminal G"). From terminal G (FIGURE 1 IB), the method 1100 proceeds to a set of processing steps 1108 defined between a continuation terminal ("terminal H") and an exit terminal ("terminal l"). Among these processing steps 1108 the method runs the program using a set of equational laws governing structural equivalence of processed statements. From terminal H (FIGURE 1 IK) the method 1100 proceeds to block 1176 where the process kernel 302C obtains several process expressions (III and 112) from the program 302A for structural equivalence analysis. Next, the method determines whether the process expression III is of the form PQ I Pi- See decision block 1178A. If the decision is YES, the process expression III is structurally equivalent to the process expression 112 if 112 has the form P0 | P^ See block 1178B. Next, the method 1100 proceeds to another continuation terminal ("terminal H7"). If the answer is NO at decision block 1178 A, the method 1100 proceeds to another decision block 1180A where the process kernel 302C determines whether the process expression 111 has the form P 1 0. If the answer is YES at decision block 1180A, the process expression III is structurally equivalent to the process expression IT2 if the process expression IT2 has the form P. See block 1180B. Next, the method flow proceeds to the terminal H7. If the answer is NO at decision block 1180A, the method 1100 proceeds to another decision block 1182A. Here, the process kernel 302C determines whether the process expression ITl has the form !P. If the answer is NO, the method 1100 proceeds to another continuation terminal ("terminal H2"). If the answer is YES at decision block 1182A, the method 1100 proceeds to yet another continuation terminal ("terminal HI ").
From terminal HI (FIGURE 11 L) the method 1100 proceeds to block 1182B where the process expression III is determined to be structurally equivalent to the process expression 112 if the process expression IT2 has the form P | !P. Next, the method 1100 proceeds to the terminal H7.
From terminal H2 (FIGURE 11 L), the method 1100 proceeds to decision block 1184A where the process kernel 302C determines whether the process expression ITl has the form Po+Pi- If the answer is YES to decision block 1184A, the process kernel 302C determines that the process expression ITl is structurally equivalent to the process expression IT2 if the process expression IT2 has the form Pχ+Po- See block 1184B. Next, the method flow proceeds to the terminal H7. If instead the answer at decision block 1184A is NO, the method 1100 proceeds to another decision block 1186 A. Here, the process kernel 302C determines whether the process expression III has the form Pø+0. If the answer is YES, the method 1100 flows to block 1186B where the process kernel 302C determines that the process expression III is structurally equivalent to the process expression IT2 if the process expression 112 has the form P. Next, the method 1100 flows to the terminal H7. If the answer is NO, the method flow proceeds to another decision block 1188A. Here, the process kernel 302C determines whether the process expression III has the form (NEW X)(NEW Y)P. If the answer is YES, the method 1100 proceeds to another continuation terminal ("terminal H3"). Otherwise, if the answer is NO, the method 1100 proceeds to another continuation terminal ("terminal H4"). From terminal H3 (FIGURE 11M), the method 1100 proceeds to block 1188B where the process expression LU is determined to be structurally equivalent to the process expression IT2 if the process expression IT2 has the form (NEW Y)(NEW X)P. From terminal H4 (FIGURE 11M), the method 1100 proceeds to another block 1190 A where the process kernel 302C determines whether the process expression ITl has the form (NEW X)(NE X)P. If the answer is YES to decision block 1190A, the process expression 111 is structurally equivalent to the process expression J-T2 if the process expression IT2 has the form (NEW X)P. See block 1190B. Next, the method 1100 proceeds to the terminal H7. If the answer at decision block 1190A is NO, the method 1100 proceeds to another decision block 1192 A. Here, the process kernel 302C determines whether the process expression ITl has the form (NEW X)P | Q. If the answer is YES at decision block 1192A, the process proceeds to block 1192B where the process kernel 302C determines that the process expression 111 is structurally equivalent to the process expression IT2 if the process expression IT2 has the form (NEW X)(P | Q). The name X is preferably a free name in the process Q. In other words, the name X is not bound to the process Q. Next, method 1100 proceeds to the terminal H7.
If the answer at decision block 1192 A is NO, the method 1100 enters decision block 1194 A. Here, the process kernel 302C determines whether the process expression ITl has the form { ) (C, NAME X :=: NAME X ') | P where <) denotes the head of a query that contains nothing; C denotes a list of constraints or a set of bindings; NAME X:=:NAME X' denotes that the literal X is bound to the literal X' or that the literal X has an equivalent relation to the literal X'; and <>(C , NAME X:=:NAME X') | P denotes that the head of the query ()( C , NAME X :=: NAME X') is a query running in parallel with a process P. If the answer to the test at decision block 1194 is NO, the method 1100 proceeds to the terminal H7. If instead, the answer at decision block 1194 A is YES, the method 1100 proceeds to another continuation terminal ("terminal H6").
From terminal H5 (FIGURE 1 IN), the method 1100 proceeds to another decision block 1194B. At decision block 1194B, the process kernel 302C determines whether the query ()(C , NAME X:=:NAME X') is canonical. A query is said to be canonical, or alternatively, is in canonical form if and only if all of its constraints (the bindings in the body of the query) are irreducible and the query is not a failure. A constraint is irreducible in a query if and only if there exists a second query such that the query maps or reduces to the second query, and the constraint is an element of the second query. A query is said to fail if and only if the query is mapped or reduced to another query and the other query contains a failure. A constraint of the form Lo:=:Lμs a failure if LQ is not equivalent to the complement of Lj where LQ, L^ are literals. If the answer at decision block 1194B is YES, the method 1100 proceeds to block 1194C. Here, the process kernel 302C determines that the process expression 111 is structurally equivalent to the process constituent 112 if the process expression 112 has the form <>(C , NAME X:=:NAME X') | P{XVX}. The process expression P{X7X} denotes that whenever in the process P there is an occurrence of the name X, such an occurrence can be replaced with the name X'. In this regard, it should be recallable that the processing steps 1194A-1194C programmatically describe the substitution equivalent, which was discussed above in connection with FIGURES 7A-7B. Next, the method 1100 proceeds to the terminal H7. If the answer at decision block 1194B is NO, the method 1100 proceeds to the terminal H7. From terminal H7, the method 1100 proceeds to another decision block 1196 where the process kernel 302C checks to see whether there are more process expressions for structural equivalence analysis. If the answer is NO at decision block 1196, the method flow proceeds to the exit terminal I. Otherwise, the method 1100 proceeds to a continuation terminal ("terminal H8"). From terminal H8 (FIGURE UK) the method 1100 loops back to block 1176 and the above-described method steps are repeated.
From the exit terminal I (FIGURE 11B), the method 1100 proceeds to a set of processing steps 1110 where the method runs the program 302 A against the operational symatics rules governing the meanings of query statements in the program 302 A. The set of processing steps 1110 are defined between a continuation terminal ("terminal J") and an exit terminal ("terminal K"). In the language 400, operational symantics rules are basically a series of evolving relations of processes. A process by its nature is dynamic so that from one point in time to the next the process is continually changing or evolving. The operational symantics rules of language 400 provide a carefully guided evolution of processes expressed in the language 400. It is through the syntactical rules described above in FIGURES 11C-11I that a developer can express the nuances in which processes evolve through the operational symantics of the language 400.
From terminal J (FIGURE 110) the method 1100 proceeds to block 1198 where the process kernel 302C obtains a binding from query expressions in the program. Next, at decision block 1199 A the process kernel 302C determines whether the binding B contains a binding TOP:=:BOTTOM. If the answer is YES, the process kernel 302C reduces the binding B is to nothing. See block 1199B. Next, the method flow proceeds to a continuation terminal ("terminal J4"). If instead the answer is NO, the method flow proceeds to decision block 1197 A where the process kernel 302C determines whether the binding B contains bindings X:=:T, U:=:X. If the answer is YES, the process kernel 302C reduces the binding B to a binding T:=:U. See block 1197B. Next, the method flow proceeds to terminal J4. If the answer is NO, the method 1100 proceeds to another continuation terminal ("terminal Jl").
From terminal Jl (FIGURE HP), the method 1100 proceeds to another decision block 1193 A where the process kernel 302C determines whether the binding B contains TQ* T^:=:Uo#Uι. If the answer is YES, the process kernel 302C reduces the binding B to TQ:=:UO, Tχ:=:Uι. See block 1193B. Next, the method flow proceeds to the terminal J4. If the answer is NO at decision block 1193 A, the method 1100 proceeds to another decision block 1191 A. The process kernel 302C determines whether binding B contains a binding XJ (T0 ^ WCO TJ : T (C,) ) :=: INL(U) . If the answer at decision block 1191 A is YES, the process kernel 302C reduces the binding B to T0 :=: U,X :=: Ϊ , V See block 1191B. Next, the method 1100 proceeds to the terminal J4. If the answer is NO to decision block 1191A, the method 1100 proceeds to another decision block 1189 A.
If the answer at decision block 1191 A is NO, the method 1100 proceeds to another decision block 1189A. The process kernel 302C determines whether the binding B contains ( )((τo ^Vc :f (C )) :=: INR(U) . If the answer at decision block 1189A is YES, the method 1100 proceeds to block 1189B where the process kernel 302C reduces the binding B to Tj :=: U,X :=: T,,^ . Next, the method flow proceeds to the terminal J4. If the answer at decision block 1189A is NO, the method 1100 proceeds to another continuation terminal ("terminal J2"). From terminal J2, the method 1100 proceeds to another decision block 1187A.
Here, the process kernel 302C determines whether the binding B contains :=: ?U . If the answer is YES, the process kernel 302C reduces the
Figure imgf000038_0001
binding B to T :=: U,X :=: T, C . See block 1187B. Next, the method 1100 proceeds to the terminal J4. If the answer at decision block 1187A is NO, the method 1100 proceeds to another decision block 1185 A. The process kernel 302C determines whether the binding B contains x\ ( (T : T) (C) j :=: U @ V . If the answer at decision block 1185A is YES, the process kernel 302C reduces the binding B to x) ( T : T) (C))L :=: U, (x)"((τ : T) (C))R :=: N, X :=: @X . See block 1185B. Next, the method 1100 proceeds to the terminal J4. If the answer to decision block 1185 A is
NO, the method 1100 proceeds to another decision block 1183 A. The process kernel 302C determines whether the binding B contains (X T : T\(C) ] :=: _ . In other words, the query (X \((T : τ\ (C) J is bound with a discarder operator. If the answer is YES at decision block 1183 A, the process kernel 302C reduces the binding B to the following bindings: X0 :=: _,...,Xn :=: _ . In other words, each term of the list X in the head of the query is bound to the discarder operator. Next, the method 1100
Figure imgf000039_0001
proceeds to the terminal J4. If the answer is NO at decision block 1183 A, another continuation terminal ("terminal J3") is entered by the method flow.
From terminal J3 (FIGURE 11R), the method 1100 proceeds to another decision block 1181 A where the process kernel 302C determines whether the binding B has the form (T)( 0(5,0,0! j . In other words, the process kernel 302C determines whether binding B is in a form of a query with the list T in the head and three constraint lists in the body, which include
Figure imgf000039_0002
. If the answer at decision block 1181 A is YES, the process kernel 302C further determines whether the list C can be reduced to C . See decision block 1181B. If the answer is YES to decision block 1181B, the binding B is reduced to a query (T J ( C0 , C ', Cx ) . See block 1181C. The method flow proceeds to the terminal J4.
If the answer at decision blocks 1181 A, 1181B is NO, the method 1100 proceeds to another decision block 1179 A. The process kernel 302C determines whether the binding B contains the following query T\f U :=: X,C ) . If the answer at decision block 1179A is YES, the binding B is reduced to a query τ{U/X}Vθ) . See block 1179B. In other words, if the name U is bound to the name X in the body of a query, everywhere in the list T where there is a name X, the name X can be replaced with the name U. Next, the method flow proceeds to the terminal J4. Otherwise, the answer at decision block 1179A is NO, and the method flow proceeds to the terminal J4, which proceeds to another decision block 1177. Here, the process kernel 302C determines whether there is another query expression to apply the semantic rules of the language 400. If the answer is NO, the method 1100 proceeds to the exit terminal K. If the answer at decision block 1177 is YES, the method 1100 proceeds to another continuation terminal ("terminal J5"). From terminal J5, the method 1100 loops back to block 1198 where the above-described method steps are repeated.
From the exit terminal K (FIGURE 11B), the method 1100 proceeds to a set of processing steps 1112 where the method runs the program 302 A against the operational semantics rules governing the meanings of process expressions. The set of processing steps 1112 are defined between a continuation terminal ("terminal L") and an exit terminal ("terminal M").
From terminal L (FIGURE US), method 1100 proceeds to a block 1175 where the process kernel 302C obtains a process expression (II) in the program 302 A. Next, at decision block 1173 A, the process kernel 302C determines whether the process expression II contains a summation X[Q0].Pø+...+X[Qι].Pι+.... If the answer is YES at decision block 1173 A, the method 1100 proceeds to another decision block 1173B. Here, the process kernel 302C determines whether there is a binding of a form
Figure imgf000040_0001
that is reducible to another query Q canonically. Both σø, σ^ define a permutation that maps or reduces a term (see Definition 3.2.1 in Section 3.2 of the Appendix). Both σø, σj are preferably interpreted as a database join. If the answer at decision block 1173B is
YES, process kernel 302C reduces the process expression IT to a process X[Q].(Pø I Pi), which denotes that the reduced query Q is submitted to a structured store X and afterward both processes Pø, ?ι execute in parallel. See block 1173 C. Processing steps 1173A-1173C are discussed above in connection with FIGURES 9A-9B. Next, from block 1173 C, the method 1100 proceeds to another continuation terminal ("terminal L6").
If the answer at decision blocks 1173 A, 1173B is NO, the method 1100 proceeds to another decision block 1171 A. The process kernel 302C determines whether the process expression II contains P | P". If .the answer is YES, the method 1100 proceeds to another decision block 1171B where the process kernel 302C determines whether the process P can be reduced to a process P'. If the answer at decision block 1171B is YES, the method 1100 proceeds to another continuation terminal ("terminal LI"). If the answer at decision blocks 1171 A, 1171B is NO, the method 1100 proceeds to another continuation terminal ("terminal L2").
From terminal LI (FIGURE 1 IT), the method 1100 proceeds to block 1171C where process kernel 302C reduces the process expression II to P | P'. Next, the method flow proceeds to the terminal L6. From terminal L2 (FIGURE 11T), the method 1100 proceeds to another decision block 1169 A where the process kernel 302C determines whether the process expression IT contains (NEW X)P. If the answer is YES, the method flow proceeds to decision block 1169B where the process kernel 302C determines whether the process P can be reduced to P'. If the answer at decision block 1169B is YES, process kernel 302C reduces the process expression II to (NEW X)P\ See block 1169C. Next, the method 1100 proceeds to the terminal L6. If the answer at decision blocks 1169 A, 1169B is NO, the method flow proceeds to another decision block 1167A. Here the process kernel 302C determines whether the process expression IT contains X[P]. If the answer is YES, the method 1100 proceeds to another decision block 1167B. The process kernel 302C determines whether the process P can be reduced to another process P'. See decision block 1167B. If the answer at decision block 1167B is YES, the method flow proceeds to another continuation terminal ("terminal L3"). If the answer at decision blocks 1167 A, 1167B is NO, the method 1100 proceeds to another continuation terminal ("terminal L4").
From terminal L3, the method 1100 proceeds to block 1167C where process kernel 302C reduces the process expression II to X[P']. Next, the method flow proceeds to terminal L6. From terminal L4 (FIGURE 11U), the method flow proceeds to another decision block 1165 A, where the process kernel 302C determines whether the process expression II contains a process X[Q].P.. If the answer at decision block 1165 A is YES, the process kernel 302C determines at decision block 1165B whether the query Q has an equivalent relation with another query of a form ^I C,XΛ :=: N ) . The term
C,XΛ :=: N I means a query that has nothing in its head (no terms are contained in the
head of the query). Its body contains the term C , which denotes a list of constraints or binding relationships (such as conditions that bind ports to ports), or the term
XΛ :=: N ,which denotes binding relationships among a list of local variables to a list of values associated with the list of local variables.
If the answer is YES to decision block 1165B, the process kernel 302C further determines whether the query Q is in canonical form. See decision block 1165C. If the test at decision block 1165C is YES, process kernel 302C reduces the process expression II to a process of the form Q ' |P jN/ ΛX>. See block 1165D. The term (Q' is a lifted query, which is equivalent to { )(Cj , and was previously discussed above in FIGURES 10A-10C. A lifted query ( )(Cj is a query that contains no terms in the head and its body contains binding relationships, which are described in the list of constraints C , which are globally known. The term PJN/ ΛX| is a process, which
subsitutes each local variable in the list of local variables ΛX with a corresponding value in the list of values N during the time the constraint terms in the list of contraints C are lifted. In sum, if the query Q in the process X[Q].P is equivalent to ( )( C,XΛ :=: N)and
additionally the query Q is in canonical form, the process X[Q].P can be evolved to a process of a form (Q')|P|N/ ΛX| • Next, the method 1100 proceeds to the terminal L6.
If the answer at decision blocks 1165A-1165C is NO, another decision block 1163A is entered by the method 1100. The process kernel 302C determines whether the process expression IT contains Pø, which has an equivalent relation to PQ'.
See decision block 1163 A. If the answer is YES, the method 1100 proceeds to another continuation terminal ("terminal L5"). If the answer to decision block 1163 A is NO, the method 1100 proceeds to the terminal L6.
From the terminal L5 (FIGURE 11V), the method 1100 proceeds to decision block 1163B where the process kernel 302C determines whether Pø' can be reduced to
Pi'. If the answer is YES, the process kernel 302C determines whether the process P^ has an equivalent relation with a process Pj. See decision block 1163C. If the test at decision block 1163C is YES, the process kernel 302C reduces the process Pø to the process P^ See block 1163D. Next, the method 1100 proceeds to the terminal L6. If the answer at decision blocks 1163B, 1163C is NO, the method 1100 also proceeds to the terminal L6.
From the terminal L6 (FIGURE 11V), the method 1100 proceeds to another decision block 1161 where the process kernel 302C checks to see whether there are more process expressions to be analyzed under the operational semantic rules of the language 400. If the answer is NO, the method flow proceeds to the exit terminal M. If the answer at decision block 1161 is YES, the method 1100 proceeds to another continuation terminal ("terminal L7"). From terminal L7, the method 1100 loops back to block 1175 where the method steps discussed above are repeated. While the preferred embodiment of the invention has been illustrated and described, it will be appreciated that various changes can be made therein without departing from the spirit "and scope of the invention.
APPENDD
SEMANTICS
The semantics for the language is presented in an SOS style set of reduction rules. For brevity, a more compact, entirely infix version of the syntax, often called a calculus, is introduced. Over this syntax a set of equivalence rules is imposed because the syntax makes distinction amongst processes that are too fine. The reduction rules are closed over this equivalence.
Calculus-style Syntax
R ::= 0
I x[Q]J I (new )R
Figure imgf000044_0001
I p\p I l! I <
The correspondence between the syntax the programmer sees (the program-level syntax) and the infix (model-level) syntax should be obvious, but is given in the following table for completeness. Note that the prefix syntax tries to work around its verbosity by providing syntactic sugar like the block form. This form allows the programmer to specify a prefix of several actions to be executed sequentially before the continuation. Rather than write out the full compilation of these forms, the table below simply provides the minimal information to infer the compilation. This choice amounts to making the left hand column be the translation of the right hand column.
Figure imgf000044_0002
Figure imgf000045_0001
Note bene: the lifted query form is not currently made available at the user level in the prefix syntax. But, in subsequent versions it will be. Q ::= (r*)(C*) C ::= T :=: T T ::= top bottom [name
I x I xΛ
I Ax
I ~ r I τ*τ
I τ#τ (**)(0.β) inl( ) inr( )
(**>(β)
IT τ@τ
Figure imgf000045_0002
Figure imgf000046_0001
STRUCTURAL EQUIVALENCE
As mentioned before the syntax makes too many distinctions. It makes no difference, for example, bn which side of the ":=:" a term appears. We introduce structural equivalence to eliminate these unnecessary distinctions. For queries we do this using a query context, which is just a query with a place in it to insert a condition. For processes we do this explicitly. K[t :=: u] ≡ K[u := t]
K [t0 :-. u0 , tx :=: ux ] ≡ K [t, :=: ux , t0 :=: u0 ]
p \p = p \p
R|o ≡ P
!R ≡ R|!R
P0 +Pλ ≡ Pl +PQ
R + 0 ≡ P
(new )(new ')R ≡ (new ')(newx)R
(new )(new )R ≡ (new )R
(newx)R|β s (newx)(R|β),x EN(β) For the reader familiar with process algebras, these equations are the usual suspects. The one interesting case is the one below. When a query is in canonical form, and there are conditions in its body, it will be the case that those conditions are equations between ports, or equations between local variables and their values. At the time of lifting, the local variables are substituted with their values into the continuations. The equations between ports, when present in a lifted query, act as a process that implements a kind of explicit substitution.
<)( c,name x :=:name x'j in canonical form u c,name x :=:name *'))|R ≡ ({ )(c,name x :=: name x'j) | R{x7x}
REDUCTION RULES
(match) top :=: bottom > (cut) x:=:t, :=: x >t :=:u (tensor-par) T CL T-i . • Wg In ■ — • tin ? T-t .— . U
(with-lplus)
(with-rplus)
Figure imgf000047_0001
ω, x :=: t, c
Figure imgf000047_0002
(copy)
Figure imgf000047_0003
x:=: x @x x)[ (t : t
(discard) eo - ->x0 :— : ,x„
->c'
(context) t (w :=: x,c) t{ω/x} l c),x not constrained by c (cleanup)
DISCUSSION MATCH The match rule is really a rule schema. Whenever a literal and its dual come together, they evaporate. This is interpreted as a success as no more checking is required. CUT
An identifier may be thought of, intuitively, as a wire. When two terms occur on each end of a wire, you eliminate the wire and plug the two terms together directly. At this point it is worth calling out that the linear types ensure that in well-typed terms identifiers occur exactly twice. TENSOR-PAR
When an offer of a tuple meets an [sic] demand for a tuple, the corresponding positions get wired together.
WITH-PLUS When an offer of a menu (the withClaim form) meets a demand for a selection (the injectClaim form), the selection is made. This causes the selected choice to be wired to the constraints of the demand. READ When an offer of a recording (the ofCourseClaim) meets a demand for a replay (the whyNotClaim) the data on the recording is wired to -the constraints of the demand.
COPY . When an offer of recording meets a demand for a copy (the contractClaim) separate copies are wired to the separate constraints of the demand.
DISCARD When an offer of recording meets a demand to discard the recording (the "_") the recording is discarded. CONTEXT
If a collection of conditions evolves in a certain way, then they may evolve that way in the context of the body of a query.
CLEANUP When one end of a wire, i.e., one occurrence of a [sic] identifier, is occurs in (some term in) the head of a query, and the other in the body then term to which the identifier is bound in the body may be substituted into the head.
(t0,...,t„)(c) Definition 3.2.1. Let σ : n n be a permutation, * °' ' "' a query. We
Figure imgf000048_0001
Definition 3.2.2. Let ^XX^«) and & X»°-X(c> ) . We take Qo --- Qι = {t1,...,tn,ul,...,un}(t0 :=: u0,C0,C^
Definition 3.2.3. A constraint of the form ° '""' ' on literals, °' l , is a failure if t0 ≠~ tj
Definition 3.2.4. A query, Q, fails iff ^ ^ and Q ' contains a failure.
Definition 3.2.5. A constraint c is irreducible in a query Q iff
Figure imgf000048_0002
Definition 3.2.6. A query, Q, is canonical (alternatively, in canonical form) iff all of its constraints are irreducible and Q is not a failure.
(comm)
Figure imgf000048_0003
R- -»P'
Figure imgf000049_0001
(par) P >P'
Figure imgf000049_0002
p = p , P ' >• P ' P ' = P (equiv) ^o ► Pi COMM
If two queries have terms that match at some position in their heads, respectively, and the corresponding cut query evolves to a query that cannot make anymore progress, but is not a failure, then two processes which have placed these queries into the same queue will communicate. Their respective continuations will both wait on the completion of the reduced query.
PAR If a process can make progress on its own, then it may still make that progress in parallel composition with another process.
NEW If a process can make progress on its own, then it may still make that progress if one of its ports is no longer available for outside interaction.
LIFT A query with no terms in its head only has conditions which bind ports to ports or local variables to values, if it has any bindings at all in its body. Such a query may be lifted. At the time of lifting the local variables are substituted out of the body of the continuation.
The equations remaining, after the local variables have been substituted away, are between ports. Such a query then becomes a process that acts as a kind of explicit substitution, or a wire between equated ports. EQUIN
Evolution is closed over the equivalence relation.

Claims

The embodiments of the invention in which an exclusive property or privilege is claimed are defined as follows:
1. A computer system for processing a modular collection of protocol-based applications to provide services through network connections, the system comprising: a computer-readable means for storing a program, the program including expressions written in a process-based language for representing protocol-based applications as processes; and a process kernel for executing the expressions in the program, the expressions specifying interactions of processes by allowing a named organizational scheme of data written in a customizable, tag-based language to be exchanged as a process among processes, the named organizational scheme of data being bound to the scopes of processes that send and receive the named organizational scheme of data.
2. The computer system of Claim 1, further comprising an operating system kernel coupled to the process kernel, the operating system kernel providing allocation and usage of hardware resources, which include memory, central processing unit time, disk space, and peripheral devices.
3. The computer system of Claim 1, further comprising device drivers coupled to the process kernel, the device drivers providing software components that permit the computer system to communicate with hardware devices.
4. The computer system of Claim 1, further comprising a directory framework that provides a way to locate and register Web services on the Internet.
5. The computer system of Claim 4, further comprising a discovery- component in the directory framework, the discovery component acting as a broker among processes to locate a desired Web service.
6. A computer-executable method for processing a modular collection of protocol-based applications to provide services through network connections, the method comprising: representing protocol-based applications as processes when process expressions in a program written in a process-based language are executed; representing named organizational schemes of data written in a customizable, tag- based language as processes when query expressions are executed; and causing processes to communicate when processes send or receive the named organizational schemes of data as queries to or from queues, the named organizational schemes of data being bound to the scopes of processes that send or receive the named organizational schemes of data.
7. The method of Claim 6, further comprising interacting with an operating system kernel, the operating system kernel providing allocation and usage of hardware resources, which include memory, central processing unit time, disk space, and peripheral devices.
8. The method of Claim 6, further comprising interacting with device drivers, the device drivers permitting the computer system on which the method is implemented to communicate with hardware devices.
9. The method of Claim 6, further comprising locating and registering protocol-based applications as Web services on the Internet via a directory framework.
10. The method of Claim 9, further comprising brokering among processes to locate a desired Web service by a discovery component in the directory framework.
11. A computer-readable medium having computer-executable instructions for performing a method for processing a modular collection of protocol-based applications to provide services through network connections, the method comprising: representing protocol-based applications as processes when process expressions in a program written in a process-based language are executed; representing named organizational schemes of data written in a customizable, tag- based language as processes when query expressions are executed; and causing processes to communicate when processes send or receive the named organizational schemes of data as queries to or from queues, the named organizational schemes of data being bound to the scopes of processes that send or receive the named organizational schemes of data.
12. The computer-readable medium of Claim 11, further comprising interacting with an operating system kernel, the operating system kernel providing allocation and usage of hardware resources, which include memory, central processing unit time, disk space, and peripheral devices.
13. The computer-readable medium of Claim 11, further comprising interacting with device drivers, the device drivers permitting the computer system on which the method is implemented to communicate with hardware devices.
14. The computer-readable medium of Claim 11, further comprising locating and registering protocol-based applications as Web services on the Internet via a directory framework.
15. The computer-readable medium of Claim 14, further comprising brokering among processes to locate a desired Web service by a discovery component in the directory framework.
16. A computer system comprising: a query virtual machine for defining queries and for governing the interactions among queries and queues in a program written in a process-based language; a process virtual machine for defining processes and for governing interactions among processes in the program, processes including protocol-based applications; and a reaction virtual machine for defining valid interactions among queries, queues, and processes and further for governing the interactions among queries, queues, and processes by interpreting queries as processes.
17. The system of Claim 16, further comprising a transition virtual machine for isolating the query virtual machine, the process virtual machine, and the reaction virtual machine from other system software components of the computer system.
18. The system of Claim 16, wherein queues include databases, channels, or structured stores that enable processes running at different times or at the same time to communicate across heterogeneous networks and systems that may be temporarily offline.
19. The system of Claim 16, wherein queries include instructions written in a data manipulation language to assemble and disassemble other queries, manipulate queues, and detect patterns in queries.
20. The system of Claim 16, wherein processes include computation entities that have the capability to evolve by performing actions or by allowing other processes to evolve.
21. A computer-executable method for compiling an expression written in a process-based language, the method comprising: parsing the expression to obtain syntactical elements that represent a queue, a set of queue delimiters, a query, a sequence delimiter, and other actions; and translating the expression as a process whose first action is submitting the query as another process to the queue and after which the process continues with other actions, the query including an organization scheme formed from a customizable, tag-based language that contains data and describes data.
22. The method of Claim 21, wherein the portion of the expression that represents the query includes a head and a body, the head being delimited by first and second query head delimiters, the body being delimited by first and second query body delimiters.
23. The method of Claim 22, wherein contained between the first and second query head delimiters is zero or more query terms.
24. The method of Claim 22, wherein contained between the first and second query body delimiters is zero or more constraint terms.
25. The method of Claim 24, wherein each constraint terms is a binding that defines a relation between one query term and another query term.
26. The method of Claim 25, wherein query terms include a literal.
27. The method of Claim 25, wherein query terms include a complementary literal.
28. The method of Claim 25, wherein query terms include a discarder.
29. The method of Claim 25, wherein query terms include a name of a variable.
30. The method of Claim 25, wherein query terms include a variable.
31. The method of Claim 25, wherein query terms include an inversion of a query term.
32. The method of Claim 25, wherein query terms include a tuple of query terms.
33. The method of Claim 25, wherein query terms include a complementary tuple of query terms.
34. The method of Claim 25, wherein query terms include a second query that has zero or more variables in the head and a third and a fourth queries separated by a comma in the body.
35. The method of Claim 34, wherein query terms include a left injector that takes a variable as an argument.
36. The method of Claim 25, wherein query terms include a right injector that takes a variable as an argument.
37. The method of Claim 25, wherein query terms include a fifth query that has zero or more variables in the head and a sixth query in the body.
38. The method of Claim 37, wherein query terms include a read operator that operates on a query term.
39. The method of Claim 37, wherein query terms include a copy operator that operates on query terms.
40. The method of Claim 21, wherein the portion of the expression that represents the process includes an inactivity operator, the inactivity operator allowing the inactivity of the process to be expressed.
41. The method of Claim 21, wherein the portion of the expression that represents the process includes a summation operator that sums a set of processes, the summation operator allowing the choices that the process can choose from the set of processes to proceed to be expressed.
42. The method of Claim 21, wherein the portion of the expression that represents the process includes a new operator, the new operator allowing the creation of a name that is bound to the process to be expressed.
43. The method of Claim 21, wherein the portion of the expression that represents the process includes a parallel operator, the parallel operator allowing two processes executing in parallel to be expressed.
44. The method of Claim 21, wherein the portion of the expression that represents the process includes a replication operator, the replication operator allowing the infinite behavior of the process to be expressed.
45. The method of Claim 21, wherein the portion of the expression that represents the process includes a second queue, a second set of queue delimiters, and a process.
46. The method of Claim 21, wherein the portion of the expression that represents the process includes a lifted query.
47. A computer-readable medium having computer-executable instructions for performing a method for compiling an expression written in a process-based language, the method comprising: parsing the expression to obtain syntactical elements that represent a queue, a set of queue delimiters, a query, a sequence delimiter, and other actions; and translating the expression as a process whose first action is submitting the query as another process to the queue and after which the process continues with other actions, the query including an organization scheme formed from a customizable, tag-based language that contains data and describes data.
48. The computer-readable medium of Claim 47, wherein the portion of the expression that represents the query includes a head and a body, the head being delimited by first and second query head delimiters, the body being delimited by first and second query body delimiters.
49. The computer-readable medium of Claim 48, wherein contained between the first and second query head delimiters is zero or more query terms.
50. The computer-readable medium of Claim 48, wherein contained between the first and second query body delimiters is zero or more constraint terms.
51. The computer-readable medium of Claim 50, wherein each constraint terms is a binding that defines a relation between one query term and another query term.
52. The computer-readable medium of Claim 51, wherein query terms include a literal.
53. The computer-readable medium of Claim 51, wherein query terms include a complementary literal.
54. The computer-readable medium of Claim 51, wherein query terms include a discarder.
55. The computer-readable medium of Claim 51, wherein query terms include a name of a variable.
56. The computer-readable medium of Claim 51, wherein query terms include a vailable.
57. The computer-readable medium of Claim 51, wherein query terms include an inversion of a query term.
58. The computer-readable medium of Claim 51, wherein query terms include a tuple of query terms.
59. The computer-readable medium of Claim 51, wherein query teπns include a complementary tuple of query terms.
60. The computer-readable medium of Claim 51 , wherein query terms include a second query that has zero or more variables in the head and a third and a fourth query separated by a comma in the body.
61. The computer-readable medium of Claim 60, wherein query terms include a left injector that takes a variable as an argument.
62. The computer-readable medium of Claim 61, wherein query terms include a right injector that takes a variable as an argument.
63. The computer-readable medium of Claim 61, wherein query terms include a fifth query that has zero or more variables in the head and a sixth query in the body.
64. The computer-readable medium of Claim 63, wherein query terms include a read operator that operates on a query term.
65. The computer-readable medium of Claim 63, wherein query terms include a copy operator that operates on query terms.
66. The computer-readable medium of Claim 47, wherein the portion of the expression that represents the process includes an inactivity operator, the inactivity operator allowing the inactivity of the process to be expressed.
67. The computer-readable medium of Claim 47, wherein the portion of the expression that represents the process includes a summation operator that sums a set of processes, the summation operator allowing the choices that the process can choose from the set of processes to proceed to be expressed.
68. The computer-readable medium of Claim 47, wherein the portion of the expression that represents the process includes a new operator, the new operator allowing the creation of a name that is bound to the process to be expressed.
69. The computer-readable medium of Claim 47, wherein the portion of the expression that represents the process includes a parallel operator, the parallel operator allowing two processes executing in parallel to be expressed.
70. The computer-readable medium of Claim 47, wherein the portion of the expression that represents the process includes a replication operator, the replication operator allowing the infinite behavior of the process to be expressed.
71. The computer-readable medium of Claim 47, wherein the portion of the expression that represents the process includes a second queue, a second set of queue delimiters, and a process.
72. The computer-readable medium of Claim 4.7, wherein the portion of the expression that represents the process includes a lifted query.
73. A computer-executable method for executing a set of equational laws governing structural equivalence of expressions written in a process-based language, the method comprising: parsing a first expression, the first expression describing that a query is being executed in parallel with a process, the query having a head and a body, the head being empty and the body containing a first name being bound to a second name; and translating the first expression as structurally equivalent to a second expression, the second expression describing that the query is executed in parallel with the process if the query is in canonical form, each occurrence of the first name in the process being replaceable with the second name.
74. The method of Claim 73, wherein the query is in canonical form if and only if all of the constraints in the body of the query are irreducible and the query is not a failure.
75. The method of Claim 74, wherein a constraint is irreducible in the query if and only if there exists a second query such that the constraint is an element of the second query when the query is reduced to the second query.
76. The method of Claim 74, wherein the query is a failure if and only if the query is reducible to a second query and the second query contains a failure.
77. The method of Claim 76, wherein a constraint is a failure if the constraint is defined as a first literal being bound to a second literal and if the first literal is not a complement of the second literal.
78. A computer-readable medium having computer-executable instructions for performing a method that executes a set of equational laws governing structural equivalence of expressions written in a process-based language, the method comprising: parsing a first expression, the first expression describing that a query is being executed in parallel with a process, the query having a head and a body, the head being empty and the body containing a first name being bound to a second name; and translating the first expression as structurally equivalent to a second expression, the second expression describing that the query is executed in parallel with the process if the query is in canonical form, each occurrence of the first name in the process being replaceable with the second name.
79. The computer-readable medium of Claim 78, wherein the query is in canonical form if and only if all of the constraints in the body of the query are irreducible and the query is not a failure.
80. The computer-readable medium of Claim 79, wherein a constraint is irreducible in the query if and only if there exists a second query such that the constraint is an element of the second query when the query is reduced to the second query.
81. The computer-readable medium of Claim 79, wherein the query is a failure if and only if the query is reducible to a second query and the second query contains a failure.
82. The computer-readable medium of Claim 81, wherein a constraint is a failure if the constraint is defined as a first literal being bound to a second literal and if the first literal is not a complement of the second literal.
83. A computer-executable method for executing sets of operational semantics rules governing the meanings of expressions written in a process-based language, the method comprising: parsing a first expression, the first expression describing that a process is a choice of two processes, the first process of the two processes expressing that a first query is submitted to a queue and after which the first process continues with a first set of actions, the second process of the two processes expressing that a second query is submitted to the queue and after which the second process continues with a second set of actions; and reducing the first expression to a second expression, the second expression describing that a third query is submitted to the queue after which the first process runs in parallel with the second process if the third query is in canonical form.
84. The method of Claim 83, wherein the third query is a reduction of a binding of two terms, the first term of two terms including the application of a first permutation function to the first query, the second term including the application of a second permutation to the second query.
85. The method of Claim 83, wherein the third query is in canonical form if and only if all of the constraints in the body of the third query are irreducible and the third query is not a failure.
86. The method of Claim 85, wherein a constraint is irreducible in the third query if and only if there exists a fourth query such that the constraint is an element of the fourth query when the third query is reduced to the fourth query.
87. The method of Claim 85, wherein the third query is a failure if and only if the third query is reducible to a fourth query and the fourth query contains a failure.
88. The method of Claim 87, wherein a constraint is a failure if the constraint is defined as a first literal being bound to a second literal and if the first literal is not a complement of the second literal.
89. A computer-readable medium having computer-executable instructions for performing a method for executing sets of operational semantics rules governing the meanings of expressions written in a process-based language, the method comprising: parsing a first expression, the first expression describing that a process is a choice of two processes, the first process of the two processes expressing that a first query is submitted to a queue and after which the first process continues with a first set of actions, the second process of the two processes expressing that a second query is submitted to the queue and after which the second process continues with a second set of actions; and reducing the first expression to a second expression, the second expression describing that a third query is submitted to the queue after which the first process runs in parallel with the second process if the third query is in canonical form.
90. The computer-readable medium of Claim 89, wherein the third query is a reduction of a binding of two terms, the first term of two terms including the application of a first permutation function to the first query, the second term including the application of a second permutation to the second query.
91. The computer-readable medium of Claim 89, wherein the third query is in canonical form if and only if all of the constraints in the body of the third query are irreducible and the third query is not a failure.
92. The computer-readable medium of Claim 91, wherein a constraint is irreducible in the third query if and only if there exists a fourth query such that the constraint is an element of the fourth query when the third query is reduced to the fourth query.
93. The computer-readable medium of Claim 91, wherein the third query is a failure if and only if the third query is reducible to a fourth query and the fourth query contains a failure.
94. The computer-readable medium of Claim 93, wherein a constraint is a failure if the constraint is defined as a first literal being bound to a second literal and if the first literal is not a complement of the second literal.
95. A computer-executable method for executing sets of operational semantics rules governing the meanings of expressions written in a process-based language, the method comprising: parsing a first expression, the first expression describing a first process whose first action is submitting a query to a queue and after which the first process continues with a second process; and reducing the first expression to a second expression, the second expression describing that a lifted query runs in parallel with the second process if the first query is in canonical form.
96. The method of Claim 95, wherein the first query is structurally equivalent to another query whose head is empty and whose body is a list of constraints.
97. The method of Claim 96, wherein each constraint in the list of constraints is a binding between two names.
98. The method of Claim 95, wherein the first query is in canonical form if and only if all of the constraints in the body of the first query are irreducible and the first query is not a failure.
99. The method of Claim 98, wherein a constraint is irreducible in the first query if and only if there exists a second query such that the constraint is an element of the second query when the first query is reduced to the second query.
100. The method of Claim 98, wherein the first query is a failure if and only if the first query is reducible to a second query and the second query contains a failure.
101. The method of Claim 100, wherein a constraint is a failure if the constraint is defined as a first literal being bound to a second literal and if the first literal is not a complement of the second literal.
102. A computer-readable medium having computer-executable instructions for performing a method that execute sets of operational semantics rules governing the meanings of expressions written in a process-based language, the method comprising: parsing a first expression, the first expression describing a first process whose first action is submitting a query to a queue and after which the first process continues with a second process; and reducing the first expression to a second expression, the second expression describing that a lifted query runs in parallel with the second process if the first query is in canonical form.
103. The computer-readable medium of Claim 102, wherein the first query is structurally equivalent to another query whose head is empty and whose body is a list of constraints.
104. The method of Claim 103 , wherein each constraint in the list of constraints is a binding between two names.
105. The method of Claim 102, wherein the first query is in canonical form if and only if all of the constraints in the body of the first query are irreducible and the first query is not a failure.
106. The method of Claim 105, wherein a constraint is irreducible in the first query if and only if there exists a second query such that the constraint is an element of the second query when the first query is reduced to the second query.
107. The method of Claim 105, wherein the first query is a failure if and only if the first query is reducible to a second query and the second query contains a failure.
108. The method of Claim 107, wherein a constraint is a failure if the constraint is defined as a first literal being bound to a second literal and if the first literal is not a complement of the second literal.
PCT/US2003/014440 2002-05-10 2003-05-09 Cooperation of concurrent, distributed networks of resources WO2003096209A1 (en)

Priority Applications (4)

Application Number Priority Date Filing Date Title
EP03731128A EP1504362A4 (en) 2002-05-10 2003-05-09 Cooperation of concurrent, distributed networks of resources
JP2004504130A JP4276168B2 (en) 2002-05-10 2003-05-09 Parallel and distributed network coordination of resources
KR1020047018145A KR101187486B1 (en) 2002-05-10 2003-05-09 Cooperation of concurrent, distributed networks of resources
AU2003241394A AU2003241394A1 (en) 2002-05-10 2003-05-09 Cooperation of concurrent, distributed networks of resources

Applications Claiming Priority (10)

Application Number Priority Date Filing Date Title
US37986402P 2002-05-10 2002-05-10
US60/379,864 2002-05-10
US10/303,407 2002-11-22
US10/303,445 2002-11-22
US10/303,343 US7216335B2 (en) 2002-05-10 2002-11-22 Operational semantics rules for governing evolution of processes and queries as processes
US10/303,445 US7055142B2 (en) 2002-05-10 2002-11-22 Permutation nuances of the integration of processes and queries as processes at queues
US10/303,379 2002-11-22
US10/303,343 2002-11-22
US10/303,407 US20030212761A1 (en) 2002-05-10 2002-11-22 Process kernel
US10/303,379 US7117487B2 (en) 2002-05-10 2002-11-22 Structural equivalence of expressions containing processes and queries

Publications (1)

Publication Number Publication Date
WO2003096209A1 true WO2003096209A1 (en) 2003-11-20

Family

ID=29424849

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US2003/014440 WO2003096209A1 (en) 2002-05-10 2003-05-09 Cooperation of concurrent, distributed networks of resources

Country Status (6)

Country Link
EP (1) EP1504362A4 (en)
JP (1) JP4276168B2 (en)
KR (1) KR101187486B1 (en)
CN (1) CN100342367C (en)
AU (1) AU2003241394A1 (en)
WO (1) WO2003096209A1 (en)

Cited By (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1569099A2 (en) 2004-02-12 2005-08-31 Microsoft Corporation Process language for microprocessors with finite resources
JP2006155600A (en) * 2004-10-28 2006-06-15 Microsoft Corp Message-passing processor
CN1767541B (en) * 2004-10-05 2012-03-21 索尼欧洲有限公司 Self-organisation approach to semantic interoperability in peer-to-peer information exchange
CN101276371B (en) * 2008-04-18 2012-12-05 浙江大学 Asynchronous interactive data digging system and method based on operating stream
US9413817B2 (en) 2001-03-14 2016-08-09 Microsoft Technology Licensing, Llc Executing dynamically assigned functions while providing services
US9460421B2 (en) 2001-03-14 2016-10-04 Microsoft Technology Licensing, Llc Distributing notifications to multiple recipients via a broadcast list
US9886309B2 (en) 2002-06-28 2018-02-06 Microsoft Technology Licensing, Llc Identity-based distributed computing for device resources

Families Citing this family (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9600250B2 (en) 2010-10-08 2017-03-21 Microsoft Technology Licensing, Llc Declarative programming model with a native programming language
US9600255B2 (en) 2010-10-08 2017-03-21 Microsoft Technology Licensing, Llc Dynamic data and compute resource elasticity
US9658890B2 (en) * 2010-10-08 2017-05-23 Microsoft Technology Licensing, Llc Runtime agnostic representation of user code for execution with selected execution runtime
US9760348B2 (en) 2010-11-29 2017-09-12 Microsoft Technology Licensing, Llc Verification of a dataflow representation of a program through static type-checking

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5428792A (en) * 1991-12-12 1995-06-27 International Business Machines Corporation System for producing language neutral objects and generating an interface between the objects and multiple computer languages
US6144999A (en) * 1998-05-29 2000-11-07 Sun Microsystems, Incorporated Method and apparatus for file system disaster recovery
US6163856A (en) * 1998-05-29 2000-12-19 Sun Microsystems, Inc. Method and apparatus for file system disaster recovery

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
SE515179C2 (en) * 1994-10-24 2001-06-25 Ericsson Telefon Ab L M Ways of internal communication in telecommunication systems
DE10000960C1 (en) * 2000-01-12 2001-12-20 Infineon Technologies Ag Data processing device

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5428792A (en) * 1991-12-12 1995-06-27 International Business Machines Corporation System for producing language neutral objects and generating an interface between the objects and multiple computer languages
US6144999A (en) * 1998-05-29 2000-11-07 Sun Microsystems, Incorporated Method and apparatus for file system disaster recovery
US6163856A (en) * 1998-05-29 2000-12-19 Sun Microsystems, Inc. Method and apparatus for file system disaster recovery

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
EMMERICH ET AL.: "Implementing incremental code migration with XML", PROCEEDINGS OF THE 2000 INTERNATIONAL CONFERENCE ON SOFTWARE ENGINEERING. ICSE 2000. LIMERICK, IRELAND, JUNE 4-11, 2000, INTERNATIONAL CONFERENCE ON SOFTWARE ENGINEERING, NEW YORK, NY : IEEE, US, pages 397 - 406, XP000975534 *
RASCHE ET AL.: "Configurable services for mobile users", pages 1 - 8, XP002968352 *
See also references of EP1504362A4 *

Cited By (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9413817B2 (en) 2001-03-14 2016-08-09 Microsoft Technology Licensing, Llc Executing dynamically assigned functions while providing services
US9460421B2 (en) 2001-03-14 2016-10-04 Microsoft Technology Licensing, Llc Distributing notifications to multiple recipients via a broadcast list
US9886309B2 (en) 2002-06-28 2018-02-06 Microsoft Technology Licensing, Llc Identity-based distributed computing for device resources
EP1569099A2 (en) 2004-02-12 2005-08-31 Microsoft Corporation Process language for microprocessors with finite resources
US8156472B2 (en) 2004-02-12 2012-04-10 Microsoft Corporation Process language for microprocessors with finite resources
CN1767541B (en) * 2004-10-05 2012-03-21 索尼欧洲有限公司 Self-organisation approach to semantic interoperability in peer-to-peer information exchange
JP2006155600A (en) * 2004-10-28 2006-06-15 Microsoft Corp Message-passing processor
CN101276371B (en) * 2008-04-18 2012-12-05 浙江大学 Asynchronous interactive data digging system and method based on operating stream

Also Published As

Publication number Publication date
KR20050003430A (en) 2005-01-10
JP2005525640A (en) 2005-08-25
KR101187486B1 (en) 2012-11-15
AU2003241394A1 (en) 2003-11-11
CN1653439A (en) 2005-08-10
EP1504362A1 (en) 2005-02-09
CN100342367C (en) 2007-10-10
JP4276168B2 (en) 2009-06-10
EP1504362A4 (en) 2007-10-31

Similar Documents

Publication Publication Date Title
US7055142B2 (en) Permutation nuances of the integration of processes and queries as processes at queues
US7216335B2 (en) Operational semantics rules for governing evolution of processes and queries as processes
US7117487B2 (en) Structural equivalence of expressions containing processes and queries
US7627541B2 (en) Transformation of modular finite state transducers
US7624075B2 (en) Transformation of modular finite state transducers
Clarke et al. Modeling spatial and temporal variability with the HATS abstract behavioral modeling language
Liu et al. From clarity to efficiency for distributed algorithms
Grundgeiger Programming Visual Basic. NET
Bloom et al. Thorn: robust, concurrent, extensible scripting on the JVM
WO2003096209A1 (en) Cooperation of concurrent, distributed networks of resources
Albahari et al. C# Essentials: Programming the. NET Framework
US20030212761A1 (en) Process kernel
Rossberg Typed open programming: a higher-order, typed approach to dynamic modularity and distribution
Vinter et al. PyCSP revisited
Petricek Context-aware programming languages
Warth Experimenting with programming languages
Hilyard et al. C# 6.0 Cookbook: Solutions for C# Developers
Alberda et al. Using formal methods to cultivate trust in smart card operating systems
Dongilli et al. A Multi-Agent System for Querying Heterogeneous Data Sources with Ontologies.
Rossberg Typed open programming
Tolksdorf et al. The SPACETUB models and framework
Müller Introduction to Object-Oriented Programming Using C++
Hall CONTEXT-AWARE PROGRAMMING LANGUAGES
Kozlenkov et al. Version 2.0 User’s Guide
Gopal et al. Concert/C: A Language for Distributed Programming

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): AE AG AL AM AT AU AZ BA BB BG BR BY BZ CA CH CN CO CR CU CZ DE DK DM DZ EC EE ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MA MD MG MK MN MW MX MZ NO NZ OM PH PL PT RO RU SC SD SE SG SK SL TJ TM TN TR TT TZ UA UG UZ VC VN YU ZA ZM ZW

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): GH GM KE LS MW MZ SD SL SZ TZ UG ZM ZW AM AZ BY KG KZ MD RU TJ TM AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HU IE IT LU MC NL PT RO SE SI SK TR BF BJ CF CG CI CM GA GN GQ GW ML MR NE SN TD TG

121 Ep: the epo has been informed by wipo that ep was designated in this application
DFPE Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101)
WWE Wipo information: entry into national phase

Ref document number: 2003731128

Country of ref document: EP

Ref document number: 3293/DELNP/2004

Country of ref document: IN

WWE Wipo information: entry into national phase

Ref document number: 20038103729

Country of ref document: CN

WWE Wipo information: entry into national phase

Ref document number: 2004504130

Country of ref document: JP

Ref document number: 1020047018145

Country of ref document: KR

WWP Wipo information: published in national office

Ref document number: 1020047018145

Country of ref document: KR

WWP Wipo information: published in national office

Ref document number: 2003731128

Country of ref document: EP