mirror of https://github.com/trapexit/mergerfs.git
Antonio SJ Musumeci
10 years ago
34 changed files with 538 additions and 149 deletions
-
38README.md
-
3src/access.cpp
-
3src/chmod.cpp
-
3src/chown.cpp
-
19src/config.cpp
-
1src/config.hpp
-
3src/create.cpp
-
66src/fs.cpp
-
6src/fs.hpp
-
10src/getattr.cpp
-
13src/getxattr.cpp
-
3src/link.cpp
-
31src/listxattr.cpp
-
3src/mkdir.cpp
-
3src/mknod.cpp
-
5src/open.cpp
-
62src/option_parser.cpp
-
1src/read.cpp
-
2src/readdir.cpp
-
3src/readlink.cpp
-
4src/release.cpp
-
10src/removexattr.cpp
-
2src/rename.cpp
-
2src/rmdir.cpp
-
71src/rwlock.hpp
-
204src/setxattr.cpp
-
2src/statfs.cpp
-
60src/str.cpp
-
36src/str.hpp
-
2src/symlink.cpp
-
2src/truncate.cpp
-
2src/unlink.cpp
-
2src/utimens.cpp
-
4src/write.cpp
@ -0,0 +1,71 @@ |
|||||
|
/*
|
||||
|
The MIT License (MIT) |
||||
|
|
||||
|
Copyright (c) 2014 Antonio SJ Musumeci <trapexit@spawn.link> |
||||
|
|
||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
|
of this software and associated documentation files (the "Software"), to deal |
||||
|
in the Software without restriction, including without limitation the rights |
||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
|
copies of the Software, and to permit persons to whom the Software is |
||||
|
furnished to do so, subject to the following conditions: |
||||
|
|
||||
|
The above copyright notice and this permission notice shall be included in |
||||
|
all copies or substantial portions of the Software. |
||||
|
|
||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||
|
THE SOFTWARE. |
||||
|
*/ |
||||
|
|
||||
|
#include <pthread.h>
|
||||
|
|
||||
|
namespace mergerfs |
||||
|
{ |
||||
|
namespace rwlock |
||||
|
{ |
||||
|
class ReadGuard |
||||
|
{ |
||||
|
public: |
||||
|
ReadGuard(pthread_rwlock_t *lock) |
||||
|
{ |
||||
|
_lock = lock; |
||||
|
pthread_rwlock_rdlock(_lock); |
||||
|
} |
||||
|
|
||||
|
~ReadGuard() |
||||
|
{ |
||||
|
pthread_rwlock_unlock(_lock); |
||||
|
} |
||||
|
|
||||
|
pthread_rwlock_t *_lock; |
||||
|
|
||||
|
private: |
||||
|
ReadGuard(); |
||||
|
}; |
||||
|
|
||||
|
class WriteGuard |
||||
|
{ |
||||
|
public: |
||||
|
WriteGuard(pthread_rwlock_t *lock) |
||||
|
{ |
||||
|
_lock = lock; |
||||
|
pthread_rwlock_wrlock(_lock); |
||||
|
} |
||||
|
|
||||
|
~WriteGuard() |
||||
|
{ |
||||
|
pthread_rwlock_unlock(_lock); |
||||
|
} |
||||
|
|
||||
|
pthread_rwlock_t *_lock; |
||||
|
|
||||
|
private: |
||||
|
WriteGuard(); |
||||
|
}; |
||||
|
} |
||||
|
} |
@ -0,0 +1,60 @@ |
|||||
|
/*
|
||||
|
The MIT License (MIT) |
||||
|
|
||||
|
Copyright (c) 2014 Antonio SJ Musumeci <trapexit@spawn.link> |
||||
|
|
||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
|
of this software and associated documentation files (the "Software"), to deal |
||||
|
in the Software without restriction, including without limitation the rights |
||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
|
copies of the Software, and to permit persons to whom the Software is |
||||
|
furnished to do so, subject to the following conditions: |
||||
|
|
||||
|
The above copyright notice and this permission notice shall be included in |
||||
|
all copies or substantial portions of the Software. |
||||
|
|
||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||
|
THE SOFTWARE. |
||||
|
*/ |
||||
|
|
||||
|
#include <string>
|
||||
|
#include <vector>
|
||||
|
#include <sstream>
|
||||
|
|
||||
|
using std::string; |
||||
|
using std::vector; |
||||
|
using std::istringstream; |
||||
|
|
||||
|
namespace str |
||||
|
{ |
||||
|
void |
||||
|
split(vector<string> &result, |
||||
|
const string str, |
||||
|
const char delimiter) |
||||
|
{ |
||||
|
string part; |
||||
|
istringstream ss(str); |
||||
|
|
||||
|
while(std::getline(ss,part,delimiter)) |
||||
|
result.push_back(part); |
||||
|
} |
||||
|
|
||||
|
string |
||||
|
join(const vector<string> &vec, |
||||
|
const char sep) |
||||
|
{ |
||||
|
if(vec.empty()) |
||||
|
return string(); |
||||
|
|
||||
|
string rv = vec[0]; |
||||
|
for(size_t i = 1; i < vec.size(); i++) |
||||
|
rv += sep + vec[i]; |
||||
|
|
||||
|
return rv; |
||||
|
} |
||||
|
} |
@ -0,0 +1,36 @@ |
|||||
|
/*
|
||||
|
The MIT License (MIT) |
||||
|
|
||||
|
Copyright (c) 2014 Antonio SJ Musumeci <trapexit@spawn.link> |
||||
|
|
||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
|
of this software and associated documentation files (the "Software"), to deal |
||||
|
in the Software without restriction, including without limitation the rights |
||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
|
copies of the Software, and to permit persons to whom the Software is |
||||
|
furnished to do so, subject to the following conditions: |
||||
|
|
||||
|
The above copyright notice and this permission notice shall be included in |
||||
|
all copies or substantial portions of the Software. |
||||
|
|
||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||
|
THE SOFTWARE. |
||||
|
*/ |
||||
|
|
||||
|
#include <string>
|
||||
|
#include <vector>
|
||||
|
|
||||
|
namespace str |
||||
|
{ |
||||
|
void split(std::vector<std::string> &result, |
||||
|
const std::string str, |
||||
|
const char delimiter); |
||||
|
|
||||
|
std::string join(const std::vector<std::string> &vec, |
||||
|
const char sep); |
||||
|
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue