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.

51 lines
1.3 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 <string>
  17. #include <vector>
  18. struct PolicyRV
  19. {
  20. struct RV
  21. {
  22. RV(const int rv_,
  23. const std::string &basepath_)
  24. : rv(rv_),
  25. basepath(basepath_)
  26. {
  27. }
  28. int rv;
  29. std::string basepath;
  30. };
  31. std::vector<RV> success;
  32. std::vector<RV> error;
  33. void
  34. insert(const int err_,
  35. const std::string &basepath_)
  36. {
  37. if(err_ == 0)
  38. success.push_back(RV(err_,basepath_));
  39. else
  40. error.push_back(RV(-err_,basepath_));
  41. }
  42. };