1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
// file : build/filesystem.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <build/filesystem>
#include <unistd.h> // rmdir(), unlink()
#include <sys/types.h> // stat
#include <sys/stat.h> // stat, lstat(), S_IS*, mkdir()
#include <system_error>
using namespace std;
namespace build
{
bool
dir_exists (const path& p)
{
struct stat s;
if (::lstat (p.string ().c_str (), &s) != 0)
{
if (errno == ENOENT || errno == ENOTDIR)
return false;
else
throw system_error (errno, system_category ());
}
return S_ISDIR (s.st_mode);
}
bool
file_exists (const path& p)
{
struct stat s;
if (::lstat (p.string ().c_str (), &s) != 0)
{
if (errno == ENOENT || errno == ENOTDIR)
return false;
else
throw system_error (errno, system_category ());
}
return S_ISREG (s.st_mode);
}
mkdir_status
try_mkdir (const path& p, mode_t m)
{
mkdir_status r (mkdir_status::success);
if (::mkdir (p.string ().c_str (), m) != 0)
{
int e (errno);
// EEXIST means the path already exists but not necessarily as
// a directory.
//
if (e == EEXIST && dir_exists (p))
return mkdir_status::already_exists;
else
throw system_error (e, system_category ());
}
return r;
}
rmdir_status
try_rmdir (const path& p)
{
rmdir_status r (rmdir_status::success);
if (::rmdir (p.string ().c_str ()) != 0)
{
if (errno == ENOENT)
r = rmdir_status::not_exist;
else if (errno == ENOTEMPTY || errno == EEXIST)
r = rmdir_status::not_empty;
else
throw system_error (errno, system_category ());
}
return r;
}
rmfile_status
try_rmfile (const path& p)
{
rmfile_status r (rmfile_status::success);
if (::unlink (p.string ().c_str ()) != 0)
{
if (errno == ENOENT || errno == ENOTDIR)
r = rmfile_status::not_exist;
else
throw system_error (errno, system_category ());
}
return r;
}
}
|