File: komparatorcomparejob.h

package info (click to toggle)
komparator 4%3A1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,900 kB
  • ctags: 723
  • sloc: cpp: 9,602; sh: 54; makefile: 2
file content (98 lines) | stat: -rw-r--r-- 4,526 bytes parent folder | download | duplicates (2)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/***************************************************************************
 *   Copyright (C) 2005-2013 by Georg Hennig                               *
 *   Email: georg.hennig@web.de                                            *
 *                                                                         *
 *   This program 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 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program 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 this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/


/* This file uses main parts of "fdupes.c" from fdupes-1.40.
	Copyright: */

/* FDUPES Copyright (c) 1999 Adrian Lopez

	Permission is hereby granted, free of charge, to any person
	obtaining a copy of this software and associated documentation files
	(the "Software"), to deal in the Software without restriction,
	including without limitation the rights to use, copy, modify, merge,
	publish, distribute, sublicense, and/or sell copies of the Software,
	and to permit persons to whom the Software is furnished to do so,
	subject to the following conditions:

	The above copyright notice and this permission notice shall be
	included in all copies or substantial portions of the Software.

	THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 
	OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
	MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
	IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 
	CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 
	TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 
	SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */

#ifndef _KOMPARATORCOMPAREJOB_H_
#define _KOMPARATORCOMPAREJOB_H_

#include "komparatorjob.h"

class KFileItemExt;

typedef struct _FileTree
{
	KFileItemExt *file;
	struct _FileTree *left;
	struct _FileTree *right;
} FileTree;

class KomparatorCompareJob : public KomparatorJob
{
	Q_OBJECT

	public:
		KomparatorCompareJob( QWidget *_parent );
		~KomparatorCompareJob();
		bool initialize( KFileItemExt *_files, bool _ignore_empty, bool _size, bool _calculate_checksum,
			bool _binary_comparison, uint _binary_comparision_threshold, uint _number_of_files,
			bool _enable_duplicates_search, bool _enable_missing_search, bool _enable_newer_search, bool _case_sensitive );

		virtual void run();

	signals:
		void emitDuplicate( KFileItemExt * );
		void emitCompMissing( KFileItemExt * );
		void emitCompNewer( KFileItemExt *, KFileItemExt * );
		void emitCompNewerEqual( KFileItemExt *, KFileItemExt * );
		void emitCompNewerSameTime( KFileItemExt *, KFileItemExt * );
		void emitCompFinished();

	private:
		KFileItemExt *m_files;
		bool m_ignore_empty, m_size, m_calculate_checksum, m_binary_comparison;
		bool m_enable_duplicates_search, m_enable_missing_search, m_enable_newer_search;
		bool m_case_sensitive;
		uint m_binary_comparision_threshold; // only check files smaller than *** MB.
		uint m_number_of_files;

		int registerFile( FileTree **branch, KFileItemExt *file );
		KFileItemExt *checkMatchDupes( FileTree **root, FileTree *checktree, KFileItemExt *file );
		KFileItemExt *checkMatchComp( FileTree **root, FileTree *checktree, KFileItemExt *file );
		bool confirmMatchDupes( KFileItemExt *item1, KFileItemExt *item2 );
		int comparePath( KFileItemExt *item1, KFileItemExt *item2 );
		KFileItemExt *newerItem( KFileItemExt *item1, KFileItemExt *item2 ); // returns the newer item of the two, or NULL if both have the same age.
		void purgeTree( FileTree *tree );
};

#endif