WidgetHandle removal - part 2. Task order change
[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
30 WidgetUpdateInfo::ExistingWidgetInfo::ExistingWidgetInfo(
31     const WrtDB::WidgetPkgName & name,
32     const DPL::Optional<WidgetVersion> &version) :
33     pkgname(name),
34     isExist(true),
35     existingVersion(version)
36 {
37 }
38
39 WidgetUpdateInfo::ExistingWidgetInfo::ExistingWidgetInfo(
40     const WrtDB::WidgetPkgName & name,
41     const DPL::Optional<DPL::String> &version) :
42     pkgname(name),
43     isExist(true)
44 {
45     if (!!version) {
46         existingVersion = WidgetVersion(*version);
47     }
48 }
49
50 WidgetUpdateInfo::WidgetUpdateInfo() :
51     existingWidgetInfo()
52 {
53 }
54
55 WidgetUpdateInfo::WidgetUpdateInfo(
56     const DPL::Optional<WrtDB::WidgetGUID> &guid,
57     const DPL::Optional<WidgetVersion> &version,
58     ExistingWidgetInfo widgetInfo) :
59     incomingGUID(guid),
60     incomingVersion(version),
61     existingWidgetInfo(widgetInfo)
62 {
63 }