// Include Files /*{{{*/
#include <config.h>
#include <apt-pkg/cmndline.h>
#include <apt-pkg/configuration.h>
#include <apt-pkg/fileutl.h>
#include <apt-pkg/pkgsystem.h>
#include <apt-pkg/init.h>
#include <apt-pkg/error.h>
#include <apt-pkg/strutl.h>
#include <apt-private/private-cmndline.h>
#include <stdarg.h>
#include <string.h>
#include <stdlib.h>
#include <vector>
#include <iomanip>
#include <apti18n.h>
/*}}}*/
APT_SENTINEL static bool strcmp_match_in_list(char const * const Cmd, ...) /*{{{*/
{
va_list args;
bool found = false;
va_start(args, Cmd);
char const * Match = NULL;
while ((Match = va_arg(args, char const *)) != NULL)
{
if (strcmp(Cmd, Match) != 0)
continue;
found = true;
break;
}
va_end(args);
return found;
}
/*}}}*/
#define addArg(w,x,y,z) Args.push_back(CommandLine::MakeArgs(w,x,y,z))
#define CmdMatches(...) strcmp_match_in_list(Cmd, __VA_ARGS__, NULL)
static bool addArgumentsAPTCache(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/
{
if (CmdMatches("depends", "rdepends", "xvcg", "dotty"))
{
addArg('i', "important", "APT::Cache::Important", 0);
addArg(0, "installed", "APT::Cache::Installed", 0);
addArg(0, "pre-depends", "APT::Cache::ShowPre-Depends", 0);
addArg(0, "depends", "APT::Cache::ShowDepends", 0);
addArg(0, "recommends", "APT::Cache::ShowRecommends", 0);
addArg(0, "suggests", "APT::Cache::ShowSuggests", 0);
addArg(0, "replaces", "APT::Cache::ShowReplaces", 0);
addArg(0, "breaks", "APT::Cache::ShowBreaks", 0);
addArg(0, "conflicts", "APT::Cache::ShowConflicts", 0);
addArg(0, "enhances", "APT::Cache::ShowEnhances", 0);
addArg(0, "recurse", "APT::Cache::RecurseDepends", 0);
addArg(0, "implicit", "APT::Cache::ShowImplicit", 0);
}
else if (CmdMatches("search"))
{
addArg('n', "names-only", "APT::Cache::NamesOnly", 0);
addArg('f', "full", "APT::Cache::ShowFull", 0);
}
else if (CmdMatches("show"))
{
addArg('a', "all-versions", "APT::Cache::AllVersions", 0);
}
else if (CmdMatches("pkgnames"))
{
addArg(0, "all-names", "APT::Cache::AllNames", 0);
}
else if (CmdMatches("unmet"))
{
addArg('i', "important", "APT::Cache::Important", 0);
}
else if (CmdMatches("showsrc"))
{
addArg(0,"only-source","APT::Cache::Only-Source",0);
}
else if (CmdMatches("gencaches", "showpkg", "stats", "dump",
"dumpavail", "showauto", "policy", "madison"))
;
else
return false;
bool const found_something = Args.empty() == false;
// FIXME: move to the correct command(s)
addArg('g', "generate", "APT::Cache::Generate", 0);
addArg('t', "target-release", "APT::Default-Release", CommandLine::HasArg);
addArg('t', "default-release", "APT::Default-Release", CommandLine::HasArg);
addArg('p', "pkg-cache", "Dir::Cache::pkgcache", CommandLine::HasArg);
addArg('s', "src-cache", "Dir::Cache::srcpkgcache", CommandLine::HasArg);
return found_something;
}
/*}}}*/
static bool addArgumentsAPTCDROM(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/
{
if (CmdMatches("add", "ident") == false)
return false;
// FIXME: move to the correct command(s)
addArg(0, "auto-detect", "Acquire::cdrom::AutoDetect", CommandLine::Boolean);
addArg('d', "cdrom", "Acquire::cdrom::mount", CommandLine::HasArg);
addArg('r', "rename", "APT::CDROM::Rename", 0);
addArg('m', "no-mount", "APT::CDROM::NoMount", 0);
addArg('f', "fast", "APT::CDROM::Fast", 0);
addArg('n', "just-print", "APT::CDROM::NoAct", 0);
addArg('n', "recon", "APT::CDROM::NoAct", 0);
addArg('n', "no-act", "APT::CDROM::NoAct", 0);
addArg('a', "thorough", "APT::CDROM::Thorough", 0);
return true;
}
/*}}}*/
static bool addArgumentsAPTConfig(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/
{
if (CmdMatches("dump"))
{
addArg(0,"empty","APT::Config::Dump::EmptyValue",CommandLine::Boolean);
addArg(0,"format","APT::Config::Dump::Format",CommandLine::HasArg);
}
else if (CmdMatches("shell"))
;
else
return false;
return true;
}
/*}}}*/
static bool addArgumentsAPTExtractTemplates(std::vector<CommandLine::Args> &Args, char const * const)/*{{{*/
{
addArg('t',"tempdir","APT::ExtractTemplates::TempDir",CommandLine::HasArg);
return true;
}
/*}}}*/
static bool addArgumentsAPTFTPArchive(std::vector<CommandLine::Args> &Args, char const * const)/*{{{*/
{
addArg(0,"md5","APT::FTPArchive::MD5",0);
addArg(0,"sha1","APT::FTPArchive::SHA1",0);
addArg(0,"sha256","APT::FTPArchive::SHA256",0);
addArg(0,"sha512","APT::FTPArchive::SHA512",0);
addArg('d',"db","APT::FTPArchive::DB",CommandLine::HasArg);
addArg('s',"source-override","APT::FTPArchive::SourceOverride",CommandLine::HasArg);
addArg(0,"delink","APT::FTPArchive::DeLinkAct",0);
addArg(0,"readonly","APT::FTPArchive::ReadOnlyDB",0);
addArg(0,"contents","APT::FTPArchive::Contents",0);
addArg('a',"arch","APT::FTPArchive::Architecture",CommandLine::HasArg);
return true;
}
/*}}}*/
static bool addArgumentsAPTInternalSolver(std::vector<CommandLine::Args> &, char const * const)/*{{{*/
{
return true;
}
/*}}}*/
static bool addArgumentsAPTHelper(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/
{
if (CmdMatches("cat-file"))
{
addArg('C', "compress", "Apt-Helper::Cat-File::Compress",CommandLine::HasArg);
}
return true;
}
/*}}}*/
static bool addArgumentsAPTGet(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/
{
if (CmdMatches("install", "remove", "purge", "upgrade", "dist-upgrade",
"dselect-upgrade", "autoremove", "full-upgrade"))
{
addArg(0, "show-progress", "DpkgPM::Progress", 0);
addArg('f', "fix-broken", "APT::Get::Fix-Broken", 0);
addArg(0, "purge", "APT::Get::Purge", 0);
addArg('V',"verbose-versions","APT::Get::Show-Versions",0);
addArg(0, "auto-remove", "APT::Get::AutomaticRemove", 0);
addArg(0, "reinstall", "APT::Get::ReInstall", 0);
addArg(0, "solver", "APT::Solver", CommandLine::HasArg);
if (CmdMatches("upgrade"))
{
addArg(0, "new-pkgs", "APT::Get::Upgrade-Allow-New",
CommandLine::Boolean);
}
}
else if (CmdMatches("update"))
{
addArg(0, "list-cleanup", "APT::Get::List-Cleanup", 0);
}
else if (CmdMatches("source"))
{
addArg('b', "compile", "APT::Get::Compile", 0);
addArg('b', "build", "APT::Get::Compile", 0);
addArg('P', "build-profiles", "APT::Build-Profiles", CommandLine::HasArg);
addArg(0, "diff-only", "APT::Get::Diff-Only", 0);
addArg(0, "debian-only", "APT::Get::Diff-Only", 0);
addArg(0, "tar-only", "APT::Get::Tar-Only", 0);
addArg(0, "dsc-only", "APT::Get::Dsc-Only", 0);
}
else if (CmdMatches("build-dep"))
{
addArg('a', "host-architecture", "APT::Get::Host-Architecture", CommandLine::HasArg);
addArg('P', "build-profiles", "APT::Build-Profiles", CommandLine::HasArg);
addArg(0, "purge", "APT::Get::Purge", 0);
addArg(0, "solver", "APT::Solver", CommandLine::HasArg);
// this has no effect *but* sbuild is using it (see LP: #1255806)
// once sbuild is fixed, this option can be removed
addArg('f', "fix-broken", "APT::Get::Fix-Broken", 0);
}
else if (CmdMatches("indextargets"))
{
addArg(0,"format","APT::Get::IndexTargets::Format", CommandLine::HasArg);
addArg(0,"release-info","APT::Get::IndexTargets::ReleaseInfo", 0);
}
else if (CmdMatches("clean", "autoclean", "auto-clean", "check", "download", "changelog") ||
CmdMatches("markauto", "unmarkauto")) // deprecated commands
;
else if (CmdMatches("moo"))
addArg(0, "color", "APT::Moo::Color", 0);
if (CmdMatches("install", "remove", "purge", "upgrade", "dist-upgrade",
"dselect-upgrade", "autoremove", "auto-remove", "clean", "autoclean", "auto-clean", "check",
"build-dep", "full-upgrade", "source"))
{
addArg('s', "simulate", "APT::Get::Simulate", 0);
addArg('s', "just-print", "APT::Get::Simulate", 0);
addArg('s', "recon", "APT::Get::Simulate", 0);
addArg('s', "dry-run", "APT::Get::Simulate", 0);
addArg('s', "no-act", "APT::Get::Simulate", 0);
}
bool const found_something = Args.empty() == false;
// FIXME: move to the correct command(s)
addArg('d',"download-only","APT::Get::Download-Only",0);
addArg('y',"yes","APT::Get::Assume-Yes",0);
addArg('y',"assume-yes","APT::Get::Assume-Yes",0);
addArg(0,"assume-no","APT::Get::Assume-No",0);
addArg('u',"show-upgraded","APT::Get::Show-Upgraded",0);
addArg('m',"ignore-missing","APT::Get::Fix-Missing",0);
addArg('t',"target-release","APT::Default-Release",CommandLine::HasArg);
addArg('t',"default-release","APT::Default-Release",CommandLine::HasArg);
addArg(0,"download","APT::Get::Download",0);
addArg(0,"fix-missing","APT::Get::Fix-Missing",0);
addArg(0,"ignore-hold","APT::Ignore-Hold",0);
addArg(0,"upgrade","APT::Get::upgrade",0);
addArg(0,"only-upgrade","APT::Get::Only-Upgrade",0);
addArg(0,"allow-change-held-packages","APT::Get::allow-change-held-packages",CommandLine::Boolean);
addArg(0,"allow-remove-essential","APT::Get::allow-remove-essential",CommandLine::Boolean);
addArg(0,"allow-downgrades","APT::Get::allow-downgrades",CommandLine::Boolean);
addArg(0,"force-yes","APT::Get::force-yes",0);
addArg(0,"print-uris","APT::Get::Print-URIs",0);
addArg(0,"trivial-only","APT::Get::Trivial-Only",0);
addArg(0,"remove","APT::Get::Remove",0);
addArg(0,"only-source","APT::Get::Only-Source",0);
addArg(0,"arch-only","APT::Get::Arch-Only",0);
addArg(0,"allow-unauthenticated","APT::Get::AllowUnauthenticated",0);
addArg(0,"allow-insecure-repositories","Acquire::AllowInsecureRepositories",0);
addArg(0,"install-recommends","APT::Install-Recommends",CommandLine::Boolean);
addArg(0,"install-suggests","APT::Install-Suggests",CommandLine::Boolean);
addArg(0,"fix-policy","APT::Get::Fix-Policy-Broken",0);
return found_something;
}
/*}}}*/
static bool addArgumentsAPTMark(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/
{
if (CmdMatches("auto", "manual", "hold", "unhold", "showauto",
"showmanual", "showhold", "showholds",
"markauto", "unmarkauto"))
{
addArg('f',"file","Dir::State::extended_states",CommandLine::HasArg);
}
else if (CmdMatches("install", "remove", "deinstall", "purge",
"showinstall", "showinstalls", "showremove", "showremoves",
"showdeinstall", "showdeinstalls", "showpurge", "showpurges"))
;
else
return false;
if (CmdMatches("markauto", "unmarkauto"))
{
addArg('v',"verbose","APT::MarkAuto::Verbose",0);
}
if (strncmp(Cmd, "show", strlen("show")) != 0)
{
addArg('s',"simulate","APT::Mark::Simulate",0);
addArg('s',"just-print","APT::Mark::Simulate",0);
addArg('s',"recon","APT::Mark::Simulate",0);
addArg('s',"dry-run","APT::Mark::Simulate",0);
addArg('s',"no-act","APT::Mark::Simulate",0);
}
return true;
}
/*}}}*/
static bool addArgumentsAPTSortPkgs(std::vector<CommandLine::Args> &Args, char const * const)/*{{{*/
{
addArg('s',"source","APT::SortPkgs::Source",0);
return true;
}
/*}}}*/
static bool addArgumentsAPTOpkg(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/
{
if (CmdMatches("info", "list", "list_installed", "list-installed",
"list_upgradable", "list-upgradable", "status")) {
;
} else if (CmdMatches("update", "upgrade", "install", "remove")) {
addArg(0, "autoremove", "APT::Get::AutomaticRemove", 0);
addArg(0, "force-maintainer", "APT::Opkg::ForceMaintainer", 0);
addArg(0, "noaction", "APT::Get::Simulate", 0);
} else {
return false;
}
return true;
}
/*}}}*/
static bool addArgumentsAPT(std::vector<CommandLine::Args> &Args, char const * const Cmd)/*{{{*/
{
if (CmdMatches("list"))
{
addArg('i',"installed","APT::Cmd::Installed",0);
addArg(0,"upgradeable","APT::Cmd::Upgradable",0);
addArg('u',"upgradable","APT::Cmd::Upgradable",0);
addArg(0,"manual-installed","APT::Cmd::Manual-Installed",0);
addArg('v', "verbose", "APT::Cmd::List-Include-Summary", 0);
addArg('a', "all-versions", "APT::Cmd::All-Versions", 0);
}
else if (CmdMatches("show"))
{
addArg('a', "all-versions", "APT::Cache::AllVersions", 0);
}
else if (addArgumentsAPTGet(Args, Cmd) || addArgumentsAPTCache(Args, Cmd))
{
// we have no (supported) command-name overlaps so far, so we call
// specifics in order until we find one which adds arguments
}
else
return false;
return true;
}
/*}}}*/
Loading ...