Goddess of Justice DB, the database used for storage on IzaroDFS
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

38 řádky
850 B

před 5 roky
před 5 roky
před 5 roky
před 5 roky
  1. #pragma once
  2. #include "endian.hpp"
  3. #include "database.hpp"
  4. enum class db_op : uint32_t {
  5. version = 0,
  6. read = 1,
  7. write = 2,
  8. remove = 3,
  9. stats = 4,
  10. sread = 5,
  11. swrite = 6,
  12. sallocate = 7,
  13. sremove = 3,
  14. confirm = 8
  15. };
  16. struct [[gnu::packed]] received_data {
  17. bitops::regulated<db_op> op = db_op::version;
  18. bitops::regulated<uint64_t> rep_id = 0;
  19. record_identifier identifier = record_identifier{};
  20. db_page page = {0};
  21. };
  22. struct [[gnu::packed]] sending_data {
  23. bitops::regulated<uint64_t> rep_id = 0;
  24. record identifier = record{};
  25. db_page page = {0};
  26. };
  27. struct [[gnu::packed]] stats_data {
  28. bitops::regulated<uint64_t> free;
  29. bitops::regulated<uint64_t> free_deleted;
  30. bitops::regulated<uint64_t> total_pages;
  31. bitops::regulated<uint64_t> total_records;
  32. bitops::regulated<uint64_t> total_delete;
  33. bitops::regulated<uint64_t> cow_full;
  34. };