Welcome to mirror list, hosted at ThFree Co, Russian Federation.

filefilterparams.hpp « src « far2l - github.com/elfmz/far2l.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e7f591e3a2be05c4e50e216b6ac14c4040ac0e4 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#pragma once

/*
filefilterparams.hpp

Параметры Файлового фильтра
*/
/*
Copyright (c) 1996 Eugene Roshal
Copyright (c) 2000 Far Group
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
   notice, this list of conditions and the following disclaimer in the
   documentation and/or other materials provided with the distribution.
3. The name of the authors may not be used to endorse or promote products
   derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include <farplug-wide.h>
#include "CFileMask.hpp"
#include "bitflags.hpp"
#include "hilight.hpp"
#include "FARString.hpp"

#define FILEFILTER_SIZE_SIZE 32

#define DEFAULT_SORT_GROUP 10000

enum enumFileFilterFlagsType
{
	FFFT_FIRST = 0, //обязан быть первым

	FFFT_LEFTPANEL = FFFT_FIRST,
	FFFT_RIGHTPANEL,
	FFFT_FINDFILE,
	FFFT_COPY,
	FFFT_SELECT,
	FFFT_CUSTOM,

	FFFT_COUNT, //обязан быть последним
};

enum enumFileFilterFlags
{
	FFF_NONE    = 0x00000000,
	FFF_INCLUDE = 0x00000001,
	FFF_EXCLUDE = 0x00000002,
	FFF_STRONG  = 0x10000000
};

enum enumFDateType
{
	FDATE_MODIFIED=0,
	FDATE_CREATED,
	FDATE_OPENED,
	FDATE_CHANGED,

	FDATE_COUNT, // всегда последний !!!
};

/// NB: const-qualified methods can be invoked in multithreaded-parallel manner,
/// so they really must be const (i.e. dont modify any mutable fields inside etc)
class FileFilterParams
{
	private:

		FARString m_strTitle;

		struct
		{
			bool Used;
			FARString strMask;
			CFileMask FilterMask; // Хранилище скомпилированной маски.
		} FMask;

		struct
		{
			bool Used;
			enumFDateType DateType;
			ULARGE_INTEGER DateAfter;
			ULARGE_INTEGER DateBefore;
			bool bRelative;
		} FDate;

		struct
		{
			uint64_t SizeAboveReal; // Здесь всегда будет размер в байтах
			uint64_t SizeBelowReal; // Здесь всегда будет размер в байтах
			wchar_t SizeAbove[FILEFILTER_SIZE_SIZE]; // Здесь всегда будет размер как его ввёл юзер
			wchar_t SizeBelow[FILEFILTER_SIZE_SIZE]; // Здесь всегда будет размер как его ввёл юзер
			bool Used;
		} FSize;

		struct
		{
			bool Used;
			DWORD AttrSet;
			DWORD AttrClear;
		} FAttr;

		struct
		{
			HighlightDataColor Colors;
			int SortGroup;
			bool bContinueProcessing;
		} FHighlight;

		DWORD FFlags[FFFT_COUNT];

		bool FileInFilterImpl(
			const FARString &strFileName,
			DWORD dwFileAttributes,
			uint64_t nFileSize,
			const FILETIME &CreationTime,
			const FILETIME &AccessTime,
			const FILETIME &WriteTime,
			const FILETIME &ChangeTime,
			uint64_t CurrentTime) const;
	public:

		FileFilterParams();

		const FileFilterParams &operator=(const FileFilterParams &FF);

		void SetTitle(const wchar_t *Title);
		void SetMask(bool Used, const wchar_t *Mask);
		void SetDate(bool Used, DWORD DateType, FILETIME DateAfter, FILETIME DateBefore, bool bRelative);
		void SetSize(bool Used, const wchar_t *SizeAbove, const wchar_t *SizeBelow);
		void SetAttr(bool Used, DWORD AttrSet, DWORD AttrClear);
		void SetColors(HighlightDataColor *Colors);
		void SetSortGroup(int SortGroup) { FHighlight.SortGroup = SortGroup; }
		void SetContinueProcessing(bool bContinueProcessing) { FHighlight.bContinueProcessing = bContinueProcessing; }
		void SetFlags(enumFileFilterFlagsType FType, DWORD Flags) { FFlags[FType] = Flags; }
		void ClearAllFlags() { memset(FFlags,0,sizeof(FFlags)); }

		const wchar_t *GetTitle() const;
		bool  GetMask(const wchar_t **Mask) const;
		bool  GetDate(DWORD *DateType, FILETIME *DateAfter, FILETIME *DateBefore, bool *bRelative) const;
		bool  GetSize(const wchar_t **SizeAbove, const wchar_t **SizeBelow) const;
		bool  GetAttr(DWORD *AttrSet, DWORD *AttrClear) const;
		void  GetColors(HighlightDataColor *Colors) const;
		wchar_t   GetMarkChar() const;
		int   GetSortGroup() const { return FHighlight.SortGroup; }
		bool  GetContinueProcessing() const { return FHighlight.bContinueProcessing; }
		DWORD GetFlags(enumFileFilterFlagsType FType) const { return FFlags[FType]; }

		// Данный метод вызывается "снаружи" и служит для определения:
		// попадает ли файл fd под условие установленного фильтра.
		// Возвращает true  - попадает;
		//            false - не попадает.
		bool FileInFilter(const FileListItem& fli, uint64_t CurrentTime) const;
		bool FileInFilter(const FAR_FIND_DATA_EX& fde, uint64_t CurrentTime) const;
		bool FileInFilter(const FAR_FIND_DATA& fd, uint64_t CurrentTime) const;
};

bool FileFilterConfig(FileFilterParams *FF, bool ColorConfig=false);

//Централизованная функция для создания строк меню различных фильтров.
void MenuString(FARString &strDest, FileFilterParams *FF, bool bHighlightType=false, int Hotkey=0, bool bPanelType=false, const wchar_t *FMask=nullptr, const wchar_t *Title=nullptr);