]>
git.saurik.com Git - apt.git/blob - apt-pkg/clean.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: clean.cc,v 1.4 2001/02/20 07:03:17 jgg Exp $
4 /* ######################################################################
6 Clean - Clean out downloaded directories
8 ##################################################################### */
12 #pragma implementation "apt-pkg/clean.h"
15 #include <apt-pkg/clean.h>
16 #include <apt-pkg/strutl.h>
17 #include <apt-pkg/error.h>
18 #include <apt-pkg/configuration.h>
27 // ArchiveCleaner::Go - Perform smart cleanup of the archive /*{{{*/
28 // ---------------------------------------------------------------------
29 /* Scan the directory for files to erase, we check the version information
30 against our database to see if it is interesting */
31 bool pkgArchiveCleaner::Go(string Dir
,pkgCache
&Cache
)
33 bool CleanInstalled
= _config
->FindB("APT::Clean-Installed",true);
34 string MyArch
= _config
->Find("APT::Architecture");
36 DIR *D
= opendir(Dir
.c_str());
38 return _error
->Errno("opendir",_("Unable to read %s"),Dir
.c_str());
40 string StartDir
= SafeGetCWD();
41 if (chdir(Dir
.c_str()) != 0)
44 return _error
->Errno("chdir",_("Unable to change to %s"),Dir
.c_str());
47 for (struct dirent
*Dir
= readdir(D
); Dir
!= 0; Dir
= readdir(D
))
50 if (strcmp(Dir
->d_name
,"lock") == 0 ||
51 strcmp(Dir
->d_name
,"partial") == 0 ||
52 strcmp(Dir
->d_name
,".") == 0 ||
53 strcmp(Dir
->d_name
,"..") == 0)
57 if (stat(Dir
->d_name
,&St
) != 0)
59 chdir(StartDir
.c_str());
61 return _error
->Errno("stat",_("Unable to stat %s."),Dir
->d_name
);
64 // Grab the package name
65 const char *I
= Dir
->d_name
;
66 for (; *I
!= 0 && *I
!= '_';I
++);
69 string Pkg
= DeQuoteString(string(Dir
->d_name
,I
-Dir
->d_name
));
72 const char *Start
= I
+ 1;
73 for (I
= Start
; *I
!= 0 && *I
!= '_';I
++);
76 string Ver
= DeQuoteString(string(Start
,I
-Start
));
80 for (I
= Start
; *I
!= 0 && *I
!= '.' ;I
++);
83 string Arch
= DeQuoteString(string(Start
,I
-Start
));
85 if (Arch
!= "all" && Arch
!= MyArch
)
89 pkgCache::PkgIterator P
= Cache
.FindPkg(Pkg
);
92 pkgCache::VerIterator V
= P
.VersionList();
93 for (; V
.end() == false; V
++)
95 // See if we can fetch this version at all
96 bool IsFetchable
= false;
97 for (pkgCache::VerFileIterator J
= V
.FileList();
98 J
.end() == false; J
++)
100 if (CleanInstalled
== true &&
101 (J
.File()->Flags
& pkgCache::Flag::NotSource
) != 0)
107 // See if this verison matches the file
108 if (IsFetchable
== true && Ver
== V
.VerStr())
112 // We found a match, keep the file
113 if (V
.end() == false)
117 Erase(Dir
->d_name
,Pkg
,Ver
,St
);
120 chdir(StartDir
.c_str());