tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / tizen / DEPRACATED / System / Environment.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @author       Zbigniew Kostrzewa (z.kostrzewa@samsung.com)
18  */
19
20 #ifndef WRTDEVICEAPIS_SYSTEM_ENVIRONMENT_H_
21 #define WRTDEVICEAPIS_SYSTEM_ENVIRONMENT_H_
22
23 #include <API/System/IEnvironment.h>
24
25 namespace WrtPlugins {
26 namespace Platform {
27 namespace System {
28 class Environment : public Api::System::IEnvironment
29 {
30   public:
31     static Environment& getInstance();
32
33   public:
34     /**
35      * @see WrtPlugins::Api::System::IEnvironment::getLanguage()
36      */
37     std::string getLanguage() const;
38
39     /**
40      * @see WrtPlugins::Api::System::IEnvironment::getOsVersion()
41      */
42     std::string getOsVersion() const;
43
44     /**
45      * @see WrtPlugins::Api::System::IEnvironment::getSoftwareVersion()
46      */
47     std::string getSoftwareVersion() const;
48
49     /**
50      * @see WrtPlugins::Api::System::IEnvironment::getHardwareName()
51      */
52     std::string getHardwareName() const;
53
54     /**
55      * @see WrtPlugins::Api::System::IEnvironment::getVendorName()
56      */
57     std::string getVendorName() const;
58
59   protected:
60     /**
61      * Gets value of specified environment variable.
62      * @param name Name of the variable.
63      * @return Value of the variable.
64      * @throw PlatformException If specified variable doesn't exist.
65      */
66     static std::string getVariable(const char* name);
67
68   protected:
69     Environment();
70 };
71 } // System
72 } // Platform
73 } // WrtPlugins
74
75 #endif // WRTDEVICEAPIS_SYSTEM_ENVIRONMENT_H_