Situation

I'd like to make an RPC interface easier to use. This is a custom interface so there is no readily available wrapper.

I have to write several wrappers around functions which often have many arguments.

Possible solutions

Solution 1 - Using a class for each function:

TDoSomethingFunction = class
public
  property Arg1: Integer;
  property Arg2: string;
  property Arg3: Boolean;
  procedure Run;
end;

The caller has to create an object to call the function:

var
  DoSomething: TDoSomethingFunction;
begin
  DoSomething := TDoSomethingFunction.Create;
  try
    DoSomething.Arg1 := 0;
    ...
    DoSomething.Run;
  finally
  free;
end;

Method 2 - Using a wrapper method for each function:

procedure TRPCInterface.DoSomething(AArg1: Integer; AArg2: string; AArg3: Boolean);

The caller can simply call it:

TRPCInterface.DoSomething(0, ...);

Pro and contra

Method 1 - Class for each function

Contra

  • More code required.
  • An object must be created which takes up memory.

Pro

  • Reading the code is easier, you don't have to look at the declaration to see what the arguments are.

Method 2 - Wrapper method

Contra

  • You can't tell which arguments are used by just looking at the code.

Pro

  • Much less code to write.
  • The wrapper is thinner (no object has to be created).

Which method should I use?

link|improve this question

1  
Command Objects (see Command Pattern) also have the advantage that they can be moved around, (de)serialized, used for undo buffers, and more – mjn Feb 10 at 14:02
@mjn I didn't know that this had something to do with the Command Pattern, so thanks for the pointer. – Jens Mühlenhoff Feb 13 at 9:06
feedback

2 Answers

up vote 2 down vote accepted

There is an intermediate solution that is calling the wrapper methods passing an object argument.

TDoSomethingArgs = class
public
  property Arg1: Integer;
  property Arg2: string;
  property Arg3: Boolean;
end;

procedure TRPCInterface.DoSomething(Args: TDoSomethingArgs);

one advantage of this method is that you still use methods, but still it's more readable. One advantage of using classes (you can also use records) in arguments is that you can later change the arguments (add more, change behavior) and if you choose it well, it does not break backward compatibility - in summary you can change method signature without breaking code.

link|improve this answer
That is kind of how the WSDL importer works IIRC. – Jens Mühlenhoff Feb 13 at 9:07
feedback

You haven't specified Delphi version, but if yours supports generics, I would go with:

type
  TArgList = class( TDictionary< String, Variant > );

type
  TBaseFunc = class
  private
    FArgs: TArgList;
  public
    function Run: Boolean; virtual; abstract;
  public
    property Args: TVarList read FArgs write FArgs;
  end;

type
  TSpecialFunc = class( TBaseFunc )
  public
    function Run: Boolean; override;
  end;

implementation

function TSpecialFunc.Run: Boolean;
begin
  // here's where you can access args as variants
end;

you can use:

ASpecialFunc.Args.AddOrSetValue('ArgumentName', 2012);

in this way you will have to write more code, but it's much more readable IMHO and easy to be picked up by other developers in the future.

NOTE: that I haven't tested this code, so chances are that it won't compile.

That's my two cents, I'm very curios as to what others come up with (:

link|improve this answer
It's D2007, but replacing the generic dicitionary with a static one would be a possibility. – Jens Mühlenhoff Feb 13 at 9:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.