blob: dfe67c0ea5adcb56de61b29fd61cb93251b15742 (
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
|
#ifndef FRAME_H_EA29065A
#define FRAME_H_EA29065A
#include <stdexcept>
#include <list>
#include "field.h"
#include "filter.h"
#include "part.h"
struct sqlite3_stmt;
namespace verbly {
class database;
class frame {
public:
// Default constructor
frame() = default;
// Construct from database
frame(const database& db, sqlite3_stmt* row);
// Accessors
bool isValid() const
{
return valid_;
}
int getId() const
{
if (!valid_)
{
throw std::domain_error("Bad access to uninitialized frame");
}
return id_;
}
int getLength() const
{
if (!valid_)
{
throw std::domain_error("Bad access to uninitialized frame");
}
return length_;
}
const std::vector<part>& getParts() const
{
if (!valid_)
{
throw std::domain_error("Bad access to uninitialized frame");
}
return parts_;
}
// Type info
static const object objectType;
static const std::list<std::string> select;
// Query fields
static const field id;
static const field length;
operator filter() const
{
if (!valid_)
{
throw std::domain_error("Bad access to uninitialized frame");
}
return (id == id_);
}
// Relationships to other objects
static const field words;
static field parts();
static field parts(int index);
private:
bool valid_ = false;
int id_;
int groupId_;
int length_;
std::vector<part> parts_;
const database* db_;
};
};
#endif /* end of include guard: FRAME_H_EA29065A */
|