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
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
/*!

base_url is a thin wrapper around [rust-url](https://github.com/servo/rust-url), which itself
implements the [URL Standard](https://url.spec.whatwg.org/). The goal of base_url is to implement
a strict subset of that standard to remove redundant error checks related to the base-suitability of a
given URL.


# Acquiring a BaseUrl object

A BaseUrl object may be acquired by either converting a Url or &str using the TryInto/TryFrom traits.
If a &str cannot be parsed into a Url object a BaseUrlError::ParseError will be returned which wraps the
underlying ParseError type implemented by rust-url.

```
use base_url::{ BaseUrl, BaseUrlError, Url, ParseError, TryFrom };

assert!( BaseUrl::try_from( "http://[:::1]" ) == Err( BaseUrlError::ParseError( ParseError::InvalidIpv6Address ) ) );
```

That's a bit unwieldly, so it's suggested that you prefer first parsing the &str into a Url and
converting that object into a BaseUrl, allowing you to deal with errors related to parsing separately
from errors related to base suitability.

```
use base_url::{ BaseUrl, BaseUrlError, Url, TryFrom };

# fn run( ) -> Result< (), BaseUrlError > {
let url:Url = Url::parse( "data:text/plain,Hello?World#" )?;

assert!( BaseUrl::try_from( url ) == Err( BaseUrlError::CannotBeBase ) );
# Ok( () )
# }
# run( );
```

Once we have a BaseUrl we can do (almost) anything we could with a normal Url and with fewer functions
admitting potential failures


 */

pub extern crate url;

pub use url::{ Url, ParseError };

pub use std::convert::TryFrom;

use url::{ UrlQuery, PathSegmentsMut };
use url::form_urlencoded::{Parse, Serializer};
pub use url::{ Host };

use std::str::Split;
use std::net::IpAddr;
use std::fmt::{Formatter, Display, Result as FormatResult};

/// A representation of the origin of a BaseUrl
pub type OriginTuple = ( String, Host<String>, u16 );

#[derive(Debug, PartialEq)]
pub enum BaseUrlError {
    /// If the Url supplied cannot be a base this error is returned
    CannotBeBase,
    /// If a supplied &str cannot be parsed by the parser in the main Url crate this error is returned
    ParseError( ParseError ),
}

/// Any Url which has a host and so can be supplied as a base url
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct BaseUrl {
    url: Url,
}

impl From<BaseUrl> for Url {
    fn from( url: BaseUrl ) -> Self {
        url.url
    }
}

impl TryFrom<Url> for BaseUrl {
    type Error = BaseUrlError;
    fn try_from( url: Url ) -> Result< Self, Self::Error > {
        if url.cannot_be_a_base( ) || !url.has_authority( ) {
            Err( BaseUrlError::CannotBeBase )
        } else {
            Ok( BaseUrl{ url: url } )
        }
    }
}

impl<'a> TryFrom<&'a str> for BaseUrl {
    type Error = BaseUrlError;

    fn try_from( url: &'a str ) -> Result< Self, Self::Error > {
        match Url::parse( url ) {
            Ok( u ) => BaseUrl::try_from( u ),
            Err( e ) => Err( BaseUrlError::ParseError( e ) ),
        }
    }
}

impl From< ParseError > for BaseUrlError {
    fn from( err:ParseError ) -> Self {
        BaseUrlError::ParseError( err )
    }
}

impl BaseUrl {

    /// Return the serialization of this BaseUrl
    ///
    /// This is fast, since internally the Url stores the serialization already
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, Url, TryFrom };
    ///
    ///# fn run( ) -> Result< (), BaseUrlError > {
    /// let url_str = "https://example.org/";
    /// let host = BaseUrl::try_from( url_str )?;
    ///
    /// assert_eq!( host.as_str( ), url_str );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn as_str( &self ) -> &str {
        self.url.as_str( )
    }

    /// Return the serialization of this BaseUrl
    ///
    /// This consumes the BaseUrl and takes ownership of the String
    ///
    /// # Examples
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, Url, ParseError, TryFrom };
    ///
    ///# fn run( ) -> Result< (), BaseUrlError > {
    /// let url_str = "https://example.org/";
    /// let host = BaseUrl::try_from( url_str )?;
    ///
    /// assert_eq!( host.into_string( ), url_str );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn into_string( self ) -> String {
        self.url.into_string( )
    }


    /// Returns the BaseUrl's scheme, host and port as a tuple
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, OriginTuple, Host, TryFrom };
    ///# use base_url::BaseUrlError;
    ///
    ///# fn run( ) -> Result< (), BaseUrlError > {
    /// let url = BaseUrl::try_from( "ftp://example.org/foo" )?;
    ///
    /// assert_eq!( url.origin( ),
    ///             ( "ftp".into( ),
    ///               Host::Domain( "example.org".into( ) ),
    ///               21 ) );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn origin( &self ) -> OriginTuple {
        match self.url.origin( ) {
            url::Origin::Opaque( _ ) => { panic!( "Some sorcery occurred, please raise an issue at https://github.com/bradymcd/rs-baseurl" ) }
            url::Origin::Tuple( scheme, host, port ) => {
                ( scheme, host, port )
            }
        }
    }


    /// Returns the scheme of the given BaseUrl, lower-cased, as an ASCII string without the ':'
    /// delimiter
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< (), BaseUrlError > {
    /// let url = BaseUrl::try_from( "https://example.org" )?;
    ///
    /// assert_eq!( url.scheme( ), "https" );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn scheme( &self ) -> &str {
        self.url.scheme( )
    }

    /// Strip out any present username, password, query and fragment information from this BaseUrl
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< (), BaseUrlError > {
    /// let mut url = BaseUrl::try_from( "http://brady:hunter3@example.org/foo?query=1#fragment=2" )?;
    ///
    /// url.strip( );
    /// assert_eq!( url.as_str( ), "http://example.org/foo" );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn strip( &mut self ) {
        self.set_username( "" );
        self.set_password( None );
        self.set_query( None );
        self.set_fragment( None );
    }

    /// Strips a BaseUrl down to only the host and scheme.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< (), BaseUrlError > {
    /// let mut url = BaseUrl::try_from( "http://brady:hunter3@example.org:8080/foo?query=1#fragment=2" )?;
    ///
    /// url.make_host_only( );
    /// assert_eq!( url.as_str( ), "http://example.org/" );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn make_host_only( &mut self ) {
        self.strip( );
        self.set_path( "" );
        self.set_port( None );
    }


    /// Set the BaseUrl's scheme
    ///
    /// Does nothing and returns Err() if the specified scheme does not match the regular expression
    /// [a-zA-Z][a-zA-Z0-9+.-]+
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let mut url = BaseUrl::try_from( "http://example.org/" )?;
    ///
    /// url.set_scheme( "https" );
    /// assert_eq!( url.as_str( ), "https://example.org/" );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn set_scheme( &mut self, scheme: &str ) -> Result< (), () > {
        self.url.set_scheme( scheme )
    }

    /// Return the username for this BaseUrl. If no username is set an empty string is returned
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let url = BaseUrl::try_from( "https://brady@example.org/foo" )?;
    ///
    /// assert_eq!( url.username( ), "brady" );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn username( &self ) -> &str {
        self.url.username( )
    }

    /// Change the username of this BaseUrl.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let mut url = BaseUrl::try_from( "http://example.org/" )?;
    ///
    /// url.set_username( "brady" );
    /// assert_eq!( url.as_str( ), "http://brady@example.org/" );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn set_username( &mut self, username:&str ) {
        self.url.set_username( username ).expect( "The impossible happened" );
    }

    /// Optionally returns the password associated with this BaseUrl as a percent-encoded ASCII string.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let url = BaseUrl::try_from( "https://brady:hunter3@example.org/" )?;
    /// assert_eq!( url.password( ), Some( "hunter3" ) );
    ///
    /// let url = BaseUrl::try_from( "https://brady@example.org" )?;
    /// assert_eq!( url.password( ), None );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn password( &self ) -> Option< &str > {
        self.url.password( )
    }

    /// Change the password of this BaseUrl. Use None to remove the password field.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let mut url = BaseUrl::try_from( "http://brady@example.org/" )?;
    ///
    /// url.set_password( Some( "hunter3" ) );
    /// assert_eq!( url.as_str( ), "http://brady:hunter3@example.org/" );
    ///
    /// url.set_password( None );
    /// assert_eq!( url.password( ), None );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn set_password( &mut self, password:Option< &str > ) {
        self.url.set_password( password ).expect( "The impossible happened" );
    }

    /// Returns the domain or IP address for this BaseUrl as a string.
    ///
    /// See also the host() method
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let url = BaseUrl::try_from( "http://brady@example.org/foo" )?;
    /// assert_eq!( url.host_str( ), "example.org" );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn host_str( &self ) -> &str {
        self.url.host_str( ).unwrap( )
    }

    /// Returns the host for this BaseUrl in an enumerated type.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom, Host };
    /// use std::net::Ipv4Addr;
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let url = BaseUrl::try_from( "http://example.org/" )?;
    /// assert_eq!( url.host( ), Host::Domain( "example.org" ) );
    ///
    /// let ip = BaseUrl::try_from( "http://127.0.0.1/index.html" )?;
    /// assert_eq!( ip.host( ), Host::Ipv4( Ipv4Addr::new( 127, 0, 0, 1 ) ) );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn host( &self ) -> Host< &str > {
        self.url.host( ).unwrap( )
    }

    /// Changes the host for this BaseUrl. If there is any error parsing the provided string no action
    /// is taken and Err() is returned. Host cannot be removed as in the rust-url crate as without a
    /// host a url cannot be a base.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let mut url = BaseUrl::try_from( "http://example.org/" )?;
    ///
    /// assert!( url.set_host( "rust-lang.org" ).is_ok( ) );
    /// assert_eq!( url.as_str( ), "http://rust-lang.org/" );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    ///
    /// # Errors
    ///
    /// If the provided host string cannot be parsed a ParseError variant is returned.
    ///
    pub fn set_host( &mut self, host:&str ) -> Result< (), ParseError > {
        match self.url.set_host( Some( host ) ) {
            Ok( _ ) => Ok( () ),
            Err( e ) => Err( e ),
        }
    }

    /// Change this BaseUrl's host to the given Ip address.
    ///
    /// Compared to calling set_host( ), which can also work with ip address strings this method saves
    /// a call to the parser.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    /// use std::net::{ IpAddr, Ipv4Addr };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let mut url = BaseUrl::try_from( "https://example.org/" )?;
    ///
    /// url.set_ip_host( IpAddr::V4( Ipv4Addr::new( 127, 0, 0, 1 ) ) );
    /// assert_eq!( url.as_str( ), "https://127.0.0.1/" );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn set_ip_host( &mut self, address:IpAddr ) {
        self.url.set_ip_host( address ).expect( "The impossible occurred" );
    }

    /// Return's the domain string of this BaseUrl. Returns None if the host is an Ip address rather
    /// than a domain name.
    ///
    /// Note the lack of trailing '/' in the example, that is the path component not the domain.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let ip = BaseUrl::try_from( "https://127.0.0.1" )?;
    /// assert!( ip.domain( ).is_none( ) );
    ///
    /// let url = BaseUrl::try_from( "https://www.example.org/" )?;
    /// assert_eq!( url.domain( ), Some( "www.example.org" ) );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn domain( &self ) -> Option< &str > {
        self.url.domain( )
    }

    /// Optionally return's the port number of this BaseUrl. Note that whenever a known default port is
    /// included in a url that port is elided. If you require an API which returns port information
    /// including known default port information use `port_or_known_default( )`
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let url = BaseUrl::try_from( "http://example.org/" )?;
    /// assert!( url.port( ).is_none( ) );
    ///
    /// let url = BaseUrl::try_from( "https://example.org:42/" )?;
    /// assert_eq!( url.port( ), Some( 42 ) );
    ///
    /// let url = BaseUrl::try_from( "https://example.org:443/" )?;
    /// assert!( url.port( ).is_none( ) );
    ///
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn port( &self ) -> Option< u16 > {
        self.url.port( )
    }

    /// Return's the port number of this BaseUrl. If no port number is present a guess is made based
    /// on the scheme, if no guess can be made None is returned.
    ///
    /// This method only knows the default port numbers for ```http```, ```https```, ```ws```,
    /// ```wss```, ```ftp``` and ```gopher```.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    ///
    /// let url = BaseUrl::try_from( "http://example.org/" )?;
    /// assert_eq!( url.port_or_known_default( ), Some( 80 ) );
    ///
    /// let url = BaseUrl::try_from( "ssh://example.org/" )?;
    /// assert_eq!( url.port_or_known_default( ), None );
    ///
    /// let url = BaseUrl::try_from( "foo://example.org:42" )?;
    /// assert_eq!( url.port_or_known_default( ), Some( 42 ) );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn port_or_known_default( &self ) -> Option< u16 > {
        self.url.port_or_known_default( )
    }

    /// Change this BaseUrl's port. Note that default ports (as known by `port_or_known_default( )` )
    /// are not reflected in Url serializations.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let mut url = BaseUrl::try_from( "https://example.org" )?;
    ///
    /// url.set_port( Some( 443 ) );
    /// assert!( url.port( ).is_none( ) );
    ///
    /// url.set_port( Some( 42 ) );
    /// assert_eq!( url.port( ), Some(42 ) );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn set_port( &mut self, port:Option< u16 > ) {
        self.url.set_port( port ).expect( "The impossible happened" )
    }

    /// Return's the path of this BaseUrl, percent-encoded. Path strings will start with '/' and
    /// continue with '/' separated path segments.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let url = BaseUrl::try_from( "https://example.org/index.html" )?;
    /// assert_eq!( url.path( ), "/index.html" );
    ///
    /// let url = BaseUrl::try_from( "https://example.org" )?;
    /// assert_eq!( url.path( ), "/" );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn path( &self ) -> &str {
        self.url.path( )
    }

    /// Return's an iterator through each of this BaseUrl's path segments. Path segments do not contain
    /// the separating '/' characters and may be empty, often on the last entry.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let url = BaseUrl::try_from( "https://example.org" )?;
    /// let mut path_segments = url.path_segments( );
    /// assert!( path_segments.next( ) == Some( "" ) );
    /// assert!( path_segments.next( ) == None );
    ///
    /// let url = BaseUrl::try_from( "https://example.org/foo/bar/index.html" )?;
    /// let mut path_segments = url.path_segments( );
    /// assert!( path_segments.next( ) == Some( "foo" ) );
    /// assert!( path_segments.next( ) == Some( "bar" ) );
    /// assert!( path_segments.next( ) == Some( "index.html" ) );
    /// assert!( path_segments.next( ) == None );
    ///
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn path_segments( &self ) -> Split<char> {
        self.url.path_segments( ).unwrap( )
    }

    /// Change this BaseUrl's path overwriting any other path information.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let mut url = BaseUrl::try_from( "https://example.org/something/foo.html" )?;
    ///
    /// url.set_path( "/foobar" );
    /// assert_eq!( url.as_str( ), "https://example.org/foobar" );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn set_path( &mut self, path:&str ) {
        self.url.set_path( path )
    }


    /// Returns an object with chainable methods to manipulate this BaseUrl's path segments.
    ///
    /// Note that unlike url's `::parse( )` and `join( )`, `path_segments_mut( )` percent encodes '/'
    /// and '%' characters.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let mut url = BaseUrl::try_from( "https://example.org/" )?;
    ///
    /// url.path_segments_mut( ).push( "sitemaps" ).push( "sitemap_1.xml" );
    /// assert_eq!( url.as_str( ), "https://example.org/sitemaps/sitemap_1.xml" );
    ///
    /// url.path_segments_mut( ).clear( ).push( "foo/bar#fragment=no" );
    /// assert_eq!( url.as_str( ), "https://example.org/foo%2Fbar%23fragment=no" );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn path_segments_mut( &mut self ) -> PathSegmentsMut {
        self.url.path_segments_mut( ).unwrap( )
    }

    /// Optionally return's this BaseUrl's percent-encoded query string.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let url = BaseUrl::try_from( "https://example.org/foo" )?;
    /// assert_eq!( url.query( ), None );
    ///
    /// let url = BaseUrl::try_from( "https://example.org/foo?page=2" )?;
    /// assert_eq!( url.query( ), Some( "page=2" ) );
    ///
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn query( &self ) -> Option< &str > {
        self.url.query( )
    }

    /// Parse the BaseUrl's query string and return an iterator over all found (key, value) pairs.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    /// use std::borrow::Cow;
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let url = BaseUrl::try_from( "https://example.org/foo?page=2&sort=newest" )?;
    /// let mut queries = url.query_pairs( );
    ///
    /// assert_eq!( queries.next( ), Some( ( Cow::Borrowed( "page" ), Cow::Borrowed( "2" ) ) ) );
    /// assert_eq!( queries.next( ), Some( ( Cow::Borrowed( "sort" ), Cow::Borrowed( "newest" ) ) ) );
    /// assert_eq!( queries.next( ), None );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn query_pairs( &self ) -> Parse {
        self.url.query_pairs( )
    }

    /// Change this BaseUrl's query string.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let mut url = BaseUrl::try_from( "https://example.org/foo" )?;
    ///
    /// url.set_query( Some( "page=2" ) );
    /// assert_eq!( url.as_str( ), "https://example.org/foo?page=2" );
    ///
    /// url.set_query( None );
    /// assert_eq!( url.as_str( ), "https://example.org/foo" );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn set_query( &mut self, query:Option<&str> ) {
        self.url.set_query( query )
    }

    /// Returns an object with a method chaining API. These methods manipulate the query string of the
    /// BaseUrl as a sequence of (key, value) pairs.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let mut url = BaseUrl::try_from( "https://example.org/foo?page=2" )?;
    ///
    /// url.query_pairs_mut( ).append_pair( "sort", "newest" );
    /// assert_eq!( url.as_str( ), "https://example.org/foo?page=2&sort=newest");
    ///
    /// url.query_pairs_mut( ).clear( ).append_pair( "bar","baz" );
    /// assert_eq!( url.as_str( ), "https://example.org/foo?bar=baz");
    ///
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn query_pairs_mut( &mut self ) -> Serializer< UrlQuery > {
        self.url.query_pairs_mut( )
    }

    /// Optionally returns this BaseUrl's fragment identifier.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let url = BaseUrl::try_from( "https://example.org/index.html#about" )?;
    /// assert_eq!( url.fragment( ), Some( "about" ) );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn fragment( &self ) -> Option< &str > {
        self.url.fragment( )
    }

    /// Change this BaseUrl's fragment identifier.
    ///
    /// # Examples
    ///
    /// ```rust
    /// use base_url::{ BaseUrl, BaseUrlError, TryFrom };
    ///
    ///# fn run( ) -> Result< ( ), BaseUrlError > {
    /// let mut url = BaseUrl::try_from( "https://example.org/foo?page=2" )?;
    ///
    /// url.set_fragment( Some( "head2" ) );
    /// assert_eq!( url.as_str( ), "https://example.org/foo?page=2#head2" );
    ///# Ok( () )
    ///# }
    ///# run( );
    /// ```
    pub fn set_fragment( &mut self, fragment:Option<&str> ) {
        self.url.set_fragment( fragment )
    }

}

impl Display for BaseUrl {
    fn fmt( &self, formatter: &mut Formatter ) -> FormatResult {
        self.url.fmt( formatter )
    }
}