| 1 | unit ORNet;
 | 
|---|
| 2 | 
 | 
|---|
| 3 | {$DEFINE CCOWBROKER}
 | 
|---|
| 4 | 
 | 
|---|
| 5 | interface
 | 
|---|
| 6 | 
 | 
|---|
| 7 | uses SysUtils, Windows, Classes, Forms, Controls, ORFn, TRPCB, RPCConf1, Dialogs
 | 
|---|
| 8 | {$IFDEF CCOWBROKER}, CCOWRPCBroker {$ENDIF} ;  //, SharedRPCBroker;
 | 
|---|
| 9 | 
 | 
|---|
| 10 | 
 | 
|---|
| 11 | procedure SetBrokerServer(const AName: string; APort: Integer; WantDebug: Boolean);
 | 
|---|
| 12 | function AuthorizedOption(const OptionName: string): Boolean;
 | 
|---|
| 13 | function ConnectToServer(const OptionName: string): Boolean;
 | 
|---|
| 14 | function MRef(glvn: string): string;
 | 
|---|
| 15 | procedure CallV(const RPCName: string; const AParam: array of const);
 | 
|---|
| 16 | function sCallV(const RPCName: string; const AParam: array of const): string;
 | 
|---|
| 17 | procedure tCallV(ReturnData: TStrings; const RPCName: string; const AParam: array of const);
 | 
|---|
| 18 | function UpdateContext(NewContext: string): boolean;
 | 
|---|
| 19 | function IsBaseContext: boolean;
 | 
|---|
| 20 | procedure CallBrokerInContext;
 | 
|---|
| 21 | procedure CallBroker;
 | 
|---|
| 22 | function RetainedRPCCount: Integer;
 | 
|---|
| 23 | procedure SetRetainedRPCMax(Value: Integer);
 | 
|---|
| 24 | function GetRPCMax: integer;
 | 
|---|
| 25 | procedure LoadRPCData(Dest: TStrings; ID: Integer);
 | 
|---|
| 26 | function AccessRPCData(ID: Integer) : TStringList; //kt added  -- Caller DOESN'T own object
 | 
|---|
| 27 | function DottedIPStr: string;
 | 
|---|
| 28 | procedure CallRPCWhenIdle(CallProc: TORIdleCallProc; Msg: String);
 | 
|---|
| 29 | procedure EnsureBroker;
 | 
|---|
| 30 | procedure RPCCallsClear;  //kt added
 | 
|---|
| 31 | 
 | 
|---|
| 32 | (*
 | 
|---|
| 33 | function pCallV(const RPCName: string; const AParam: array of const): PChar;
 | 
|---|
| 34 | procedure wCallV(AControl: TControl; const RPCName: string; const AParam: array of const);
 | 
|---|
| 35 | procedure WrapWP(Buf: pChar);
 | 
|---|
| 36 | *)
 | 
|---|
| 37 | 
 | 
|---|
| 38 | var
 | 
|---|
| 39 | {$IFDEF CCOWBROKER}
 | 
|---|
| 40 |   RPCBrokerV: TCCOWRPCBroker;
 | 
|---|
| 41 | {$ELSE}
 | 
|---|
| 42 |   RPCBrokerV: TRPCBroker;
 | 
|---|
| 43 |   //RPCBrokerV: TSharedRPCBroker;
 | 
|---|
| 44 | {$ENDIF}
 | 
|---|
| 45 |   RPCLastCall: string;
 | 
|---|
| 46 | 
 | 
|---|
| 47 | implementation
 | 
|---|
| 48 | 
 | 
|---|
| 49 | uses
 | 
|---|
| 50 |   DateUtils, //kt
 | 
|---|
| 51 |   Winsock;
 | 
|---|
| 52 | 
 | 
|---|
| 53 | const
 | 
|---|
| 54 |   // *** these are constants from RPCBErr.pas, will broker document them????
 | 
|---|
| 55 |   XWB_M_REJECT =  20000 + 2;  // M error
 | 
|---|
| 56 |   XWB_BadSignOn = 20000 + 4;  // SignOn 'Error' (happens when cancel pressed)
 | 
|---|
| 57 | 
 | 
|---|
| 58 | var
 | 
|---|
| 59 |   uCallList: TList;
 | 
|---|
| 60 |   uMaxCalls: Integer;
 | 
|---|
| 61 |   uShowRPCs: Boolean;
 | 
|---|
| 62 |   uBaseContext: string = '';
 | 
|---|
| 63 |   uCurrentContext: string = '';
 | 
|---|
| 64 | 
 | 
|---|
| 65 | { private procedures and functions ---------------------------------------------------------- }
 | 
|---|
| 66 | 
 | 
|---|
| 67 | procedure EnsureBroker;
 | 
|---|
| 68 | { ensures that a broker object has been created - creates & initializes it if necessary }
 | 
|---|
| 69 | begin
 | 
|---|
| 70 |   if RPCBrokerV = nil then
 | 
|---|
| 71 |   begin
 | 
|---|
| 72 | {$IFDEF CCOWBROKER}
 | 
|---|
| 73 |     RPCBrokerV := TCCOWRPCBroker.Create(Application);
 | 
|---|
| 74 | {$ELSE}
 | 
|---|
| 75 |     RPCBrokerV := TRPCBroker.Create(Application);
 | 
|---|
| 76 |     //RPCBrokerV := TSharedRPCBroker.Create(Application);
 | 
|---|
| 77 | {$ENDIF}
 | 
|---|
| 78 |     with RPCBrokerV do
 | 
|---|
| 79 |     begin
 | 
|---|
| 80 |       KernelLogIn := True;
 | 
|---|
| 81 |       Login.Mode  := lmAppHandle;
 | 
|---|
| 82 |       ClearParameters := True;
 | 
|---|
| 83 |       ClearResults := True;
 | 
|---|
| 84 |       DebugMode := False;
 | 
|---|
| 85 |     end;
 | 
|---|
| 86 |   end;
 | 
|---|
| 87 | end;
 | 
|---|
| 88 | 
 | 
|---|
| 89 | procedure SetList(AStringList: TStrings; ParamIndex: Integer);
 | 
|---|
| 90 | { places TStrings into RPCBrokerV.Mult[n], where n is a 1-based (not 0-based) index }
 | 
|---|
| 91 | var
 | 
|---|
| 92 |   i: Integer;
 | 
|---|
| 93 | begin
 | 
|---|
| 94 |   with RPCBrokerV.Param[ParamIndex] do
 | 
|---|
| 95 |   begin
 | 
|---|
| 96 |     PType := list;
 | 
|---|
| 97 |     with AStringList do for i := 0 to Count - 1 do Mult[IntToStr(i+1)] := Strings[i];
 | 
|---|
| 98 |   end;
 | 
|---|
| 99 | end;
 | 
|---|
| 100 | 
 | 
|---|
| 101 | procedure SetParams(const RPCName: string; const AParam: array of const);
 | 
|---|
| 102 | { takes the params (array of const) passed to xCallV and sets them into RPCBrokerV.Param[i] }
 | 
|---|
| 103 | const
 | 
|---|
| 104 |   BoolChar: array[boolean] of char = ('0', '1');
 | 
|---|
| 105 | var
 | 
|---|
| 106 |   i: integer;
 | 
|---|
| 107 |   TmpExt: Extended;
 | 
|---|
| 108 | begin
 | 
|---|
| 109 |   RPCLastCall := RPCName + ' (SetParam begin)';
 | 
|---|
| 110 |   if Length(RPCName) = 0 then raise Exception.Create('No RPC Name');
 | 
|---|
| 111 |   EnsureBroker;
 | 
|---|
| 112 |   with RPCBrokerV do
 | 
|---|
| 113 |   begin
 | 
|---|
| 114 |     ClearParameters := True;
 | 
|---|
| 115 |     RemoteProcedure := RPCName;
 | 
|---|
| 116 |     for i := 0 to High(AParam) do with AParam[i] do
 | 
|---|
| 117 |     begin
 | 
|---|
| 118 |       Param[i].PType := literal;
 | 
|---|
| 119 |       case VType of
 | 
|---|
| 120 |       vtInteger:    Param[i].Value := IntToStr(VInteger);
 | 
|---|
| 121 |       vtBoolean:    Param[i].Value := BoolChar[VBoolean];
 | 
|---|
| 122 |       vtChar:       if VChar = #0 then
 | 
|---|
| 123 |                       Param[i].Value := ''
 | 
|---|
| 124 |                     else
 | 
|---|
| 125 |                       Param[i].Value := VChar;
 | 
|---|
| 126 |       //vtExtended:   Param[i].Value := FloatToStr(VExtended^);
 | 
|---|
| 127 |       vtExtended:   begin
 | 
|---|
| 128 |                       TmpExt := VExtended^;
 | 
|---|
| 129 |                       if(abs(TmpExt) < 0.0000000000001) then TmpExt := 0;
 | 
|---|
| 130 |                       Param[i].Value := FloatToStr(TmpExt);
 | 
|---|
| 131 |                     end;
 | 
|---|
| 132 |       vtString:     with Param[i] do
 | 
|---|
| 133 |                     begin
 | 
|---|
| 134 |                       Value := VString^;
 | 
|---|
| 135 |                       if (Length(Value) > 0) and (Value[1] = #1) then
 | 
|---|
| 136 |                       begin
 | 
|---|
| 137 |                         Value := Copy(Value, 2, Length(Value));
 | 
|---|
| 138 |                         PType := reference;
 | 
|---|
| 139 |                       end;
 | 
|---|
| 140 |                     end;
 | 
|---|
| 141 |       vtPChar:      Param[i].Value := StrPas(VPChar);
 | 
|---|
| 142 |       vtPointer:    if VPointer = nil
 | 
|---|
| 143 |                       then ClearParameters := True {Param[i].PType := null}
 | 
|---|
| 144 |                       else raise Exception.Create('Pointer type must be nil.');
 | 
|---|
| 145 |       vtObject:     if VObject is TStrings then SetList(TStrings(VObject), i);
 | 
|---|
| 146 |       vtAnsiString: with Param[i] do
 | 
|---|
| 147 |                     begin
 | 
|---|
| 148 |                       Value := string(VAnsiString);
 | 
|---|
| 149 |                       if (Length(Value) > 0) and (Value[1] = #1) then
 | 
|---|
| 150 |                       begin
 | 
|---|
| 151 |                         Value := Copy(Value, 2, Length(Value));
 | 
|---|
| 152 |                         PType := reference;
 | 
|---|
| 153 |                       end;
 | 
|---|
| 154 |                     end;
 | 
|---|
| 155 |       vtInt64:      Param[i].Value := IntToStr(VInt64^);
 | 
|---|
| 156 |         else raise Exception.Create('Unable to pass parameter type to Broker.');
 | 
|---|
| 157 |       end; {case}
 | 
|---|
| 158 |     end; {for}
 | 
|---|
| 159 |   end; {with}
 | 
|---|
| 160 |   RPCLastCall := RPCName + ' (SetParam end)';
 | 
|---|
| 161 | end;
 | 
|---|
| 162 | 
 | 
|---|
| 163 | { public procedures and functions ----------------------------------------------------------- }
 | 
|---|
| 164 | 
 | 
|---|
| 165 | function UpdateContext(NewContext: string): boolean;
 | 
|---|
| 166 | begin
 | 
|---|
| 167 |   if NewContext = uCurrentContext then
 | 
|---|
| 168 |     Result := TRUE
 | 
|---|
| 169 |   else
 | 
|---|
| 170 |   begin
 | 
|---|
| 171 |     Result := RPCBrokerV.CreateContext(NewContext);
 | 
|---|
| 172 |     if Result then
 | 
|---|
| 173 |       uCurrentContext := NewContext
 | 
|---|
| 174 |     else
 | 
|---|
| 175 |     if (NewContext <> uBaseContext) and RPCBrokerV.CreateContext(uBaseContext) then
 | 
|---|
| 176 |       uCurrentContext := uBaseContext
 | 
|---|
| 177 |     else
 | 
|---|
| 178 |       uCurrentContext := '';
 | 
|---|
| 179 |   end;
 | 
|---|
| 180 | end;
 | 
|---|
| 181 | 
 | 
|---|
| 182 | function IsBaseContext: boolean;
 | 
|---|
| 183 | begin
 | 
|---|
| 184 |   Result := ((uCurrentContext = uBaseContext) or (uCurrentContext = ''));
 | 
|---|
| 185 | end;
 | 
|---|
| 186 | 
 | 
|---|
| 187 | procedure CallBrokerInContext;
 | 
|---|
| 188 | var
 | 
|---|
| 189 |   AStringList: TStringList;
 | 
|---|
| 190 |   i, j: Integer;
 | 
|---|
| 191 |   x, y: string;
 | 
|---|
| 192 |   Time1,Time2 : TDateTime; //kt
 | 
|---|
| 193 | begin
 | 
|---|
| 194 |   RPCLastCall := RPCBrokerV.RemoteProcedure + ' (CallBroker begin)';
 | 
|---|
| 195 |   if uShowRPCs then StatusText(RPCBrokerV.RemoteProcedure);
 | 
|---|
| 196 |   with RPCBrokerV do if not Connected then  // happens if broker connection is lost
 | 
|---|
| 197 |   begin
 | 
|---|
| 198 |     ClearResults := True;
 | 
|---|
| 199 |     Exit;
 | 
|---|
| 200 |   end;
 | 
|---|
| 201 |   if uCallList.Count = uMaxCalls then
 | 
|---|
| 202 |   begin
 | 
|---|
| 203 |     AStringList := uCallList.Items[0];
 | 
|---|
| 204 |     AStringList.Free;
 | 
|---|
| 205 |     uCallList.Delete(0);
 | 
|---|
| 206 |   end;
 | 
|---|
| 207 |   AStringList := TStringList.Create;
 | 
|---|
| 208 |   AStringList.Add(RPCBrokerV.RemoteProcedure);
 | 
|---|
| 209 |   if uCurrentContext <> uBaseContext then
 | 
|---|
| 210 |     AStringList.Add('Context: ' + uCurrentContext);
 | 
|---|
| 211 |   Time1 := GetTime; //kt
 | 
|---|
| 212 |   AStringList.Add('Called at: '+ TimeToStr(Time1));  //kt
 | 
|---|
| 213 |   AStringList.Add(' ');
 | 
|---|
| 214 |   AStringList.Add('Params ------------------------------------------------------------------');
 | 
|---|
| 215 |   with RPCBrokerV do for i := 0 to Param.Count - 1 do
 | 
|---|
| 216 |   begin
 | 
|---|
| 217 |     case Param[i].PType of
 | 
|---|
| 218 |     //global:    x := 'global';
 | 
|---|
| 219 |     list:      x := 'list';
 | 
|---|
| 220 |     literal:   x := 'literal';
 | 
|---|
| 221 |     //null:      x := 'null';
 | 
|---|
| 222 |     reference: x := 'reference';
 | 
|---|
| 223 |     undefined: x := 'undefined';
 | 
|---|
| 224 |     //wordproc:  x := 'wordproc';
 | 
|---|
| 225 |     end;
 | 
|---|
| 226 |     AStringList.Add(x + #9 + Param[i].Value);
 | 
|---|
| 227 |     if Param[i].PType = list then
 | 
|---|
| 228 |     begin
 | 
|---|
| 229 |       for j := 0 to Param[i].Mult.Count - 1 do
 | 
|---|
| 230 |       begin
 | 
|---|
| 231 |         x := Param[i].Mult.Subscript(j);
 | 
|---|
| 232 |         y := Param[i].Mult[x];
 | 
|---|
| 233 |         AStringList.Add(#9 + '(' + x + ')=' + y);
 | 
|---|
| 234 |       end;
 | 
|---|
| 235 |     end;
 | 
|---|
| 236 |   end; {with...for}
 | 
|---|
| 237 |   try
 | 
|---|
| 238 |     RPCBrokerV.Call;
 | 
|---|
| 239 |   except
 | 
|---|
| 240 |     // The broker erroneously sets connected to false if there is any error (including an
 | 
|---|
| 241 |     // error on the M side). It should only set connection to false if there is no connection.
 | 
|---|
| 242 |     on E:EBrokerError do
 | 
|---|
| 243 |     begin
 | 
|---|
| 244 |       if E.Code = XWB_M_REJECT then
 | 
|---|
| 245 |       begin
 | 
|---|
| 246 |         x := 'An error occurred on the server.' + CRLF + CRLF + E.Action;
 | 
|---|
| 247 |         Application.MessageBox(PChar(x), 'Server Error', MB_OK);
 | 
|---|
| 248 |       end
 | 
|---|
| 249 |       else raise;
 | 
|---|
| 250 |     (*
 | 
|---|
| 251 |       case E.Code of
 | 
|---|
| 252 |       XWB_M_REJECT:  begin
 | 
|---|
| 253 |                        x := 'An error occurred on the server.' + CRLF + CRLF + E.Action;
 | 
|---|
| 254 |                        Application.MessageBox(PChar(x), 'Server Error', MB_OK);
 | 
|---|
| 255 |                      end;
 | 
|---|
| 256 |       else           begin
 | 
|---|
| 257 |                        x := 'An error occurred with the network connection.' + CRLF +
 | 
|---|
| 258 |                             'Action was: ' + E.Action + CRLF + 'Code was: ' + E.Mnemonic +
 | 
|---|
| 259 |                             CRLF + CRLF + 'Application cannot continue.';
 | 
|---|
| 260 |                        Application.MessageBox(PChar(x), 'Network Error', MB_OK);
 | 
|---|
| 261 |                      end;
 | 
|---|
| 262 |       end;
 | 
|---|
| 263 |       *)
 | 
|---|
| 264 |       // make optional later...
 | 
|---|
| 265 |       if not RPCBrokerV.Connected then Application.Terminate;
 | 
|---|
| 266 |     end;
 | 
|---|
| 267 |   end;
 | 
|---|
| 268 |   AStringList.Add(' ');
 | 
|---|
| 269 |   AStringList.Add('Results -----------------------------------------------------------------');
 | 
|---|
| 270 |   AStringList.AddStrings(RPCBrokerV.Results);
 | 
|---|
| 271 |   AStringList.Add(' ');  //kt
 | 
|---|
| 272 |   Time2 := GetTime; //kt
 | 
|---|
| 273 |   AStringList.Add('Elapsed Time: ' + IntToStr(Round(MilliSecondSpan(Time2,Time1))) + ' ms');  //kt
 | 
|---|
| 274 |   uCallList.Add(AStringList);
 | 
|---|
| 275 |   if uShowRPCs then StatusText('');
 | 
|---|
| 276 |   RPCLastCall := RPCBrokerV.RemoteProcedure + ' (completed)';
 | 
|---|
| 277 | end;
 | 
|---|
| 278 | 
 | 
|---|
| 279 | procedure CallBroker;
 | 
|---|
| 280 | begin
 | 
|---|
| 281 |   UpdateContext(uBaseContext);
 | 
|---|
| 282 |   CallBrokerInContext;
 | 
|---|
| 283 | end;
 | 
|---|
| 284 | 
 | 
|---|
| 285 | procedure SetBrokerServer(const AName: string; APort: Integer; WantDebug: Boolean);
 | 
|---|
| 286 | { makes the initial connection to a server }
 | 
|---|
| 287 | begin
 | 
|---|
| 288 |   EnsureBroker;
 | 
|---|
| 289 |   with RPCBrokerV do
 | 
|---|
| 290 |   begin
 | 
|---|
| 291 |     Server := AName;
 | 
|---|
| 292 |     if APort > 0 then ListenerPort := APort;
 | 
|---|
| 293 |     DebugMode := WantDebug;
 | 
|---|
| 294 |     Connected := True;
 | 
|---|
| 295 |   end;
 | 
|---|
| 296 | end;
 | 
|---|
| 297 | 
 | 
|---|
| 298 | function AuthorizedOption(const OptionName: string): Boolean;
 | 
|---|
| 299 | { checks to see if the user is authorized to use this application }
 | 
|---|
| 300 | begin
 | 
|---|
| 301 |   EnsureBroker;
 | 
|---|
| 302 |   Result := RPCBrokerV.CreateContext(OptionName);
 | 
|---|
| 303 |   if Result then
 | 
|---|
| 304 |   begin
 | 
|---|
| 305 |     if (uBaseContext = '') then
 | 
|---|
| 306 |       uBaseContext := OptionName;
 | 
|---|
| 307 |     uCurrentContext := OptionName;
 | 
|---|
| 308 |   end;
 | 
|---|
| 309 | end;
 | 
|---|
| 310 | 
 | 
|---|
| 311 | function ConnectToServer(const OptionName: string): Boolean;
 | 
|---|
| 312 | { establish initial connection to server using optional command line parameters and check that
 | 
|---|
| 313 |   this application (option) is allowed for this user }
 | 
|---|
| 314 | var
 | 
|---|
| 315 |   WantDebug: Boolean;
 | 
|---|
| 316 |   AServer, APort, x: string;
 | 
|---|
| 317 |   i, ModalResult: Integer;
 | 
|---|
| 318 | begin
 | 
|---|
| 319 |   Result := False;
 | 
|---|
| 320 |   WantDebug := False;
 | 
|---|
| 321 |   AServer := '';
 | 
|---|
| 322 |   APort := '';
 | 
|---|
| 323 |   for i := 1 to ParamCount do            // params may be: S[ERVER]=hostname P[ORT]=port DEBUG
 | 
|---|
| 324 |   begin
 | 
|---|
| 325 |     if UpperCase(ParamStr(i)) = 'DEBUG' then WantDebug := True;
 | 
|---|
| 326 |     if UpperCase(ParamStr(i)) = 'SHOWRPCS' then uShowRPCs := True;
 | 
|---|
| 327 |     x := UpperCase(Piece(ParamStr(i), '=', 1));
 | 
|---|
| 328 |     if (x = 'S') or (x = 'SERVER') then AServer := Piece(ParamStr(i), '=', 2);
 | 
|---|
| 329 |     if (x = 'P') or (x = 'PORT') then APort := Piece(ParamStr(i), '=', 2);
 | 
|---|
| 330 |   end;
 | 
|---|
| 331 |   if (AServer = '') or (APort = '') then
 | 
|---|
| 332 |   begin
 | 
|---|
| 333 |     ModalResult := GetServerInfo(AServer, APort);
 | 
|---|
| 334 |     if ModalResult = mrCancel then Exit;
 | 
|---|
| 335 |   end;
 | 
|---|
| 336 |   // use try..except to work around errors in the Broker SignOn screen
 | 
|---|
| 337 |   try
 | 
|---|
| 338 |     SetBrokerServer(AServer, StrToIntDef(APort, 9200), WantDebug);
 | 
|---|
| 339 |     Result := AuthorizedOption(OptionName);
 | 
|---|
| 340 |     if Result then Result := RPCBrokerV.Connected;
 | 
|---|
| 341 |     RPCBrokerV.RPCTimeLimit := 300;
 | 
|---|
| 342 |   except
 | 
|---|
| 343 |     on E:EBrokerError do
 | 
|---|
| 344 |     begin
 | 
|---|
| 345 |       if E.Code <> XWB_BadSignOn then InfoBox(E.Message, 'Error', MB_OK or MB_ICONERROR);
 | 
|---|
| 346 |       Result := False;
 | 
|---|
| 347 |     end;
 | 
|---|
| 348 |   end;
 | 
|---|
| 349 | end;
 | 
|---|
| 350 | 
 | 
|---|
| 351 | function MRef(glvn: string): string;
 | 
|---|
| 352 | { prepends ASCII 1 to string, allows SetParams to interpret as an M reference }
 | 
|---|
| 353 | begin
 | 
|---|
| 354 |   Result := #1 + glvn;
 | 
|---|
| 355 | end;
 | 
|---|
| 356 | 
 | 
|---|
| 357 | procedure CallV(const RPCName: string; const AParam: array of const);
 | 
|---|
| 358 | { calls the broker leaving results in results property which must be read by caller }
 | 
|---|
| 359 | var
 | 
|---|
| 360 |   SavedCursor: TCursor;
 | 
|---|
| 361 | begin
 | 
|---|
| 362 |   SavedCursor := Screen.Cursor;
 | 
|---|
| 363 |   Screen.Cursor := crHourGlass;
 | 
|---|
| 364 |   SetParams(RPCName, AParam);
 | 
|---|
| 365 |   CallBroker;  //RPCBrokerV.Call;
 | 
|---|
| 366 |   Screen.Cursor := SavedCursor;
 | 
|---|
| 367 | end;
 | 
|---|
| 368 | 
 | 
|---|
| 369 | function sCallV(const RPCName: string; const AParam: array of const): string;
 | 
|---|
| 370 | { calls the broker and returns a scalar value. }
 | 
|---|
| 371 | var
 | 
|---|
| 372 |   SavedCursor: TCursor;
 | 
|---|
| 373 | begin
 | 
|---|
| 374 |   SavedCursor := Screen.Cursor;
 | 
|---|
| 375 |   Screen.Cursor := crHourGlass;
 | 
|---|
| 376 |   SetParams(RPCName, AParam);
 | 
|---|
| 377 |   CallBroker;  //RPCBrokerV.Call;
 | 
|---|
| 378 |   if RPCBrokerV.Results.Count > 0 then Result := RPCBrokerV.Results[0] else Result := '';
 | 
|---|
| 379 |   Screen.Cursor := SavedCursor;
 | 
|---|
| 380 | end;
 | 
|---|
| 381 | 
 | 
|---|
| 382 | procedure tCallV(ReturnData: TStrings; const RPCName: string; const AParam: array of const);
 | 
|---|
| 383 | { calls the broker and returns TStrings data }
 | 
|---|
| 384 | var
 | 
|---|
| 385 |   SavedCursor: TCursor;
 | 
|---|
| 386 | begin
 | 
|---|
| 387 |   if ReturnData = nil then raise Exception.Create('TString not created');
 | 
|---|
| 388 |   SavedCursor := Screen.Cursor;
 | 
|---|
| 389 |   Screen.Cursor := crHourGlass;
 | 
|---|
| 390 |   SetParams(RPCName, AParam);
 | 
|---|
| 391 |   CallBroker;  //RPCBrokerV.Call;
 | 
|---|
| 392 |   ReturnData.Assign(RPCBrokerV.Results);
 | 
|---|
| 393 |   Screen.Cursor := SavedCursor;
 | 
|---|
| 394 | end;
 | 
|---|
| 395 | 
 | 
|---|
| 396 | (*  uncomment if these are needed -
 | 
|---|
| 397 | 
 | 
|---|
| 398 | function pCallV(const RPCName: string; const AParam: array of const): PChar;
 | 
|---|
| 399 | { Calls the Broker.  Result is a PChar containing raw Broker data. }
 | 
|---|
| 400 | { -- Caller must dispose the string that is returned -- }
 | 
|---|
| 401 | var
 | 
|---|
| 402 |   SavedCursor: TCursor;
 | 
|---|
| 403 | begin
 | 
|---|
| 404 |   SavedCursor := Screen.Cursor;
 | 
|---|
| 405 |   Screen.Cursor := crHourGlass;
 | 
|---|
| 406 |   SetParams(RPCName, AParam);
 | 
|---|
| 407 |   RPCBrokerV.Call;
 | 
|---|
| 408 |   pCallV := StrNew(RPCBrokerV.Results.GetText);
 | 
|---|
| 409 |   Screen.Cursor := SavedCursor;
 | 
|---|
| 410 | end;
 | 
|---|
| 411 | 
 | 
|---|
| 412 | procedure wCallV(AControl: TControl; const RPCName: string; const AParam: array of const);
 | 
|---|
| 413 | { Calls the Broker.  Places data into control (wrapped). }
 | 
|---|
| 414 | var
 | 
|---|
| 415 |   BufPtr: PChar;
 | 
|---|
| 416 | begin
 | 
|---|
| 417 |   BufPtr := pCallV(RPCName, AParam);
 | 
|---|
| 418 |   WrapWP(BufPtr);
 | 
|---|
| 419 |   AControl.SetTextBuf(BufPtr);
 | 
|---|
| 420 |   StrDispose(BufPtr);
 | 
|---|
| 421 | end;
 | 
|---|
| 422 | 
 | 
|---|
| 423 | procedure WrapWP(Buf: pChar);
 | 
|---|
| 424 | { Iterates through Buf and wraps text in the same way that FM wraps text. }
 | 
|---|
| 425 | var
 | 
|---|
| 426 |   PSub: PChar;
 | 
|---|
| 427 | begin
 | 
|---|
| 428 |   PSub := StrScan(Buf, #13);
 | 
|---|
| 429 |   while PSub <> nil do
 | 
|---|
| 430 |   begin
 | 
|---|
| 431 |     if Ord(PSub[2]) > 32 then
 | 
|---|
| 432 |     begin
 | 
|---|
| 433 |       StrMove(PSub, PSub + SizeOf(Char), StrLen(PSub));
 | 
|---|
| 434 |       PSub[0] := #32;
 | 
|---|
| 435 |     end
 | 
|---|
| 436 |     else repeat Inc(PSub, SizeOf(Char)) until (Ord(PSub[0]) > 32) or (PSub = StrEnd(PSub));
 | 
|---|
| 437 |     PSub := StrScan(PSub, #13);
 | 
|---|
| 438 |   end;
 | 
|---|
| 439 | end;
 | 
|---|
| 440 | 
 | 
|---|
| 441 | *)
 | 
|---|
| 442 | 
 | 
|---|
| 443 | function RetainedRPCCount: Integer;
 | 
|---|
| 444 | begin
 | 
|---|
| 445 |   Result := uCallList.Count;
 | 
|---|
| 446 | end;
 | 
|---|
| 447 | 
 | 
|---|
| 448 | procedure SetRetainedRPCMax(Value: Integer);
 | 
|---|
| 449 | begin
 | 
|---|
| 450 |   if Value > 0 then uMaxCalls := Value;
 | 
|---|
| 451 | end;
 | 
|---|
| 452 | 
 | 
|---|
| 453 | function GetRPCMax: integer;
 | 
|---|
| 454 | begin
 | 
|---|
| 455 |   Result := uMaxCalls;
 | 
|---|
| 456 | end;
 | 
|---|
| 457 | 
 | 
|---|
| 458 | procedure LoadRPCData(Dest: TStrings; ID: Integer);
 | 
|---|
| 459 | begin
 | 
|---|
| 460 |   if (ID > -1) and (ID < uCallList.Count) then Dest.Assign(TStringList(uCallList.Items[ID]));
 | 
|---|
| 461 | end;
 | 
|---|
| 462 | 
 | 
|---|
| 463 | function AccessRPCData(ID: Integer) : TStringList;
 | 
|---|
| 464 | //kt added  -- Caller DOESN'T own object
 | 
|---|
| 465 | begin
 | 
|---|
| 466 |   Result := nil;
 | 
|---|
| 467 |   if (ID > -1) and (ID < uCallList.Count) then Result := TStringList(uCallList.Items[ID]);
 | 
|---|
| 468 | end;
 | 
|---|
| 469 | 
 | 
|---|
| 470 | 
 | 
|---|
| 471 | function DottedIPStr: string;
 | 
|---|
| 472 | { return the IP address of the local machine as a string in dotted form: nnn.nnn.nnn.nnn }
 | 
|---|
| 473 | const
 | 
|---|
| 474 |   WINSOCK1_1 = $0101;      // minimum required version of WinSock
 | 
|---|
| 475 |   SUCCESS = 0;             // value returned by WinSock functions if no error
 | 
|---|
| 476 | var
 | 
|---|
| 477 |   //WSAData: TWSAData;       // structure to hold startup information
 | 
|---|
| 478 |   HostEnt: PHostEnt;       // pointer to Host Info structure (see WinSock 1.1, page 60)
 | 
|---|
| 479 |   IPAddr: PInAddr;         // pointer to IP address in network order (4 bytes)
 | 
|---|
| 480 |   LocalName: array[0..255] of Char;  // buffer for the name of the client machine
 | 
|---|
| 481 | begin
 | 
|---|
| 482 |   Result := 'No IP Address';
 | 
|---|
| 483 |   // ensure the Winsock DLL has been loaded (should be if there is a broker connection)
 | 
|---|
| 484 |   //if WSAStartup(WINSOCK1_1, WSAData) <> SUCCESS then Exit;
 | 
|---|
| 485 |   //try
 | 
|---|
| 486 |     // get the name of the client machine
 | 
|---|
| 487 |     if gethostname(LocalName, SizeOf(LocalName) - 1) <> SUCCESS then Exit;
 | 
|---|
| 488 |     // get information about the client machine (contained in a record of type THostEnt)
 | 
|---|
| 489 |     HostEnt := gethostbyname(LocalName);
 | 
|---|
| 490 |     if HostEnt = nil then Exit;
 | 
|---|
| 491 |     // get a pointer to the four bytes that contain the IP address
 | 
|---|
| 492 |     // Dereference HostEnt to get the THostEnt record.  In turn, dereference the h_addr_list
 | 
|---|
| 493 |     // field to get a pointer to the IP address.  The pointer to the IP address is type PChar,
 | 
|---|
| 494 |     // so it needs to be typecast as PInAddr in order to make the call to inet_ntoa.
 | 
|---|
| 495 |     IPAddr := PInAddr(HostEnt^.h_addr_list^);
 | 
|---|
| 496 |     // Dereference IPAddr (which is a PChar typecast as PInAddr) to get the 4 bytes that need
 | 
|---|
| 497 |     // to be passed to inet_ntoa.  A string with the IP address in dotted format is returned.
 | 
|---|
| 498 |     Result := inet_ntoa(IPAddr^);
 | 
|---|
| 499 |   //finally
 | 
|---|
| 500 |     // causes the reference counter in Winsock (set by WSAStartup, above) to be decremented
 | 
|---|
| 501 |     //WSACleanup;
 | 
|---|
| 502 |   //end;
 | 
|---|
| 503 | end;
 | 
|---|
| 504 | 
 | 
|---|
| 505 | procedure RPCIdleCallDone(Msg: string);
 | 
|---|
| 506 | begin
 | 
|---|
| 507 |   RPCBrokerV.ClearResults := True; 
 | 
|---|
| 508 | end;
 | 
|---|
| 509 | 
 | 
|---|
| 510 | procedure CallRPCWhenIdle(CallProc: TORIdleCallProc; Msg: String);
 | 
|---|
| 511 | begin
 | 
|---|
| 512 |   CallWhenIdleNotifyWhenDone(CallProc, RPCIdleCallDone, Msg);
 | 
|---|
| 513 | end;
 | 
|---|
| 514 | 
 | 
|---|
| 515 | procedure RPCCallsClear;
 | 
|---|
| 516 | //kt Added entire fuction.
 | 
|---|
| 517 | begin
 | 
|---|
| 518 |   while uCallList.Count > 0 do
 | 
|---|
| 519 |   begin
 | 
|---|
| 520 |     TStringList(uCallList.Items[0]).Free;
 | 
|---|
| 521 |     uCallList.Delete(0);
 | 
|---|
| 522 |   end;
 | 
|---|
| 523 | end;
 | 
|---|
| 524 | 
 | 
|---|
| 525 | initialization
 | 
|---|
| 526 |   RPCBrokerV := nil;
 | 
|---|
| 527 |   RPCLastCall := 'No RPCs called';
 | 
|---|
| 528 |   uCallList := TList.Create;
 | 
|---|
| 529 |   uMaxCalls := 150; //kt 10
 | 
|---|
| 530 |   uShowRPCs := False;
 | 
|---|
| 531 | 
 | 
|---|
| 532 | finalization
 | 
|---|
| 533 |   { //kt commented out
 | 
|---|
| 534 |   while uCallList.Count > 0 do
 | 
|---|
| 535 |   begin
 | 
|---|
| 536 |     TStringList(uCallList.Items[0]).Free;
 | 
|---|
| 537 |     uCallList.Delete(0);
 | 
|---|
| 538 |   end;
 | 
|---|
| 539 |   }
 | 
|---|
| 540 |   RPCCallsClear; //kt added
 | 
|---|
| 541 |   uCallList.Free;
 | 
|---|
| 542 | 
 | 
|---|
| 543 | end.
 | 
|---|