pkgman: Add "update" command
This commit is contained in:
parent
212c636f41
commit
a5999f6ff7
@ -8,6 +8,7 @@ BinCommand pkgman :
|
|||||||
command_drop_repo.cpp
|
command_drop_repo.cpp
|
||||||
command_install.cpp
|
command_install.cpp
|
||||||
command_list_repos.cpp
|
command_list_repos.cpp
|
||||||
|
command_update.cpp
|
||||||
command_refresh.cpp
|
command_refresh.cpp
|
||||||
command_resolve_dependencies.cpp
|
command_resolve_dependencies.cpp
|
||||||
command_search.cpp
|
command_search.cpp
|
||||||
|
@ -223,6 +223,36 @@ PackageManager::Uninstall(const char* const* packages, int packageCount)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
PackageManager::Update(const char* const* packages, int packageCount)
|
||||||
|
{
|
||||||
|
// solve
|
||||||
|
BSolverPackageSpecifierList packagesToUpdate;
|
||||||
|
for (int i = 0; i < packageCount; i++) {
|
||||||
|
if (!packagesToUpdate.AppendSpecifier(packages[i]))
|
||||||
|
DIE(B_NO_MEMORY, "failed to add specified package");
|
||||||
|
}
|
||||||
|
|
||||||
|
const BSolverPackageSpecifier* unmatchedSpecifier;
|
||||||
|
status_t error = fSolver->Update(packagesToUpdate, true,
|
||||||
|
&unmatchedSpecifier);
|
||||||
|
if (error != B_OK) {
|
||||||
|
if (unmatchedSpecifier != NULL) {
|
||||||
|
DIE(error, "failed to find a match for \"%s\"",
|
||||||
|
unmatchedSpecifier->SelectString().String());
|
||||||
|
} else
|
||||||
|
DIE(error, "failed to compute packages to update");
|
||||||
|
}
|
||||||
|
|
||||||
|
_HandleProblems();
|
||||||
|
|
||||||
|
// install/uninstall packages
|
||||||
|
_AnalyzeResult();
|
||||||
|
_PrintResult();
|
||||||
|
_ApplyPackageChanges();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
PackageManager::_HandleProblems()
|
PackageManager::_HandleProblems()
|
||||||
{
|
{
|
||||||
|
@ -54,6 +54,8 @@ public:
|
|||||||
int packageCount);
|
int packageCount);
|
||||||
void Uninstall(const char* const* packages,
|
void Uninstall(const char* const* packages,
|
||||||
int packageCount);
|
int packageCount);
|
||||||
|
void Update(const char* const* packages,
|
||||||
|
int packageCount);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
typedef BObjectList<BSolverPackage> PackageList;
|
typedef BObjectList<BSolverPackage> PackageList;
|
||||||
|
90
src/bin/pkgman/command_update.cpp
Normal file
90
src/bin/pkgman/command_update.cpp
Normal file
@ -0,0 +1,90 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2013, Haiku, Inc. All Rights Reserved.
|
||||||
|
* Distributed under the terms of the MIT License.
|
||||||
|
*
|
||||||
|
* Authors:
|
||||||
|
* Ingo Weinhold <ingo_weinhold@gmx.de>
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include <getopt.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "Command.h"
|
||||||
|
#include "pkgman.h"
|
||||||
|
#include "PackageManager.h"
|
||||||
|
|
||||||
|
|
||||||
|
// TODO: internationalization!
|
||||||
|
|
||||||
|
|
||||||
|
using namespace BPackageKit;
|
||||||
|
using namespace BPackageKit::BPrivate;
|
||||||
|
|
||||||
|
|
||||||
|
static const char* const kShortUsage =
|
||||||
|
" %command% [ <package> ... ]\n"
|
||||||
|
" Updates the specified or all packages.\n";
|
||||||
|
|
||||||
|
static const char* const kLongUsage =
|
||||||
|
"Usage: %program% %command% [ <package> ... ]\n"
|
||||||
|
"Updates the specified packages. If no packages are given, all packages\n"
|
||||||
|
"in the installation location are updated.\n"
|
||||||
|
"\n"
|
||||||
|
"Options:\n"
|
||||||
|
" -H, --home\n"
|
||||||
|
" Update the packages in the user's home directory. Default is to\n"
|
||||||
|
" update in the common directory.\n"
|
||||||
|
"\n";
|
||||||
|
|
||||||
|
|
||||||
|
DEFINE_COMMAND(UpdateCommand, "update", kShortUsage, kLongUsage,
|
||||||
|
kCommandCategoryPackages)
|
||||||
|
|
||||||
|
|
||||||
|
int
|
||||||
|
UpdateCommand::Execute(int argc, const char* const* argv)
|
||||||
|
{
|
||||||
|
bool installInHome = false;
|
||||||
|
|
||||||
|
while (true) {
|
||||||
|
static struct option sLongOptions[] = {
|
||||||
|
{ "help", no_argument, 0, 'h' },
|
||||||
|
{ "home", no_argument, 0, 'H' },
|
||||||
|
{ 0, 0, 0, 0 }
|
||||||
|
};
|
||||||
|
|
||||||
|
opterr = 0; // don't print errors
|
||||||
|
int c = getopt_long(argc, (char**)argv, "hu", sLongOptions, NULL);
|
||||||
|
if (c == -1)
|
||||||
|
break;
|
||||||
|
|
||||||
|
switch (c) {
|
||||||
|
case 'h':
|
||||||
|
PrintUsageAndExit(false);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'H':
|
||||||
|
installInHome = true;
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
PrintUsageAndExit(true);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// The remaining arguments, if any, are the packages to be installed.
|
||||||
|
int packageCount = argc - optind;
|
||||||
|
const char* const* packages = argv + optind;
|
||||||
|
|
||||||
|
// perform the update
|
||||||
|
BPackageInstallationLocation location = installInHome
|
||||||
|
? B_PACKAGE_INSTALLATION_LOCATION_HOME
|
||||||
|
: B_PACKAGE_INSTALLATION_LOCATION_COMMON;
|
||||||
|
PackageManager packageManager(location, true, true);
|
||||||
|
packageManager.Update(packages, packageCount);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user