]> git.saurik.com Git - apt.git/blame - cmdline/apt-helper.cc
WIP start randomizing
[apt.git] / cmdline / apt-helper.cc
CommitLineData
e43a426e
MV
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3/* #####################################################################
4 apt-helper - cmdline helpers
5 ##################################################################### */
6 /*}}}*/
7// Include Files /*{{{*/
8#include <config.h>
9
453b82a3 10#include <apt-pkg/configuration.h>
e43a426e
MV
11#include <apt-pkg/cmndline.h>
12#include <apt-pkg/error.h>
13#include <apt-pkg/init.h>
14#include <apt-pkg/strutl.h>
15#include <apt-pkg/pkgsystem.h>
16#include <apt-pkg/fileutl.h>
17#include <apt-pkg/acquire.h>
18#include <apt-pkg/acquire-item.h>
19
20#include <apt-private/acqprogress.h>
21#include <apt-private/private-output.h>
0d58c26a 22#include <apt-private/private-download.h>
e43a426e 23#include <apt-private/private-cmndline.h>
f106fecc 24#include <apt-pkg/srvrec.h>
e43a426e 25
453b82a3
DK
26#include <iostream>
27#include <string>
28#include <vector>
e43a426e
MV
29
30#include <apti18n.h>
31 /*}}}*/
e43a426e 32
c3ccac92 33static bool DoDownloadFile(CommandLine &CmdL)
e43a426e
MV
34{
35 if (CmdL.FileSize() <= 2)
36 return _error->Error(_("Must specify at least one pair url/filename"));
37
38
39 pkgAcquire Fetcher;
40 AcqTextStatus Stat(ScreenWidth, _config->FindI("quiet",0));
41 Fetcher.Setup(&Stat);
42 std::string download_uri = CmdL.FileList[1];
43 std::string targetfile = CmdL.FileList[2];
83b880c6 44 std::string hash;
c1409d1b 45 if (CmdL.FileSize() > 3)
83b880c6
MV
46 hash = CmdL.FileList[3];
47 new pkgAcqFile(&Fetcher, download_uri, hash, 0, "desc", "short-desc",
e43a426e
MV
48 "dest-dir-ignored", targetfile);
49 Fetcher.Run();
0d58c26a 50 bool Failed = false;
83b880c6 51 if (AcquireRun(Fetcher, 0, &Failed, NULL) == false || Failed == true ||
0d58c26a
DK
52 FileExists(targetfile) == false)
53 return _error->Error(_("Download Failed"));
e43a426e
MV
54 return true;
55}
56
f106fecc
MV
57static bool DoSrvLookup(CommandLine &CmdL)
58{
59 if (CmdL.FileSize() < 1)
60 return _error->Error(_("Must specifc at least one srv record"));
61
62 std::vector<SrvRec> srv_records;
63 for(int i=1; CmdL.FileList[i] != NULL; i++)
64 {
65 if(GetSrvRecords(CmdL.FileList[i], srv_records) == false)
66 _error->Warning(_("GetSrvRec failed for %s"), CmdL.FileList[i]);
67 for (std::vector<SrvRec>::const_iterator I = srv_records.begin();
68 I != srv_records.end(); ++I)
69 {
70 c1out << (*I).target.c_str() << " "
71 << (*I).priority << " "
72 << (*I).weight << " "
73 << (*I).port << " "
74 << std::endl;
75 }
76 }
77 return true;
78}
79
65512241 80static bool ShowHelp(CommandLine &)
e43a426e 81{
0d58c26a 82 ioprintf(std::cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION,
e43a426e
MV
83 COMMON_ARCH,__DATE__,__TIME__);
84
85 if (_config->FindB("version") == true)
86 return true;
87
0d58c26a 88 std::cout <<
e43a426e
MV
89 _("Usage: apt-helper [options] command\n"
90 " apt-helper [options] download-file uri target-path\n"
91 "\n"
92 "apt-helper is a internal helper for apt\n"
93 "\n"
94 "Commands:\n"
95 " download-file - download the given uri to the target-path\n"
96 "\n"
97 " This APT helper has Super Meep Powers.\n");
98 return true;
99}
100
101
102int main(int argc,const char *argv[]) /*{{{*/
103{
104 CommandLine::Dispatch Cmds[] = {{"help",&ShowHelp},
105 {"download-file", &DoDownloadFile},
f106fecc 106 {"srv-lookup", &DoSrvLookup},
e43a426e
MV
107 {0,0}};
108
109 std::vector<CommandLine::Args> Args = getCommandArgs(
110 "apt-download", CommandLine::GetCommand(Cmds, argc, argv));
111
112 // Set up gettext support
113 setlocale(LC_ALL,"");
114 textdomain(PACKAGE);
115
116 // Parse the command line and initialize the package library
117 CommandLine CmdL(Args.data(),_config);
118 if (pkgInitConfig(*_config) == false ||
119 CmdL.Parse(argc,argv) == false ||
120 pkgInitSystem(*_config,_system) == false)
121 {
122 if (_config->FindB("version") == true)
123 ShowHelp(CmdL);
124 _error->DumpErrors();
125 return 100;
126 }
127
128 // See if the help should be shown
129 if (_config->FindB("help") == true ||
130 _config->FindB("version") == true ||
131 CmdL.FileSize() == 0)
132 {
133 ShowHelp(CmdL);
134 return 0;
135 }
136
137 InitOutput();
138
139 // Match the operation
140 CmdL.DispatchArg(Cmds);
141
142 // Print any errors or warnings found during parsing
143 bool const Errors = _error->PendingError();
144 if (_config->FindI("quiet",0) > 0)
145 _error->DumpErrors();
146 else
147 _error->DumpErrors(GlobalError::DEBUG);
148 return Errors == true ? 100 : 0;
149}
150 /*}}}*/