-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmysqlx_collection__add.h
75 lines (60 loc) · 2.48 KB
/
mysqlx_collection__add.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
/*
+----------------------------------------------------------------------+
| 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__ADD_H
#define MYSQLX_COLLECTION__ADD_H
#include "util/value.h"
namespace mysqlx {
namespace util {
struct arg_zvals;
}
namespace drv {
struct xmysqlnd_collection;
struct st_xmysqlnd_crud_collection_op__add;
} // namespace drv
namespace devapi {
class Collection_add : public util::custom_allocable
{
public:
Collection_add() = default;
Collection_add(const Collection_add&) = delete;
Collection_add& operator=(const Collection_add&) = delete;
~Collection_add();
bool add_docs(
drv::xmysqlnd_collection* collection,
const util::arg_zvals& documents);
bool add_docs(
drv::xmysqlnd_collection* collection,
const util::string_view& single_doc_id,
const util::zvalue& doc);
public:
util::zvalue execute();
private:
drv::xmysqlnd_collection* collection{nullptr};
drv::st_xmysqlnd_crud_collection_op__add* add_op{nullptr};
util::zvalues docs;
};
util::zvalue create_collection_add(
drv::xmysqlnd_collection* schema,
const util::arg_zvals& docs);
void mysqlx_register_collection__add_class(INIT_FUNC_ARGS, zend_object_handlers* mysqlx_std_object_handlers);
void mysqlx_unregister_collection__add_class(SHUTDOWN_FUNC_ARGS);
} // namespace devapi
} // namespace mysqlx
#endif /* MYSQLX_COLLECTION__ADD_H */