]> git.saurik.com Git - apt.git/blame - ftparchive/byhash.cc
wrap every unlink call to check for != /dev/null
[apt.git] / ftparchive / byhash.cc
CommitLineData
7852873a
MV
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
3/* ######################################################################
4
5 ByHash
6
7 ByHash helper functions
8
9 ##################################################################### */
10 /*}}}*/
11// Include Files /*{{{*/
12#include <config.h>
13
14#include<algorithm>
15#include<string>
16
17#include <unistd.h>
18#include <sys/stat.h>
19
20#include <apt-pkg/fileutl.h>
21#include <apt-pkg/hashes.h>
22#include "byhash.h"
23
24// Delete all files in a directory except the most recent N ones
25void DeleteAllButMostRecent(std::string dir, int KeepFiles)
26{
27 struct Cmp {
28 bool operator() (const std::string& lhs, const std::string& rhs) {
29 struct stat buf_l, buf_r;
30 stat(lhs.c_str(), &buf_l);
31 stat(rhs.c_str(), &buf_r);
32 if (buf_l.st_mtim.tv_sec == buf_r.st_mtim.tv_sec)
33 return buf_l.st_mtim.tv_nsec < buf_r.st_mtim.tv_nsec;
34 return buf_l.st_mtim.tv_sec < buf_r.st_mtim.tv_sec;
35 }
36 };
37
38 if (!DirectoryExists(dir))
39 return;
40
41 auto files = GetListOfFilesInDir(dir, false);
42 std::sort(files.begin(), files.end(), Cmp());
43
ce1f3a2c
DK
44 for (auto I=files.begin(); I<files.end()-KeepFiles; ++I)
45 RemoveFile("DeleteAllButMostRecent", *I);
7852873a
MV
46}
47
48// Takes a input filename (e.g. binary-i386/Packages) and a hashstring
49// of the Input data and transforms it into a suitable by-hash filename
e2ea6b63 50std::string GenByHashFilename(std::string ByHashOutputFile, HashString const &h)
7852873a 51{
7852873a
MV
52 std::string const ByHash = "/by-hash/" + h.HashType() + "/" + h.HashValue();
53 size_t trailing_slash = ByHashOutputFile.find_last_of("/");
54 if (trailing_slash == std::string::npos)
55 trailing_slash = 0;
56 ByHashOutputFile = ByHashOutputFile.replace(
57 trailing_slash,
58 ByHashOutputFile.substr(trailing_slash+1).size()+1,
59 ByHash);
60 return ByHashOutputFile;
61}