XRootD
XrdMonitor.hh
Go to the documentation of this file.
1 #ifndef __XRDMONITOR__
2 #define __XRDMONITOR__
3 /******************************************************************************/
4 /* */
5 /* X r d M o n i t o r . h h */
6 /* */
7 /* (c) 2024 by the Board of Trustees of the Leland Stanford, Jr., University */
8 /* All Rights Reserved */
9 /* Produced by Andrew Hanushevsky for Stanford University under contract */
10 /* DE-AC02-76-SFO0515 with the Department of Energy */
11 /* */
12 /* This file is part of the XRootD software suite. */
13 /* */
14 /* XRootD is free software: you can redistribute it and/or modify it under */
15 /* the terms of the GNU Lesser General Public License as published by the */
16 /* Free Software Foundation, either version 3 of the License, or (at your */
17 /* option) any later version. */
18 /* */
19 /* XRootD is distributed in the hope that it will be useful, but WITHOUT */
20 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
21 /* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public */
22 /* License for more details. */
23 /* */
24 /* You should have received a copy of the GNU Lesser General Public License */
25 /* along with XRootD in a file called COPYING.LESSER (LGPL license) and file */
26 /* COPYING (GPL license). If not, see <http://www.gnu.org/licenses/>. */
27 /* */
28 /* The copyright holder's institutional names and contributor's names may not */
29 /* be used to endorse or promote products derived from this software without */
30 /* specific prior written permission of the institution or contributor. */
31 /******************************************************************************/
32 
33 #include <map>
34 #include <cstring>
35 #include <vector>
36 
37 #include "Xrd/XrdMonRoll.hh"
38 
40 {
41 public:
42 
43 // Format Options:
44 //
45 enum Mopts {F_JSON = 0x10000000, X_PLUG = 0x00000001, X_ADON = 0x00000002};
46 
47 int Format(char* buff, int bsize, int& item, int opts=0);
48 
49 int Format(char* buff, int bsize, const char* setName, int opts=0);
50 
51 bool Register(XrdMonRoll::rollType setType, const char* setName,
52  XrdMonRoll::setMember setVec[]);
53 
54 bool Registered() {return !regVec.empty();}
55 
58 
59 private:
60 enum sType {isAdon=0x00000001, isPlug=0x00000002};
61 
62 struct RegInfo
63  {char* setName;
64  int setType;
65  struct {char* hdr;
66  std::vector<char*> key;
67  } Json;
68  struct {char* hdr;
69  std::vector<char*> keyBeg;
70  std::vector<char*> keyEnd;
71  } Xml;
72  RAtomic_uint** keyVal;
73 
74  RegInfo(const char* sName, int sType)
75  : setName(strdup(sName)), setType(sType) {}
76  ~RegInfo() {} // Never gets deleted
77  };
78 
79 RegInfo* FindSet(const char* setName, int sType);
80 int FormJSON(RegInfo& regInfo, char* buff, int bsize);
81 int FormXML( RegInfo& regInfo, char* buff, int bsize);
82 
83 std::vector<RegInfo*> regVec;
84 };
85 #endif
struct myOpts opts
int Format(char *buff, int bsize, int &item, int opts=0)
Definition: XrdMonitor.cc:64
bool Register(XrdMonRoll::rollType setType, const char *setName, XrdMonRoll::setMember setVec[])
Definition: XrdMonitor.cc:163
bool Registered()
Definition: XrdMonitor.hh:54