-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmysqlx_collection__modify.h
96 lines (78 loc) · 3.1 KB
/
mysqlx_collection__modify.h
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
/*
+----------------------------------------------------------------------+
| PHP Version 7 |
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Andrey Hristov <andrey@php.net> |
| Filip Janiszewski <fjanisze@php.net> |
| Darek Slusarczyk <marines@php.net> |
+----------------------------------------------------------------------+
*/
#ifndef MYSQLX_COLLECTION__MODIFY_H
#define MYSQLX_COLLECTION__MODIFY_H
namespace mysqlx {
namespace util {
class zvalue;
struct arg_zvals;
}
namespace drv {
struct xmysqlnd_collection;
struct st_xmysqlnd_crud_collection_op__modify;
} // namespace drv
namespace devapi {
class Collection_modify : public util::custom_allocable
{
public:
Collection_modify() = default;
Collection_modify(const Collection_modify&) = delete;
Collection_modify& operator=(const Collection_modify&) = delete;
~Collection_modify();
bool init(
drv::xmysqlnd_collection* collection,
const util::string_view& search_expression);
public:
bool sort(const util::arg_zvals& sort_expressions);
bool limit(zend_long rows);
bool skip(zend_long position);
bool bind(const util::zvalue& bind_variables);
bool set(
const util::string_view& path,
const util::zvalue& value);
bool unset(const util::arg_zvals& variables);
bool replace(
const util::string_view& path,
const util::zvalue& value);
bool patch(const util::string_view& document_contents);
bool array_insert(
const util::string_view& path,
const util::zvalue& value);
bool array_append(
const util::string_view& path,
const util::zvalue& value);
util::zvalue execute();
private:
drv::Modify_value prepare_value(
const util::string_view& path,
util::zvalue value,
bool validate_array = false);
private:
drv::xmysqlnd_collection* collection{nullptr};
drv::st_xmysqlnd_crud_collection_op__modify* modify_op{nullptr};
};
util::zvalue create_collection_modify(
const util::string_view& search_expression,
drv::xmysqlnd_collection* collection);
void mysqlx_register_collection__modify_class(INIT_FUNC_ARGS, zend_object_handlers* mysqlx_std_object_handlers);
void mysqlx_unregister_collection__modify_class(SHUTDOWN_FUNC_ARGS);
} // namespace devapi
} // namespace mysqlx
#endif /* MYSQLX_COLLECTION__MODIFY_H */