summaryrefslogtreecommitdiff
path: root/notification-ex/socket_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'notification-ex/socket_handler.h')
-rw-r--r--notification-ex/socket_handler.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/notification-ex/socket_handler.h b/notification-ex/socket_handler.h
new file mode 100644
index 0000000..aa9747f
--- /dev/null
+++ b/notification-ex/socket_handler.h
@@ -0,0 +1,41 @@
+/*
+ * Copyright (c) 2020 Samsung Electronics Co., Ltd.
+ *
+ * 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.
+ */
+
+#ifndef NOTIFICATION_EX_SOCKET_HANDLER_H_
+#define NOTIFICATION_EX_SOCKET_HANDLER_H_
+
+#include <unistd.h>
+
+namespace notification {
+
+class SocketHandler {
+ public:
+ SocketHandler(int fd):fd_(fd){}
+ ~SocketHandler() {
+ if(fd_!=-1)
+ close(fd_);
+ }
+ operator int() const { return fd_; }
+ int Get() {
+ return fd_;
+ }
+
+ private:
+ int fd_ = -1;
+};
+
+} // namespace notification
+#endif // NOTIFICATION_EX_SOCKET_HANDLER_H_ \ No newline at end of file