-- Copyright (C) 1986 by Xerox Corporation. All rights reserved. -- Stub file was translated on June 6, 1986 11:21:32 am PDT by Lupine of February 22, 1986 5:15:54 pm PST -- Source interface ThSmarts came from file ThSmarts.bcd, which was created on June 6, 1986 11:21:26 am PDT with version stamp 252#144#36726745534 from source of May 30, 1986 11:40:35 am PDT. -- The RPC stub modules for ThSmarts are: -- ThSmartsRpcControl.mesa; -- ThSmartsRpcClientImpl.mesa; -- ThSmartsRpcBinderImpl.mesa; -- ThSmartsRpcServerImpl.mesa. -- The parameters for this translation are: -- Target language = Cedar -- Default parameter passing = VALUE -- Deallocate server heap arguments = TRUE -- Inline RpcServerImpl dispatcher stubs = TRUE -- Declare signals = TRUE -- Warn about short POINTER ("MDS") allocations = TRUE -- Maximum number of dynamic heap NEWs = 50, MDS NEWs = 50 -- Acceptable parameter protocols = VersionRange[1..1]. DIRECTORY Thrush, ThSmarts, RPC USING [defaultInterfaceName, EncryptionKey, InterfaceName, Principal, standardZones, VersionRange, Zones], RPCLupine USING [ImportHandle], RPCLupineExtras USING [RPCHost, noHost]; ThSmartsRpcControl: DEFINITIONS SHARES ThSmarts = BEGIN OPEN ThSmarts, RpcPublic: RPC, RpcPrivate: RPCLupine, RpcPrivateExtras: RPCLupineExtras; -- 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 [ interface: InterfaceRecord, interfaceName: InterfaceName _ defaultInterfaceName, parameterStorage: Zones _ standardZones, hostHint: RpcPrivateExtras.RPCHost_RpcPrivateExtras.noHost]; 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, hostHint: RpcPrivateExtras.RPCHost_RpcPrivateExtras.noHost] 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 [ myInterface: RpcPrivate.ImportHandle _ NIL, paramZones: RpcPublic.Zones _ RpcPublic.standardZones, clientStubProgress: SAFE PROCEDURE [interface: InterfaceRecord, shh: Thrush.SHHH, convEvent: Thrush.ConvEvent], clientStubReportAction: SAFE PROCEDURE [interface: InterfaceRecord, shh: Thrush.SHHH, report: Thrush.ActionReport], clientStubSubstitution: SAFE PROCEDURE [interface: InterfaceRecord, shh: Thrush.SHHH, convEvent: Thrush.ConvEvent, oldPartyID: Thrush.PartyID, newPartyID: Thrush.PartyID], bound: BOOL _ FALSE]; Progress: SAFE PROCEDURE [interface: InterfaceRecord, shh: Thrush.SHHH, convEvent: Thrush.ConvEvent] = CHECKED INLINE { interface.clientStubProgress[interface, shh, convEvent]}; ReportAction: SAFE PROCEDURE [interface: InterfaceRecord, shh: Thrush.SHHH, report: Thrush.ActionReport] = CHECKED INLINE { interface.clientStubReportAction[interface, shh, report]}; Substitution: SAFE PROCEDURE [interface: InterfaceRecord, shh: Thrush.SHHH, convEvent: Thrush.ConvEvent, oldPartyID: Thrush.PartyID, newPartyID: Thrush.PartyID] = CHECKED INLINE { interface.clientStubSubstitution[interface, shh, convEvent, oldPartyID, newPartyID]}; -- Definitions for the stubs. LupineProtocolVersion: PUBLIC VersionRange = [first: 1, last: 1]; InterMdsCallsOnly: PUBLIC BOOLEAN = FALSE; ProcedureIndex: PRIVATE TYPE = MACHINE DEPENDENT { LupineUnusedIndex (0), LupineLastIndex (3), Progress (4), ReportAction (5), Substitution (6)}; SignalIndex: PRIVATE TYPE = MACHINE DEPENDENT { LupineUnusedIndex (0), LupineLastIndex (3)}; END. -- ThSmartsRpcControl.