-- Copyright (C) 1985 by Xerox Corporation. All rights reserved.
-- Stub file was translated on May 15, 1985 1:02:21 pm PDT by Lupine of March 15, 1985 2:49:13 pm PST
-- Source interface ComputeServer came from file ComputeServer.bcd, which was created on May 15, 1985 1:01:00 pm PDT with version stamp 61#260#30520321217 from source of May 13, 1985 3:42:55 pm PDT.
-- The RPC stub modules for ComputeServer are:
-- ComputeServerRpcControl.mesa;
-- ComputeServerRpcClientImpl.mesa;
-- ComputeServerRpcBinderImpl.mesa;
-- ComputeServerRpcServerImpl.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
ComputeServerClient,
PupDefs,
Rope,
RPC,
ComputeServer,
RPCLupine USING [ImportHandle];
ComputeServerRpcControl: DEFINITIONS
SHARES ComputeServer
= BEGIN OPEN ComputeServer, RpcPublic: RPC, RpcPrivate: RPCLupine;
-- 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 ];
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 [
myInterface: RpcPrivate.ImportHandle ← NIL,
paramZones: RpcPublic.Zones ← RpcPublic.standardZones,
clientStubAskForService: SAFE PROCEDURE [interface: InterfaceRecord,
service: Rope.ROPE, version: RPC.ShortROPE, clientMachineName:
RPC.ShortROPE, streamPupAddress: PupDefs.PupAddress, needListener:
BOOL] RETURNS [found: AskResponce, serverPupAddress: PupDefs.PupAddress,
errMsg: Rope.ROPE],
clientStubDoService: SAFE PROCEDURE [interface: InterfaceRecord,
serverPupAddress: PupDefs.PupAddress, clientNetAddressRope: RPC.ShortROPE,
commandLine: Rope.ROPE, WorkingDirectory: Rope.ROPE, needRemoteInStream:
BOOL, needRemoteOutStream: BOOL] RETURNS [success: ComputeServerClient.RemoteSuccess,
msg: Rope.ROPE],
clientStubAskForAbort: SAFE PROCEDURE [interface: InterfaceRecord,
serverPupAddress: PupDefs.PupAddress],
bound: BOOL ← FALSE];
AskForService: SAFE PROCEDURE [interface: InterfaceRecord, service:
Rope.ROPE, version: RPC.ShortROPE, clientMachineName: RPC.ShortROPE,
streamPupAddress: PupDefs.PupAddress, needListener: BOOL] RETURNS
[found: AskResponce, serverPupAddress: PupDefs.PupAddress, errMsg:
Rope.ROPE] = CHECKED INLINE { RETURN interface.clientStubAskForService[interface,
service, version, clientMachineName, streamPupAddress, needListener]};
DoService: SAFE PROCEDURE [interface: InterfaceRecord, serverPupAddress:
PupDefs.PupAddress, clientNetAddressRope: RPC.ShortROPE, commandLine:
Rope.ROPE, WorkingDirectory: Rope.ROPE, needRemoteInStream: BOOL,
needRemoteOutStream: BOOL] RETURNS [success: ComputeServerClient.RemoteSuccess,
msg: Rope.ROPE] = CHECKED INLINE { RETURN interface.clientStubDoService[interface,
serverPupAddress, clientNetAddressRope, commandLine, WorkingDirectory,
needRemoteInStream, needRemoteOutStream]};
AskForAbort: SAFE PROCEDURE [interface: InterfaceRecord, serverPupAddress:
PupDefs.PupAddress] = CHECKED INLINE { interface.clientStubAskForAbort[interface,
serverPupAddress]};
-- Definitions for the stubs.
LupineProtocolVersion: PUBLIC VersionRange = [first: 1, last: 1];
InterMdsCallsOnly: PUBLIC BOOLEAN = FALSE;
ProcedureIndex: PRIVATE TYPE = MACHINE DEPENDENT {
LupineUnusedIndex (0), LupineLastIndex (3),
AskForService (4), DoService (5), AskForAbort (6)};
SignalIndex: PRIVATE TYPE = MACHINE DEPENDENT {
LupineUnusedIndex (0), LupineLastIndex (3)};
END. -- ComputeServerRpcControl.