dataset.hpp 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /**
  2. * @file
  3. * @author Caleb Fangmeier <caleb@fangmeier.tech>
  4. * @version 0.1
  5. *
  6. * @section LICENSE
  7. *
  8. *
  9. * MIT License
  10. *
  11. * Copyright (c) 2017 Caleb Fangmeier
  12. *
  13. * Permission is hereby granted, free of charge, to any person obtaining a copy
  14. * of this software and associated documentation files (the "Software"), to deal
  15. * in the Software without restriction, including without limitation the rights
  16. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  17. * copies of the Software, and to permit persons to whom the Software is
  18. * furnished to do so, subject to the following conditions:
  19. *
  20. * The above copyright notice and this permission notice shall be included in all
  21. * copies or substantial portions of the Software.
  22. *
  23. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  24. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  25. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  26. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  27. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  28. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  29. * SOFTWARE.
  30. */
  31. #ifndef dataset_hpp
  32. #define dataset_hpp
  33. #include <iostream>
  34. #include "value.hpp"
  35. #include "container.hpp"
  36. #include "memtrack.hpp"
  37. #include "config.hpp"
  38. #include "log.hpp"
  39. #include "TFile.h"
  40. namespace fv {
  41. /*
  42. * A DataSet is a generic source of data that is used to populate
  43. * ObservedValues. For each ObservedValue, it is recommened that the DataSet
  44. * have a field whose value is updated when the load_next() method is called. A
  45. * pointer to this value is then passed during the creation of the
  46. * ObservedValue. It is important, therefore, that the location in memory of
  47. * the data not change from event to event.
  48. */
  49. class DataSet {
  50. private:
  51. void summary() {
  52. INFO(GenValue::summary());
  53. }
  54. int max_events;
  55. protected:
  56. std::map<std::string, GenContainer *> containers;
  57. virtual int get_events() = 0;
  58. virtual int get_current_event() = 0;
  59. virtual fv_util::DataFileDescriptor &get_current_file() = 0;
  60. std::map<std::string, std::string> get_container_name_value_map() {
  61. std::map<std::string, std::string> value_map;
  62. for (auto container : containers)
  63. value_map[container.first] = container.second->get_value_name();
  64. return value_map;
  65. }
  66. virtual bool load_next() = 0;
  67. virtual void save_config() = 0;
  68. public:
  69. bool next(bool print_status=true) {
  70. if(print_status) {
  71. size_t m_used = fv_util::getCurrentRSS() / 1024 / 1024;
  72. size_t m_peak = fv_util::getPeakRSS() / 1024 / 1024;
  73. std::cout << "\rprocessing event: " << get_current_event() + 1 << "/" << get_events()
  74. << ", " << m_used << "/" << m_peak << "MB used/peak"
  75. << " of file: " << get_current_file().filename << std::flush;
  76. }
  77. if (max_events && get_current_event() + 1 >= max_events) return false;
  78. GenValue::reset();
  79. return load_next();
  80. }
  81. void set_max_events(const int &max_events) {
  82. this->max_events = max_events;
  83. }
  84. int get_max_events() {
  85. return this->max_events;
  86. }
  87. virtual void save_all() {
  88. for (auto container : containers)
  89. container.second->save();
  90. save_config();
  91. }
  92. template<typename C, typename... ArgTypes>
  93. C *register_container(ArgTypes... args) {
  94. C *container = new C(args...);
  95. if (containers[container->get_name()] != nullptr) {
  96. CRITICAL("Container with name \"" + container->get_name() + "\" already exists.", -1);
  97. }
  98. containers[container->get_name()] = container;
  99. return container;
  100. }
  101. GenContainer *get_container(std::string container_name) {
  102. GenContainer *c = containers[container_name];
  103. if (c == nullptr) {
  104. CRITICAL("Request for container \"" << container_name << "\" failed. Doesn't exist.", -1);
  105. }
  106. return c;
  107. }
  108. };
  109. }
  110. #endif // dataset_hpp