Merge pull request #2193 from OpenELEC/git-version-changes
[vuplus_xbmc] / xbmc / DbUrl.h
1 #pragma once
2 /*
3  *      Copyright (C) 2012-2013 Team XBMC
4  *      http://www.xbmc.org
5  *
6  *  This Program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2, or (at your option)
9  *  any later version.
10  *
11  *  This Program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 #include <map>
22 #include <string>
23
24 #include "URL.h"
25 #include "utils/UrlOptions.h"
26
27 class CDbUrl : public CUrlOptions
28 {
29 public:
30   CDbUrl();
31   virtual ~CDbUrl();
32
33   bool IsValid() const { return m_valid; }
34   void Reset();
35
36   std::string ToString() const;
37   bool FromString(const std::string &dbUrl);
38
39   const std::string& GetType() const { return m_type; }
40   void AppendPath(const std::string &subPath);
41
42   virtual void AddOption(const std::string &key, const char *value);
43   virtual void AddOption(const std::string &key, const std::string &value);
44   virtual void AddOption(const std::string &key, int value);
45   virtual void AddOption(const std::string &key, float value);
46   virtual void AddOption(const std::string &key, double value);
47   virtual void AddOption(const std::string &key, bool value);
48   virtual void AddOptions(const std::string &options);
49   virtual void RemoveOption(const std::string &key);
50
51 protected:
52   virtual bool parse() = 0;
53   virtual bool validateOption(const std::string &key, const CVariant &value);
54   
55   CURL m_url;
56   std::string m_type;
57
58 private:
59   void updateOptions();
60
61   bool m_valid;
62 };