basex 0.7.0

A client library for BaseX XQuery databases.
Documentation
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
use crate::connection::Authenticated;
use crate::query::argument::{ArgumentWriter, ToQueryArgument};
use crate::query::compiler::{Info, RawInfo};
use crate::query::response::Response;
use crate::query::serializer::Options;
use crate::resource::AsResource;
use crate::{Client, Connection, DatabaseStream, Result};
use std::borrow::{Borrow, BorrowMut};
use std::marker::PhantomData;
use std::str::FromStr;

/// Query that has its compiler [`info`] collected.
///
/// [`info`]: self::Query::info
#[derive(Debug)]
pub struct WithInfo;

/// Query that has no compiler [`info`] collected. Improves query performance due to the reduced overhead.
///
/// [`info`]: self::Query::info
#[derive(Debug)]
pub struct WithoutInfo;

/// Represents database command code in the [query mode](https://docs.basex.org/wiki/Query_Mode).
enum Command {
    Close = 2,
    Bind = 3,
    Execute = 5,
    Info = 6,
    Options = 7,
    Context = 0x0e,
    Updating = 0x1e,
}

/// Encapsulates a query argument with optional value. To bind the argument, either call [`with_input`] or
/// [`without_input`].
///
/// [`with_input`]: self::CommandWithOptionalInput::with_input
/// [`without_input`]: self::CommandWithOptionalInput::without_input
pub struct ArgumentWithOptionalValue<'a, T, HasInfo>
where
    T: DatabaseStream,
{
    query: &'a mut Query<T, HasInfo>,
}

impl<'a, T, HasInfo> ArgumentWithOptionalValue<'a, T, HasInfo>
where
    T: DatabaseStream,
{
    pub(crate) fn new(query: &'a mut Query<T, HasInfo>) -> Self {
        Self { query }
    }

    /// Sends the value to the argument, returning back the mutable reference to [`Query`].
    ///
    /// [`Query`]: self::Query
    pub fn with_value<'b, A: ToQueryArgument<'b>>(self, value: A) -> Result<&'a mut Query<T, HasInfo>> {
        value.write_xquery(&mut ArgumentWriter(self.query.connection()))?;
        self.query.connection().send_arg(&mut A::xquery_type().as_bytes())?;
        self.query.connection().get_response()?;
        Ok(self.query)
    }

    /// Omits the value from the argument, returning back the mutable reference to [`Query`].
    ///
    /// [`Query`]: self::Query
    pub fn without_value(self) -> Result<&'a mut Query<T, HasInfo>> {
        self.query.connection().skip_arg()?;
        self.query.connection().skip_arg()?;
        self.query.connection().get_response()?;
        Ok(self.query)
    }
}

/// Server query is composed of [XQuery](https://docs.basex.org/wiki/XQuery) code, which is immutable once created.
///
/// The client may [`bind`] arguments, set [`context`] or modify [`options`] which influences the way result is
/// generated.
///
/// Furthermore, the client can [`execute`] the query, check for [`updating`] statements or read compiler [`info`].
///
/// [`bind`]: self::Query::bind
/// [`context`]: self::Query::context
/// [`execute`]: self::Query::execute
/// [`info`]: self::Query::info
/// [`options`]: self::Query::options
/// [`updating`]: self::Query::updating
#[derive(Debug)]
pub struct Query<T, HasInfo = WithoutInfo>
where
    T: DatabaseStream,
{
    has_info: PhantomData<HasInfo>,
    id: String,
    client: Client<T>,
}

impl<T, HasInfo> Query<T, HasInfo>
where
    T: DatabaseStream,
{
    /// Deletes the query.
    ///
    /// # Example
    ///
    /// ```
    /// # use basex::{Query, DatabaseStream, Result};
    /// # fn example<T: DatabaseStream, HasInfo>(mut query: Query<T, HasInfo>) -> Result<()> {
    /// // Delete the query, moves back the `client`.
    /// let client = query.close()?;
    /// // Current function now owns `client`.
    /// # Ok(())
    /// # }
    /// ```
    pub fn close(mut self) -> Result<Client<T>> {
        let connection: &mut Connection<T, Authenticated> = self.client.borrow_mut();
        connection.send_cmd(Command::Close as u8)?;
        connection.send_arg(&mut self.id.as_bytes())?;
        connection.get_response()?;
        Ok(self.client)
    }

    /// Binds a variable under the given valid XML `name`.
    ///
    /// You then need to make a statement about its value using either [`with_value`] or [`without_value`].
    ///
    /// # Example
    ///
    /// ```
    /// # use basex::{Client, ClientError};
    /// # use std::io::Read;
    /// # fn main() -> Result<(), ClientError> {
    /// let mut client = Client::connect("localhost", 1984, "admin", "admin")?;
    /// let mut query = client.query("/")?.without_info()?;
    /// query
    ///     .bind("boy_sminem")?.with_value(123)?
    ///     .bind("bogdanoff")?.without_value()?;
    /// let mut response = query.execute()?;
    /// let mut result = String::new();
    /// response.read_to_string(&mut result)?;
    ///
    /// println!("{}", result);
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// [`with_value`]: self::ArgumentWithOptionalValue::with_value
    /// [`without_value`]: self::ArgumentWithOptionalValue::without_value
    pub fn bind(&mut self, name: &str) -> Result<ArgumentWithOptionalValue<T, HasInfo>> {
        let connection: &mut Connection<T, Authenticated> = self.client.borrow_mut();
        connection.send_cmd(Command::Bind as u8)?;
        connection.send_arg(&mut self.id.as_bytes())?;
        connection.send_arg(&mut name.as_bytes())?;
        Ok(ArgumentWithOptionalValue::new(self))
    }

    /// Executes the query and returns its response.
    ///
    /// The response is readable using the [`Read`] trait.
    ///
    /// # Example
    ///
    /// ```
    /// # use basex::{Client, ClientError};
    /// # use std::io::Read;
    /// # fn main() -> Result<(), ClientError> {
    /// let mut client = Client::connect("localhost", 1984, "admin", "admin")?;
    /// let query = client.query("declare variable $points := 30;
    /// <polygon>
    ///   {
    ///     for $i in 1 to $points
    ///     let $angle := 2 * math:pi() * number($i div $points)
    ///     return <point x=\"{round(math:cos($angle), 8)}\" y=\"{round(math:sin($angle), 8)}\"></point>
    ///   }
    /// </polygon>")?.without_info()?;
    ///
    /// let mut result = String::new();
    /// let mut response = query.execute()?;
    /// response.read_to_string(&mut result)?;
    ///
    /// println!("{}", result);
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// [`Read`]: std::io::Read
    pub fn execute(mut self) -> Result<Response<T, HasInfo>> {
        let connection: &mut Connection<T, Authenticated> = self.client.borrow_mut();
        connection.send_cmd(Command::Execute as u8)?;
        connection.send_arg(&mut self.id.as_bytes())?;
        Ok(Response::new(self))
    }

    /// Returns all query serialization options.
    ///
    /// # Example
    ///
    /// ```
    /// # use basex::{Client, ClientError};
    /// # use std::io::Read;
    /// # fn main() -> Result<(), ClientError> {
    /// let mut client = Client::connect("localhost", 1984, "admin", "admin")?;
    /// let mut query = client.query("/")?.without_info()?;
    /// let mut options = query.options()?;
    /// let client = query.close()?;
    /// options.set("indent", false);
    /// options.save(client)?;
    /// # Ok(())
    /// # }
    pub fn options(&mut self) -> Result<Options> {
        let connection: &mut Connection<T, Authenticated> = self.client.borrow_mut();
        connection.send_cmd(Command::Options as u8)?;
        connection.send_arg(&mut self.id.as_bytes())?;
        let response = self.connection().get_response()?;
        Ok(Options::from_str(&response).unwrap())
    }

    /// Replaces whatever context is set (if any) to the given `value`.
    ///
    /// By default the context is set to currently opened database (if any). Setting context allows you to run query
    /// on a different data-set or without a database.
    ///
    /// # Example
    ///
    /// ```
    /// # use basex::{Client, ClientError};
    /// # use std::io::Read;
    /// # fn main() -> Result<(), ClientError> {
    /// let mut client = Client::connect("localhost", 1984, "admin", "admin")?;
    /// let mut response = {
    ///     let mut query = client.query("count(prdel/*)")?.without_info()?;
    ///     query.context("<prdel><one/><two/><three/></prdel>")?;
    ///     query.execute()?
    /// };
    /// let mut actual_result = String::new();
    /// response.read_to_string(&mut actual_result)?;
    /// response.close()?.close()?;
    ///
    /// let expected_result = "3";
    /// assert_eq!(expected_result, actual_result);
    /// # Ok(())
    /// # }
    /// ```
    pub fn context<'a>(&mut self, value: impl AsResource<'a>) -> Result<&mut Self> {
        let connection: &mut Connection<T, Authenticated> = self.client.borrow_mut();
        connection.send_cmd(Command::Context as u8)?;
        connection.send_arg(&mut self.id.as_bytes())?;
        connection.send_arg(&mut value.into_read())?;
        connection.send_arg(&mut "document-node()".as_bytes())?;
        connection.get_response()?;
        Ok(self)
    }

    /// Checks if the query contains updating expressions.
    ///
    /// # Panics
    /// Panics when the response contains non-boolean value.
    ///
    /// # Example
    ///
    /// ```
    /// # use basex::{Client, ClientError};
    /// # fn main() -> Result<(), ClientError> {
    /// # let client = Client::connect("localhost", 1984, "admin", "admin")?;
    ///
    /// let mut query = client.query("replace value of node /None with 1")?.without_info()?;
    /// assert!(query.updating()?);
    /// # let client = query.close()?;
    ///
    /// let mut query = client.query("count(/None/*)")?.without_info()?;
    /// assert!(!query.updating()?);
    /// # query.close()?;
    /// # Ok(())
    /// # }
    /// ```
    pub fn updating(&mut self) -> Result<bool> {
        let connection: &mut Connection<T, Authenticated> = self.client.borrow_mut();
        connection.send_cmd(Command::Updating as u8)?;
        connection.send_arg(&mut self.id.as_bytes())?;

        match self.connection().get_response()?.as_str() {
            "true" => Ok(true),
            "false" => Ok(false),
            other => panic!("Expected boolean string, got \"{}\"", other),
        }
    }

    fn connection(&mut self) -> &mut Connection<T, Authenticated> {
        self.client.borrow_mut()
    }
}

impl<T> Query<T, WithoutInfo>
where
    T: DatabaseStream,
{
    /// Attaches [`Query`] to an existing query in the session.
    ///
    /// [`Query`]: self::Query
    pub(crate) fn without_info(id: String, client: Client<T>) -> Query<T, WithoutInfo> {
        Self {
            has_info: Default::default(),
            id,
            client,
        }
    }
}

impl<T> Query<T, WithInfo>
where
    T: DatabaseStream,
{
    /// Attaches [`Query`] to an existing query in the session.
    ///
    /// [`Query`]: self::Query
    pub(crate) fn with_info(id: String, client: Client<T>) -> Query<T, WithInfo> {
        Self {
            has_info: Default::default(),
            id,
            client,
        }
    }

    /// Returns the query compilation and profiling [`Info`].
    ///
    /// # Example
    ///
    /// ```
    /// # use basex::{Query, DatabaseStream, WithInfo, compiler::Info, Result};
    /// # fn example<T: DatabaseStream>(mut query: Query<T, WithInfo>) -> Result<()> {
    /// let info = query.info()?;
    /// println!(
    ///     "Compilation took {} ms, query: {}",
    ///     info.compiling_time().as_millis(),
    ///     info.optimized_query()
    /// );
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// [`Info`]: super::analysis::Info
    pub fn info(&mut self) -> Result<impl Info> {
        let connection: &mut Connection<T, Authenticated> = self.client.borrow_mut();
        connection.send_cmd(Command::Info as u8)?;
        connection.send_arg(&mut self.id.as_bytes())?;
        Ok(RawInfo::new(self.connection().get_response()?))
    }
}

impl<T, HasInfo> Borrow<Client<T>> for Query<T, HasInfo>
where
    T: DatabaseStream,
{
    fn borrow(&self) -> &Client<T> {
        &self.client
    }
}

impl<T, HasInfo> BorrowMut<Client<T>> for Query<T, HasInfo>
where
    T: DatabaseStream,
{
    fn borrow_mut(&mut self) -> &mut Client<T> {
        &mut self.client
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::query::compiler::tests::QUERY_INFO;
    use crate::tests::FailingStream;
    use crate::{assert_query_info, ClientError};
    use std::io::{empty, Read};

    impl<T, HasInfo> Query<T, HasInfo>
    where
        T: DatabaseStream,
    {
        pub(crate) fn into_inner(self) -> Connection<T, Authenticated> {
            self.client.into_inner()
        }
    }

    #[test]
    fn test_with_info_formats_as_debug() {
        format!("{:?}", WithInfo);
    }

    #[test]
    fn test_without_info_formats_as_debug() {
        format!("{:?}", WithoutInfo);
    }

    #[test]
    fn test_formats_as_debug() {
        format!(
            "{:?}",
            Query::with_info("".to_owned(), Client::new(Connection::failing()))
        );
    }

    #[test]
    fn test_borrows_as_client() {
        let _: &Client<FailingStream> = Query::with_info("".to_owned(), Client::new(Connection::failing())).borrow();
    }

    #[test]
    fn test_query_binds_arguments() -> Result<()> {
        let connection = Connection::from_str("\0\0\0\0\0");

        let mut query = Query::with_info("test".to_owned(), Client::new(connection));

        query
            .bind("foo")?
            .with_value("aaa")?
            .bind("bar")?
            .with_value(123)?
            .bind("void")?
            .without_value()?;

        let stream = query.into_inner().into_inner();
        let actual_buffer = stream.to_string();
        let expected_buffer = "\u{3}test\u{0}foo\u{0}aaa\u{0}xs:string\u{0}\
            \u{3}test\u{0}bar\u{0}123\u{0}xs:int\u{0}\
            \u{3}test\u{0}void\u{0}\u{0}\u{0}"
            .to_owned();

        assert_eq!(expected_buffer, actual_buffer);
        Ok(())
    }

    #[test]
    fn test_query_fails_to_bind_argument_with_failing_stream() {
        let connection = Connection::failing();

        let mut query = Query::with_info("test".to_owned(), Client::new(connection));
        let actual_error = query.bind("foo").err().expect("Operation must fail");

        assert!(matches!(actual_error, ClientError::Io(_)));
    }

    #[test]
    fn test_query_binds_value_to_context() {
        let connection = Connection::from_str("\0\0");

        let mut query = Query::with_info("test".to_owned(), Client::new(connection));
        let _ = query.context("aaa").unwrap();

        let stream = query.into_inner().into_inner();
        let actual_buffer = stream.to_string();
        let expected_buffer = "\u{e}test\u{0}aaa\u{0}document-node()\u{0}".to_owned();

        assert_eq!(expected_buffer, actual_buffer);
    }

    #[test]
    fn test_query_binds_value_to_context_with_empty_type() {
        let connection = Connection::from_str("\0\0");

        let mut query = Query::with_info("test".to_owned(), Client::new(connection));
        let _ = query.context("aaa").unwrap();

        let stream = query.into_inner().into_inner();
        let actual_buffer = stream.to_string();
        let expected_buffer = "\u{e}test\u{0}aaa\u{0}document-node()\u{0}".to_owned();

        assert_eq!(expected_buffer, actual_buffer);
    }

    #[test]
    fn test_query_binds_empty_value_to_context() {
        let connection = Connection::from_str("\0\0");

        let mut query = Query::with_info("test".to_owned(), Client::new(connection));
        let _ = query.context(&mut empty()).unwrap();

        let stream = query.into_inner().into_inner();
        let actual_buffer = stream.to_string();
        let expected_buffer = "\u{e}test\u{0}\u{0}document-node()\u{0}".to_owned();

        assert_eq!(expected_buffer, actual_buffer);
    }

    #[test]
    fn test_query_fails_to_bind_context_with_failing_stream() {
        let connection = Connection::failing();

        let mut query = Query::with_info("test".to_owned(), Client::new(connection));
        let actual_error = query.context(&mut empty()).err().expect("Operation must fail");

        assert!(matches!(actual_error, ClientError::Io(_)));
    }

    #[test]
    fn test_query_executes() {
        let expected_response = "test_response";
        let connection = Connection::from_str(expected_response.to_owned() + "\0");

        let query = Query::with_info("test".to_owned(), Client::new(connection));
        let mut actual_response = String::new();
        let mut response = query.execute().unwrap();
        response.read_to_string(&mut actual_response).unwrap();

        assert_eq!(expected_response, actual_response);

        let query = response.close().unwrap();
        let stream = query.into_inner().into_inner();
        let actual_buffer = stream.to_string();
        let expected_buffer = "\u{5}test\u{0}".to_owned();

        assert_eq!(expected_buffer, actual_buffer);
    }

    #[test]
    fn test_query_fails_to_execute_with_failing_stream() {
        let connection = Connection::failing();

        let query = Query::with_info("test".to_owned(), Client::new(connection));
        let actual_error = query.execute().err().expect("Operation must fail");

        assert!(matches!(actual_error, ClientError::Io(_)));
    }

    #[test]
    fn test_query_runs_updating_command() {
        let connection = Connection::from_str("true\0");

        let mut query = Query::with_info("test".to_owned(), Client::new(connection));
        let actual_response = query.updating().unwrap();

        assert!(actual_response);

        let stream = query.into_inner().into_inner();
        let actual_buffer = stream.to_string();
        let expected_buffer = "\u{1e}test\u{0}".to_owned();

        assert_eq!(expected_buffer, actual_buffer);
    }

    #[test]
    fn test_query_runs_non_updating_command() {
        let connection = Connection::from_str("false\0");

        let mut query = Query::with_info("test".to_owned(), Client::new(connection));
        let actual_response = query.updating().unwrap();

        assert!(!actual_response);

        let stream = query.into_inner().into_inner();
        let actual_buffer = stream.to_string();
        let expected_buffer = "\u{1e}test\u{0}".to_owned();

        assert_eq!(expected_buffer, actual_buffer);
    }

    #[test]
    #[should_panic]
    fn test_query_panics_updating_command_response_is_not_bool() {
        let connection = Connection::from_str("test_response\0");
        let client = Client::new(connection);

        let mut query = Query::with_info("test".to_owned(), client);
        let _ = query.updating().unwrap();
    }

    #[test]
    fn test_query_fails_to_run_updating_command_with_failing_stream() {
        let connection = Connection::failing();

        let mut query = Query::with_info("test".to_owned(), Client::new(connection));
        let actual_error = query.updating().expect_err("Operation must fail");

        assert!(matches!(actual_error, ClientError::Io(_)));
    }

    #[test]
    fn test_query_runs_options_command() {
        let expected_response = "ident=no";
        let connection = Connection::from_str(&format!("{}\0\0", expected_response));

        let mut query = Query::with_info("test".to_owned(), Client::new(connection));
        let actual_response = query.options().unwrap();

        assert_eq!(expected_response, &actual_response.to_string());

        let stream = query.into_inner().into_inner();
        let actual_buffer = stream.to_string();
        let expected_buffer = "\u{7}test\u{0}".to_owned();

        assert_eq!(expected_buffer, actual_buffer);
    }

    #[test]
    fn test_query_fails_to_run_options_command_with_failing_stream() {
        let connection = Connection::failing();

        let mut query = Query::with_info("test".to_owned(), Client::new(connection));
        let actual_error = query.options().expect_err("Operation must fail");

        assert!(matches!(actual_error, ClientError::Io(_)));
    }

    #[test]
    fn test_query_runs_info_command() {
        let expected_response = QUERY_INFO;
        let connection = Connection::from_str(&format!("{}\0\0", expected_response));

        let mut query = Query::with_info("test".to_owned(), Client::new(connection));
        let actual_response = query.info().unwrap();

        assert_query_info!(actual_response);

        let stream = query.into_inner().into_inner();
        let actual_buffer = stream.to_string();
        let expected_buffer = "\u{6}test\u{0}".to_owned();

        assert_eq!(expected_buffer, actual_buffer);
    }

    #[test]
    fn test_query_fails_to_run_info_command_with_failing_stream() {
        let connection = Connection::failing();

        let mut query = Query::with_info("test".to_owned(), Client::new(connection));
        let actual_error = query.info().expect_err("Operation must fail");

        assert!(matches!(actual_error, ClientError::Io(_)));
    }

    #[test]
    fn test_query_closes() {
        let expected_response = "test_response\0";
        let connection = Connection::from_str(expected_response);

        let query = Query::with_info("test".to_owned(), Client::new(connection));
        let client = query.close().unwrap();

        let stream = client.into_inner().into_inner();
        let actual_buffer = stream.to_string();
        let expected_buffer = "\u{2}test\u{0}".to_owned();

        assert_eq!(expected_buffer, actual_buffer);
    }

    #[test]
    fn test_query_fails_to_close_with_failing_stream() {
        let connection = Connection::failing();

        let query = Query::with_info("test".to_owned(), Client::new(connection));
        let actual_error = query.close().err().expect("Operation must fail");

        assert!(matches!(actual_error, ClientError::Io(_)));
    }
}