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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/platform/FileSystem.h>
#include <aws/core/platform/Environment.h>
#include <aws/core/platform/Platform.h>
#include <aws/core/utils/DateTime.h>
#include <aws/core/utils/logging/LogMacros.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/UUID.h>
#include <unistd.h>
#include <pwd.h>
#include <sys/stat.h>
#include <dirent.h>
#include <errno.h>
#include <climits>
#include <cassert>
#ifdef __APPLE__
#include <mach-o/dyld.h>
#endif
namespace Aws
{
namespace FileSystem
{
static const char* FILE_SYSTEM_UTILS_LOG_TAG = "FileSystemUtils";
class PosixDirectory : public Directory
{
public:
PosixDirectory(const Aws::String& path, const Aws::String& relativePath) : Directory(path, relativePath), m_dir(nullptr)
{
m_dir = opendir(m_directoryEntry.path.c_str());
AWS_LOGSTREAM_TRACE(FILE_SYSTEM_UTILS_LOG_TAG, "Entering directory " << m_directoryEntry.path);
if(m_dir)
{
AWS_LOGSTREAM_TRACE(FILE_SYSTEM_UTILS_LOG_TAG, "Successfully opened directory " << m_directoryEntry.path);
m_directoryEntry.fileType = FileType::Directory;
}
else
{
AWS_LOGSTREAM_ERROR(FILE_SYSTEM_UTILS_LOG_TAG, "Could not load directory " << m_directoryEntry.path << " with error code " << errno);
}
}
~PosixDirectory()
{
if (m_dir)
{
closedir(m_dir);
}
}
operator bool() const override { return m_directoryEntry.operator bool() && m_dir != nullptr; }
DirectoryEntry Next() override
{
assert(m_dir);
DirectoryEntry entry;
dirent* dirEntry;
bool invalidEntry(true);
while(invalidEntry)
{
if ((dirEntry = readdir(m_dir)))
{
Aws::String entryName = dirEntry->d_name;
if(entryName != ".." && entryName != ".")
{
entry = ParseFileInfo(dirEntry, true);
invalidEntry = false;
}
else
{
AWS_LOGSTREAM_DEBUG(FILE_SYSTEM_UTILS_LOG_TAG, "skipping . or ..");
}
}
else
{
break;
}
}
return entry;
}
private:
DirectoryEntry ParseFileInfo(dirent* dirEnt, bool computePath)
{
DirectoryEntry entry;
if(computePath)
{
Aws::StringStream ss;
ss << m_directoryEntry.path << PATH_DELIM << dirEnt->d_name;
entry.path = ss.str();
ss.str("");
if(m_directoryEntry.relativePath.empty())
{
ss << dirEnt->d_name;
}
else
{
ss << m_directoryEntry.relativePath << PATH_DELIM << dirEnt->d_name;
}
entry.relativePath = ss.str();
}
else
{
entry.path = m_directoryEntry.path;
entry.relativePath = m_directoryEntry.relativePath;
}
AWS_LOGSTREAM_TRACE(FILE_SYSTEM_UTILS_LOG_TAG, "Calling stat on path " << entry.path);
struct stat dirInfo;
if(!lstat(entry.path.c_str(), &dirInfo))
{
if(S_ISDIR(dirInfo.st_mode))
{
AWS_LOGSTREAM_DEBUG(FILE_SYSTEM_UTILS_LOG_TAG, "type directory detected");
entry.fileType = FileType::Directory;
}
else if(S_ISLNK(dirInfo.st_mode))
{
AWS_LOGSTREAM_DEBUG(FILE_SYSTEM_UTILS_LOG_TAG, "type symlink detected");
entry.fileType = FileType::Symlink;
}
else if(S_ISREG(dirInfo.st_mode))
{
AWS_LOGSTREAM_DEBUG(FILE_SYSTEM_UTILS_LOG_TAG, "type file detected");
entry.fileType = FileType::File;
}
entry.fileSize = static_cast<int64_t>(dirInfo.st_size);
AWS_LOGSTREAM_DEBUG(FILE_SYSTEM_UTILS_LOG_TAG, "file size detected as " << entry.fileSize);
}
else
{
AWS_LOGSTREAM_ERROR(FILE_SYSTEM_UTILS_LOG_TAG, "Failed to stat file path " << entry.path << " with error code " << errno);
}
return entry;
}
DIR* m_dir;
};
Aws::String GetHomeDirectory()
{
static const char* HOME_DIR_ENV_VAR = "HOME";
AWS_LOGSTREAM_TRACE(FILE_SYSTEM_UTILS_LOG_TAG, "Checking " << HOME_DIR_ENV_VAR << " for the home directory.");
Aws::String homeDir = Aws::Environment::GetEnv(HOME_DIR_ENV_VAR);
AWS_LOGSTREAM_DEBUG(FILE_SYSTEM_UTILS_LOG_TAG, "Environment value for variable " << HOME_DIR_ENV_VAR << " is " << homeDir);
if(homeDir.empty())
{
AWS_LOGSTREAM_WARN(FILE_SYSTEM_UTILS_LOG_TAG, "Home dir not stored in environment, trying to fetch manually from the OS.");
passwd pw;
passwd *p_pw = nullptr;
char pw_buffer[4096];
getpwuid_r(getuid(), &pw, pw_buffer, sizeof(pw_buffer), &p_pw);
if(p_pw && p_pw->pw_dir)
{
homeDir = p_pw->pw_dir;
}
AWS_LOGSTREAM_INFO(FILE_SYSTEM_UTILS_LOG_TAG, "Pulled " << homeDir << " as home directory from the OS.");
}
Aws::String retVal = homeDir.size() > 0 ? Aws::Utils::StringUtils::Trim(homeDir.c_str()) : "";
if(!retVal.empty())
{
if(retVal.at(retVal.length() - 1) != PATH_DELIM)
{
AWS_LOGSTREAM_DEBUG(FILE_SYSTEM_UTILS_LOG_TAG, "Home directory is missing the final " << PATH_DELIM << " appending one to normalize");
retVal += PATH_DELIM;
}
}
AWS_LOGSTREAM_DEBUG(FILE_SYSTEM_UTILS_LOG_TAG, "Final Home Directory is " << retVal);
return retVal;
}
bool CreateDirectoryIfNotExists(const char* path, bool createParentDirs)
{
Aws::String directoryName = path;
AWS_LOGSTREAM_INFO(FILE_SYSTEM_UTILS_LOG_TAG, "Creating directory " << directoryName);
for (size_t i = (createParentDirs ? 0 : directoryName.size() - 1); i < directoryName.size(); i++)
{
// Create the parent directory if we find a delimiter and the delimiter is not the first char, or if this is the target directory.
if (i != 0 && (directoryName[i] == FileSystem::PATH_DELIM || i == directoryName.size() - 1))
{
if (directoryName[i] == FileSystem::PATH_DELIM)
{
directoryName[i] = '\0';
}
int errorCode = mkdir(directoryName.c_str(), S_IRWXU | S_IRWXG | S_IRWXO);
if (errorCode != 0 && errno != EEXIST)
{
AWS_LOGSTREAM_ERROR(FILE_SYSTEM_UTILS_LOG_TAG, "Creation of directory " << directoryName.c_str() << " returned code: " << errno);
return false;
}
AWS_LOGSTREAM_DEBUG(FILE_SYSTEM_UTILS_LOG_TAG, "Creation of directory " << directoryName.c_str() << " returned code: " << errno);
directoryName[i] = FileSystem::PATH_DELIM;
}
}
return true;
}
bool RemoveFileIfExists(const char* path)
{
AWS_LOGSTREAM_INFO(FILE_SYSTEM_UTILS_LOG_TAG, "Deleting file: " << path);
int errorCode = unlink(path);
AWS_LOGSTREAM_DEBUG(FILE_SYSTEM_UTILS_LOG_TAG, "Deletion of file: " << path << " Returned error code: " << errno);
return errorCode == 0 || errno == ENOENT;
}
bool RemoveDirectoryIfExists(const char* path)
{
AWS_LOGSTREAM_INFO(FILE_SYSTEM_UTILS_LOG_TAG, "Deleting directory: " << path);
int errorCode = rmdir(path);
AWS_LOGSTREAM_DEBUG(FILE_SYSTEM_UTILS_LOG_TAG, "Deletion of directory: " << path << " Returned error code: " << errno);
return errorCode == 0 || errno == ENOTDIR || errno == ENOENT;
}
bool RelocateFileOrDirectory(const char* from, const char* to)
{
AWS_LOGSTREAM_INFO(FILE_SYSTEM_UTILS_LOG_TAG, "Moving file at " << from << " to " << to);
int errorCode = std::rename(from, to);
AWS_LOGSTREAM_DEBUG(FILE_SYSTEM_UTILS_LOG_TAG, "The moving operation of file at " << from << " to " << to << " Returned error code of " << errno);
return errorCode == 0;
}
Aws::String CreateTempFilePath()
{
Aws::StringStream ss;
auto dt = Aws::Utils::DateTime::Now();
ss << dt.ToGmtString("%Y%m%dT%H%M%S") << dt.Millis() << Aws::String(Aws::Utils::UUID::RandomUUID());
Aws::String tempFile(ss.str());
AWS_LOGSTREAM_DEBUG(FILE_SYSTEM_UTILS_LOG_TAG, "CreateTempFilePath generated: " << tempFile);
return tempFile;
}
Aws::String GetExecutableDirectory()
{
char dest[PATH_MAX];
memset(dest, 0, PATH_MAX);
#ifdef __APPLE__
uint32_t destSize = PATH_MAX;
if (_NSGetExecutablePath(dest, &destSize) == 0)
#else
size_t destSize = PATH_MAX;
if (readlink("/proc/self/exe", dest, destSize))
#endif
{
Aws::String executablePath(dest);
auto lastSlash = executablePath.find_last_of('/');
if(lastSlash != std::string::npos)
{
return executablePath.substr(0, lastSlash);
}
}
return "./";
}
Aws::UniquePtr<Directory> OpenDirectory(const Aws::String& path, const Aws::String& relativePath)
{
return Aws::MakeUnique<PosixDirectory>(FILE_SYSTEM_UTILS_LOG_TAG, path, relativePath);
}
} // namespace FileSystem
} // namespace Aws
|