mirror of https://github.com/trapexit/mergerfs.git
Antonio SJ Musumeci
10 years ago
23 changed files with 98 additions and 65 deletions
-
2src/access.cpp
-
4src/chmod.cpp
-
4src/chown.cpp
-
4src/create.cpp
-
26src/fs.hpp
-
2src/getattr.cpp
-
4src/getxattr.cpp
-
2src/ioctl.cpp
-
6src/link.cpp
-
2src/listxattr.cpp
-
6src/mkdir.cpp
-
6src/mknod.cpp
-
2src/open.cpp
-
55src/path.hpp
-
2src/readlink.cpp
-
4src/removexattr.cpp
-
8src/rename.cpp
-
4src/rmdir.cpp
-
4src/setxattr.cpp
-
4src/symlink.cpp
-
4src/truncate.cpp
-
4src/unlink.cpp
-
4src/utimens.cpp
@ -0,0 +1,55 @@ |
|||
/*
|
|||
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. |
|||
*/ |
|||
|
|||
#ifndef __PATH_HPP__
|
|||
#define __PATH_HPP__
|
|||
|
|||
#include <string>
|
|||
#include <vector>
|
|||
|
|||
struct Path |
|||
{ |
|||
Path() {} |
|||
|
|||
explicit |
|||
Path(const std::string &b, |
|||
const std::string &f) |
|||
: base(b), |
|||
full(f) |
|||
{} |
|||
|
|||
explicit |
|||
Path(const char *b, |
|||
const std::string &f) |
|||
: base(b), |
|||
full(f) |
|||
{} |
|||
|
|||
std::string base; |
|||
std::string full; |
|||
}; |
|||
|
|||
typedef std::vector<Path> Paths; |
|||
|
|||
#endif /* __PATH_HPP__ */
|
Write
Preview
Loading…
Cancel
Save
Reference in new issue