suricata
util-path.h
Go to the documentation of this file.
1 /* Copyright (C) 2007-2012 Open Information Security Foundation
2  *
3  * You can copy, redistribute or modify this Program under the terms of
4  * the GNU General Public License version 2 as published by the Free
5  * Software Foundation.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * version 2 along with this program; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
15  * 02110-1301, USA.
16  */
17 
18 /**
19  * \file
20  *
21  * \author Victor Julien <victor@inliniac.net>
22  *
23  */
24 
25 #ifndef __UTIL_PATH_H__
26 #define __UTIL_PATH_H__
27 
28 #ifndef HAVE_NON_POSIX_MKDIR
29  #define SCMkDir(a, b) mkdir(a, b)
30 #else
31  #define SCMkDir(a, b) mkdir(a)
32 #endif
33 
34 int PathIsAbsolute(const char *);
35 int PathIsRelative(const char *);
36 TmEcode PathJoin (char *out_buf, uint16_t buf_len, const char *const dir, const char *const fname);
37 int SCDefaultMkDir(const char *path);
38 int SCCreateDirectoryTree(const char *path, const bool final);
39 bool SCPathExists(const char *path);
40 bool SCIsRegularDirectory(const struct dirent *const dir_entry);
41 bool SCIsRegularFile(const struct dirent *const dir_entry);
42 char *SCRealPath(const char *path, char *resolved_path);
43 const char *SCBasename(const char *path);
44 
45 #endif /* __UTIL_PATH_H__ */
PathIsAbsolute
int PathIsAbsolute(const char *)
Check if a path is absolute.
Definition: util-path.c:44
SCIsRegularDirectory
bool SCIsRegularDirectory(const struct dirent *const dir_entry)
OS independent wrapper for directory check.
Definition: util-path.c:186
PathIsRelative
int PathIsRelative(const char *)
Check if a path is relative.
Definition: util-path.c:69
PathJoin
TmEcode PathJoin(char *out_buf, uint16_t buf_len, const char *const dir, const char *const fname)
Wrapper to join a directory and filename and resolve using realpath _fullpath is used for WIN32.
Definition: util-path.c:86
SCIsRegularFile
bool SCIsRegularFile(const struct dirent *const dir_entry)
OS independent to check for regular file.
Definition: util-path.c:204
SCRealPath
char * SCRealPath(const char *path, char *resolved_path)
OS independent wrapper for realpath.
Definition: util-path.c:220
TmEcode
TmEcode
Definition: tm-threads-common.h:83
SCCreateDirectoryTree
int SCCreateDirectoryTree(const char *path, const bool final)
Recursively create a directory.
Definition: util-path.c:123
SCDefaultMkDir
int SCDefaultMkDir(const char *path)
Wrapper around SCMkDir with default mode arguments.
Definition: util-path.c:109
SCBasename
const char * SCBasename(const char *path)
Definition: util-path.c:235
SCPathExists
bool SCPathExists(const char *path)
Check if a path exists.
Definition: util-path.c:169