-- Stub file PDTransferRpcControl.mesa was translated on 17-Nov-83
    -- 16:29:57 PST by Lupine of 18-Feb-83 11:25:52 PST.

-- Source interface PDTransfer came from file PDTransfer.bcd, which
    -- was created on 17-Nov-83 16:29:48 PST with version stamp 52#64#3245523734
    -- from source of 16-Nov-83 16:06:10 PST.

-- The RPC stub modules for PDTransfer are:
    -- PDTransferRpcControl.mesa;
    -- PDTransferRpcClientImpl.mesa;
    -- PDTransferRpcBinderImpl.mesa;
    -- PDTransferRpcServerImpl.mesa.

-- The parameters for this translation are:
    -- Target language = Mesa;
    -- Default parameter passing = VALUE;
    -- Deallocate server heap arguments = TRUE;
    -- Inline RpcServerImpl dispatcher stubs = TRUE;
    -- Maximum number of dynamic heap NEWs = 50, MDS NEWs = 50;
    -- Acceptable parameter protocols = VersionRange[1,1].


DIRECTORY
  PDInterpBasic,
  PDTransfer,
  MesaRPC USING [defaultInterfaceName, EncryptionKey, InterfaceName,
      Principal, standardZones, VersionRange, Zones];


PDTransferRpcControl: DEFINITIONS
  SHARES  PDTransfer
  = BEGIN OPEN PDTransfer, RpcPublic: MesaRPC;


-- 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: PROCEDURE [
        interfaceName: InterfaceName ← defaultInterfaceName,
        parameterStorage: Zones ← standardZones ];

  UnimportInterface: PROCEDURE;

  ExportInterface: PROCEDURE [
        interfaceName: InterfaceName ← defaultInterfaceName,
        user: Principal,
        password: EncryptionKey,
        parameterStorage: Zones ← standardZones ];

  UnexportInterface: PROCEDURE;


-- Dynamic instantiation and binding.

  ImportNewInterface: PROCEDURE [
        interfaceName: InterfaceName ← defaultInterfaceName,
        parameterStorage: Zones ← standardZones ]
    RETURNS [interfaceRecord: InterfaceRecord];

  UnimportNewInterface: PROCEDURE [interfaceRecord: InterfaceRecord];

  -- NewInterfaceRecord is necessary for Cedar clients who want to
  -- manufacture a private interface instance, because
  -- RpcBindingImpl has finalization on type InterfaceRecord.
  NewInterfaceRecord: PROCEDURE
    RETURNS [interfaceRecord: InterfaceRecord];

  InterfaceRecord: TYPE = LONG POINTER TO InterfaceRecordObject;

  InterfaceRecordObject: TYPE = RECORD [
      GetBlock: PROCEDURE [sourceIndex: INT, words: INT] RETURNS [DataBlock],
      ReportStatus: PROCEDURE [status: PDInterpBasic.Status, queueSize:
	  NAT, queuePosition: NAT, page: INT, pass: INT, sourceIndex: INT]
	  RETURNS [abort: BOOLEAN],
      lupineDetails: PRIVATE LONG POINTER TO 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),
      GetBlock (4), ReportStatus (5)};

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


    END.  -- PDTransferRpcControl.