-- Stub file TalkerOpsRpcControl.mesa was translated on 26-Mar-83 14:00:06 -- PST by Lupine of 18-Feb-83 11:25:52 PST. -- Source interface TalkerOps came from file TalkerOps.bcd, which was -- created on 26-Mar-83 13:59:42 PST with version stamp 361#5#13447032575 -- from source of 26-Mar-83 13:59:08 PST. -- The RPC stub modules for TalkerOps are: -- TalkerOpsRpcControl.mesa; -- TalkerOpsRpcClientImpl.mesa; -- TalkerOpsRpcBinderImpl.mesa; -- TalkerOpsRpcServerImpl.mesa. -- The parameters for this translation are: -- Target language = Cedar; -- Default parameter passing = VALUE; -- Deallocate server heap arguments = TRUE; -- Inline RpcServerImpl dispatcher stubs = TRUE; -- Maximum number of dynamic heap NEWs = 50, MDS NEWs = 50; -- Acceptable parameter protocols = VersionRange[1,1]. DIRECTORY Rope, TalkerOps, RPC USING [defaultInterfaceName, EncryptionKey, InterfaceName, Principal, standardZones, VersionRange, Zones]; TalkerOpsRpcControl: DEFINITIONS SHARES TalkerOps = BEGIN OPEN TalkerOps, RpcPublic: RPC; -- Public RPC types and constants. InterfaceName: TYPE = RpcPublic.InterfaceName; VersionRange: TYPE = RpcPublic.VersionRange; Principal: TYPE = RpcPublic.Principal; EncryptionKey: TYPE = RpcPublic.EncryptionKey; Zones: TYPE = RpcPublic.Zones; defaultInterfaceName: InterfaceName = RpcPublic.defaultInterfaceName; standardZones: Zones = RpcPublic.standardZones; -- Standard remote binding routines. ImportInterface: SAFE PROCEDURE [ interfaceName: InterfaceName _ defaultInterfaceName, parameterStorage: Zones _ standardZones ]; UnimportInterface: SAFE PROCEDURE; ExportInterface: SAFE PROCEDURE [ interfaceName: InterfaceName _ defaultInterfaceName, user: Principal, password: EncryptionKey, parameterStorage: Zones _ standardZones ]; UnexportInterface: SAFE PROCEDURE; -- Dynamic instantiation and binding. ImportNewInterface: SAFE PROCEDURE [ interfaceName: InterfaceName _ defaultInterfaceName, parameterStorage: Zones _ standardZones ] RETURNS [interfaceRecord: InterfaceRecord]; -- NewInterfaceRecord is necessary for Cedar clients who want to -- manufacture a private interface instance, because -- RpcBindingImpl has finalization on type InterfaceRecord. NewInterfaceRecord: SAFE PROCEDURE RETURNS [interfaceRecord: InterfaceRecord]; InterfaceRecord: TYPE = REF InterfaceRecordObject; InterfaceRecordObject: TYPE = RECORD [ PutMyLine: PROCEDURE [myName: Rope.ROPE, line: Rope.ROPE], JoinWith: PROCEDURE [myName: Rope.ROPE, newConversant: Rope.ROPE], DealMeOut: PROCEDURE [myName: Rope.ROPE], Cancel: PROCEDURE [conversant: Rope.ROPE] RETURNS [Rope.ROPE], lupineDetails: PRIVATE REF LupineDetailsObject_NIL]; LupineDetailsObject: PRIVATE TYPE; -- Definitions for the stubs. LupineProtocolVersion: PUBLIC VersionRange = [first: 1, last: 1]; InterMdsCallsOnly: PUBLIC BOOLEAN = FALSE; ProcedureIndex: PRIVATE TYPE = MACHINE DEPENDENT { LupineUnusedIndex (0), LupineLastIndex (3), PutMyLine (4), JoinWith (5), DealMeOut (6), Cancel (7)}; SignalIndex: PRIVATE TYPE = MACHINE DEPENDENT { LupineUnusedIndex (0), LupineLastIndex (3)}; END. -- TalkerOpsRpcControl.