de35936abc30d868e90d8bf4a948dc58d35f68c6
[framework/web/wrt-installer.git] / src / jobs / widget_install / widget_update_info.cpp
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  * @file    widget_update_info.cpp
18  * @author  Chung Jihoon (jihoon.chung@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for WidgetUpdateInfo
21  */
22
23 #include "widget_update_info.h"
24
25 WidgetUpdateInfo::ExistingWidgetInfo::ExistingWidgetInfo() :
26     isExist(false)
27 {}
28
29 WidgetUpdateInfo::ExistingWidgetInfo::ExistingWidgetInfo(
30     const WrtDB::TizenAppId & appid,
31     const DPL::Optional<WidgetVersion> &version) :
32     tzAppid(appid),
33     isExist(true),
34     existingVersion(version)
35 {}
36
37 WidgetUpdateInfo::ExistingWidgetInfo::ExistingWidgetInfo(
38     const WrtDB::TizenAppId & appid,
39     const DPL::Optional<DPL::String> &version) :
40     tzAppid(appid),
41     isExist(true)
42 {
43     if (!!version) {
44         existingVersion = WidgetVersion(*version);
45     }
46 }
47
48 WidgetUpdateInfo::WidgetUpdateInfo() :
49     existingWidgetInfo()
50 {}
51
52 WidgetUpdateInfo::WidgetUpdateInfo(
53     const DPL::Optional<WrtDB::WidgetGUID> &guid,
54     const DPL::Optional<WidgetVersion> &version,
55     ExistingWidgetInfo widgetInfo) :
56     incomingGUID(guid),
57     incomingVersion(version),
58     existingWidgetInfo(widgetInfo)
59 {}