-- Copyright (C) 1987 by Xerox Corporation. All rights reserved.
-- Stub file was translated on March 26, 1987 5:12:47 pm PST by Lupine of January 22, 1987 5:37:32 pm PST
-- Source interface OldAlpineVolume came from file OldAlpineVolume.bcd, which was created on March 26, 1987 5:12:40 pm PST with version stamp 61#261#35454457666 from source of January 6, 1987 2:17:02 pm PST.
-- The RPC stub modules for OldAlpineVolume are:
-- OldAlpineVolumeRpcControl.mesa;
-- OldAlpineVolumeRpcClientImpl.mesa;
-- OldAlpineVolumeRpcBinderImpl.mesa;
-- OldAlpineVolumeRpcServerImpl.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
OldAlpineEnvironment,
OldAlpineVolume,
RPC USING [defaultInterfaceName, EncryptionKey, InterfaceName, Principal,
standardZones, VersionRange, Zones],
RPCLupine USING [ImportHandle, noHost, RPCHost];
OldAlpineVolumeRpcControl: DEFINITIONS
SHARES OldAlpineVolume
= BEGIN OPEN OldAlpineVolume, 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,
hostHint: RpcPrivate.RPCHost←RpcPrivate.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: RpcPrivate.RPCHost←RpcPrivate.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,
clientStubGetNextGroup: PROCEDURE [interface: InterfaceRecord,
conversation: Conversation, transID: TransID, previousGroup:
VolumeGroupID, lock: LockOption] RETURNS [volumeGroupID: VolumeGroupID],
clientStubGetGroup: PROCEDURE [interface: InterfaceRecord, conversation:
Conversation, transID: TransID, volumeGroupID: VolumeGroupID,
lock: LockOption] RETURNS [volumes: LIST OF VolumeID],
clientStubGetEnclosingGroup: PROCEDURE [interface: InterfaceRecord,
conversation: Conversation, transID: TransID, volumeID: VolumeID,
lock: LockOption] RETURNS [volumeGroupID: VolumeGroupID],
AccessFailed: ERROR [missingAccess: OldAlpineEnvironment.NeededAccess],
Unknown: ERROR [what: OldAlpineEnvironment.UnknownType],
StaticallyInvalid: ERROR,
bound: BOOL ← FALSE];
GetNextGroup: PROCEDURE [interface: InterfaceRecord, conversation:
Conversation, transID: TransID, previousGroup: VolumeGroupID, lock:
LockOption] RETURNS [volumeGroupID: VolumeGroupID] = INLINE { RETURN
interface.clientStubGetNextGroup[interface, conversation, transID,
previousGroup, lock]};
GetGroup: PROCEDURE [interface: InterfaceRecord, conversation: Conversation,
transID: TransID, volumeGroupID: VolumeGroupID, lock: LockOption]
RETURNS [volumes: LIST OF VolumeID] = INLINE { RETURN interface.clientStubGetGroup[interface,
conversation, transID, volumeGroupID, lock]};
GetEnclosingGroup: PROCEDURE [interface: InterfaceRecord, conversation:
Conversation, transID: TransID, volumeID: VolumeID, lock: LockOption]
RETURNS [volumeGroupID: VolumeGroupID] = INLINE { RETURN interface.clientStubGetEnclosingGroup[interface,
conversation, transID, volumeID, lock]};
-- Definitions for the stubs.
LupineProtocolVersion: PUBLIC VersionRange = [first: 1, last: 1];
InterMdsCallsOnly: PUBLIC BOOLEAN = FALSE;
ProcedureIndex: PRIVATE TYPE = MACHINE DEPENDENT {
LupineUnusedIndex (0), LupineLastIndex (3),
GetNextGroup (4), GetGroup (5), GetEnclosingGroup (6)};
SignalIndex: PRIVATE TYPE = MACHINE DEPENDENT {
LupineUnusedIndex (0), LupineLastIndex (3),
AccessFailed (4), Unknown (5), StaticallyInvalid (6)};
END. -- OldAlpineVolumeRpcControl.