summary refs log tree commit diff stats
path: root/lib/database.h
blob: efb54e1718ba0cc9b5b5c7cd0b4d6746040e68a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#ifndef DATABASE_H_0B0A47D2
#define DATABASE_H_0B0A47D2

#include <string>
#include <exception>
#include <stdexcept>
#include <list>
#include <set>
#include "notion.h"
#include "word.h"
#include "frame.h"
#include "part.h"
#include "form.h"
#include "pronunciation.h"
#include "order.h"

struct sqlite3;

namespace verbly {

  template <typename Object>
  class query;

  class database {
  public:

    // Constructor

    explicit database(std::string path);

    // Disable copying

    database(const database& other) = delete;
    database& operator=(const database& other) = delete;

    // Move constructor and move assignment

    database(database&& other);
    database& operator=(database&& other);

    // Swap

    friend void swap(database& first, database& second);

    // Destructor

    ~database();

    // Information

    int getMajorVersion() const
    {
      return major_;
    }

    int getMinorVersion() const
    {
      return minor_;
    }

    // Queries

    query<notion> notions(filter where, order sortOrder = {}, int limit = 1) const;

    query<word> words(filter where, order sortOrder = {}, int limit = 1) const;

    query<frame> frames(filter where, order sortOrder = {}, int limit = 1) const;

    query<part> parts(filter where, order sortOrder = {}, int limit = 1) const;

    query<form> forms(filter where, order sortOrder = {}, int limit = 1) const;

    query<pronunciation> pronunciations(filter where, order sortOrder = {}, int limit = 1) const;

    std::set<std::string> selrestrs(int partId) const;

    std::set<std::string> synrestrs(int partId) const;

  private:

    database() = default;

    sqlite3* ppdb_ = nullptr;

    int major_;
    int minor_;

  };

  class database_version_mismatch : public std::logic_error {
  public:

    database_version_mismatch(int right, int wrong) :
      std::logic_error(generateMessage(right, wrong)),
      right_(right),
      wrong_(wrong)
    {
    }

    int getRightVersion() const noexcept
    {
      return right_;
    }

    int getWrongVersion() const noexcept
    {
      return wrong_;
    }

  private:

    static std::string generateMessage(int right, int wrong);

    int right_;
    int wrong_;
  };

};

#endif /* end of include guard: DATABASE_H_0B0A47D2 */