GSI Object Oriented Online Offline (Go4) GO4-6.4.0
Loading...
Searching...
No Matches
TGo4ObjClient.h
Go to the documentation of this file.
1// $Id$
2//-----------------------------------------------------------------------
3// The GSI Online Offline Object Oriented (Go4) Project
4// Experiment Data Processing at EE department, GSI
5//-----------------------------------------------------------------------
6// Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
7// Planckstr. 1, 64291 Darmstadt, Germany
8// Contact: http://go4.gsi.de
9//-----------------------------------------------------------------------
10// This software can be used under the license agreements as stated
11// in Go4License.txt file which is part of the distribution.
12//-----------------------------------------------------------------------
13
14#ifndef TGO4OBJCLIENT_H
15#define TGO4OBJCLIENT_H
16
17#include "TNamed.h"
18
20class TGo4Socket;
21class TBuffer;
22
28
29class TGo4ObjClient : public TNamed {
30 public:
31
33
34 TGo4ObjClient(const char *clientname,
35 const char *base = nullptr,
36 const char *passwd = nullptr,
37 const char *host = nullptr,
38 Int_t port = 0);
39
40 virtual ~TGo4ObjClient();
41
45 TGo4AnalysisObjectNames *RequestNamesList(const char *base = nullptr,
46 const char *passwd = nullptr,
47 const char *host = nullptr,
48 Int_t port = 0);
49
53 TObject *RequestObject(const char *objectname,
54 const char *base = nullptr,
55 const char *passwd = nullptr,
56 const char *host = nullptr,
57 Int_t port = 0);
58
59 void SetBase(const char *serverbase) { fxServerName = serverbase; }
60 void SetPasswd(const char *serverpasswd) { fxServerPass = serverpasswd; }
61 void SetHost(const char *serverhost) { fxHostname = serverhost; }
62 void SetPort(Int_t port) { fiPort = port; }
63
64 const char *GetBase() const { return fxServerName.Data(); }
65 const char *GetPasswd() const { return fxServerPass.Data(); }
66 const char *GetHost() const { return fxHostname.Data(); }
67 Int_t GetPort() const { return fiPort; }
68
69 protected:
70
72 void SendCommand(const char *com);
73
75 TObject *ReceiveObject();
76
77 private:
78
80 TString fxServerName;
81
83 TString fxServerPass;
84
86 TString fxHostname;
87
89 Int_t fiPort{0};
90
93
95 void SetParms(const char *base, const char *passwd,
96 const char *host, Int_t port);
97
98 Int_t ConnectServer();
99
100 Int_t DisconnectServer();
101
103 TBuffer *ReceiveBuffer();
104
105 ClassDefOverride(TGo4ObjClient,1)
106};
107
108#endif
Contains the name (key) list of all objects in the analysis scope.
Client for the go4 object server delivering root objects.
TBuffer * ReceiveBuffer()
Receive root buffer containing requested object.
void SendCommand(const char *com)
Send (command) string to server.
TObject * ReceiveObject()
Receive root object streamed from server.
void SetBase(const char *serverbase)
void SetPort(Int_t port)
void SetParms(const char *base, const char *passwd, const char *host, Int_t port)
Set server parameters if necessary.
const char * GetBase() const
TGo4Socket * fxTransport
transport socket for connection to server
TObject * RequestObject(const char *objectname, const char *base=nullptr, const char *passwd=nullptr, const char *host=nullptr, Int_t port=0)
Get object by name from client.
Int_t DisconnectServer()
void SetHost(const char *serverhost)
Int_t GetPort() const
const char * GetPasswd() const
virtual ~TGo4ObjClient()
Int_t fiPort
serversocket port number
TString fxServerPass
contains api password
TString fxServerName
contains api basename
TGo4AnalysisObjectNames * RequestNamesList(const char *base=nullptr, const char *passwd=nullptr, const char *host=nullptr, Int_t port=0)
Get nameslist object from client.
const char * GetHost() const
TString fxHostname
hostname of the server to connect to
void SetPasswd(const char *serverpasswd)