[Release] wrt-commons 0.2.115
[platform/framework/web/wrt-commons.git] / modules / widget_dao / include / dpl / wrt-dao-ro / widget_dao_read_only.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  * This file contains the declaration of widget dao class.
18  *
19  * @file    widget_dao_read_only.h
20  * @author  Yang Jie (jie2.yang@samsung.com)
21  * @author  Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
22  * @author  Pawel Sikorski (p.sikorski@samsung.com)
23  * @version 1.0
24  * @brief   This file contains the declaration of widget dao
25  */
26
27 #ifndef _WRT_SRC_CONFIGURATION_WIDGET_DAO_READ_ONLY_H_
28 #define _WRT_SRC_CONFIGURATION_WIDGET_DAO_READ_ONLY_H_
29
30 #include <time.h>
31 #include <list>
32 #include <string>
33 #include <dpl/string.h>
34 #include <dpl/exception.h>
35 #include <dpl/db/orm.h>
36 #include <dpl/optional_typedefs.h>
37 #include <dpl/wrt-dao-ro/config_parser_data.h>
38 #include <dpl/wrt-dao-ro/property_dao_read_only.h>
39 #include <dpl/wrt-dao-ro/common_dao_types.h>
40
41 namespace WrtDB {
42 /**
43  * Widget's signature enum.
44  * This enumerates signature type of widget.
45  */
46 enum WidgetSignatureType
47 {
48     SIGNATURE_TYPE_CARRIER = 0,
49     SIGNATURE_TYPE_IDENTIFIED,
50     SIGNATURE_TYPE_UNIDENTIFIED
51 };
52
53 enum CertificateSource {
54     SIGNATURE_DISTRIBUTOR = 0,
55     SIGNATURE_AUTHOR = 1
56 };
57
58 typedef std::list<DPL::String> StringList;
59
60 struct WidgetLocalizedInfo
61 {
62     DPL::OptionalString name;
63     DPL::OptionalString shortName;
64     DPL::OptionalString description;
65     DPL::OptionalString license;
66     DPL::OptionalString licenseHref;
67 };
68
69 /**
70  * CertificateData
71  * A structure to hold certificate fingerprints.
72  */
73 struct WidgetCertificateData
74 {
75     enum Owner { AUTHOR, DISTRIBUTOR, UNKNOWN };
76     enum Type { ROOT, ENDENTITY };
77
78     // type of signature: author/distributor
79     Owner owner;
80     // indicates whether this is ca certificate
81     Type type;
82
83     // chain id number: relative BASE, where BASE is signatureBASE.xml
84     int chainId;
85     // certificate fingerprint digested by md5
86     std::string strMD5Fingerprint;
87     // certificate fingerprint digestef by sha1
88     std::string strSHA1Fingerprint;
89     // Common name field in certificate
90     DPL::String strCommonName;
91
92     bool operator== (const WidgetCertificateData& certData) const
93     {
94         return certData.chainId == chainId &&
95                certData.owner == owner &&
96                certData.strCommonName == strCommonName &&
97                certData.strMD5Fingerprint == strMD5Fingerprint &&
98                certData.strSHA1Fingerprint == strSHA1Fingerprint;
99     }
100 };
101
102 typedef std::list<WidgetCertificateData> WidgetCertificateDataList;
103
104 typedef DPL::String Locale;
105 typedef std::set<Locale> LocaleSet;
106 typedef std::list<std::string> ExternalLocationList;
107
108 /**
109  * WidgetRegisterInfo
110  * A structure to hold widget's information needed to be registered.
111  * @see WidgetConfigurationInfo
112  */
113 struct WidgetRegisterInfo
114 {
115     struct LocalizedIcon : public ConfigParserData::Icon
116     {
117         LocalizedIcon(const ConfigParserData::Icon& icon,
118                       const LocaleSet& _availableLocales) :
119             ConfigParserData::Icon(icon),
120             availableLocales(_availableLocales)
121         {}
122
123         LocaleSet availableLocales;
124     };
125
126     struct StartFileProperties
127     {
128         DPL::String encoding;
129         DPL::String type;
130     };
131
132     typedef std::map<Locale,
133                      StartFileProperties> StartFilePropertiesForLocalesMap;
134     struct LocalizedStartFile
135     {
136         DPL::String path;
137         StartFilePropertiesForLocalesMap propertiesForLocales;
138     };
139
140     typedef std::list<LocalizedIcon> LocalizedIconList;
141     typedef std::list<LocalizedStartFile> LocalizedStartFileList;
142     struct LocalizationData
143     {
144         LocalizedIconList icons;
145         LocalizedStartFileList startFiles;
146     };
147
148     enum SecurityDomain
149     {
150         Untrusted,
151         Trusted,
152         Operator,
153         None
154     };
155
156     //Constructor
157     WidgetRegisterInfo() :
158         webAppType(APP_TYPE_UNKNOWN),
159         signatureType(SIGNATURE_TYPE_UNIDENTIFIED),
160         isTestWidget(0),
161         configInfo(),
162         packagingType(PKG_TYPE_UNKNOWN)
163     {}
164
165     WidgetType webAppType;
166     DPL::OptionalString guid;
167     DPL::OptionalString version;
168     DPL::OptionalString minVersion;
169     std::string shareHref;
170     std::string baseFolder;
171     WidgetSignatureType signatureType;
172     int isTestWidget;
173     ConfigParserData configInfo;
174     LocalizationData localizationData;
175
176     TizenPkgId tzPkgid;
177     TizenAppId tzAppid;
178
179     time_t installedTime;
180     PackagingType packagingType;
181     EncryptedFileList encryptedFiles;
182     ExternalLocationList externalLocations;
183     DPL::OptionalString widgetInstalledPath;
184 };
185
186 typedef std::list<std::string> CertificateChainList;
187 class IWacSecurity
188 {
189   public:
190     virtual ~IWacSecurity();
191
192     virtual const WidgetCertificateDataList& getCertificateList() const = 0;
193
194     virtual bool isRecognized() const = 0;
195
196     virtual bool isDistributorSigned() const = 0;
197
198     virtual bool isWacSigned() const = 0;
199
200     virtual void getCertificateChainList(CertificateChainList& list,
201                                          CertificateSource source) const = 0;
202 };
203
204 /**
205  * WidgetAuthorInfo.
206  * Structure to hold the information of widget's author.
207  */
208 struct WidgetAuthorInfo
209 {
210     DPL::OptionalString name;
211     DPL::OptionalString email;
212     DPL::OptionalString href;
213 };
214
215 /**
216  * Widget update policy
217  */
218 enum WidgetUpdatePolicy
219 {
220     WIDGET_UPDATE_MONTHLY = 0,  //< monthly update
221     WIDGET_UPDATE_WEEKLY,       //< weekly update
222     WIDGET_UPDATE_DAILY,        //< daily update
223     WIDGET_UPDATE_STARTUP,      //< update when cell phone boots
224     WIDGET_UPDATE_NEVER         //< never update
225 };
226
227 typedef std::list <std::string> WidgetCertificateCNList;
228 typedef std::list<DPL::String> LanguageTagList;
229 typedef std::list<std::string> HostList;
230 typedef std::list<std::string> FingerPrintList;
231 typedef std::list<std::string> ResourceAttributeList;
232
233 class WidgetDAOReadOnly
234 {
235   public:
236     /**
237      * WidgetDAO Exception classes
238      */
239     class Exception
240     {
241       public:
242         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
243         DECLARE_EXCEPTION_TYPE(Base, DatabaseError)
244         DECLARE_EXCEPTION_TYPE(Base, ReadOnlyProperty)
245         DECLARE_EXCEPTION_TYPE(Base, GUIDisNull)
246         DECLARE_EXCEPTION_TYPE(Base, UnexpectedEmptyResult)
247         DECLARE_EXCEPTION_TYPE(Base, WidgetNotExist)
248         DECLARE_EXCEPTION_TYPE(Base, AlreadyRegistered)
249     };
250
251   protected:
252     DbWidgetHandle m_widgetHandle;
253
254   public:
255     struct WidgetLocalizedIconRow
256     {
257         int appId;
258         int iconId;
259         DPL::String widgetLocale;
260     };
261     typedef std::list<WidgetLocalizedIconRow> WidgetLocalizedIconList;
262
263     struct WidgetIconRow
264     {
265         int iconId;
266         int appId;
267         DPL::String iconSrc;
268         DPL::OptionalInt iconWidth;
269         DPL::OptionalInt iconHeight;
270     };
271     typedef std::list<WidgetIconRow> WidgetIconList;
272
273     struct WidgetStartFileRow
274     {
275         int startFileId;
276         int appId;
277         DPL::String src;
278     };
279     typedef std::list<WidgetStartFileRow> WidgetStartFileList;
280
281     struct WidgetLocalizedStartFileRow
282     {
283         int startFileId;
284         int appId;
285         DPL::String widgetLocale;
286         DPL::String type;
287         DPL::String encoding;
288     };
289     typedef std::list<WidgetLocalizedStartFileRow> LocalizedStartFileList;
290
291     /**
292      * This is a constructor.
293      *
294      * @param[in] widgetHandle application id of widget.
295      */
296     WidgetDAOReadOnly(DbWidgetHandle widgetHandle);
297     WidgetDAOReadOnly(DPL::OptionalString widgetGUID);
298     WidgetDAOReadOnly(WrtDB::TizenAppId tzAppid);
299
300     /**
301      * Destructor
302      */
303     virtual ~WidgetDAOReadOnly();
304
305     /**
306      * This method returns widget handle(m_widgetHandle).
307      *
308      * @return widget handle(m_widgetHandle).
309      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
310      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
311      * DB table.
312      */
313     DbWidgetHandle getHandle() const;
314     static DbWidgetHandle getHandle(const WidgetGUID GUID);
315     static DbWidgetHandle getHandle(const DPL::String pkgName);
316
317     /**
318      * Returns tizenAppId for the specified widget
319      *
320      * @return tzAppid;
321      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
322      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
323      * DB table.
324      */
325
326     TizenAppId getTzAppId() const;
327     static TizenAppId getTzAppId(const WidgetGUID GUID);
328     static TizenAppId getTzAppId(const DbWidgetHandle handle);
329     static TizenAppId getTzAppId(const TizenPkgId tzPkgid);
330
331     /**
332      * Returns TizenPkgId for the specified widget
333      *
334      * @return TizenPkgId;
335      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
336      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
337      * DB table.
338      */
339
340     TizenPkgId getTzPkgId() const;
341
342     /**
343      * This method returns the root directory of widget resource.
344      *
345      * @return path name of root directory.
346      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
347      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
348      * DB table.
349      */
350     virtual DPL::String getPath() const;
351
352     DPL::String getFullPath() const;
353
354     /**
355      * This method returns the preferred size of the widget,
356      * including width and height.
357      *
358      * @see DbWidgetSize
359      * @return An structure type variable to hold widget's size.
360      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
361      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching
362      *                                          DB table.
363      */
364     DbWidgetSize getPreferredSize() const;
365
366     /**
367      * This method returns the type of the widget.
368      *
369      * @return WidgetType
370      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
371      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching
372      *                                          records in DB table.
373      */
374     WidgetType getWidgetType() const;
375
376     /**
377      * This method returns the id of the widget.
378      *
379      * @return widget id
380      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
381      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
382      *  DB table.
383      */
384     WidgetGUID getGUID() const;
385
386     /**
387      * This method returns the App id of the widget.
388      *
389      * @return appid
390      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
391      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
392      * DB table.
393      */
394     DPL::OptionalString getTizenAppId() const;
395
396     /**
397      * This method returns the defaultlocale for the widget.
398      *
399      * @return defaultlocale
400      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
401      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
402      *  DB table.
403      */
404     DPL::OptionalString getDefaultlocale() const;
405
406     /**
407      * This method returns list of localized icons files;
408      *
409      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
410      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
411      *  DB table.
412      */
413     WidgetLocalizedIconList getLocalizedIconList() const;
414
415     /**
416      * This method returns list of icons files;
417      *
418      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
419      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
420      *  DB table.
421      */
422     WidgetIconList getIconList() const;
423
424     /**
425      * This method returns list of localized start files;
426      *
427      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
428      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
429      *  DB table.
430      */
431     LocalizedStartFileList getLocalizedStartFileList() const;
432
433     /**
434      * This method returns list of start files;
435      *
436      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
437      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
438      *  DB table.
439      */
440     WidgetStartFileList getStartFileList() const;
441
442     /**
443      * @param[out] outAccessInfoList list filled with access info structures
444      */
445     void getWidgetAccessInfo(WidgetAccessInfoList& outAccessInfoList) const;
446     void getWidgetAllowNavigationInfo(
447         WidgetAllowNavigationInfoList& allowNavigationInfoList) const;
448
449     /**
450      * WAC 2.0 extension
451      * @return recognized status
452      */
453     bool isRecognized() const;
454
455     /**
456      * WAC 2.0 extension
457      * @return
458      */
459     bool isWacSigned() const;
460
461     /**
462      * WAC 2.0 extension
463      * @return
464      */
465     bool isDistributorSigned() const;
466
467     /**
468      * WAC 2.0 extension
469      * @return trusted status
470      */
471     bool isTrusted() const;
472
473     /**
474      * WAC 2.0 extension
475      * @return is WAC test widget
476      */
477     bool isTestWidget() const;
478
479     /**
480      * This method returns window mode of widget.
481      *
482      * @return window modes of widget
483      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
484      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
485      *  DB table.
486      */
487     WindowModeList getWindowModes() const;
488
489     /**
490      * This method returns the version of the widget.
491      *
492      * @return version of widget
493      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
494      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
495      *  DB table.
496      */
497     DPL::OptionalString getVersion() const;
498
499     /**
500      * This method is used as a getter for csp policy of widget. It should be
501      * provided in configuration file.
502      * @return global csp policy for widget
503      */
504     DPL::OptionalString getCspPolicy() const;
505
506     /**
507      * This method is used as a getter for report only csp policy of widget.
508      * It may be provided in configuration file.
509      * @return global csp report only policy for widget
510      */
511     DPL::OptionalString getCspPolicyReportOnly() const;
512
513     /**
514      * This method returns list filed with Common Name entries from certificate.
515      *
516      * @return Common Name of Distribuotor End Entity certificate.
517      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
518      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
519      *  DB table.
520      */
521     WidgetCertificateCNList getKeyCommonNameList(
522         WidgetCertificateData::Owner owner,
523         WidgetCertificateData::Type type) const;
524
525     /**
526      * given a certificate owner (author / distributor) and type of certificate
527      * (end entity / ca)
528      * function returns list of matching fingerprints
529      */
530     FingerPrintList getKeyFingerprints(
531         WidgetCertificateData::Owner owner,
532         WidgetCertificateData::Type type) const;
533
534     /*
535      *  This method gets certificate data list for a widget from database.
536      */
537     WidgetCertificateDataList getCertificateDataList() const;
538
539     /**
540      * This method returns a list of widget features.
541      *
542      * @see WidgetFeature
543      * @see FreeFeatureList()
544      * @return list of widget features, type of list element is structure
545      *  WidgetFeature
546      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
547      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
548      *  DB table.
549      */
550     DbWidgetFeatureSet getFeaturesList() const;
551
552     /**
553      * This method checks whether widget has specified feature.
554      *
555      * @return true if has, false if has not
556      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
557      */
558     bool hasFeature(const std::string& featureName) const;
559
560     /**
561      * This method gets host list that widget can connect to.
562      *
563      * @return See above comment
564      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
565      */
566     HostList getAccessHostList() const;
567
568     /**
569      * This method gets widget's access on network: true or false.
570      *
571      * @return true: widget can access network; false: widget can not access
572      *  network.
573      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
574      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
575      *  DB table.
576      */
577     bool getAccessNetworkMode() const;
578
579     /**
580      * This method gets if widget needs webkit plugins enabled
581      *
582      * @return true: widget needs webkit plugins enabled
583      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
584      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
585      *  DB table.
586      */
587     bool getWebkitPluginsRequired() const;
588
589     /**
590      * This method returns a list of all the installed widgets' app id.
591      *
592      * @return list of installed widgets' app id.
593      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
594      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
595      *  DB table.
596      */
597     static DbWidgetHandleList getHandleList();
598
599     /**
600      * This method returns list of tizen application list of installed packages
601      * @return list of TizenAppIdList of installed packages
602      */
603     static TizenAppIdList getTizenAppidList();
604
605     /**
606      * This method returns a list of all the installed widgets.
607      *
608      * @return list of installed widgets.
609      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
610      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
611      *  DB table.
612      */
613     static DbWidgetDAOReadOnlyList getWidgetList();
614
615     /**
616      * This method removes a widget's information from EmDB.
617      *
618      * @see RegisterWidget()
619      * @param[in] widgetHandle    widget's app id
620      * @return true if succeed, false if fail.
621      */
622     static void unregisterWidget(DbWidgetHandle widgetHandle);
623
624     /**
625      * This method gets author's infomation of a widget which is parsed from
626      *  configiration document.
627      *
628      * @see WidgetAuthorInfo
629      * @param[out] pAuthorInfo
630      * @return true if succeed, false if fail.
631      */
632     WidgetAuthorInfo getAuthorInfo() const;
633
634     /**
635      * This method gets author's name of a widget which is parsed from
636      *  configiration document.
637      *
638      * @param[out] pAuthorInfo
639      * @return author's name.
640      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
641      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
642      *  DB table.
643      */
644     DPL::OptionalString getAuthorName() const;
645
646     /**
647      * This method gets author's email of a widget which is parsed from
648      *  configiration document.
649      *
650      * @param[out] pAuthorInfo
651      * @return author's email.
652      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
653      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
654      *  DB table.
655      */
656     DPL::OptionalString getAuthorEmail() const;
657
658     /**
659      * This method gets author's email of a widget which is parsed from
660      *  configiration document.
661      *
662      * @param[out] pAuthorInfo
663      * @return author's email.
664      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
665      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
666      *  DB table.
667      */
668     DPL::OptionalString getAuthorHref() const;
669
670     /**
671      * This method returns minimum version of WAC that WRT has to be compliant
672      *  to to run this widget
673      *
674      * @return Minimum version
675      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
676      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
677      *  DB table.
678      */
679     DPL::OptionalString getMinimumWacVersion() const;
680
681     /* This method get widget' share href.
682      *
683      * @return widget's share href
684      */
685     std::string getShareHref() const;
686
687     /**
688      * This method get widget installed time
689      *
690      * @return time_t : return widget's install time
691      */
692     time_t getInstallTime() const;
693
694     /**
695      * This method gets widget base folder.
696      *
697      * @return widget base folder.
698      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
699      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching records in
700      *  DB table.
701      */
702     std::string getBaseFolder() const;
703
704     /* This method checks read only flag for given property
705      */
706     DPL::OptionalInt checkPropertyReadFlag(
707         const PropertyDAOReadOnly::WidgetPropertyKey &key) const;
708
709     /* This method gets widget property key list
710      */
711     PropertyDAOReadOnly::WidgetPropertyKeyList getPropertyKeyList() const;
712
713     /* This method gets widget property list
714      */
715     PropertyDAOReadOnly::WidgetPreferenceList getPropertyList() const;
716
717     /* This method get widget property value
718      */
719     PropertyDAOReadOnly::WidgetPropertyValue getPropertyValue(
720         const PropertyDAOReadOnly::WidgetPropertyKey &key) const;
721
722     LanguageTagList getLanguageTags() const;
723     LanguageTagList getIconLanguageTags() const;
724
725     WidgetLocalizedInfo getLocalizedInfo(const DPL::String& languageTag) const;
726     std::string getCookieDatabasePath() const;
727     // Local storage
728     std::string getPrivateLocalStoragePath() const;
729
730     bool getBackSupported() const;
731
732     static bool isWidgetInstalled(DbWidgetHandle handle);
733     static bool isWidgetInstalled(const TizenAppId & tzAppId);
734
735     /* This method get path of the splash image.
736      *
737      * @return path of the widget's splash image
738      */
739     DPL::OptionalString getSplashImgSrc() const;
740
741     ExternalLocationList getWidgetExternalLocations() const;
742
743     /*
744      * Default value is required to keep compatibility with
745      * wrt-installer and wrt.
746      */
747     CertificateChainList getWidgetCertificate(
748         CertificateSource source = SIGNATURE_DISTRIBUTOR) const;
749
750     void getWidgetSettings(WidgetSettings& outWidgetSettings) const;
751
752     /**
753      * This method gets application control list that define AUL value
754      *
755      * @return See above comment
756      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
757      */
758     void getAppControlList(
759         WidgetAppControlList& outAppControlList) const;
760
761     /**
762      * This method returns the type of the package.
763      *
764      * @return PackagingType
765      * @exception WRT_CONF_ERR_EMDB_FAILURE - Fail to query DB table.
766      * @exception WRT_CONF_ERR_EMDB_NO_RECORD - Can not find matching
767      *                                          records in DB table.
768      */
769     PackagingType getPackagingType() const;
770
771     void getEncryptedFileList(EncryptedFileList& filesList) const;
772
773     /**
774      * This method returns widget's background page filename.
775      *
776      * @return Name of file containing background page
777      */
778     DPL::OptionalString getBackgroundPage() const;
779
780     /**
781      * @brief generateTizenId generates new package id
782      *
783      * If widget do not supplies it's own tizen package id, this method can be
784      * used,
785      * although it should be removed in future.
786      *
787      * @return new tizen package id
788      */
789     static TizenPkgId generatePkgId();
790     static TizenPkgId generateTizenId()
791     {
792         return generatePkgId();
793     }
794
795     /**
796      * @brief This method return each value for security setting
797      *
798      * @return SettingsType
799      *         SETTINGS_TYPE_UNKNOWN     : unknow value
800      *         SETTINGS_TYPE_ON                : enable
801      *         SETTINGS_TYPE_ALWAYS_ASK : ask by popup
802      *         SETTINGS_TYPE_OFF               : disable
803      */
804     SettingsType getSecurityPopupUsage() const;
805     SettingsType getGeolocationUsage() const;
806     SettingsType getWebNotificationUsage() const;
807     SettingsType getWebDatabaseUsage() const;
808     SettingsType getFileSystemUsage() const;
809
810     /**
811      * This method returns widget's installed path
812      *
813      * @return path of widget installed
814      */
815     DPL::OptionalString getWidgetInstalledPath() const;
816
817     /**
818      * This method returns tizen package id
819      *
820      * @return tizen package id
821      */
822     TizenPkgId getTizenPkgId() const;
823     PrivilegeList getWidgetPrivilege() const;
824     WidgetSecurityModelVersion getSecurityModelVersion() const;
825
826 };
827 } // namespace WrtDB
828
829 #endif // _WRT_SRC_CONFIGURATION_WIDGET_DAO_READ_ONLY_H_
830