blob: 6a32931ba167f86229b9677792dcaf2f16e160e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#include <config.h>
#include <apt-pkg/hashes.h>
#include <apt-pkg/strutl.h>
#include <apt-pkg/configuration.h>
#include <apt-pkg/sourcelist.h>
#include <apt-pkg/cmndline.h>
#include <apt-pkg/error.h>
#include <apt-pkg/fileutl.h>
#include <apt-private/private-output.h>
#include <apt-private/private-sources.h>
#include <apt-private/private-utils.h>
#include <stddef.h>
#include <unistd.h>
#include <iostream>
#include <string>
#include <apti18n.h>
/* Interface discussion with donkult (for the future):
apt [add-{archive,release,component}|edit|change-release|disable]-sources
and be clever and work out stuff from the Release file
*/
// EditSource - EditSourcesList /*{{{*/
// ---------------------------------------------------------------------
bool EditSources(CommandLine &CmdL)
{
bool res;
pkgSourceList sl;
std::string outs;
std::string sourceslist;
if (CmdL.FileList[1] != NULL)
{
sourceslist = _config->FindDir("Dir::Etc::sourceparts") + CmdL.FileList[1];
if (!APT::String::Endswith(sourceslist, ".list"))
sourceslist += ".list";
} else {
sourceslist = _config->FindFile("Dir::Etc::sourcelist");
}
HashString before;
if (FileExists(sourceslist))
before.FromFile(sourceslist);
int lockfd = GetLock(sourceslist);
if (lockfd < 0)
return false;
do {
EditFileInSensibleEditor(sourceslist);
_error->PushToStack();
res = sl.Read(sourceslist);
if (!res) {
_error->DumpErrors(std::cerr, GlobalError::DEBUG, false);
strprintf(outs, _("Failed to parse %s. Edit again? "),
sourceslist.c_str());
std::cout << outs;
// FIXME: should we add a "restore previous" option here?
res = !YnPrompt(true);
}
_error->RevertToStack();
} while (res == false);
close(lockfd);
if (FileExists(sourceslist) && !before.VerifyFile(sourceslist)) {
strprintf(
outs, _("Your '%s' file changed, please run 'apt-get update'."),
sourceslist.c_str());
std::cout << outs << std::endl;
}
return true;
}
/*}}}*/
|