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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
#![allow(unknown_lints)]
#![allow(clippy)]
#![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(box_pointers)]
#![allow(dead_code)]
#![allow(missing_docs)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![allow(trivial_casts)]
#![allow(unsafe_code)]
#![allow(unused_imports)]
#![allow(unused_results)]
pub trait Dgraph {
fn login(&self, o: ::grpc::RequestOptions, p: super::api::LoginRequest) -> ::grpc::SingleResponse<super::api::Response>;
fn query(&self, o: ::grpc::RequestOptions, p: super::api::Request) -> ::grpc::SingleResponse<super::api::Response>;
fn mutate(&self, o: ::grpc::RequestOptions, p: super::api::Mutation) -> ::grpc::SingleResponse<super::api::Assigned>;
fn alter(&self, o: ::grpc::RequestOptions, p: super::api::Operation) -> ::grpc::SingleResponse<super::api::Payload>;
fn commit_or_abort(&self, o: ::grpc::RequestOptions, p: super::api::TxnContext) -> ::grpc::SingleResponse<super::api::TxnContext>;
fn check_version(&self, o: ::grpc::RequestOptions, p: super::api::Check) -> ::grpc::SingleResponse<super::api::Version>;
}
pub struct DgraphClient {
grpc_client: ::std::sync::Arc<::grpc::Client>,
method_Login: ::std::sync::Arc<::grpc::rt::MethodDescriptor<super::api::LoginRequest, super::api::Response>>,
method_Query: ::std::sync::Arc<::grpc::rt::MethodDescriptor<super::api::Request, super::api::Response>>,
method_Mutate: ::std::sync::Arc<::grpc::rt::MethodDescriptor<super::api::Mutation, super::api::Assigned>>,
method_Alter: ::std::sync::Arc<::grpc::rt::MethodDescriptor<super::api::Operation, super::api::Payload>>,
method_CommitOrAbort: ::std::sync::Arc<::grpc::rt::MethodDescriptor<super::api::TxnContext, super::api::TxnContext>>,
method_CheckVersion: ::std::sync::Arc<::grpc::rt::MethodDescriptor<super::api::Check, super::api::Version>>,
}
impl ::grpc::ClientStub for DgraphClient {
fn with_client(grpc_client: ::std::sync::Arc<::grpc::Client>) -> Self {
DgraphClient {
grpc_client: grpc_client,
method_Login: ::std::sync::Arc::new(::grpc::rt::MethodDescriptor {
name: "/api.Dgraph/Login".to_string(),
streaming: ::grpc::rt::GrpcStreaming::Unary,
req_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
resp_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
}),
method_Query: ::std::sync::Arc::new(::grpc::rt::MethodDescriptor {
name: "/api.Dgraph/Query".to_string(),
streaming: ::grpc::rt::GrpcStreaming::Unary,
req_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
resp_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
}),
method_Mutate: ::std::sync::Arc::new(::grpc::rt::MethodDescriptor {
name: "/api.Dgraph/Mutate".to_string(),
streaming: ::grpc::rt::GrpcStreaming::Unary,
req_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
resp_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
}),
method_Alter: ::std::sync::Arc::new(::grpc::rt::MethodDescriptor {
name: "/api.Dgraph/Alter".to_string(),
streaming: ::grpc::rt::GrpcStreaming::Unary,
req_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
resp_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
}),
method_CommitOrAbort: ::std::sync::Arc::new(::grpc::rt::MethodDescriptor {
name: "/api.Dgraph/CommitOrAbort".to_string(),
streaming: ::grpc::rt::GrpcStreaming::Unary,
req_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
resp_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
}),
method_CheckVersion: ::std::sync::Arc::new(::grpc::rt::MethodDescriptor {
name: "/api.Dgraph/CheckVersion".to_string(),
streaming: ::grpc::rt::GrpcStreaming::Unary,
req_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
resp_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
}),
}
}
}
impl Dgraph for DgraphClient {
fn login(&self, o: ::grpc::RequestOptions, p: super::api::LoginRequest) -> ::grpc::SingleResponse<super::api::Response> {
self.grpc_client.call_unary(o, p, self.method_Login.clone())
}
fn query(&self, o: ::grpc::RequestOptions, p: super::api::Request) -> ::grpc::SingleResponse<super::api::Response> {
self.grpc_client.call_unary(o, p, self.method_Query.clone())
}
fn mutate(&self, o: ::grpc::RequestOptions, p: super::api::Mutation) -> ::grpc::SingleResponse<super::api::Assigned> {
self.grpc_client.call_unary(o, p, self.method_Mutate.clone())
}
fn alter(&self, o: ::grpc::RequestOptions, p: super::api::Operation) -> ::grpc::SingleResponse<super::api::Payload> {
self.grpc_client.call_unary(o, p, self.method_Alter.clone())
}
fn commit_or_abort(&self, o: ::grpc::RequestOptions, p: super::api::TxnContext) -> ::grpc::SingleResponse<super::api::TxnContext> {
self.grpc_client.call_unary(o, p, self.method_CommitOrAbort.clone())
}
fn check_version(&self, o: ::grpc::RequestOptions, p: super::api::Check) -> ::grpc::SingleResponse<super::api::Version> {
self.grpc_client.call_unary(o, p, self.method_CheckVersion.clone())
}
}
pub struct DgraphServer;
impl DgraphServer {
pub fn new_service_def<H : Dgraph + 'static + Sync + Send + 'static>(handler: H) -> ::grpc::rt::ServerServiceDefinition {
let handler_arc = ::std::sync::Arc::new(handler);
::grpc::rt::ServerServiceDefinition::new("/api.Dgraph",
vec![
::grpc::rt::ServerMethod::new(
::std::sync::Arc::new(::grpc::rt::MethodDescriptor {
name: "/api.Dgraph/Login".to_string(),
streaming: ::grpc::rt::GrpcStreaming::Unary,
req_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
resp_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
}),
{
let handler_copy = handler_arc.clone();
::grpc::rt::MethodHandlerUnary::new(move |o, p| handler_copy.login(o, p))
},
),
::grpc::rt::ServerMethod::new(
::std::sync::Arc::new(::grpc::rt::MethodDescriptor {
name: "/api.Dgraph/Query".to_string(),
streaming: ::grpc::rt::GrpcStreaming::Unary,
req_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
resp_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
}),
{
let handler_copy = handler_arc.clone();
::grpc::rt::MethodHandlerUnary::new(move |o, p| handler_copy.query(o, p))
},
),
::grpc::rt::ServerMethod::new(
::std::sync::Arc::new(::grpc::rt::MethodDescriptor {
name: "/api.Dgraph/Mutate".to_string(),
streaming: ::grpc::rt::GrpcStreaming::Unary,
req_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
resp_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
}),
{
let handler_copy = handler_arc.clone();
::grpc::rt::MethodHandlerUnary::new(move |o, p| handler_copy.mutate(o, p))
},
),
::grpc::rt::ServerMethod::new(
::std::sync::Arc::new(::grpc::rt::MethodDescriptor {
name: "/api.Dgraph/Alter".to_string(),
streaming: ::grpc::rt::GrpcStreaming::Unary,
req_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
resp_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
}),
{
let handler_copy = handler_arc.clone();
::grpc::rt::MethodHandlerUnary::new(move |o, p| handler_copy.alter(o, p))
},
),
::grpc::rt::ServerMethod::new(
::std::sync::Arc::new(::grpc::rt::MethodDescriptor {
name: "/api.Dgraph/CommitOrAbort".to_string(),
streaming: ::grpc::rt::GrpcStreaming::Unary,
req_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
resp_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
}),
{
let handler_copy = handler_arc.clone();
::grpc::rt::MethodHandlerUnary::new(move |o, p| handler_copy.commit_or_abort(o, p))
},
),
::grpc::rt::ServerMethod::new(
::std::sync::Arc::new(::grpc::rt::MethodDescriptor {
name: "/api.Dgraph/CheckVersion".to_string(),
streaming: ::grpc::rt::GrpcStreaming::Unary,
req_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
resp_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf),
}),
{
let handler_copy = handler_arc.clone();
::grpc::rt::MethodHandlerUnary::new(move |o, p| handler_copy.check_version(o, p))
},
),
],
)
}
}