Update Iot.js
[platform/upstream/iotjs.git] / src / platform / iotjs_systemio-linux.h
1 /* Copyright 2016-present Samsung Electronics Co., Ltd. and other contributors
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #ifndef IOTJS_DEVICE_IO_LINUX_GENERAL_H
17 #define IOTJS_DEVICE_IO_LINUX_GENERAL_H
18
19 #include "iotjs_def.h"
20
21 #define DEVICE_IO_PATH_BUFFER_SIZE 64
22 #define DEVICE_IO_PIN_BUFFER_SIZE 10
23
24
25 bool iotjs_systemio_check_path(const char* path);
26
27 bool iotjs_systemio_open_write_close(const char* path, const char* value);
28
29 bool iotjs_systemio_open_read_close(const char* path, char* buffer,
30                                     int buffer_len);
31
32 bool iotjs_systemio_device_open(const char* export_path, int value,
33                                 const char* exported_path,
34                                 const char** created_files,
35                                 int created_files_length);
36
37 bool iotjs_systemio_device_close(const char* export_path, int value);
38
39
40 #endif /* IOTJS_DEVICE_IO_LINUX_GENERAL_H */