otsdaq-utilities  3.02.00
ChatSupervisor.h
1 #ifndef _ots_ChatSupervisor_h
2 #define _ots_ChatSupervisor_h
3 
4 #include "otsdaq/CoreSupervisors/CoreSupervisorBase.h"
5 
6 namespace ots
7 {
12 {
13  public:
14  XDAQ_INSTANTIATOR();
15 
16  ChatSupervisor(xdaq::ApplicationStub* s);
17  virtual ~ChatSupervisor(void);
18 
19  void destroy(void);
20 
21  virtual void defaultPage(xgi::Input* in, xgi::Output* out) override;
22  void Default(xgi::Input* in, xgi::Output* out);
23 
24  virtual void request(const std::string& requestType,
25  cgicc::Cgicc& cgiIn,
26  HttpXmlDocument& xmlOut,
27  const WebUsers::RequestUserInfo& userInfo) override;
28 
29  virtual void forceSupervisorPropertyValues(void)
30  override;
31 
32  private:
38  std::vector<std::string> ChatHistoryEntry_, ChatHistoryAuthor_;
39  std::vector<time_t> ChatHistoryTime_;
40  std::vector<uint64_t> ChatHistoryIndex_;
41 
42  uint64_t ChatLastUpdateIndex;
43 
44  std::vector<std::string> ChatUsers_;
45  std::vector<time_t> ChatUsersTime_;
46 
47  enum
48  {
49  CHAT_HISTORY_EXPIRATION_TIME = 30 * 60,
50  CHAT_HISTORY_MAX_ENTRIES = 100,
51  };
52 
53  uint64_t incrementAndGetLastUpdate();
54  bool isLastUpdateIndexStale(uint64_t last);
55  bool isChatOld(uint64_t chatIndex, uint64_t last);
56 
57  void newUser(const std::string& user);
58  void newChat(const std::string& chat, const std::string& user);
59  void removeChatHistoryEntry(uint64_t i);
60  void removeChatUserEntry(uint64_t i);
61  void cleanupExpiredChats(void);
62 
63  void insertActiveUsers(HttpXmlDocument* xmldoc);
64  void insertChatRefresh(HttpXmlDocument* xmldoc,
65  uint64_t lastUpdateIndex,
66  const std::string& user);
67 
68  void escapeChat(std::string& chat);
69 };
70 } // namespace ots
71 
72 #endif
virtual void request(const std::string &requestType, cgicc::Cgicc &cgiIn, HttpXmlDocument &xmlOut, const WebUsers::RequestUserInfo &userInfo) override
end forceSupervisorPropertyValues()
virtual void forceSupervisorPropertyValues(void) override
override to force supervisor property values (and ignore user settings)