Checked file stat before realpath
[platform/core/connectivity/stc-manager.git] / src / helper / helper-file.h
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __STC_HELPER_FILE_H__
18 #define __STC_HELPER_FILE_H__
19
20 #include <assert.h>
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <stdlib.h>
24 #include <sys/stat.h>
25
26 #include "stc-manager.h"
27
28 /**
29  * @desc write string to the file
30  * @param path - path to the file, str - string is written to the file
31  * @return negative value if error
32  */
33 int fwrite_str(const char *path, const char *str);
34
35 int fwrite_uint(const char *path, const uint32_t number);
36
37 int fwrite_ulong(const char *path, const unsigned long number);
38
39 int fread_str(const char *path, char **str);
40
41 int fread_uint(const char *path, uint32_t *number);
42
43 int fread_ulong(const char *path, unsigned long *number);
44
45 int fwrite_array(const char *path, const void *array,
46                  const size_t size_of_elem,
47                  const size_t numb_of_elem);
48
49 #endif  /*__STC_HELPER_FILE_H__*/