-- Copyright (C) 1986 by Xerox Corporation. All rights reserved.
-- Stub file was translated on October 24, 1986 6:09:43 pm PDT by Lupine of February 22, 1986 5:15:54 pm PST
-- Source interface SynthesizerServer came from file SynthesizerServer.bcd, which was created on October 24, 1986 6:01:39 pm PDT with version stamp 136#30#5470571013 from source of October 24, 1986 5:53:45 pm PDT.
-- The RPC stub modules for SynthesizerServer are:
-- SynthesizerServerRpcControl.mesa;
-- SynthesizerServerRpcClientImpl.mesa;
-- SynthesizerServerRpcBinderImpl.mesa;
-- SynthesizerServerRpcServerImpl.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].
-- NOTE: Discard this module unless you use dynamic client binding.
DIRECTORY
SynthesizerServer,
SynthesizerServerRpcControl USING [ImportInterface, InterfaceRecord,
InterfaceRecordObject],
RPC USING [InterfaceName, Zones],
RPCLupineExtras --USING SOME OF [ImportInterfaceWithHost, noHost,
-- RPCHost]--;
SynthesizerServerRpcBinderImpl: MONITOR
IMPORTS RpcControl: SynthesizerServerRpcControl, RpcPrivateExtras:
RPCLupineExtras
EXPORTS SynthesizerServerRpcControl
SHARES SynthesizerServer, SynthesizerServerRpcControl
= BEGIN OPEN RpcPublic: RPC;
-- Dynamic instantiation and binding routines.
ImportNewInterface: PUBLIC SAFE PROCEDURE [
interfaceName: RpcPublic.InterfaceName,
parameterStorage: RpcPublic.Zones,
hostHint: RpcPrivateExtras.RPCHost←RpcPrivateExtras.noHost
]
RETURNS [interfaceRecord: RpcControl.InterfaceRecord] =
TRUSTED BEGIN
interfaceRecord ← NewInterfaceRecord[];
RpcControl.ImportInterface[
interface: interfaceRecord,
interfaceName: interfaceName,
hostHint: hostHint,
parameterStorage: parameterStorage];
END;
-- Utility routines for interface instantiation and caching.
NewInterfaceRecord: PUBLIC SAFE PROCEDURE
RETURNS [interfaceRecord: RpcControl.InterfaceRecord] =
TRUSTED BEGIN
interfaceRecord ← NEW[RpcControl.InterfaceRecordObject];
END;
-- No module initialization.
END. -- SynthesizerServerRpcBinderImpl.