vega
dictionary.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <set>
4 #include <map>
5 #include <vector>
6 
7 #include "vega/tag_mask.h"
8 #include "vega/dictionary/page.h"
10 
11 namespace vega {
12  namespace dictionary {
13  class Dictionary {
14  private:
15  static std::shared_ptr<Dictionary> singleton;
16 
17  std::map<std::string, std::shared_ptr<const Page>> m_name_to_page;
18  std::vector<unsigned> m_popcounts_decreasing;
19  std::map<unsigned, std::set<Tag>> m_popcount_to_tag_masks;
20  std::map<Tag, std::map<Tag,std::shared_ptr<const Page>>> m_mask_tag_to_map_from_value_tag_to_pages;
21 
22  std::map<std::string, std::shared_ptr<PrivateOwner>> m_name_to_private_owner;
23 
24  explicit Dictionary(const std::string& file_name);
25  void add_pages(const std::vector<std::shared_ptr<const Page>>& pages);
26 
27  public:
28  static void set_dictionary(const std::string& file_name);
29  static const Dictionary& instance();
30 
31  std::shared_ptr<const Page> page_for(const Tag& tag) const;
32  std::shared_ptr<const Page> page_for(const std::string& name) const;
33  std::shared_ptr<PrivateOwner> private_owner(const std::string& name) const;
34  };
35 
36  void set_dictionary(const std::string& file_name);
37  const Dictionary& instance();
38  }
39 }
static void set_dictionary(const std::string &file_name)
Definition: dictionary.h:13
Definition: age.h:6
std::shared_ptr< const Page > page_for(const Tag &tag) const
std::shared_ptr< PrivateOwner > private_owner(const std::string &name) const
Class for working with DICOM data element tags.
Definition: tag.h:15
static const Dictionary & instance()