You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.9 KiB

  1. /*
  2. Copyright (c) 2016, Antonio SJ Musumeci <trapexit@spawn.link>
  3. Permission to use, copy, modify, and/or distribute this software for any
  4. purpose with or without fee is hereby granted, provided that the above
  5. copyright notice and this permission notice appear in all copies.
  6. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  7. WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  8. MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  9. ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  10. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  11. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  12. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  13. */
  14. #ifndef __FS_XATTR_HPP__
  15. #define __FS_XATTR_HPP__
  16. #include <string>
  17. #include <vector>
  18. #include <map>
  19. namespace fs
  20. {
  21. namespace xattr
  22. {
  23. using std::string;
  24. using std::vector;
  25. using std::map;
  26. int list(const string &path,
  27. vector<char> &attrs);
  28. int list(const string &path,
  29. string &attrs);
  30. int list(const string &path,
  31. vector<string> &attrs);
  32. int get(const string &path,
  33. const string &attr,
  34. vector<char> &value);
  35. int get(const string &path,
  36. const string &attr,
  37. string &value);
  38. int get(const string &path,
  39. map<string,string> &attrs);
  40. int set(const string &path,
  41. const string &key,
  42. const string &value,
  43. const int flags);
  44. int set(const int fd,
  45. const string &key,
  46. const string &value,
  47. const int flags);
  48. int set(const string &path,
  49. const map<string,string> &attrs);
  50. int copy(const int fdin,
  51. const int fdout);
  52. int copy(const string &from,
  53. const string &to);
  54. }
  55. }
  56. #endif // __FS_HPP__