aboutsummaryrefslogtreecommitdiff
path: root/src/unstable/url.h
blob: e1255d7f941481037c14e7e1d484163e8325261f (plain)
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
/*
 * Copyright (C) 2007-2023 Xagasoft, All rights reserved.
 *
 * This file is part of the libbu++ library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#ifndef BU_URL_H
#define BU_URL_H

#include "bu/string.h"
#include "bu/atom.h"

namespace Bu
{
    class Url
    {
    public:
        typedef struct Param
        {
            Param() { }
            Param( const Param &r ) : sName( r.sName ), sValue( r.sValue ) { }
            Param( const Bu::String &n, const Bu::String &v ) :
                sName( n ), sValue( v ) { }
            Bu::String sName;
            Bu::String sValue;
        } Param;
        typedef Bu::List<Param> ParamList;

    public:
        Url();
        Url( const Bu::String &sUrl );
        virtual ~Url();

        void parseUrl( const Bu::String &sUrl );
        void parseParams( const Bu::String &sQuery );
        void parseParams( Bu::String::const_iterator &i );
        void parsePath( const Bu::String &sPath );
        void parsePath( Bu::String::const_iterator &i );
        void clear();

        Bu::String getUrl() const;
        Bu::String getFullPath() const;

        const Bu::String &getProtocol() const { return sProtocol; }
        const Bu::String &getUser() const { return sUser; }
        const Bu::String &getPass() const { return sPass; }
        const Bu::String &getHost() const { return sHost; }
        const Bu::String &getPath() const { return sPath; }
        int getPort() const { return iPort; }
        ParamList::const_iterator getParamBegin() const
            { return lParam.begin(); }

        void setProtocol( const Bu::String &sNewHost, bool bAutoSetPort=true );
        void setUser( const Bu::String &s ) { sUser = s; }
        void setPass( const Bu::String &s ) { sPass = s; }
        void setHost( const Bu::String &s ) { sHost = s; }
        void setPath( const Bu::String &s ) { sPath = s; }
        void setPort( int i ) { iPort = i; }
        void addParam( const Bu::String &n, const Bu::String &v );

        bool hasPort() const { return iPort.has(); }

        static Bu::String decode( const Bu::String &sStr );
        static Bu::String encode( const Bu::String &sStr );

    private: // Parsing code
        void parseProtocol( Bu::String::const_iterator &i );
        void parseUserPass( Bu::String::const_iterator &i );
        void parseHost( Bu::String::const_iterator &i );

    private:
        Bu::String sProtocol;
        Bu::String sUser;
        Bu::String sPass;
        Bu::String sHost;
        Bu::String sPath;
        Bu::Atom<int> iPort;
        ParamList lParam;

        static char hexcode[16];
    };
};

#endif