]> git.saurik.com Git - apt.git/blame - cmdline/apt-helper.cc
support dpkg debug mode in APT::StateChanges
[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>
c6ee61ea 19#include <apt-pkg/proxy.h>
e43a426e
MV
20
21#include <apt-private/acqprogress.h>
22#include <apt-private/private-output.h>
0d58c26a 23#include <apt-private/private-download.h>
e43a426e 24#include <apt-private/private-cmndline.h>
e7e10e47 25#include <apt-private/private-main.h>
f106fecc 26#include <apt-pkg/srvrec.h>
e43a426e 27
453b82a3
DK
28#include <iostream>
29#include <string>
30#include <vector>
e43a426e 31
2f17261d
FF
32#include <stdlib.h>
33
e43a426e
MV
34#include <apti18n.h>
35 /*}}}*/
e43a426e 36
011188e3 37static bool DoAutoDetectProxy(CommandLine &CmdL) /*{{{*/
c6ee61ea
MV
38{
39 if (CmdL.FileSize() != 2)
40 return _error->Error(_("Need one URL as argument"));
41 URI ServerURL(CmdL.FileList[1]);
9515ed7b
DK
42 if (AutoDetectProxy(ServerURL) == false)
43 return false;
c6ee61ea
MV
44 std::string SpecificProxy = _config->Find("Acquire::"+ServerURL.Access+"::Proxy::" + ServerURL.Host);
45 ioprintf(std::cout, "Using proxy '%s' for URL '%s'\n",
46 SpecificProxy.c_str(), std::string(ServerURL).c_str());
47
48 return true;
49}
011188e3
DK
50 /*}}}*/
51static bool DoDownloadFile(CommandLine &CmdL) /*{{{*/
e43a426e
MV
52{
53 if (CmdL.FileSize() <= 2)
54 return _error->Error(_("Must specify at least one pair url/filename"));
55
2b0660b5 56 aptAcquireWithTextStatus Fetcher;
ed793a19
DK
57 size_t fileind = 0;
58 std::vector<std::string> targetfiles;
59 while (fileind + 2 <= CmdL.FileSize())
60 {
61 std::string download_uri = CmdL.FileList[fileind + 1];
62 std::string targetfile = CmdL.FileList[fileind + 2];
63 std::string hash;
64 if (CmdL.FileSize() > fileind + 3)
65 hash = CmdL.FileList[fileind + 3];
66 // we use download_uri as descr and targetfile as short-descr
67 new pkgAcqFile(&Fetcher, download_uri, hash, 0, download_uri, targetfile,
68 "dest-dir-ignored", targetfile);
69 targetfiles.push_back(targetfile);
70 fileind += 3;
71 }
460601d5 72
0d58c26a 73 bool Failed = false;
ed793a19 74 if (AcquireRun(Fetcher, 0, &Failed, NULL) == false || Failed == true)
0d58c26a 75 return _error->Error(_("Download Failed"));
ed793a19
DK
76 if (targetfiles.empty() == false)
77 for (std::vector<std::string>::const_iterator f = targetfiles.begin(); f != targetfiles.end(); ++f)
78 if (FileExists(*f) == false)
79 return _error->Error(_("Download Failed"));
80
e43a426e
MV
81 return true;
82}
011188e3
DK
83 /*}}}*/
84static bool DoSrvLookup(CommandLine &CmdL) /*{{{*/
f106fecc 85{
7414af7f 86 if (CmdL.FileSize() <= 1)
76abe9a5 87 return _error->Error("Must specify at least one SRV record");
cdeb54d4 88
76abe9a5 89 for(size_t i = 1; CmdL.FileList[i] != NULL; ++i)
f106fecc 90 {
76abe9a5
DK
91 std::vector<SrvRec> srv_records;
92 std::string const name = CmdL.FileList[i];
93 c0out << "# Target\tPriority\tWeight\tPort # for " << name << std::endl;
94 size_t const found = name.find(":");
95 if (found != std::string::npos)
f106fecc 96 {
76abe9a5
DK
97 std::string const host = name.substr(0, found);
98 size_t const port = atoi(name.c_str() + found + 1);
99 if(GetSrvRecords(host, port, srv_records) == false)
7414af7f 100 _error->Error(_("GetSrvRec failed for %s"), name.c_str());
f106fecc 101 }
76abe9a5 102 else if(GetSrvRecords(name, srv_records) == false)
7414af7f 103 _error->Error(_("GetSrvRec failed for %s"), name.c_str());
cdeb54d4 104
76abe9a5 105 for (SrvRec const &I : srv_records)
b58e2c7c 106 ioprintf(c1out, "%s\t%d\t%d\t%d\n", I.target.c_str(), I.priority, I.weight, I.port);
76abe9a5 107 }
f106fecc
MV
108 return true;
109}
011188e3 110 /*}}}*/
df46a87a
JAK
111static const APT::Configuration::Compressor *FindCompressor(std::vector<APT::Configuration::Compressor> const & compressors, std::string name) /*{{{*/
112{
113 APT::Configuration::Compressor const * compressor = NULL;
114 for (auto const & c : compressors)
115 {
116 if (compressor != NULL && c.Cost >= compressor->Cost)
117 continue;
118 if (c.Name == name || c.Extension == name || (!c.Extension.empty() && c.Extension.substr(1) == name))
119 compressor = &c;
120 }
121
122 return compressor;
123}
124 /*}}}*/
2658e1c5
JAK
125static bool DoCatFile(CommandLine &CmdL) /*{{{*/
126{
127 FileFd fd;
128 FileFd out;
df46a87a
JAK
129 std::string const compressorName = _config->Find("Apt-Helper::Cat-File::Compress", "");
130
131 if (compressorName.empty() == false)
132 {
133
134 auto const compressors = APT::Configuration::getCompressors();
135 auto const compressor = FindCompressor(compressors, compressorName);
2658e1c5 136
df46a87a
JAK
137 if (compressor == NULL)
138 return _error->Error("Could not find compressor: %s", compressorName.c_str());
139
140 if (out.OpenDescriptor(STDOUT_FILENO, FileFd::WriteOnly, *compressor) == false)
141 return false;
142 } else
143 {
144 if (out.OpenDescriptor(STDOUT_FILENO, FileFd::WriteOnly) == false)
145 return false;
146 }
2658e1c5
JAK
147
148 if (CmdL.FileSize() <= 1)
abec2980
DK
149 {
150 if (fd.OpenDescriptor(STDIN_FILENO, FileFd::ReadOnly) == false)
151 return false;
152 if (CopyFile(fd, out) == false)
153 return false;
154 return true;
155 }
2658e1c5
JAK
156
157 for(size_t i = 1; CmdL.FileList[i] != NULL; ++i)
158 {
159 std::string const name = CmdL.FileList[i];
160
abec2980
DK
161 if (name != "-")
162 {
163 if (fd.Open(name, FileFd::ReadOnly, FileFd::Extension) == false)
164 return false;
165 }
166 else
167 {
168 if (fd.OpenDescriptor(STDIN_FILENO, FileFd::ReadOnly) == false)
169 return false;
170 }
2658e1c5 171
ff2717e8
JAK
172 if (CopyFile(fd, out) == false)
173 return false;
2658e1c5
JAK
174 }
175 return true;
176}
177 /*}}}*/
f6777222 178static bool ShowHelp(CommandLine &) /*{{{*/
e43a426e 179{
0d58c26a 180 std::cout <<
8561c2fe 181 _("Usage: apt-helper [options] command\n"
2658e1c5 182 " apt-helper [options] cat-file file ...\n"
8561c2fe
DK
183 " apt-helper [options] download-file uri target-path\n"
184 "\n"
185 "apt-helper bundles a variety of commands for shell scripts to use\n"
d04e44ac 186 "e.g. the same proxy configuration or acquire system as APT would.\n");
e43a426e
MV
187 return true;
188}
011188e3 189 /*}}}*/
f6777222 190static std::vector<aptDispatchWithHelp> GetCommands() /*{{{*/
e43a426e 191{
011188e3 192 return {
cbbee23e
DK
193 {"download-file", &DoDownloadFile, _("download the given uri to the target-path")},
194 {"srv-lookup", &DoSrvLookup, _("lookup a SRV record (e.g. _http._tcp.ftp.debian.org)")},
2658e1c5 195 {"cat-file", &DoCatFile, _("concatenate files, with automatic decompression")},
cbbee23e
DK
196 {"auto-detect-proxy", &DoAutoDetectProxy, _("detect proxy using apt.conf")},
197 {nullptr, nullptr, nullptr}
198 };
011188e3
DK
199}
200 /*}}}*/
201int main(int argc,const char *argv[]) /*{{{*/
202{
ad7e0941 203 CommandLine CmdL;
90986d4d 204 auto const Cmds = ParseCommandLine(CmdL, APT_CMD::APT_HELPER, &_config, &_system, argc, argv, &ShowHelp, &GetCommands);
e43a426e
MV
205
206 InitOutput();
207
e7e10e47 208 return DispatchCommandLine(CmdL, Cmds);
e43a426e
MV
209}
210 /*}}}*/