Add Lad::DataCollector and Lad::SyslogDataCollector 42/43742/1
authorAleksander Zdyb <a.zdyb@samsung.com>
Mon, 29 Jun 2015 15:10:01 +0000 (17:10 +0200)
committerAleksander Zdyb <a.zdyb@samsung.com>
Fri, 10 Jul 2015 12:50:28 +0000 (14:50 +0200)
Change-Id: Icbbaa715ed943d1455c746adb45b2a41b0b7fc15

src/Lad/DataCollector.h [new file with mode: 0644]
src/Lad/SyslogDataCollector.cpp [new file with mode: 0644]
src/Lad/SyslogDataCollector.h [new file with mode: 0644]

diff --git a/src/Lad/DataCollector.h b/src/Lad/DataCollector.h
new file mode 100644 (file)
index 0000000..d79d24b
--- /dev/null
@@ -0,0 +1,37 @@
+/*
+ * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ *    Licensed under the Apache License, Version 2.0 (the "License");
+ *    you may not use this file except in compliance with the License.
+ *    You may obtain a copy of the License at
+ *
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *    Unless required by applicable law or agreed to in writing, software
+ *    distributed under the License is distributed on an "AS IS" BASIS,
+ *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *    See the License for the specific language governing permissions and
+ *    limitations under the License.
+ */
+/**
+ * @file        src/Lad/DataCollector.h
+ * @author      Aleksander Zdyb <a.zdyb@samsung.com>
+ * @version     1.0
+ */
+
+#ifndef SRC_LAD_DATACOLLECTOR_H
+#define SRC_LAD_DATACOLLECTOR_H
+
+#include <string>
+
+namespace Lad {
+
+class DataCollector {
+public:
+    virtual ~DataCollector() = default;
+    virtual void log(const std::string &logMessage) = 0;
+};
+
+} /* namespace Lad */
+
+#endif /* SRC_LAD_DATACOLLECTOR_H */
diff --git a/src/Lad/SyslogDataCollector.cpp b/src/Lad/SyslogDataCollector.cpp
new file mode 100644 (file)
index 0000000..99f61a5
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+ * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ *    Licensed under the Apache License, Version 2.0 (the "License");
+ *    you may not use this file except in compliance with the License.
+ *    You may obtain a copy of the License at
+ *
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *    Unless required by applicable law or agreed to in writing, software
+ *    distributed under the License is distributed on an "AS IS" BASIS,
+ *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *    See the License for the specific language governing permissions and
+ *    limitations under the License.
+ */
+/**
+ * @file        src/Lad/SyslogDataCollector.cpp
+ * @author      Aleksander Zdyb <a.zdyb@samsung.com>
+ * @version     1.0
+ */
+
+#include <syslog.h>
+
+#include "SyslogDataCollector.h"
+
+namespace Lad {
+
+void SyslogDataCollector::log(const std::string &logMessage) {
+    syslog(LOG_INFO, "%s", logMessage.c_str());
+}
+
+} /* namespace Lad */
diff --git a/src/Lad/SyslogDataCollector.h b/src/Lad/SyslogDataCollector.h
new file mode 100644 (file)
index 0000000..600bcca
--- /dev/null
@@ -0,0 +1,38 @@
+/*
+ * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ *    Licensed under the Apache License, Version 2.0 (the "License");
+ *    you may not use this file except in compliance with the License.
+ *    You may obtain a copy of the License at
+ *
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *    Unless required by applicable law or agreed to in writing, software
+ *    distributed under the License is distributed on an "AS IS" BASIS,
+ *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *    See the License for the specific language governing permissions and
+ *    limitations under the License.
+ */
+/**
+ * @file        src/Lad/SyslogDataCollector.h
+ * @author      Aleksander Zdyb <a.zdyb@samsung.com>
+ * @version     1.0
+ */
+
+#ifndef SRC_LAD_SYSLOGDATACOLLECTOR_H
+#define SRC_LAD_SYSLOGDATACOLLECTOR_H
+
+#include "DataCollector.h"
+
+namespace Lad {
+
+class SyslogDataCollector : public DataCollector {
+public:
+    virtual ~SyslogDataCollector() = default;
+
+    virtual void log(const std::string &logMessage);
+};
+
+} /* namespace Lad */
+
+#endif /* SRC_LAD_SYSLOGDATACOLLECTOR_H */