PackageInstaller: Another round of cleanup.

This commit is contained in:
Stephan Aßmus
2014-02-16 12:12:23 +01:00
parent 2a7d988dc5
commit a1b7cb6256
4 changed files with 116 additions and 84 deletions
+68 -45
View File
@@ -24,20 +24,21 @@
static int32
install_function(void *data)
install_function(void* data)
{
// TODO: Inform if already one thread is running
PackageInstall *install = static_cast<PackageInstall *>(data);
if (data == NULL)
return -1;
PackageInstall* install = static_cast<PackageInstall*>(data);
install->Install();
return 0;
}
PackageInstall::PackageInstall(PackageView *parent)
: fParent(parent),
PackageInstall::PackageInstall(PackageView* parent)
:
fParent(parent),
fThreadId(-1),
fCurrentScript(NULL)
{
@@ -58,8 +59,8 @@ PackageInstall::Start()
if (fThreadId > -1) {
ret = B_BUSY;
} else {
fThreadId = spawn_thread(install_function, "install_package", B_NORMAL_PRIORITY,
static_cast<void *>(this));
fThreadId = spawn_thread(install_function, "install_package",
B_NORMAL_PRIORITY, this);
resume_thread(fThreadId);
}
fIdLocker.Unlock();
@@ -71,6 +72,9 @@ PackageInstall::Start()
void
PackageInstall::Stop()
{
// TODO: Argh! No killing of threads!! That leaks resources which they
// allocated. Rather inform them they need to quit, which they do at the
// next convenient time, then use wait_for_thread() here.
fIdLocker.Lock();
if (fThreadId > -1) {
kill_thread(fThreadId);
@@ -95,21 +99,40 @@ void
PackageInstall::Install()
{
// A message sending wrapper around _Install()
uint32 msg = _Install();
if (fParent && fParent->Looper())
fParent->Looper()->PostMessage(new BMessage(msg), fParent);
uint32 code = _Install();
BMessenger messenger(fParent);
if (messenger.IsValid()) {
BMessage message(code);
messenger.SendMessage(&message);
}
}
static inline BString
get_item_progress_string(uint32 index, uint32 total)
{
BString label(B_TRANSLATE("%index% of %total%"));
BString indexString;
indexString << (index + 1);
BString totalString;
totalString << total;
label.ReplaceAll("%index%", indexString);
label.ReplaceAll("%total%", totalString);
return label;
}
uint32
PackageInstall::_Install()
{
PackageInfo *info = fParent->GetPackageInfo();
pkg_profile *type = static_cast<pkg_profile *>(info->GetProfile(
fParent->GetCurrentType()));
uint32 n = type->items.CountItems(), m = info->GetScriptCount();
PackageInfo* info = fParent->GetPackageInfo();
pkg_profile* type = static_cast<pkg_profile*>(info->GetProfile(
fParent->CurrentType()));
uint32 n = type->items.CountItems();
uint32 m = info->GetScriptCount();
PackageStatus *progress = fParent->GetStatusWindow();
PackageStatus* progress = fParent->StatusWindow();
progress->Reset(n + m + 5);
progress->StageStep(1, B_TRANSLATE("Preparing package"));
@@ -119,7 +142,7 @@ PackageInstall::_Install()
status_t err = packageInfo.InitCheck();
if (err == B_OK) {
// The package is already installed, inform the user
BAlert *reinstall = new BAlert("reinstall",
BAlert* reinstall = new BAlert("reinstall",
B_TRANSLATE("The given package seems to be already installed on "
"your system. Would you like to uninstall the existing one "
"and continue the installation?"),
@@ -131,13 +154,15 @@ PackageInstall::_Install()
// Uninstall the package
err = packageInfo.Uninstall();
if (err != B_OK) {
fprintf(stderr, "Error on uninstall\n");
fprintf(stderr, "Error uninstalling previously installed "
"package: %s\n", strerror(err));
return P_MSG_I_ERROR;
}
err = packageInfo.SetTo(info->GetName(), info->GetVersion(), true);
if (err != B_OK) {
fprintf(stderr, "Error on SetTo\n");
fprintf(stderr, "Error marking installation of package: "
"%s\n", strerror(err));
return P_MSG_I_ERROR;
}
} else {
@@ -147,7 +172,8 @@ PackageInstall::_Install()
} else if (err == B_ENTRY_NOT_FOUND) {
err = packageInfo.SetTo(info->GetName(), info->GetVersion(), true);
if (err != B_OK) {
fprintf(stderr, "Error on SetTo\n");
fprintf(stderr, "Error marking installation of package: "
"%s\n", strerror(err));
return P_MSG_I_ERROR;
}
} else if (progress->Stopped()) {
@@ -160,11 +186,6 @@ PackageInstall::_Install()
progress->StageStep(1, B_TRANSLATE("Installing files and folders"));
// Install files and directories
PackageItem *iter;
ItemState state;
uint32 i;
int32 choice;
BString label;
packageInfo.SetName(info->GetName());
// TODO: Here's a small problem, since right now it's not quite sure
@@ -181,20 +202,20 @@ PackageInstall::_Install()
fItemExistsPolicy = P_EXISTS_NONE;
const char *installPath = fParent->GetCurrentPath()->Path();
for (i = 0; i < n; i++) {
state.Reset(fItemExistsPolicy); // Reset the current item state
iter = static_cast<PackageItem *>(type->items.ItemAt(i));
const char *installPath = fParent->CurrentPath()->Path();
for (uint32 i = 0; i < n; i++) {
ItemState state(fItemExistsPolicy);
PackageItem* item = static_cast<PackageItem*>(type->items.ItemAt(i));
err = iter->DoInstall(installPath, &state);
err = item->DoInstall(installPath, &state);
if (err == B_FILE_EXISTS) {
// Writing to path failed because path already exists - ask the user
// what to do and retry the writing process
choice = fParent->ItemExists(*iter, state.destination,
int32 choice = fParent->ItemExists(*item, state.destination,
fItemExistsPolicy);
if (choice != P_EXISTS_ABORT) {
state.policy = choice;
err = iter->DoInstall(installPath, &state);
err = item->DoInstall(installPath, &state);
}
}
@@ -205,42 +226,44 @@ PackageInstall::_Install()
if (progress->Stopped())
return P_MSG_I_ABORT;
label = "";
label << (uint32)(i + 1) << " of " << (uint32)n;
progress->StageStep(1, NULL, label.String());
// Update progress
progress->StageStep(1, NULL, get_item_progress_string(i, n).String());
// Mark installed item in packageInfo
packageInfo.AddItem(state.destination.Path());
}
progress->StageStep(1, B_TRANSLATE("Running post-installation scripts"),
"");
PackageScript *scr;
status_t status;
// Run all scripts
for (i = 0; i < m; i++) {
scr = info->GetScript(i);
// TODO: Change current working directory to installation location!
for (uint32 i = 0; i < m; i++) {
PackageScript* script = info->GetScript(i);
fCurrentScriptLocker.Lock();
fCurrentScript = scr;
fCurrentScript = script;
if (scr->DoInstall() != B_OK) {
fprintf(stderr, "Error while running script\n");
status_t status = script->DoInstall();
if (status != B_OK) {
fprintf(stderr, "Error while running script: %s\n",
strerror(status));
return P_MSG_I_ERROR;
}
fCurrentScriptLocker.Unlock();
wait_for_thread(scr->GetThreadId(), &status);
wait_for_thread(script->GetThreadId(), &status);
fCurrentScriptLocker.Lock();
scr->SetThreadId(-1);
script->SetThreadId(-1);
fCurrentScript = NULL;
fCurrentScriptLocker.Unlock();
if (progress->Stopped())
return P_MSG_I_ABORT;
label = "";
label << (uint32)(i + 1) << " of " << (uint32)m;
progress->StageStep(1, NULL, label.String());
progress->StageStep(1, NULL, get_item_progress_string(i, m).String());
}
progress->StageStep(1, B_TRANSLATE("Finishing installation"), "");
+8 -8
View File
@@ -53,15 +53,15 @@ extern status_t inflate_data(uint8* in, uint32 inSize, uint8* out,
struct ItemState {
ItemState() : policy(P_EXISTS_NONE), status(B_NO_INIT) {}
~ItemState() {}
inline void Reset(int32 currentPolicy)
ItemState(uint8 _policy)
:
policy(_policy),
status(B_NO_INIT)
{
}
~ItemState()
{
destination.Unset();
parent.Unset();
status = B_NO_INIT;
policy = currentPolicy;
}
BPath destination;
+4 -1
View File
@@ -1,5 +1,5 @@
/*
* Copyright 2007-2010, Haiku, Inc.
* Copyright 2007-2014, Haiku, Inc.
* Distributed under the terms of the MIT license.
*
* Author:
@@ -13,11 +13,14 @@
#include "PackageView.h"
#include <Alert.h>
#include <Box.h>
#include <Button.h>
#include <Catalog.h>
#include <Directory.h>
#include <FilePanel.h>
#include <FindDirectory.h>
#include <Locale.h>
#include <MenuField.h>
#include <MenuItem.h>
#include <Path.h>
#include <PopUpMenu.h>
+36 -30
View File
@@ -1,5 +1,5 @@
/*
* Copyright 2007-2009, Haiku, Inc.
* Copyright 2007-2014, Haiku, Inc.
* Distributed under the terms of the MIT license.
*
* Author:
@@ -13,12 +13,12 @@
#include "PackageInstall.h"
#include "PackageStatus.h"
#include <Box.h>
#include <Button.h>
#include <FilePanel.h>
#include <MenuField.h>
#include <View.h>
class BBox;
class BButton;
class BFilePanel;
class BMenuField;
class BPopUpMenu;
class BTextView;
@@ -31,39 +31,45 @@ enum {
};
class PackageView : public BView {
public:
PackageView(BRect frame, const entry_ref *ref);
~PackageView();
public:
PackageView(BRect frame, const entry_ref* ref);
virtual ~PackageView();
void AttachedToWindow();
void MessageReceived(BMessage *msg);
virtual void AttachedToWindow();
virtual void MessageReceived(BMessage* message);
int32 ItemExists(PackageItem &item, BPath &path, int32 &policy);
int32 ItemExists(PackageItem& item,
BPath& path, int32& policy);
BPath *GetCurrentPath() { return &fCurrentPath; }
PackageInfo *GetPackageInfo() { return &fInfo; }
uint32 GetCurrentType() { return fCurrentType; }
PackageStatus *GetStatusWindow() { return fStatusWindow; }
BPath* CurrentPath()
{ return &fCurrentPath; }
PackageInfo* GetPackageInfo()
{ return &fInfo; }
uint32 CurrentType() const
{ return fCurrentType; }
PackageStatus* StatusWindow()
{ return fStatusWindow; }
private:
void _InitView();
void _InitProfiles();
private:
void _InitView();
void _InitProfiles();
status_t _GroupChanged(int32 index);
status_t _GroupChanged(int32 index);
BPopUpMenu *fInstallTypes;
BTextView *fInstallDesc;
BPopUpMenu *fDestination;
BMenuField *fDestField;
BButton *fInstall;
private:
BPopUpMenu* fInstallTypes;
BTextView* fInstallDesc;
BPopUpMenu* fDestination;
BMenuField* fDestField;
BButton* fInstall;
BFilePanel *fOpenPanel;
BPath fCurrentPath;
uint32 fCurrentType;
BFilePanel* fOpenPanel;
BPath fCurrentPath;
uint32 fCurrentType;
PackageInfo fInfo;
PackageStatus *fStatusWindow;
PackageInstall fInstallProcess;
PackageInfo fInfo;
PackageStatus* fStatusWindow;
PackageInstall fInstallProcess;
};
#endif // PACKAGE_VIEW_H