Merge pull request #5039 from CEikermann/patch-1
[vuplus_xbmc] / xbmc / DbUrl.h
1 #pragma once
2 /*
3  *      Copyright (C) 2012-2013 Team XBMC
4  *      http://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 XBMC; see the file COPYING.  If not, see
18  *  <http://www.gnu.org/licenses/>.
19  *
20  */
21
22 #include <map>
23 #include <string>
24
25 #include "URL.h"
26 #include "utils/UrlOptions.h"
27
28 class CDbUrl : public CUrlOptions
29 {
30 public:
31   CDbUrl();
32   virtual ~CDbUrl();
33
34   bool IsValid() const { return m_valid; }
35   void Reset();
36
37   std::string ToString() const;
38   bool FromString(const std::string &dbUrl);
39
40   const std::string& GetType() const { return m_type; }
41   void AppendPath(const std::string &subPath);
42
43   virtual void AddOption(const std::string &key, const char *value);
44   virtual void AddOption(const std::string &key, const std::string &value);
45   virtual void AddOption(const std::string &key, int value);
46   virtual void AddOption(const std::string &key, float value);
47   virtual void AddOption(const std::string &key, double value);
48   virtual void AddOption(const std::string &key, bool value);
49   virtual void AddOptions(const std::string &options);
50   virtual void RemoveOption(const std::string &key);
51
52 protected:
53   virtual bool parse() = 0;
54   virtual bool validateOption(const std::string &key, const CVariant &value);
55   
56   CURL m_url;
57   std::string m_type;
58
59 private:
60   void updateOptions();
61
62   bool m_valid;
63 };