summaryrefslogtreecommitdiff
path: root/src/Installer/DirectoryInstaller.cpp
blob: 6c3b3475596738a6d9527a969969bee0e34f2dac (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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
//
// 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	DirectoryInstaller.cpp
 * @brief	This is the implementation file for %DirectoryInstaller class.
 */

#include <FIoFile.h>
#include <FIoDirectory.h>
#include <FIo_FileImpl.h>
#include <FAppPkg_PackageInfoImpl.h>

#include "DirectoryInstaller.h"
#include "InstallerUtil.h"

using namespace Tizen::App::Package;
using namespace Tizen::Base;
using namespace Tizen::Io;

DirectoryInstaller::DirectoryInstaller(void)
{
}

DirectoryInstaller::~DirectoryInstaller(void)
{
}

InstallationStep
DirectoryInstaller::GetNext(InstallationStep step)
{
	if (step == INSTALLER_STEP_NONE)
	{
		return INSTALLER_STEP_INIT;
	}
	else if (step == INSTALLER_STEP_INIT)
	{
		return INSTALLER_STEP_CHECK_SYSTEM;
	}
	else if (step == INSTALLER_STEP_CHECK_SYSTEM)
	{
		return INSTALLER_STEP_PARSE_MANIFEST;
	}
	else if (step == INSTALLER_STEP_PARSE_MANIFEST)
	{
		return INSTALLER_STEP_PARSE_SIGNATURE;
	}
	else if (step == INSTALLER_STEP_PARSE_SIGNATURE)
	{
		return INSTALLER_STEP_END;
	}
	else
	{
		step = (InstallationStep)(step + 1);
		return step;
	}
}

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

	InstallationContext* pContext = GetContext();
	String installPath = pContext->GetInstallDir();

	String newInstallPath;
	InstallerUtil::CreateSymlinkForAppDirectory(installPath, newInstallPath);
	pContext->SetInstallDir(newInstallPath);

	_PackageInfoImpl *pPackageInfoImpl = null;
	pPackageInfoImpl = pContext->GetPackageInfoImpl();
	pPackageInfoImpl->SetAppRootPath(newInstallPath);

	// remove in /info/*.info files
	RemoveInfoFiles();

	AppLogTag(OSP_INSTALLER, "installation path = [%ls]", newInstallPath.GetPointer());

	return Installer::OnInit();
}

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

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

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

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

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

bool
DirectoryInstaller::RemoveInfoFiles(void)
{
	Directory* pDir = null;
	DirEnumerator* pDirEnum = null;
	result r = E_SUCCESS;
	int res = false;
	String appid;
	String path;

	_PackageInfoImpl* pPackageInfoImpl = null;
	InstallationContext* pContext = null;

	pContext = GetContext();
	TryCatch(pContext, res = false, "[osp-installer] pContext is null");

	pPackageInfoImpl = pContext->GetPackageInfoImpl();
	TryCatch(pPackageInfoImpl, res = false, "[osp-installer] pPackageInfoImpl is null");

	path = pPackageInfoImpl->GetAppRootPath() + DIR_INFO;

	pDir = new (std::nothrow) Directory; // Allocate %Directory instance
	TryCatch(pDir, res = false, "[osp-installer] pDir is null");

	r = pDir->Construct(path);
	TryCatch(!IsFailed(r), res = false, "[osp-installer] pDir->Construct() failed, path = [%ls]", path.GetPointer());

	pDirEnum = pDir->ReadN();
	TryCatch(pDirEnum, res = false, "[osp-installer] pDirEnum is null");

	while (pDirEnum->MoveNext() == E_SUCCESS)
	{
		DirEntry entry = pDirEnum->GetCurrentDirEntry();

		String entryName = entry.GetName();
		String entryDir = path;
		entryDir += L"/";
		entryDir += entryName;

		if (entryName == L"." || entryName == L"..")
		{
			continue;
		}

		// check *.info file
		if (_FileImpl::GetFileExtension(entryDir) == FILE_EXT_INFO)
		{
			AppLogTag(OSP_INSTALLER, "Request to delete info file = [%ls]\n", entryDir.GetPointer());
			InstallerUtil::Remove(entryDir);
		}
	}

	delete pDirEnum;
	delete pDir;
	return true;

CATCH:
	// delete pDirEnum;
	delete pDir;
	return false;
}