2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
9 // http://www.apache.org/licenses/LICENSE-2.0
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
19 * @file FSec_PrivilegeInfoImpl.h
20 * @brief This is the header file for the _PrivilegeInfoImpl class.
23 #ifndef _FSEC_INTERNAL_PRIVILEGE_INFO_IMPL_H_
24 #define _FSEC_INTERNAL_PRIVILEGE_INFO_IMPL_H_
27 #include <FBaseObject.h>
28 #include <FBaseString.h>
29 #include <FOspConfig.h>
30 #include <FBaseInternalTypes.h>
32 namespace Tizen { namespace Io
39 namespace Tizen { namespace Security
44 static const int MAX_DATABASE_RETRY_COUNT = 30;
45 static const wchar_t PRIVILEGE_DESCRIPTION_DATABASE_FILE_NAME[] = L"/usr/share/osp/.privilege-description.db";
47 class _OSP_EXPORT_ _PrivilegeInfoImpl
48 : public Tizen::Base::Object
51 Tizen::Base::String GetDescription(const Tizen::Base::String& privilege) const;
52 Tizen::Base::String GetName(const Tizen::Base::String& privilege) const;
54 static _PrivilegeInfoImpl* GetInstance(void);
56 _PrivilegeInfoImpl(void);
57 virtual ~_PrivilegeInfoImpl(void);
58 result Construct(void);
59 result Construct(const Tizen::Base::String& privilegeId);
60 Tizen::Base::String GetId(void) const;
61 Tizen::Base::String GetDisplayName(void) const;
62 Tizen::Base::String GetDescription(void) const;
66 Tizen::Io::Database* __pDb;
68 static _PrivilegeInfoImpl* __pPrivilegeInfoImplInstance;
70 result CheckDatabase(void);
71 static void InitInstance(void);
73 static Tizen::Io::DbStatement* CreateStatementN(Tizen::Io::Database& db, const Tizen::Base::String& query);
74 static Tizen::Io::DbEnumerator* ExecuteStatementN(Tizen::Io::Database& db, const Tizen::Io::DbStatement* pStmt);
76 friend class PrivilegeInfo;
79 Tizen::Base::String __privilegeId;
82 }; // _PrivilegeInfoImpl
84 } } // Tizen::Security
86 #endif // _FSEC_INTERNAL_PRIVILEGE_INFO_IMPL_H_