]> git.saurik.com Git - apt.git/blobdiff - cmdline/apt-internal-solver.cc
reimplement rred to allow applying all the diffs in a single pass
[apt.git] / cmdline / apt-internal-solver.cc
index 68489e21313894eda4f69709722cf9d4fbaaac58..53b38ea43ab3758642ed77a7afacdab3f1258d87 100644 (file)
@@ -7,42 +7,44 @@
    ##################################################################### */
                                                                        /*}}}*/
 // Include Files                                                       /*{{{*/
+#include <config.h>
+
 #include <apt-pkg/error.h>
 #include <apt-pkg/cmndline.h>
 #include <apt-pkg/init.h>
 #include <apt-pkg/cachefile.h>
+#include <apt-pkg/cacheset.h>
 #include <apt-pkg/strutl.h>
 #include <apt-pkg/edsp.h>
 #include <apt-pkg/algorithms.h>
 #include <apt-pkg/fileutl.h>
-
-#include <config.h>
-#include <apti18n.h>
+#include <apt-pkg/pkgsystem.h>
+#include <apt-pkg/upgrade.h>
 
 #include <unistd.h>
 #include <cstdio>
+
+#include <apti18n.h>
                                                                        /*}}}*/
 
 // ShowHelp - Show a help screen                                       /*{{{*/
 // ---------------------------------------------------------------------
 /* */
 bool ShowHelp(CommandLine &CmdL) {
-       ioprintf(std::cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,VERSION,
+       ioprintf(std::cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION,
                 COMMON_ARCH,__DATE__,__TIME__);
 
        std::cout <<
-               _("Usage: apt-internal-resolver\n"
+               _("Usage: apt-internal-solver\n"
                "\n"
-               "apt-internal-resolver is an interface to use the current internal\n"
+               "apt-internal-solver is an interface to use the current internal\n"
                "like an external resolver for the APT family for debugging or alike\n"
                "\n"
                "Options:\n"
                "  -h  This help text.\n"
                "  -q  Loggable output - no progress indicator\n"
                "  -c=? Read this configuration file\n"
-               "  -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
-               "apt.conf(5) manual pages for more information and options.\n"
-               "                       This APT has Super Cow Powers.\n");
+               "  -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n");
        return true;
 }
                                                                        /*}}}*/
@@ -97,17 +99,21 @@ int main(int argc,const char *argv[])                                       /*{{{*/
        if (_config->FindI("quiet", 0) < 1)
                _config->Set("Debug::EDSP::WriteSolution", true);
 
-       _config->Set("APT::Solver::Name", "internal");
+       _config->Set("APT::Solver", "internal");
        _config->Set("edsp::scenario", "stdin");
        int input = STDIN_FILENO;
        FILE* output = stdout;
        SetNonBlock(input, false);
 
+       EDSP::WriteProgress(0, "Start up solver…", output);
+
        if (pkgInitSystem(*_config,_system) == false) {
                std::cerr << "System could not be initialized!" << std::endl;
                return 1;
        }
 
+       EDSP::WriteProgress(1, "Read request…", output);
+
        if (WaitFd(input, false, 5) == false)
                std::cerr << "WAIT timed out in the resolver" << std::endl;
 
@@ -118,9 +124,13 @@ int main(int argc,const char *argv[])                                      /*{{{*/
                return 2;
        }
 
+       EDSP::WriteProgress(5, "Read scenario…", output);
+
        pkgCacheFile CacheFile;
        CacheFile.Open(NULL, false);
 
+       EDSP::WriteProgress(50, "Apply request on scenario…", output);
+
        if (EDSP::ApplyRequest(install, remove, CacheFile) == false) {
                std::cerr << "Failed to apply request to depcache!" << std::endl;
                return 3;
@@ -146,17 +156,32 @@ int main(int argc,const char *argv[])                                     /*{{{*/
             i != install.end(); ++i)
                CacheFile->MarkInstall(CacheFile->FindPkg(*i), true);
 
+       EDSP::WriteProgress(60, "Call problemresolver on current scenario…", output);
 
-       if (Fix.Resolve() == false) {
-               EDSP::WriteError("An error occured", output);
+       if (upgrade == true) {
+               if (pkgAllUpgrade(CacheFile) == false) {
+                       EDSP::WriteError("ERR_UNSOLVABLE_UPGRADE", "An upgrade error occured", output);
+                       return 0;
+               }
+       } else if (distUpgrade == true) {
+               if (pkgDistUpgrade(CacheFile) == false) {
+                       EDSP::WriteError("ERR_UNSOLVABLE_DIST_UPGRADE", "An dist-upgrade error occured", output);
+                       return 0;
+               }
+       } else if (Fix.Resolve() == false) {
+               EDSP::WriteError("ERR_UNSOLVABLE", "An error occured", output);
                return 0;
        }
 
+       EDSP::WriteProgress(95, "Write solution…", output);
+
        if (EDSP::WriteSolution(CacheFile, output) == false) {
                std::cerr << "Failed to output the solution!" << std::endl;
                return 4;
        }
 
+       EDSP::WriteProgress(100, "Done", output);
+
        bool const Errors = _error->PendingError();
        if (_config->FindI("quiet",0) > 0)
                _error->DumpErrors(std::cerr);