]>
Commit | Line | Data |
---|---|---|
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 | 34 | bool 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 | ||
b2e465d6 | 41 | DIR *D = opendir(Dir.c_str()); |
1bc849af | 42 | if (D == 0) |
b2e465d6 AL |
43 | return _error->Errno("opendir",_("Unable to read %s"),Dir.c_str()); |
44 | ||
8f3ba4e8 | 45 | std::string StartDir = SafeGetCWD(); |
1bc849af AL |
46 | if (chdir(Dir.c_str()) != 0) |
47 | { | |
48 | closedir(D); | |
b2e465d6 | 49 | return _error->Errno("chdir",_("Unable to change to %s"),Dir.c_str()); |
1bc849af AL |
50 | } |
51 | ||
52 | for (struct dirent *Dir = readdir(D); Dir != 0; Dir = readdir(D)) | |
53 | { | |
54 | // Skip some files.. | |
55 | if (strcmp(Dir->d_name,"lock") == 0 || | |
56 | strcmp(Dir->d_name,"partial") == 0 || | |
57 | strcmp(Dir->d_name,".") == 0 || | |
58 | strcmp(Dir->d_name,"..") == 0) | |
59 | continue; | |
60 | ||
61 | struct stat St; | |
62 | if (stat(Dir->d_name,&St) != 0) | |
b2e465d6 | 63 | { |
31bda500 | 64 | _error->Errno("stat",_("Unable to stat %s."),Dir->d_name); |
b2e465d6 | 65 | closedir(D); |
31bda500 DK |
66 | if (chdir(StartDir.c_str()) != 0) |
67 | return _error->Errno("chdir", _("Unable to change to %s"), StartDir.c_str()); | |
68 | return false; | |
b2e465d6 AL |
69 | } |
70 | ||
1bc849af AL |
71 | // Grab the package name |
72 | const char *I = Dir->d_name; | |
73 | for (; *I != 0 && *I != '_';I++); | |
74 | if (*I != '_') | |
75 | continue; | |
8f3ba4e8 | 76 | std::string Pkg = DeQuoteString(std::string(Dir->d_name,I-Dir->d_name)); |
1bc849af AL |
77 | |
78 | // Grab the version | |
79 | const char *Start = I + 1; | |
80 | for (I = Start; *I != 0 && *I != '_';I++); | |
81 | if (*I != '_') | |
82 | continue; | |
8f3ba4e8 | 83 | std::string Ver = DeQuoteString(std::string(Start,I-Start)); |
1bc849af AL |
84 | |
85 | // Grab the arch | |
86 | Start = I + 1; | |
87 | for (I = Start; *I != 0 && *I != '.' ;I++); | |
88 | if (*I != '.') | |
89 | continue; | |
8f3ba4e8 | 90 | std::string const Arch = DeQuoteString(std::string(Start,I-Start)); |
469b0278 DK |
91 | |
92 | // ignore packages of unconfigured architectures | |
5dd4c8b8 | 93 | if (APT::Configuration::checkArchitecture(Arch) == false) |
b2e465d6 AL |
94 | continue; |
95 | ||
1bc849af | 96 | // Lookup the package |
469b0278 | 97 | pkgCache::PkgIterator P = Cache.FindPkg(Pkg, Arch); |
1bc849af AL |
98 | if (P.end() != true) |
99 | { | |
100 | pkgCache::VerIterator V = P.VersionList(); | |
f7f0d6c7 | 101 | for (; V.end() == false; ++V) |
1bc849af AL |
102 | { |
103 | // See if we can fetch this version at all | |
104 | bool IsFetchable = false; | |
105 | for (pkgCache::VerFileIterator J = V.FileList(); | |
f7f0d6c7 | 106 | J.end() == false; ++J) |
1bc849af | 107 | { |
c98b1307 AL |
108 | if (CleanInstalled == true && |
109 | (J.File()->Flags & pkgCache::Flag::NotSource) != 0) | |
1bc849af AL |
110 | continue; |
111 | IsFetchable = true; | |
112 | break; | |
113 | } | |
114 | ||
1e3f4083 | 115 | // See if this version matches the file |
1bc849af AL |
116 | if (IsFetchable == true && Ver == V.VerStr()) |
117 | break; | |
118 | } | |
119 | ||
120 | // We found a match, keep the file | |
121 | if (V.end() == false) | |
122 | continue; | |
123 | } | |
124 | ||
125 | Erase(Dir->d_name,Pkg,Ver,St); | |
1bc849af AL |
126 | }; |
127 | ||
1bc849af | 128 | closedir(D); |
31bda500 DK |
129 | if (chdir(StartDir.c_str()) != 0) |
130 | return _error->Errno("chdir", _("Unable to change to %s"), StartDir.c_str()); | |
131 | return true; | |
1bc849af AL |
132 | } |
133 | /*}}}*/ | |
862bafea DK |
134 | |
135 | pkgArchiveCleaner::~pkgArchiveCleaner() {} |