3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4 Copyright (C) 2013 Jonathan Neuschäfer <j.neuschaefer@gmx.net>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include "filecache.h"
23 #include "clientserver.h"
33 bool FileCache::loadByPath(const std::string &path, std::ostream &os)
35 std::ifstream fis(path.c_str(), std::ios_base::binary);
38 verbosestream<<"FileCache: File not found in cache: "
47 std::streamsize len = fis.gcount();
57 errorstream<<"FileCache: Failed to read file from cache: \""
58 <<path<<"\""<<std::endl;
64 bool FileCache::updateByPath(const std::string &path, const std::string &data)
66 std::ofstream file(path.c_str(), std::ios_base::binary |
67 std::ios_base::trunc);
71 errorstream<<"FileCache: Can't write to file at "
76 file.write(data.c_str(), data.length());
82 bool FileCache::update(const std::string &name, const std::string &data)
84 std::string path = m_dir + DIR_DELIM + name;
85 return updateByPath(path, data);
87 bool FileCache::update_sha1(const std::string &data)
90 sha1.addBytes(data.c_str(), data.size());
91 unsigned char *digest = sha1.getDigest();
92 std::string sha1_raw((char*)digest, 20);
94 std::string sha1_hex = hex_encode(sha1_raw);
95 return update(sha1_hex, data);
97 bool FileCache::load(const std::string &name, std::ostream &os)
99 std::string path = m_dir + DIR_DELIM + name;
100 return loadByPath(path, os);
102 bool FileCache::load_sha1(const std::string &sha1_raw, std::ostream &os)
104 std::ostringstream tmp_os(std::ios_base::binary);
105 if(!load(hex_encode(sha1_raw), tmp_os))
108 sha1.addBytes(tmp_os.str().c_str(), tmp_os.str().length());
109 unsigned char *digest = sha1.getDigest();
110 std::string sha1_real_raw((char*)digest, 20);
112 if(sha1_real_raw != sha1_raw){
113 verbosestream<<"FileCache["<<m_dir<<"]: filename "<<sha1_real_raw
114 <<" mismatches actual checksum"<<std::endl;