EMANE  1.0.1
logservice.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013-2016 - Adjacent Link LLC, Bridgewater, New Jersey
3  * Copyright (c) 2008-2012 - DRS CenGen, LLC, Columbia, Maryland
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * * Redistributions of source code must retain the above copyright
11  * notice, this list of conditions and the following disclaimer.
12  * * Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in
14  * the documentation and/or other materials provided with the
15  * distribution.
16  * * Neither the name of DRS CenGen, LLC nor the names of its
17  * contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #ifndef EMANELOGSERVICE_HEADER_
35 #define EMANELOGSERVICE_HEADER_
36 
38 #include "emane/componenttypes.h"
39 #include "emane/inetaddr.h"
40 #include "emane/utils/vectorio.h"
41 #include "emane/utils/singleton.h"
42 #include "datagramsocket.h"
43 
44 #include <map>
45 #include <atomic>
46 #include <thread>
47 #include <fstream>
48 
49 namespace EMANE
50 {
61  public Utils::Singleton<LogService>
62  {
63  public:
64  ~LogService();
65 
66  void log(LogLevel level,const char *format, ...)
67  __attribute__ ((format (printf, 3, 4)));
68 
69  void vlog(LogLevel level,const char *format,va_list ap);
70 
71  void log(LogLevel level, const Strings & strings);
72 
73  void setLogLevel(LogLevel level);
74 
75  void redirectLogsToFile(const std::string & file);
76 
77  void open();
78 
79  protected:
80  LogService();
81 
82  private:
83  std::thread thread_;
84 
85  DatagramSocket udpLoggerTxSocket_;
86 
87  INETAddr localSocketAddress_;
88 
89  std::atomic<LogLevel> level_;
90 
91  bool bOpenBackend_;
92 
93  std::uint32_t u32LogSequenceNumber_;
94 
95  std::ofstream ofs_;
96 
97  std::ostream * pStream_;
98 
99  int iEventFd_;
100 
101  int iepollFd_;
102 
103  void processControlMessages();
104 
105  bool isLogAllowed(LogLevel level) const;
106 
107  void vlog_i(LogLevel level,const char *format,va_list ap);
108 
109  void log_i(LogLevel level, const Strings & strings);
110 
111  void log_i(LogLevel level,const char *format, ...)
112  __attribute__ ((format (printf, 3, 4)));
113 
114  void writeLogString(const char * pzLogMessage);
115  };
116 
118 }
119 
120 #endif //EMANELOGSERVICE_HEADER_
EMANE::NetworkAdapterException __attribute__
void void vlog(LogLevel level, const char *format, va_list ap)
Definition: logservice.cc:141
Ensure a class only has one instance, and provide a global point of access to it. ...
Definition: singleton.h:47
void log(LogLevel level, const char *format,...) __attribute__((format(printf
Definition: logservice.cc:117
Log service provider interface.
void redirectLogsToFile(const std::string &file)
Definition: logservice.cc:150
std::list< std::string > Strings
Definition: types.h:66
Platform log service.
Definition: logservice.h:60
void setLogLevel(LogLevel level)
Definition: logservice.cc:157
Definition: agent.h:43