]>
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 ##################################################################### */
13 #include <apt-pkg/clean.h>
14 #include <apt-pkg/strutl.h>
15 #include <apt-pkg/error.h>
16 #include <apt-pkg/configuration.h>
17 #include <apt-pkg/aptconfiguration.h>
18 #include <apt-pkg/fileutl.h>
19 #include <apt-pkg/pkgcache.h>
20 #include <apt-pkg/cacheiterators.h>
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 */
34 bool pkgArchiveCleaner::Go(std::string Dir
,pkgCache
&Cache
)
36 bool CleanInstalled
= _config
->FindB("APT::Clean-Installed",true);
39 return _error
->Error(_("Clean of %s is not supported"), Dir
.c_str());
41 DIR *D
= opendir(Dir
.c_str());
43 return _error
->Errno("opendir",_("Unable to read %s"),Dir
.c_str());
45 std::string StartDir
= SafeGetCWD();
46 if (chdir(Dir
.c_str()) != 0)
49 return _error
->Errno("chdir",_("Unable to change to %s"),Dir
.c_str());
52 for (struct dirent
*Dir
= readdir(D
); Dir
!= 0; Dir
= readdir(D
))
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)
62 if (stat(Dir
->d_name
,&St
) != 0)
64 _error
->Errno("stat",_("Unable to stat %s."),Dir
->d_name
);
66 if (chdir(StartDir
.c_str()) != 0)
67 return _error
->Errno("chdir", _("Unable to change to %s"), StartDir
.c_str());
71 // Grab the package name
72 const char *I
= Dir
->d_name
;
73 for (; *I
!= 0 && *I
!= '_';I
++);
76 std::string Pkg
= DeQuoteString(std::string(Dir
->d_name
,I
-Dir
->d_name
));
79 const char *Start
= I
+ 1;
80 for (I
= Start
; *I
!= 0 && *I
!= '_';I
++);
83 std::string Ver
= DeQuoteString(std::string(Start
,I
-Start
));
87 for (I
= Start
; *I
!= 0 && *I
!= '.' ;I
++);
90 std::string
const Arch
= DeQuoteString(std::string(Start
,I
-Start
));
92 // ignore packages of unconfigured architectures
93 if (APT::Configuration::checkArchitecture(Arch
) == false)
97 pkgCache::PkgIterator P
= Cache
.FindPkg(Pkg
, Arch
);
100 pkgCache::VerIterator V
= P
.VersionList();
101 for (; V
.end() == false; ++V
)
103 // See if we can fetch this version at all
104 bool IsFetchable
= false;
105 for (pkgCache::VerFileIterator J
= V
.FileList();
106 J
.end() == false; ++J
)
108 if (CleanInstalled
== true &&
109 (J
.File()->Flags
& pkgCache::Flag::NotSource
) != 0)
115 // See if this version matches the file
116 if (IsFetchable
== true && Ver
== V
.VerStr())
120 // We found a match, keep the file
121 if (V
.end() == false)
125 Erase(Dir
->d_name
,Pkg
,Ver
,St
);
129 if (chdir(StartDir
.c_str()) != 0)
130 return _error
->Errno("chdir", _("Unable to change to %s"), StartDir
.c_str());
135 APT_CONST
pkgArchiveCleaner::~pkgArchiveCleaner() {}