summaryrefslogtreecommitdiff
path: root/inode.h
blob: 26db9236ab3c8c9341133a4429709b7d7a46bfff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
 * Copyright (C) 2011 Timo Weingärtner <timo@tiwe.de>
 *
 * This file is part of hadori.
 *
 * hadori is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Foobar is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with hadori.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <string>
#include <ostream>
#include <fstream>

#include <cstring>
#include <sys/stat.h>
#include <sys/types.h>

#include <zlib.h>

class inode {
public:
	std::string const filename;
	struct stat const stat;
protected:	
	uLong mutable adler;

public:
	inode (std::string const &, struct stat const);
		
	uLong get_adler () const;
	
	friend bool compare (inode const &, inode const &);
	friend std::ostream& operator<< (std::ostream&, inode const &);
};

inline inode::inode (std::string const & __filename, struct stat const __stat) : filename(__filename), stat(__stat), adler(-1) {
}

inline uLong inode::get_adler () const {
	if (adler == uLong(-1)) {
		char buffer[1 << 14];
		std::ifstream f(filename.c_str());
		
		adler = adler32(0L, Z_NULL, 0);
		while (not f.eof()) {
			f.read(buffer, sizeof(buffer));
			adler = adler32(adler, (Bytef *) buffer, f.gcount());
		}
	}
	return adler;
}

inline bool compare (inode const & l, inode const & r) {
	char lbuffer[1 << 14];
	char rbuffer[1 << 14];
	std::ifstream lf(l.filename.c_str());
	std::ifstream rf(r.filename.c_str());
	
	while (not lf.eof()) {
		lf.read(lbuffer, sizeof(lbuffer));
		rf.read(rbuffer, sizeof(rbuffer));
		if (lf.gcount() != rf.gcount())
			return false;
		if (memcmp(lbuffer, rbuffer, lf.gcount()))
			return false;
	}
	return true;
}

inline std::ostream& operator<< (std::ostream& os, inode const & i) {
	os << "Inode " << i.stat.st_ino << ", represented by " << i.filename;
	return os;
}