Use file library of libsyscommon 54/251754/2
authorYunmi Ha <yunmi.ha@samsung.com>
Tue, 19 Jan 2021 05:48:56 +0000 (14:48 +0900)
committerYunmi Ha <yunmi.ha@samsung.com>
Tue, 19 Jan 2021 06:38:36 +0000 (15:38 +0900)
Change-Id: I45c9eca440347fd6cb925cecdfe4a1ae2a90ee83
Signed-off-by: Yunmi Ha <yunmi.ha@samsung.com>
hw/battery/battery.c
hw/bezel/bezel.c
hw/common/common.h
hw/display/display.c
hw/touchscreen/touchscreen.c

index f52d0b5d3fb38ed0a97299f3a13079d73aaab90b..e573bd1ebd00ee1e859fc95d31f43f9d39dd0bb2 100644 (file)
@@ -26,6 +26,7 @@
 
 #include <hal/device/hal-battery-interface.h>
 #include <hal/hal-common-interface.h>
+#include <libsyscommon/file.h>
 
 #include "common.h"
 #include "../udev.h"
index e77460c5b94901b9f3c95752097b82cfdf280e6d..5cbc2f7a19d41c953299654d8732c2b593959e99 100644 (file)
@@ -26,6 +26,7 @@
 
 #include <hal/device/hal-bezel-interface.h>
 #include <hal/hal-common-interface.h>
+#include <libsyscommon/file.h>
 
 #include "common.h"
 
index ae965d637dd0fd191e50ecb7a2c8f9b64e05af94..37ce972a51e794665998eb385ca520859c83ab09 100644 (file)
 #ifndef __HAL_BACKEND_COMMON_H__
 #define __HAL_BACKEND_COMMON_H__
 
-#include <errno.h>
-#include <fcntl.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-
 #ifdef FEATURE_DLOG
     #define LOG_TAG "HAL_BACKEND_DEVICE"
     #include <dlog.h>
 
 #define ARRAY_SIZE(name) (sizeof(name)/sizeof(name[0]))
 
-#define SHARED_H_BUF_MAX 255
-
-static inline int sys_read_buf(char *file, char *buf, int len)
-{
-       int fd, r;
-
-       if (!file || !buf || len < 0)
-               return -EINVAL;
-
-       fd = open(file, O_RDONLY);
-       if (fd == -1)
-               return -ENOENT;
-
-       r = read(fd, buf, len);
-       close(fd);
-       if ((r >= 0) && (r < len))
-               buf[r] = '\0';
-       else
-               return -EIO;
-
-       return 0;
-}
-
-static inline int sys_write_buf(char *file, char *buf)
-{
-       int fd, r;
-
-       if (!file || !buf)
-               return -EINVAL;
-
-       fd = open(file, O_WRONLY);
-       if (fd == -1)
-               return -EPERM;
-
-       r = write(fd, buf, strlen(buf));
-       close(fd);
-       if (r < 0)
-               return -EIO;
-
-       return 0;
-}
-
-static inline int sys_get_int(char *fname, int *val)
-{
-       char buf[SHARED_H_BUF_MAX];
-       int r;
-
-       if (!fname || !val)
-               return -EINVAL;
-
-       r = sys_read_buf(fname, buf, sizeof(buf));
-       if (r < 0)
-               return r;
-
-       *val = atoi(buf);
-       return 0;
-}
-
-static inline int sys_get_str(char *fname, char *str, int len)
-{
-       int r;
-
-       if (!fname || !str || len < 0)
-               return -EINVAL;
-
-       r = sys_read_buf(fname, str, len);
-       if (r < 0)
-               return r;
-
-       return 0;
-}
-
-static inline int sys_set_int(char *fname, int val)
-{
-       char buf[SHARED_H_BUF_MAX];
-       int r;
-
-       if (!fname)
-               return -EINVAL;
-
-       snprintf(buf, sizeof(buf), "%d", val);
-       r = sys_write_buf(fname, buf);
-       if (r < 0)
-               return r;
-
-       return 0;
-}
-
-static inline int sys_set_str(char *fname, char *val)
-{
-       int r;
-
-       if (!fname || !val)
-               return -EINVAL;
-
-       r = sys_write_buf(fname, val);
-       if (r < 0)
-               return r;
-
-       return 0;
-}
-
 #endif /* __HAL_BACKEND_COMMON_H__ */
index 1608ddf5e1c16117291028c874db6635a88c6aea..e39d38b24676561efff8c53fbd2fb1eebc64cfd3 100644 (file)
@@ -26,6 +26,7 @@
 
 #include <hal/device/hal-display-interface.h>
 #include <hal/hal-common-interface.h>
+#include <libsyscommon/file.h>
 
 #include "common.h"
 
index c1474eebdd451ae7296d2f7d9ae08d8a8e5b0f9e..73a3597b4c77b92c9b5a57d712db7fe1a71fd148 100644 (file)
@@ -26,6 +26,7 @@
 
 #include <hal/device/hal-touchscreen-interface.h>
 #include <hal/hal-common-interface.h>
+#include <libsyscommon/file.h>
 
 #include "common.h"