summaryrefslogtreecommitdiff
path: root/src/Installer/PreloadedInstaller.cpp
blob: dc833110791dda02d0a8b71c2e5472e1db947ee5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
//
// Open Service Platform
// Copyright (c) 2012 Samsung Electronics Co., Ltd.
//
// Licensed under the Apache License, Version 2.0 (the License);
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
/**
 * @file	PreloadedInstaller.cpp
 * @brief	This is the implementation file for %PreloadedInstaller class.
 */

#include <FBaseLog.h>
#include <FIoDirectory.h>

#include "PreloadedInstaller.h"
#include "InstallerUtil.h"

using namespace Tizen::Base;
using namespace Tizen::Io;

PreloadedInstaller::PreloadedInstaller(void)
{
}

PreloadedInstaller::~PreloadedInstaller(void)
{
}

InstallationStep
PreloadedInstaller::GetNext(InstallationStep step)
{
	AppLogTag(OSP_INSTALLER, "PreloadedInstaller::GetNext()");
	return DirectoryInstaller::GetNext(step);
}

InstallerError
PreloadedInstaller::OnInit(void)
{
	AppLogTag(OSP_INSTALLER, "PreloadedInstaller::OnInit()");

	InstallationContext* pContext = GetContext();
	String path = pContext->GetInputPath();

	String appId;
	String prefix(PATH_USR_APPS);
	prefix += L"/";

	path.SubString(prefix.GetLength(), APPID_LENGTH, appId);

	String destRootPath(PATH_OPT_USR_APPS);
	destRootPath += L"/";
	destRootPath += appId;

	InstallerUtil::Remove(destRootPath);
	Directory::Create(destRootPath);

	String srcPath;
	String destPath;

	// /data
	srcPath = path + DIR_DATA;
	destPath = destRootPath + DIR_DATA;
	InstallerUtil::CopyDirectory(srcPath, destPath);

	// /info
	srcPath = path + DIR_INFO;
	destPath = destRootPath + DIR_INFO;
	InstallerUtil::CopyDirectory(srcPath, destPath);

	// appRoot - signature

	srcPath = path + DIR_BIN;
	destPath = destRootPath + DIR_BIN;
	InstallerUtil::CreateSymlink(srcPath, destPath);

	srcPath = path + DIR_RES;
	destPath = destRootPath + DIR_RES;
	InstallerUtil::CreateSymlink(srcPath, destPath);

	srcPath = path + DIR_LIB;
	destPath = destRootPath + DIR_LIB;
	InstallerUtil::CreateSymlink(srcPath, destPath);

	srcPath = path + DIR_ICONS;
	destPath = destRootPath + DIR_ICONS;
	InstallerUtil::CreateSymlink(srcPath, destPath);

	srcPath = path + DIR_SETTING;
	destPath = destRootPath + DIR_SETTING;
	InstallerUtil::CreateSymlink(srcPath, destPath);

	pContext->SetInstallDir(destRootPath);

	return DirectoryInstaller::OnInit();
}

InstallerError
PreloadedInstaller::OnRegister(void)
{
	AppLogTag(OSP_INSTALLER, "PreloadedInstaller::OnRegister()");
	return DirectoryInstaller::OnRegister();
}

InstallerError
PreloadedInstaller::OnEnd(void)
{
	AppLogTag(OSP_INSTALLER, "PreloadedInstaller::OnEnd()");
	return DirectoryInstaller::OnEnd();
}

InstallerError
PreloadedInstaller::OnError(void)
{
	AppLogTag(OSP_INSTALLER, "PreloadedInstaller::OnError()");
	return DirectoryInstaller::OnError();
}

InstallerError
PreloadedInstaller::OnRollback(void)
{
	AppLogTag(OSP_INSTALLER, "PreloadedInstaller::OnRollback()");
	return DirectoryInstaller::OnRollback();
}

InstallerError
PreloadedInstaller::OnUserCancel(void)
{
	AppLogTag(OSP_INSTALLER, "PreloadedInstaller::OnUserCancel()");
	return DirectoryInstaller::OnUserCancel();
}