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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at
//
//   http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied.  See the License for the
// specific language governing permissions and limitations
// under the License.

use std::fmt::Debug;

#[cfg(feature = "tests")]
use std::time::Duration;

use base64::engine::general_purpose::STANDARD as BASE64;
use base64::engine::Engine as _;
use bb8::{PooledConnection, RunError};
use rust_nebula::{
    graph::GraphQuery, HostAddress, SingleConnSessionConf, SingleConnSessionManager,
};
use snowflaked::sync::Generator;
use tokio::sync::OnceCell;

use crate::raw::adapters::kv;
use crate::raw::*;
use crate::services::NebulaGraphConfig;
use crate::*;

static GENERATOR: Generator = Generator::new(0);

impl Configurator for NebulaGraphConfig {
    type Builder = NebulaGraphBuilder;
    fn into_builder(self) -> Self::Builder {
        NebulaGraphBuilder { config: self }
    }
}

#[doc = include_str!("docs.md")]
#[derive(Default)]
pub struct NebulaGraphBuilder {
    config: NebulaGraphConfig,
}

impl Debug for NebulaGraphBuilder {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut d = f.debug_struct("MysqlBuilder");

        d.field("config", &self.config).finish()
    }
}

impl NebulaGraphBuilder {
    /// Set the host addr of nebulagraph's graphd server
    pub fn host(&mut self, host: &str) -> &mut Self {
        if !host.is_empty() {
            self.config.host = Some(host.to_string());
        }
        self
    }

    /// Set the host port of nebulagraph's graphd server
    pub fn port(&mut self, port: u16) -> &mut Self {
        self.config.port = Some(port);
        self
    }

    /// Set the username of nebulagraph's graphd server
    pub fn username(&mut self, username: &str) -> &mut Self {
        if !username.is_empty() {
            self.config.username = Some(username.to_string());
        }
        self
    }

    /// Set the password of nebulagraph's graphd server
    pub fn password(&mut self, password: &str) -> &mut Self {
        if !password.is_empty() {
            self.config.password = Some(password.to_string());
        }
        self
    }

    /// Set the space name of nebulagraph's graphd server
    pub fn space(&mut self, space: &str) -> &mut Self {
        if !space.is_empty() {
            self.config.space = Some(space.to_string());
        }
        self
    }

    /// Set the tag name of nebulagraph's graphd server
    pub fn tag(&mut self, tag: &str) -> &mut Self {
        if !tag.is_empty() {
            self.config.tag = Some(tag.to_string());
        }
        self
    }

    /// Set the key field name of the NebulaGraph service to read/write.
    ///
    /// Default to `key` if not specified.
    pub fn key_field(&mut self, key_field: &str) -> &mut Self {
        if !key_field.is_empty() {
            self.config.key_field = Some(key_field.to_string());
        }
        self
    }

    /// Set the value field name of the NebulaGraph service to read/write.
    ///
    /// Default to `value` if not specified.
    pub fn value_field(&mut self, value_field: &str) -> &mut Self {
        if !value_field.is_empty() {
            self.config.value_field = Some(value_field.to_string());
        }
        self
    }

    /// set the working directory, all operations will be performed under it.
    ///
    /// default: "/"
    pub fn root(&mut self, root: &str) -> &mut Self {
        if !root.is_empty() {
            self.config.root = Some(root.to_string());
        }
        self
    }
}

impl Builder for NebulaGraphBuilder {
    const SCHEME: Scheme = Scheme::NebulaGraph;
    type Config = NebulaGraphConfig;

    fn build(self) -> Result<impl Access> {
        let host = match self.config.host.clone() {
            Some(v) => v,
            None => {
                return Err(Error::new(ErrorKind::ConfigInvalid, "host is empty")
                    .with_context("service", Scheme::NebulaGraph))
            }
        };
        let port = match self.config.port {
            Some(v) => v,
            None => {
                return Err(Error::new(ErrorKind::ConfigInvalid, "port is empty")
                    .with_context("service", Scheme::NebulaGraph))
            }
        };
        let username = match self.config.username.clone() {
            Some(v) => v,
            None => {
                return Err(Error::new(ErrorKind::ConfigInvalid, "username is empty")
                    .with_context("service", Scheme::NebulaGraph))
            }
        };
        let password = match self.config.password.clone() {
            Some(v) => v,
            None => "".to_string(),
        };
        let space = match self.config.space.clone() {
            Some(v) => v,
            None => {
                return Err(Error::new(ErrorKind::ConfigInvalid, "space is empty")
                    .with_context("service", Scheme::NebulaGraph))
            }
        };
        let tag = match self.config.tag.clone() {
            Some(v) => v,
            None => {
                return Err(Error::new(ErrorKind::ConfigInvalid, "tag is empty")
                    .with_context("service", Scheme::NebulaGraph))
            }
        };
        let key_field = match self.config.key_field.clone() {
            Some(v) => v,
            None => "key".to_string(),
        };
        let value_field = match self.config.value_field.clone() {
            Some(v) => v,
            None => "value".to_string(),
        };
        let root = normalize_root(
            self.config
                .root
                .clone()
                .unwrap_or_else(|| "/".to_string())
                .as_str(),
        );

        let mut session_config = SingleConnSessionConf::new(
            vec![HostAddress::new(&host, port)],
            username,
            password,
            Some(space),
        );
        // NebulaGraph use fbthrift for communication. fbthrift's max_buffer_size is default 4 KB,
        // which is too small to store something.
        // So we could set max_buffer_size to 10 MB so that NebulaGraph can store files with filesize < 1 MB at least.
        session_config.set_buf_size(1024 * 1024);
        session_config.set_max_buf_size(64 * 1024 * 1024);
        session_config.set_max_parse_response_bytes_count(254);

        Ok(NebulaGraphBackend::new(Adapter {
            session_pool: OnceCell::new(),
            session_config,

            tag,
            key_field,
            value_field,
        })
        .with_root(root.as_str()))
    }
}

/// Backend for NebulaGraph service
pub type NebulaGraphBackend = kv::Backend<Adapter>;

#[derive(Clone)]
pub struct Adapter {
    session_pool: OnceCell<bb8::Pool<SingleConnSessionManager>>,
    session_config: SingleConnSessionConf,

    tag: String,
    key_field: String,
    value_field: String,
}

impl Debug for Adapter {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("Adapter")
            .field("session_config", &self.session_config)
            .field("tag", &self.tag)
            .field("key_field", &self.key_field)
            .field("value_field", &self.value_field)
            .finish()
    }
}

impl Adapter {
    async fn get_session(&self) -> Result<PooledConnection<SingleConnSessionManager>> {
        let session_pool = self
            .session_pool
            .get_or_try_init(|| async {
                bb8::Pool::builder()
                    .max_size(64)
                    .build(SingleConnSessionManager::new(self.session_config.clone()))
                    .await
            })
            .await
            .map_err(|err| Error::new(ErrorKind::Unexpected, format!("{}", err)).set_temporary())?;

        session_pool.get().await.map_err(|err| match err {
            RunError::User(err) => {
                Error::new(ErrorKind::Unexpected, format!("{}", err)).set_temporary()
            }
            RunError::TimedOut => {
                Error::new(ErrorKind::Unexpected, "connection request: timeout").set_temporary()
            }
        })
    }
}

impl kv::Adapter for Adapter {
    fn metadata(&self) -> kv::Metadata {
        kv::Metadata::new(
            Scheme::NebulaGraph,
            &self.session_config.space.clone().unwrap(),
            Capability {
                read: true,
                write: true,
                write_total_max_size: Some(1024 * 1024),
                write_can_empty: true,
                delete: true,
                list: true,
                ..Default::default()
            },
        )
    }

    async fn get(&self, path: &str) -> Result<Option<Buffer>> {
        let path = path.replace("'", "\\'").replace('"', "\\\"");
        let query = format!(
            "LOOKUP ON {} WHERE {}.{} == '{}' YIELD properties(vertex).{} AS {};",
            self.tag, self.tag, self.key_field, path, self.value_field, self.value_field
        );
        let mut sess = self.get_session().await?;
        let result = sess
            .query(&query)
            .await
            .map_err(parse_nebulagraph_session_error)?;
        if result.is_empty() {
            Ok(None)
        } else {
            let row = result
                .get_row_values_by_index(0)
                .map_err(parse_nebulagraph_dataset_error)?;
            let value = row
                .get_value_by_col_name(&self.value_field)
                .map_err(parse_nebulagraph_dataset_error)?;
            let base64_str = value.as_string().map_err(parse_nebulagraph_dataset_error)?;
            let value_str = BASE64.decode(base64_str).map_err(|err| {
                Error::new(ErrorKind::Unexpected, "unhandled error from nebulagraph")
                    .set_source(err)
            })?;
            let buf = Buffer::from(value_str);
            Ok(Some(buf))
        }
    }

    async fn set(&self, path: &str, value: Buffer) -> Result<()> {
        #[cfg(feature = "tests")]
        let path_copy = path;

        self.delete(path).await?;
        let path = path.replace("'", "\\'").replace('"', "\\\"");
        let file = value.to_vec();
        let file = BASE64.encode(&file);
        let snowflake_id: u64 = GENERATOR.generate();
        let query = format!(
            "INSERT VERTEX {} VALUES {}:('{}', '{}');",
            self.tag, snowflake_id, path, file
        );
        let mut sess = self.get_session().await?;
        sess.execute(&query)
            .await
            .map_err(parse_nebulagraph_session_error)?;

        // To pass tests, we should confirm NebulaGraph has inserted data successfully
        #[cfg(feature = "tests")]
        loop {
            let v = self.get(path_copy).await.unwrap();
            if v.is_none() {
                std::thread::sleep(Duration::from_millis(1000));
            } else {
                break;
            }
        }
        Ok(())
    }

    async fn delete(&self, path: &str) -> Result<()> {
        let path = path.replace("'", "\\'").replace('"', "\\\"");
        let query = format!(
            "LOOKUP ON {} WHERE {}.{} == '{}' YIELD id(vertex) AS id | DELETE VERTEX $-.id;",
            self.tag, self.tag, self.key_field, path
        );
        let mut sess = self.get_session().await?;
        sess.execute(&query)
            .await
            .map_err(parse_nebulagraph_session_error)?;
        Ok(())
    }

    async fn scan(&self, path: &str) -> Result<Vec<String>> {
        let path = path.replace("'", "\\'").replace('"', "\\\"");
        let query = format!(
            "LOOKUP ON {} WHERE {}.{} STARTS WITH '{}' YIELD properties(vertex).{} AS {};",
            self.tag, self.tag, self.key_field, path, self.key_field, self.key_field
        );

        let mut sess = self.get_session().await?;
        let result = sess
            .query(&query)
            .await
            .map_err(parse_nebulagraph_session_error)?;
        let mut res_vec = vec![];
        for row_i in 0..result.get_row_size() {
            let row = result
                .get_row_values_by_index(row_i)
                .map_err(parse_nebulagraph_dataset_error)?;
            let value = row
                .get_value_by_col_name(&self.key_field)
                .map_err(parse_nebulagraph_dataset_error)?;
            let sub_path = value.as_string().map_err(parse_nebulagraph_dataset_error)?;

            res_vec.push(sub_path);
        }
        Ok(res_vec)
    }
}

fn parse_nebulagraph_session_error(err: rust_nebula::SingleConnSessionError) -> Error {
    Error::new(ErrorKind::Unexpected, "unhandled error from nebulagraph").set_source(err)
}

fn parse_nebulagraph_dataset_error(err: rust_nebula::DataSetError) -> Error {
    Error::new(ErrorKind::Unexpected, "unhandled error from nebulagraph").set_source(err)
}