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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
use coll::options::{CursorType, FindOptions};
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub struct OpReplyFlags {
pub cursor_not_found: bool,
pub query_failure: bool,
pub await_capable: bool,
}
impl OpReplyFlags {
pub fn from_i32(i: i32) -> OpReplyFlags {
let cursor_not_found = (i & 1) != 0;
let query_failure = (i & (1 << 1)) != 0;
let await_capable = (i & (1 << 3)) != 0;
OpReplyFlags {
cursor_not_found: cursor_not_found,
query_failure: query_failure,
await_capable: await_capable,
}
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub struct OpUpdateFlags {
pub upsert: bool,
pub multi_update: bool,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub struct OpInsertFlags {
pub continue_on_error: bool,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub struct OpQueryFlags {
pub tailable_cursor: bool,
pub slave_ok: bool,
pub oplog_relay: bool,
pub no_cursor_timeout: bool,
pub await_data: bool,
pub exhaust: bool,
pub partial: bool,
}
impl OpUpdateFlags {
pub fn no_flags() -> OpUpdateFlags {
OpUpdateFlags {
upsert: false,
multi_update: false,
}
}
pub fn to_i32(&self) -> i32 {
let mut i: i32 = if self.upsert { 1 } else { 0 };
if self.multi_update {
i |= 1 << 1;
}
i
}
}
impl OpInsertFlags {
pub fn no_flags() -> OpInsertFlags {
OpInsertFlags { continue_on_error: false }
}
pub fn to_i32(&self) -> i32 {
if self.continue_on_error { 1 } else { 0 }
}
}
impl OpQueryFlags {
pub fn no_flags() -> OpQueryFlags {
OpQueryFlags {
tailable_cursor: false,
slave_ok: false,
oplog_relay: false,
no_cursor_timeout: false,
await_data: false,
exhaust: false,
partial: false,
}
}
pub fn with_find_options(options: &FindOptions) -> OpQueryFlags {
OpQueryFlags {
tailable_cursor: options.cursor_type != CursorType::NonTailable,
slave_ok: false,
oplog_relay: options.op_log_replay,
no_cursor_timeout: options.no_cursor_timeout,
await_data: options.cursor_type == CursorType::TailableAwait,
exhaust: false,
partial: options.allow_partial_results,
}
}
pub fn to_i32(&self) -> i32 {
let mut i = 0 as i32;
if self.tailable_cursor {
i |= 1 << 1;
}
if self.slave_ok {
i |= 1 << 2;
}
if self.oplog_relay {
i |= 1 << 3;
}
if self.no_cursor_timeout {
i |= 1 << 4;
}
if self.await_data {
i |= 1 << 5;
}
if self.exhaust {
i |= 1 << 6;
}
if self.partial {
i |= 1 << 7;
}
i
}
}