Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TUDPSocket.h
Go to the documentation of this file.
1// @(#)root/net:$Id$
2// Author: Marcelo Sousa 26/10/2011
3
4/*************************************************************************
5 * Copyright (C) 1995-2011, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TUDPSocket
13#define ROOT_TUDPSocket
14
15
16//////////////////////////////////////////////////////////////////////////
17// //
18// TUDPSocket //
19// //
20// This class implements udp client sockets. A socket is an endpoint //
21// for communication between two machines. //
22// The actual work is done via the TSystem class (either TUnixSystem, //
23// or TWinNTSystem). //
24// //
25//////////////////////////////////////////////////////////////////////////
26
27#include "TNamed.h"
28#include "TBits.h"
29#include "TInetAddress.h"
30#include "MessageTypes.h"
31#include "TTimeStamp.h"
32#include "TVirtualMutex.h"
33#include "TSocket.h"
34
35class TUDPSocket : public TNamed {
36
37friend class TServerSocket;
38
39public:
40 enum EStatusBits { kIsUnix = BIT(16), // set if unix socket
41 kBrokenConn = BIT(17) // set if conn reset by peer or broken
42 };
43 enum EInterest { kRead = 1, kWrite = 2 };
45
46protected:
47 TInetAddress fAddress; // remote internet address and port #
48 UInt_t fBytesRecv; // total bytes received over this socket
49 UInt_t fBytesSent; // total bytes sent using this socket
50 Int_t fCompress; // Compression level and algorithm
51 TInetAddress fLocalAddress; // local internet address and port #
52 Int_t fRemoteProtocol; // protocol of remote daemon
53 TString fService; // name of service (matches remote port #)
54 EServiceType fServType; // remote service type
55 Int_t fSocket; // socket descriptor
56 TString fUrl; // address of the remote service
57 TBits fBitsInfo; // bits array to mark TStreamerInfo classes already sent
58 TList *fUUIDs; // list of TProcessIDs already sent through the socket
59
60 TVirtualMutex *fLastUsageMtx; // Protect last usage setting / reading
61 TTimeStamp fLastUsage; // Time stamp of last usage
62
63 static ULong64_t fgBytesRecv; // total bytes received by all socket objects
64 static ULong64_t fgBytesSent; // total bytes sent by all socket objects
65
70
71 void SetDescriptor(Int_t desc) { fSocket = desc; }
72 void SendStreamerInfos(const TMessage &mess);
74 void SendProcessIDs(const TMessage &mess);
76
77private:
78 TUDPSocket& operator=(const TUDPSocket &) = delete;
79 Option_t *GetOption() const override { return TObject::GetOption(); }
80
81public:
82 TUDPSocket(TInetAddress address, const char *service);
83 TUDPSocket(TInetAddress address, Int_t port);
84 TUDPSocket(const char *host, const char *service);
85 TUDPSocket(const char *host, Int_t port);
86 TUDPSocket(const char *sockpath);
87
89 TUDPSocket(Int_t descriptor, const char *sockpath);
90 TUDPSocket(const TUDPSocket &s);
91
92 virtual ~TUDPSocket() { Close(); }
93
94 virtual void Close(Option_t *opt="");
95 virtual Int_t GetDescriptor() const { return fSocket; }
98 Int_t GetPort() const { return fAddress.GetPort(); }
99 const char *GetService() const { return fService; }
100 Int_t GetServType() const { return (Int_t)fServType; }
101 virtual Int_t GetLocalPort();
102 UInt_t GetBytesSent() const { return fBytesSent; }
103 UInt_t GetBytesRecv() const { return fBytesRecv; }
107 Int_t GetErrorCode() const;
108 virtual Int_t GetOption(ESockOptions opt, Int_t &val);
110
112 const char *GetUrl() const { return fUrl; }
113
114 virtual Bool_t IsValid() const { return fSocket < 0 ? kFALSE : kTRUE; }
115 virtual Int_t Recv(TMessage *&mess);
116 virtual Int_t Recv(Int_t &status, Int_t &kind);
117 virtual Int_t Recv(char *mess, Int_t max);
118 virtual Int_t Recv(char *mess, Int_t max, Int_t &kind);
119 virtual Int_t RecvRaw(void *buffer, Int_t length, ESendRecvOptions opt = kDefault);
120 virtual Int_t Reconnect() { return -1; }
121 virtual Int_t Select(Int_t interest = kRead, Long_t timeout = -1);
122 virtual Int_t Send(const TMessage &mess);
123 virtual Int_t Send(Int_t kind);
124 virtual Int_t Send(Int_t status, Int_t kind);
125 virtual Int_t Send(const char *mess, Int_t kind = kMESS_STRING);
126 virtual Int_t SendObject(const TObject *obj, Int_t kind = kMESS_OBJECT);
127 virtual Int_t SendRaw(const void *buffer, Int_t length,
132 virtual Int_t SetOption(ESockOptions opt, Int_t val);
134 void SetService(const char *service) { fService = service; }
136 void SetUrl(const char *url) { fUrl = url; }
137
139
142
143 static void NetError(const char *where, Int_t error);
144
145 ClassDefOverride(TUDPSocket,0) //This class implements UDP client sockets
146};
147
148//______________________________________________________________________________
150{
151 return (fCompress < 0) ? -1 : fCompress / 100;
152}
153
154//______________________________________________________________________________
156{
157 return (fCompress < 0) ? -1 : fCompress % 100;
158}
159
160//______________________________________________________________________________
162{
163 return (fCompress < 0) ? -1 : fCompress;
164}
165
166#endif
@ kMESS_STRING
@ kMESS_OBJECT
bool Bool_t
Boolean (0=false, 1=true) (bool)
Definition RtypesCore.h:77
int Int_t
Signed integer 4 bytes (int)
Definition RtypesCore.h:59
long Long_t
Signed long integer 4 bytes (long). Size depends on architecture.
Definition RtypesCore.h:68
constexpr Bool_t kFALSE
Definition RtypesCore.h:108
unsigned long long ULong64_t
Portable unsigned long integer 8 bytes.
Definition RtypesCore.h:84
constexpr Bool_t kTRUE
Definition RtypesCore.h:107
const char Option_t
Option string (const char)
Definition RtypesCore.h:80
#define BIT(n)
Definition Rtypes.h:91
#define ClassDefOverride(name, id)
Definition Rtypes.h:348
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h length
ESockOptions
Definition TSystem.h:229
ESendRecvOptions
Definition TSystem.h:242
@ kDefault
Definition TSystem.h:243
#define R__LOCKGUARD2(mutex)
Container of bits.
Definition TBits.h:26
This class represents an Internet Protocol (IP) address.
Int_t GetPort() const
A doubly linked list.
Definition TList.h:38
The TNamed class is the base class for all named ROOT classes.
Definition TNamed.h:29
Mother of all ROOT objects.
Definition TObject.h:42
virtual Option_t * GetOption() const
Definition TObject.h:147
This class implements server sockets.
Basic string class.
Definition TString.h:138
The TTimeStamp encapsulates seconds and ns since EPOCH.
Definition TTimeStamp.h:45
void Set()
Set Date/Time to current time as reported by the system.
This class implements UDP client sockets.
Definition TUDPSocket.h:35
void SetCompressionSettings(Int_t settings=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault)
Used to specify the compression level and algorithm: settings = 100 * algorithm + level.
UInt_t fBytesRecv
Definition TUDPSocket.h:48
void SetRemoteProtocol(Int_t rproto)
Definition TUDPSocket.h:133
TTimeStamp GetLastUsage()
Definition TUDPSocket.h:111
Int_t GetErrorCode() const
Returns error code.
UInt_t fBytesSent
Definition TUDPSocket.h:49
Int_t fCompress
Definition TUDPSocket.h:50
Bool_t RecvStreamerInfos(TMessage *mess)
Receive a message containing streamer infos.
virtual TInetAddress GetLocalInetAddress()
Return internet address of local host to which the socket is bound.
EServiceType fServType
Definition TUDPSocket.h:54
TInetAddress fLocalAddress
Definition TUDPSocket.h:51
void SetCompressionLevel(Int_t level=ROOT::RCompressionSetting::ELevel::kUseMin)
See comments for function SetCompressionSettings.
TUDPSocket & operator=(const TUDPSocket &)=delete
UInt_t GetBytesSent() const
Definition TUDPSocket.h:102
virtual Int_t RecvRaw(void *buffer, Int_t length, ESendRecvOptions opt=kDefault)
Receive a raw buffer of specified length bytes.
TVirtualMutex * fLastUsageMtx
Definition TUDPSocket.h:60
virtual Int_t GetLocalPort()
Return the local port # to which the socket is bound.
TInetAddress fAddress
Definition TUDPSocket.h:47
TString fService
Definition TUDPSocket.h:53
static ULong64_t fgBytesRecv
Definition TUDPSocket.h:63
const char * GetUrl() const
Definition TUDPSocket.h:112
Bool_t RecvProcessIDs(TMessage *mess)
Receive a message containing process ids.
virtual Bool_t IsValid() const
Definition TUDPSocket.h:114
const char * GetService() const
Definition TUDPSocket.h:99
Int_t fRemoteProtocol
Definition TUDPSocket.h:52
static void NetError(const char *where, Int_t error)
Print error string depending on error code.
TInetAddress GetInetAddress() const
Definition TUDPSocket.h:96
void SetCompressionAlgorithm(Int_t algorithm=ROOT::RCompressionSetting::EAlgorithm::kUseGlobal)
See comments for function SetCompressionSettings.
virtual Int_t Recv(TMessage *&mess)
Receive a TMessage object.
virtual void Close(Option_t *opt="")
Close the socket.
virtual ~TUDPSocket()
Definition TUDPSocket.h:92
Int_t GetRemoteProtocol() const
Definition TUDPSocket.h:109
virtual Int_t SetOption(ESockOptions opt, Int_t val)
Set socket options.
static ULong64_t fgBytesSent
Definition TUDPSocket.h:64
void SetDescriptor(Int_t desc)
Definition TUDPSocket.h:71
Int_t GetCompressionLevel() const
Definition TUDPSocket.h:155
void SendStreamerInfos(const TMessage &mess)
Check if TStreamerInfo must be sent.
virtual Int_t SendObject(const TObject *obj, Int_t kind=kMESS_OBJECT)
Send an object.
TList * fUUIDs
Definition TUDPSocket.h:58
void Touch()
Definition TUDPSocket.h:138
TBits fBitsInfo
Definition TUDPSocket.h:57
Int_t GetPort() const
Definition TUDPSocket.h:98
TTimeStamp fLastUsage
Definition TUDPSocket.h:61
static ULong64_t GetSocketBytesRecv()
Get total number of bytes received via all sockets.
TString fUrl
Definition TUDPSocket.h:56
void SetServType(Int_t st)
Definition TUDPSocket.h:135
virtual Int_t Send(const TMessage &mess)
Send a TMessage object.
Int_t GetCompressionSettings() const
Definition TUDPSocket.h:161
Option_t * GetOption() const override
Definition TUDPSocket.h:79
UInt_t GetBytesRecv() const
Definition TUDPSocket.h:103
void SetService(const char *service)
Definition TUDPSocket.h:134
static ULong64_t GetSocketBytesSent()
Get total number of bytes sent via all sockets.
Int_t fSocket
Definition TUDPSocket.h:55
virtual Int_t Reconnect()
Definition TUDPSocket.h:120
virtual Int_t Select(Int_t interest=kRead, Long_t timeout=-1)
Waits for this socket to change status.
Int_t GetCompressionAlgorithm() const
Definition TUDPSocket.h:149
virtual Int_t SendRaw(const void *buffer, Int_t length, ESendRecvOptions opt=kDefault)
Send a raw buffer of specified length.
virtual Int_t GetDescriptor() const
Definition TUDPSocket.h:95
void SetUrl(const char *url)
Definition TUDPSocket.h:136
Int_t GetServType() const
Definition TUDPSocket.h:100
void SendProcessIDs(const TMessage &mess)
Check if TProcessIDs must be sent.
This class implements a mutex interface.
@ kUseGlobal
Use the global compression algorithm.
Definition Compression.h:93
@ kUseCompiledDefault
Use the compile-time default setting.
Definition Compression.h:53
@ kUseMin
Compression level reserved when we are not sure what to use (1 is for the fastest compression)
Definition Compression.h:72