vega
vm.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <regex>
4 #include <string>
5 
6 namespace vega {
7  // min, max used to denote VM of "min-max"
8  class VM {
9  public:
10  static const unsigned MAX_LIMIT;
11 
12  typedef uint32_t limit_type;
13 
14  private:
15  // 1 => limits = (1,1), multiple = 0
16  // 2-4 => limits = (2,4), multiple = 0
17  // 3-n => limits = (3,1), multiple = 1
18  // 4-4n => limits = (4,4), multiple = 1
19  const std::pair<limit_type, limit_type> m_limits;
20  const bool m_multiple;
21 
22  public:
23  constexpr VM() : m_limits(std::make_pair(1,1)), m_multiple(false) {}
24  explicit constexpr VM(limit_type n) : m_limits(std::make_pair(n,n)), m_multiple(false) {}
25  explicit VM(const std::string& vm);
26  constexpr VM(limit_type min, limit_type max, bool multiple = false)
27  : m_limits(std::make_pair(min, max)),
28  m_multiple(multiple)
29  {}
30 
31  const std::pair<limit_type, limit_type>& limits() const;
32  bool multiple() const;
33 
34  // True if there is only one possibility
35  bool is_single() const;
36  bool allows_multiplicity(limit_type multiplicity) const;
37 
38  friend std::ostream& operator<<(std::ostream& os, const VM& vm);
39 
40  private:
41  static const std::regex REGEX;
42  static std::pair<limit_type,limit_type> get_pair(const std::string& vm);
43  };
44 }
const std::pair< limit_type, limit_type > & limits() const
uint32_t limit_type
Definition: vm.h:12
bool is_single() const
friend std::ostream & operator<<(std::ostream &os, const VM &vm)
constexpr VM(limit_type n)
Definition: vm.h:24
Definition: vm.h:8
static const unsigned MAX_LIMIT
Definition: vm.h:10
bool allows_multiplicity(limit_type multiplicity) const
bool multiple() const
constexpr VM(limit_type min, limit_type max, bool multiple=false)
Definition: vm.h:26
Definition: age.h:6
constexpr VM()
Definition: vm.h:23