From 96f137bddf128359920ee9ed92f92ecc412c3822 Mon Sep 17 00:00:00 2001 From: Aleksander Zdyb Date: Mon, 29 Jun 2015 17:10:01 +0200 Subject: [PATCH] Add Lad::DataCollector and Lad::SyslogDataCollector Change-Id: Icbbaa715ed943d1455c746adb45b2a41b0b7fc15 --- src/Lad/DataCollector.h | 37 +++++++++++++++++++++++++++++++++++++ src/Lad/SyslogDataCollector.cpp | 32 ++++++++++++++++++++++++++++++++ src/Lad/SyslogDataCollector.h | 38 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 107 insertions(+) create mode 100644 src/Lad/DataCollector.h create mode 100644 src/Lad/SyslogDataCollector.cpp create mode 100644 src/Lad/SyslogDataCollector.h diff --git a/src/Lad/DataCollector.h b/src/Lad/DataCollector.h new file mode 100644 index 0000000..d79d24b --- /dev/null +++ b/src/Lad/DataCollector.h @@ -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 + * @version 1.0 + */ + +#ifndef SRC_LAD_DATACOLLECTOR_H +#define SRC_LAD_DATACOLLECTOR_H + +#include + +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 index 0000000..99f61a5 --- /dev/null +++ b/src/Lad/SyslogDataCollector.cpp @@ -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 + * @version 1.0 + */ + +#include + +#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 index 0000000..600bcca --- /dev/null +++ b/src/Lad/SyslogDataCollector.h @@ -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 + * @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 */ -- 2.7.4