blob: 4486bbd0dd91aed7cd2b51745cdb6d00742b358b (
plain)
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
|
// **********************************************************************
//
// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#include <IceUtil/FileUtil.h>
#include <IceUtil/Unicode.h>
using namespace std;
//
// Detemine if path is an absolute path
//
bool
IceUtilInternal::isAbsolutePath(const string& path)
{
size_t i = 0;
size_t size = path.size();
// Skip whitespace
while(i < size && isspace(static_cast<unsigned char>(path[i])))
{
++i;
}
#ifdef _WIN32
// We need at least 3 non whitespace character to have
// and absolute path
if(i + 3 > size)
{
return false;
}
// Check for X:\ path ('\' may have been converted to '/')
if((path[i] >= 'A' && path[i] <= 'Z') || (path[i] >= 'a' && path[i] <= 'z'))
{
return path[i + 1] == ':' && (path[i + 2] == '\\' || path[i + 2] == '/');
}
// Check for UNC path
return (path[i] == '\\' && path[i + 1] == '\\') || path[i] == '/';
#else
if(i >= size)
{
return false;
}
return path[i] == '/';
#endif
}
//
// Detemine if a directory exists.
//
bool
IceUtilInternal::directoryExists(const string& path)
{
IceUtilInternal::structstat st;
if(IceUtilInternal::stat(path, &st) != 0 || !S_ISDIR(st.st_mode))
{
return false;
}
return true;
}
//
// Determine if a regular file exists.
//
bool
IceUtilInternal::fileExists(const string& path)
{
IceUtilInternal::structstat st;
if(IceUtilInternal::stat(path, &st) != 0 || !S_ISREG(st.st_mode))
{
return false;
}
return true;
}
//
// Stat
//
int
IceUtilInternal::stat(const string& path, structstat* buffer)
{
#ifdef _WIN32
return _wstat(IceUtil::stringToWstring(path).c_str(), buffer);
#else
return stat(path.c_str(), buffer);
#endif
}
|