]> git.saurik.com Git - apt.git/blame - apt-pkg/clean.cc
Optimize VersionHash() to not need temporary copy of input
[apt.git] / apt-pkg / clean.cc
CommitLineData
1bc849af
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
b2e465d6 3// $Id: clean.cc,v 1.4 2001/02/20 07:03:17 jgg Exp $
1bc849af
AL
4/* ######################################################################
5
6 Clean - Clean out downloaded directories
7
8 ##################################################################### */
9 /*}}}*/
10// Includes /*{{{*/
ea542140
DK
11#include<config.h>
12
1bc849af
AL
13#include <apt-pkg/clean.h>
14#include <apt-pkg/strutl.h>
15#include <apt-pkg/error.h>
c98b1307 16#include <apt-pkg/configuration.h>
5dd4c8b8 17#include <apt-pkg/aptconfiguration.h>
472ff00e 18#include <apt-pkg/fileutl.h>
453b82a3
DK
19#include <apt-pkg/pkgcache.h>
20#include <apt-pkg/cacheiterators.h>
1bc849af 21
453b82a3
DK
22#include <string>
23#include <string.h>
1bc849af
AL
24#include <dirent.h>
25#include <sys/stat.h>
26#include <unistd.h>
ea542140
DK
27
28#include <apti18n.h>
1bc849af 29 /*}}}*/
1bc849af
AL
30// ArchiveCleaner::Go - Perform smart cleanup of the archive /*{{{*/
31// ---------------------------------------------------------------------
32/* Scan the directory for files to erase, we check the version information
33 against our database to see if it is interesting */
8f3ba4e8 34bool pkgArchiveCleaner::Go(std::string Dir,pkgCache &Cache)
1bc849af 35{
c98b1307 36 bool CleanInstalled = _config->FindB("APT::Clean-Installed",true);
10ecfe4f
MV
37
38 if(Dir == "/")
39 return _error->Error(_("Clean of %s is not supported"), Dir.c_str());
40
dffc17ba
DK
41 // non-existing directories are always clean
42 // we do not check for a directory explicitly to support symlinks
43 if (FileExists(Dir) == false)
44 return true;
45
b2e465d6 46 DIR *D = opendir(Dir.c_str());
1bc849af 47 if (D == 0)
b2e465d6
AL
48 return _error->Errno("opendir",_("Unable to read %s"),Dir.c_str());
49
8f3ba4e8 50 std::string StartDir = SafeGetCWD();
1bc849af
AL
51 if (chdir(Dir.c_str()) != 0)
52 {
53 closedir(D);
b2e465d6 54 return _error->Errno("chdir",_("Unable to change to %s"),Dir.c_str());
1bc849af
AL
55 }
56
57 for (struct dirent *Dir = readdir(D); Dir != 0; Dir = readdir(D))
58 {
59 // Skip some files..
60 if (strcmp(Dir->d_name,"lock") == 0 ||
61 strcmp(Dir->d_name,"partial") == 0 ||
6aef1942 62 strcmp(Dir->d_name,"lost+found") == 0 ||
1bc849af
AL
63 strcmp(Dir->d_name,".") == 0 ||
64 strcmp(Dir->d_name,"..") == 0)
65 continue;
66
67 struct stat St;
68 if (stat(Dir->d_name,&St) != 0)
b2e465d6 69 {
31bda500 70 _error->Errno("stat",_("Unable to stat %s."),Dir->d_name);
b2e465d6 71 closedir(D);
31bda500
DK
72 if (chdir(StartDir.c_str()) != 0)
73 return _error->Errno("chdir", _("Unable to change to %s"), StartDir.c_str());
74 return false;
b2e465d6
AL
75 }
76
1bc849af
AL
77 // Grab the package name
78 const char *I = Dir->d_name;
79 for (; *I != 0 && *I != '_';I++);
80 if (*I != '_')
81 continue;
8f3ba4e8 82 std::string Pkg = DeQuoteString(std::string(Dir->d_name,I-Dir->d_name));
1bc849af
AL
83
84 // Grab the version
85 const char *Start = I + 1;
86 for (I = Start; *I != 0 && *I != '_';I++);
87 if (*I != '_')
88 continue;
8f3ba4e8 89 std::string Ver = DeQuoteString(std::string(Start,I-Start));
1bc849af
AL
90
91 // Grab the arch
92 Start = I + 1;
93 for (I = Start; *I != 0 && *I != '.' ;I++);
94 if (*I != '.')
95 continue;
8f3ba4e8 96 std::string const Arch = DeQuoteString(std::string(Start,I-Start));
469b0278
DK
97
98 // ignore packages of unconfigured architectures
5dd4c8b8 99 if (APT::Configuration::checkArchitecture(Arch) == false)
b2e465d6
AL
100 continue;
101
1bc849af 102 // Lookup the package
469b0278 103 pkgCache::PkgIterator P = Cache.FindPkg(Pkg, Arch);
1bc849af
AL
104 if (P.end() != true)
105 {
106 pkgCache::VerIterator V = P.VersionList();
f7f0d6c7 107 for (; V.end() == false; ++V)
1bc849af
AL
108 {
109 // See if we can fetch this version at all
110 bool IsFetchable = false;
111 for (pkgCache::VerFileIterator J = V.FileList();
f7f0d6c7 112 J.end() == false; ++J)
1bc849af 113 {
c98b1307 114 if (CleanInstalled == true &&
b07aeb1a 115 J.File().Flagged(pkgCache::Flag::NotSource))
1bc849af
AL
116 continue;
117 IsFetchable = true;
118 break;
119 }
120
1e3f4083 121 // See if this version matches the file
1bc849af
AL
122 if (IsFetchable == true && Ver == V.VerStr())
123 break;
124 }
125
126 // We found a match, keep the file
127 if (V.end() == false)
128 continue;
129 }
130
131 Erase(Dir->d_name,Pkg,Ver,St);
1bc849af
AL
132 };
133
1bc849af 134 closedir(D);
31bda500
DK
135 if (chdir(StartDir.c_str()) != 0)
136 return _error->Errno("chdir", _("Unable to change to %s"), StartDir.c_str());
137 return true;
1bc849af
AL
138}
139 /*}}}*/
862bafea 140
6c55f07a 141pkgArchiveCleaner::pkgArchiveCleaner() : d(NULL) {}
9d653a6d 142APT_CONST pkgArchiveCleaner::~pkgArchiveCleaner() {}