-- Copyright (C) 1987 by Xerox Corporation.  All rights reserved.
-- Stub file  was translated on January 12, 1987 12:43:56 pm PST by Lupine of December 20, 1986 7:04:08 pm PST
-- Source interface RPCEcho came from file RPCEcho.bcd, which was created on January 12, 1987 12:43:47 pm PST with version stamp 14#365#264414407 from source of January 22, 1986 11:11:54 pm PST.

-- The RPC stub modules for RPCEcho are:
--   RPCEchoRpcControl.mesa;
--   RPCEchoRpcClientImpl.mesa;
--   RPCEchoRpcBinderImpl.mesa;
--   RPCEchoRpcServerImpl.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
  Rope,
  RPCEcho,
  RPC USING [defaultInterfaceName, EncryptionKey, InterfaceName, Principal,
      standardZones, VersionRange, Zones],
  RPCLupine USING [ImportHandle, noHost, RPCHost];


RPCEchoRpcControl: DEFINITIONS
  SHARES  RPCEcho
  = BEGIN OPEN RPCEcho, 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 [
        interfaceName: InterfaceName ← defaultInterfaceName,
        parameterStorage: Zones ← standardZones,
        hostHint: RpcPrivate.RPCHost←RpcPrivate.noHost];

  UnimportInterface: 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,
        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 [
      Error: ERROR,
      Simple: SAFE PROCEDURE,
      SloshTenWords: SAFE PROCEDURE [tenWords: TenWords] RETURNS [mumble:
          TenWords],
      SloshPage: SAFE PROCEDURE [page: Page] RETURNS [mumble: Page],
      SloshTenPages: SAFE PROCEDURE [pages: TenPages] RETURNS [mumble:
          TenPages],
      PushPage: SAFE PROCEDURE [page: Page],
      PullPage: SAFE PROCEDURE RETURNS [mumble: Page],
      DoAtom: SAFE PROCEDURE [atom: ATOM],
      DoRope: SAFE PROCEDURE [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),
      Simple (4), SloshTenWords (5), SloshPage (6), SloshTenPages (7),
      PushPage (8), PullPage (9), DoAtom (10), DoRope (11)};

  SignalIndex: PRIVATE TYPE = MACHINE DEPENDENT {
      LupineUnusedIndex (0), LupineLastIndex (3),
      Error (4)};


END.  -- RPCEchoRpcControl.