summaryrefslogtreecommitdiff
path: root/apt-private/private-sources.cc
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2013-11-28 12:15:47 +0100
committerMichael Vogt <mvo@debian.org>2013-11-28 12:15:47 +0100
commit9e6b13f3751f8a1287ff79861980afb7792a5f9e (patch)
tree98351f6744c4a98c90950d4bd8545c2620d78f11 /apt-private/private-sources.cc
parente6645b9fb9ba3a7ff7b6663af3f5e1bcb6f23d78 (diff)
move EditSources into its own file
Diffstat (limited to 'apt-private/private-sources.cc')
-rw-r--r--apt-private/private-sources.cc45
1 files changed, 45 insertions, 0 deletions
diff --git a/apt-private/private-sources.cc b/apt-private/private-sources.cc
new file mode 100644
index 000000000..eb9c5b971
--- /dev/null
+++ b/apt-private/private-sources.cc
@@ -0,0 +1,45 @@
+
+#include <apt-pkg/hashes.h>
+#include <apti18n.h>
+
+#include "private-output.h"
+#include "private-sources.h"
+#include "private-utils.h"
+
+// EditSource - EditSourcesList /*{{{*/
+// ---------------------------------------------------------------------
+bool EditSources(CommandLine &CmdL)
+{
+ bool res;
+ pkgSourceList sl;
+ std::string outs;
+
+ // FIXME: suport CmdL.FileList to specify sources.list.d files
+ std::string sourceslist = _config->FindFile("Dir::Etc::sourcelist");
+
+ HashString before;
+ before.FromFile(sourceslist);
+
+ do {
+ EditFileInSensibleEditor(sourceslist);
+ _error->PushToStack();
+ res = sl.Read(sourceslist);
+ if (!res) {
+ strprintf(outs, _("Failed to parse %s. Edit again? "),
+ sourceslist.c_str());
+ std::cout << outs;
+ res = !YnPrompt(true);
+ }
+ _error->RevertToStack();
+ } while (res == false);
+
+ if (!before.VerifyFile(sourceslist)) {
+ strprintf(
+ outs, _("Your '%s' file changed, please run 'apt-get update'."),
+ sourceslist.c_str());
+ std::cout << outs << std::endl;
+ }
+
+ return true;
+}
+ /*}}}*/