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.

76 lines
1.9 KiB

  1. /*
  2. ISC License
  3. Copyright (c) 2020, 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_,
  32. attrname_,
  33. value_,
  34. size_);
  35. #else
  36. return (errno=ENOTSUP,-1);
  37. #endif
  38. }
  39. static
  40. inline
  41. int
  42. lgetxattr(const std::string &path_,
  43. const char *attrname_,
  44. void *value_,
  45. const size_t size_)
  46. {
  47. return fs::lgetxattr(path_.c_str(),
  48. attrname_,
  49. value_,
  50. size_);
  51. }
  52. static
  53. inline
  54. int
  55. lgetxattr(const std::string &path_,
  56. const std::string &attrname_,
  57. void *value_,
  58. const size_t size_)
  59. {
  60. return fs::lgetxattr(path_.c_str(),
  61. attrname_.c_str(),
  62. value_,
  63. size_);
  64. }
  65. }