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.

95 lines
2.3 KiB

  1. /*
  2. ISC License
  3. Copyright (c) 2016, Antonio SJ Musumeci <trapexit@spawn.link>
  4. Permission to use, copy, modify, and/or distribute this software for any
  5. purpose with or without fee is hereby granted, provided that the above
  6. copyright notice and this permission notice appear in all copies.
  7. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. */
  15. #pragma once
  16. #include "errno.hpp"
  17. #include "xattr.hpp"
  18. #include <string>
  19. #include <sys/types.h>
  20. namespace fs
  21. {
  22. static
  23. inline
  24. int
  25. lgetxattr(const char *path_,
  26. const char *attrname_,
  27. void *value_,
  28. const size_t size_)
  29. {
  30. #ifdef USE_XATTR
  31. return ::lgetxattr(path_,attrname_,value_,size_);
  32. #else
  33. return (errno=ENOTSUP,-1);
  34. #endif
  35. }
  36. static
  37. inline
  38. int
  39. lgetxattr(const std::string &path_,
  40. const char *attrname_,
  41. void *value_,
  42. const size_t size_)
  43. {
  44. return fs::lgetxattr(path_.c_str(),attrname_,value_,size_);
  45. }
  46. static
  47. inline
  48. int
  49. lgetxattr(const std::string &path_,
  50. const std::string &attrname_,
  51. void *value_,
  52. const size_t size_)
  53. {
  54. return fs::lgetxattr(path_.c_str(),
  55. attrname_.c_str(),
  56. value_,
  57. size_);
  58. }
  59. static
  60. inline
  61. int
  62. fgetxattr(const int fd_,
  63. const char *attrname_,
  64. void *value_,
  65. const size_t size_)
  66. {
  67. #ifdef USE_XATTR
  68. return ::fgetxattr(fd_,attrname_,value_,size_);
  69. #else
  70. return (errno=ENOTSUP,-1);
  71. #endif
  72. }
  73. static
  74. inline
  75. int
  76. fgetxattr(const int fd_,
  77. const std::string &attrname_,
  78. void *value_,
  79. const size_t size_)
  80. {
  81. return fs::fgetxattr(fd_,attrname_.c_str(),value_,size_);
  82. }
  83. }