source: fact/Evidence/Evidence.h@ 12909

Last change on this file since 12909 was 12892, checked in by ogrimm, 13 years ago
New inCallback() method of DIM version v19r23 used
  • Property svn:keywords set to Revision
File size: 2.5 KB
Line 
1#ifndef EVIDENCE_H_SEEN
2#define EVIDENCE_H_SEEN
3
4#include <stdio.h>
5#include <stdarg.h>
6#include <string>
7#include <sstream>
8#include <iomanip>
9#include <errno.h>
10#include <vector>
11#include <map>
12#include <set>
13
14#include <exception>
15#include <cxxabi.h>
16
17#include "dis.hxx"
18#include "dic.hxx"
19
20#define NO_LINK (char *) "__&DIM&NOLINK&__" // Data if no link available
21#define EVIDENCE_REVISION "$Revision: 12892 $"
22
23void ConfigChanged();
24
25// Class declation of Evidence server
26class EvidenceServer: public DimServer {
27
28 // Internal class for configuration requests
29 class Config: public DimInfo, public DimCommand, public DimRpcInfo {
30
31 DimInfo *Service;
32
33 void rpcInfoHandler();
34 void commandHandler();
35 void infoHandler();
36
37 public:
38 Config();
39 ~Config();
40
41 int ConfigTimeStamp;
42 std::string CurrentItem;
43 };
44
45 struct Item {
46 std::string Value;
47 int Time;
48 };
49 std::map<std::string, struct Item> List;
50
51 struct Message {
52 int Severity;
53 char Text[];
54 };
55
56 std::string Name;
57 DimService *MessageService;
58 struct Message *MessageData;
59 class Config *ConfClass;
60 static pthread_mutex_t Mutex;
61 static EvidenceServer *This;
62
63 static void SignalHandler(int); // static for signal()
64 static void Terminate(); // static for set_terminate()
65 virtual void errorHandler(int, int, char *);
66 virtual void exitHandler(int);
67 static void CallConfigChanged(); // static for phread_create()
68
69 public:
70 EvidenceServer(std::string);
71 ~EvidenceServer();
72
73 enum {INFO=0, WARN=10, ERROR=20, FATAL=30};
74
75 void Message(int, const char *, ...);
76 static void SendToLog(const char *, ...);
77 std::string GetConfig(std::string, std::string = std::string());
78 virtual void ConfigChanged() {};
79 static void Lock();
80 static void Unlock();
81 static std::string ToString(char *, void *, int);
82 static bool ServiceOK(DimInfo *);
83 static bool ServiceOK(DimRpcInfo *);
84 static bool ServiceOK(DimCurrentInfo *);
85 static std::vector<std::string> Tokenize(const std::string &, const std::string & = " ");
86
87 bool ExitRequest;
88};
89
90// Class declaration of EvidenceHistory
91class EvidenceHistory {
92
93 public:
94 struct Item {
95 int Time;
96 int Size;
97 char Data[]; // Size bytes follow
98 } __attribute__((packed));
99
100 static const struct Item WrapMark;
101 static const struct Item EndMark;
102
103 private:
104 std::string Name;
105 char *Buffer;
106 int BufferSize;
107 char *DataStart;
108 struct Item *Pointer;
109
110 public:
111 EvidenceHistory(std::string);
112 ~EvidenceHistory();
113
114 bool GetHistory();
115 char *GetFormat();
116 const struct Item *Next();
117 void Rewind();
118};
119#endif
Note: See TracBrowser for help on using the repository browser.