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 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
|
////////////////////////////////////////////////////////////////////////////////
// This source file is part of the ZipArchive library source distribution and
// is Copyrighted 2000 - 2007 by Artpol Software - Tadeusz Dracz
//
// 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.
//
// For the licensing details refer to the License.txt file.
//
// Web Site: http://www.artpol-software.com
////////////////////////////////////////////////////////////////////////////////
/**
* \file FileFilter.h
* Includes the ZipArchiveLib::CFileFilter and the derived classes.
*
*/
#if !defined(ZIPARCHIVE_FILEFILTER_DOT_H)
#define ZIPARCHIVE_FILEFILTER_DOT_H
#if _MSC_VER > 1000
#pragma once
#pragma warning( push )
#pragma warning (disable : 4100) // unreferenced formal parameter
#endif
#include "stdafx.h"
#include "ZipExport.h"
#include "FileInfo.h"
#include "Wildcard.h"
#include "ZipPlatform.h"
#include "ZipCollections.h"
namespace ZipArchiveLib
{
/**
A base class for filters used in the directory enumeration process.
\see
<a href="kb">0610231446|filters</a>
\see
CDirEnumerator::Start
*/
class ZIP_API CFileFilter
{
public:
/**
Initializes a new instance of the CFileFilter class.
\param bInverted
Set to \c true to invert the behavior of the filter or to \c false for the normal behavior.
\see
SetInverted
*/
CFileFilter(bool bInverted = false)
:m_bInverted(bInverted)
{
}
/**
This method is directly called by the CDirEnumerator::Start for each file or directory that was
previously accepted with the #HandlesFile method.
It internally calls the #Accept method and inverts it's result, if the filter is in the inverted
mode and does not handle the inversion internally.
- If this method returns \c true for a file, then the file is processed (the CDirEnumerator::Process method
is called for the file). Otherwise the file is not processed.
- If this method returns \c true for a directory, then the directory can be traversed for files and subfolders
(depending on the CDirEnumerator::IsRecursive() method). Otherwise the directory is not traversed.
\param lpszParentDir
The parent directory containing the file to accept.
\param lpszName
The name of the file to accept (without a path).
\param info
A structure containing the information about the current file.
\return
\c true, if the file is accepted (taking inversion into account); \c false otherwise.
\see
Accept
\see
HandlesFile
\see
HandlesInversion
\see
SetInverted
\see
IsInverted
\see
CDirEnumerator::Start
\see
CDirEnumerator::Process
*/
bool Evaluate(LPCTSTR lpszParentDir, LPCTSTR lpszName, const CFileInfo& info)
{
bool ret = Accept(lpszParentDir, lpszName, info);
if (!HandlesInversion())
return m_bInverted ? !ret : ret;
return ret;
}
/**
Sets the filter to operate in the inverted or in the normal mode.
If the filter operates in an inverted mode, the file that this filer accepts
is \b not processed and vice versa. Normal mode means that a file is processed
(the CDirEnumerator::Process method is called for that file),
if the filter accepts the file.
\param bInverted
\c true to make the filter operate in an inverted mode or \c false to make
the filter operate in a normal mode.
\see
HandlesInversion
\see
IsInverted
*/
void SetInverted(bool bInverted = true) { m_bInverted = bInverted;}
/**
Returns the value indicating whether the filter operates in an inverted mode or in a normal mode.
\return
\c true, if the filter operates in an inverted mode; \c false otherwise.
\see
SetInverted
\see
HandlesInversion
*/
bool IsInverted() const {return m_bInverted;}
/**
Returns the value indicating whether the filter can decide about processing of the \a info file.
If it can, then the #Evaluate method will be called for the \a info file.
By default this method returns \c true for files and \c false for directories. Override this method
to change it's behavior.
- If \a info is a file and this method returns \c false, then the file is not processed.
- If \a info is a directory and this method returns \c false, then the directory can still be traversed for files
and subfolders (depending on the CDirEnumerator::IsRecursive() method).
The #Evaluate method is not called in both cases.
\param info
A structure containing the information about the file.
\return
\c true, if the \a info file should be evaluated by the #Evaluate method; \c false otherwise.
\note
This method is particularly useful when the filter operates in the inverted mode (see #SetInverted).
For example, if a filter should accept directories in both inverted and non-inverted mode, it would need
to particularly handle inversion for directories without this method. With this method it can just not accept
directories for evaluation and they still will be traversed.
*/
virtual bool HandlesFile(const CFileInfo& info)
{
return !info.IsDirectory();
}
virtual ~CFileFilter()
{
}
protected:
/**
This method is directly called by the #Evaluate method during an enumeration process.
If this method returns \c true, the file will later be processed
by the CDirEnumerator::Process method. If this method returns \c false for a directory,
the directory is not enumerated at all.
The meaning of the return value can be reversed by the #SetInverted method.
If this filter handles the inversion internally, the return value from this method
is not reversed by the #Evaluate method.
\param lpszParentDir
The parent directory containing the file to accept.
\param lpszName
The name of the file to accept (without a path).
\param info
A structure containing the information about the current file.
\return
\c true, if the file is accepted; \c false otherwise.
\see
Evaluate
\see
HandlesInversion
\see
CDirEnumerator::Start
\see
CDirEnumerator::Process
*/
virtual bool Accept(LPCTSTR lpszParentDir, LPCTSTR lpszName, const CFileInfo& info)
{
return true;
}
/**
Returns the value indicating, whether the current filter handles the inversion mode internally
or not.
- If the filter is in the inverted mode and it handles the inversion, then the return value \c true
from the #Accept method means that the file should be processed.
- If the filter is in the inverted mode and it does not handle the inversion, then the return value \c true
from the #Accept method means that the file should not be processed.
It may be more efficient to handle the inversion internally in some cases.
\return
\c true, if the filter handles the inversion internally; \c false otherwise.
\note
This method returns \c false by default. Override this method to change this behavior.
\see
SetInverted
\see
IsInverted
*/
virtual bool HandlesInversion() const
{
return false;
}
bool m_bInverted;
};
/**
A filter that allows filtering files by a filename mask while an enumeration process.
\see
<a href="kb">0610231446|filters</a>
\see
<a href="kb">0610242025|wildcards</a>
\see
CDirEnumerator::Start
*/
class ZIP_API CNameFileFilter : public CFileFilter
{
CWildcard m_matcher;
int m_iAppliesToTypes;
public:
/**
The file type to which the CNameFileFilter filter can be applied.
You can use the logical \c OR to combine them.
\see
SetAppliesToTypes
\see
GetAppliesToTypes
*/
enum AppliesToTypes
{
toFile = 0x1, ///< Regular files only.
toDirectory = 0x2, ///< Directories only.
toAll = toFile | toDirectory ///< Both regular files and directories.
};
/**
Initializes a new instance of the CNameFileFilter class.
\param lpszPattern
A mask to match against a filename. This filter uses the CWildcard functionality for this purpose.
\param iAppliesToTypes
The file type to which this filter applies. The file type to which this filter applies. Can be one or more of the #AppliesToTypes values.
\param bInverted
Set to \c true to invert the behavior of the filter or to \c false for the normal behavior.
\param bCaseSensitive
\c true, if the matching process is case-sensitive; \c false otherwise.
By default, a system case-sensitivity setting is used.
\see
<a href="kb">0610231446|filters</a>
\see
<a href="kb">0610242025|wildcards</a>
\see
SetInverted
\see
SetAppliesToTypes
\see
CWildcard
\see
ZipPlatform::GetSystemCaseSensitivity
*/
CNameFileFilter(LPCTSTR lpszPattern = _T("*.*"), bool bInverted = false, int iAppliesToTypes = toFile, bool bCaseSensitive = ZipPlatform::GetSystemCaseSensitivity())
:CFileFilter(bInverted), m_matcher(lpszPattern, bCaseSensitive)
{
m_iAppliesToTypes = iAppliesToTypes;
}
/**
Returns the value indicating whether the filter can be applied to the given \a iType type.
\param iType
Can be one or more of the #AppliesToTypes values.
\return
\c true, if the filter can be applied to \a iType type; \c false otherwise.
\see
SetAppliesToTypes
\see
GetAppliesToTypes
*/
bool AppliesToType(int iType)
{
return (m_iAppliesToTypes & iType) == iType;
}
/**
Set the file type to which this filter applies.
\param iType
The file type to which this filter applies. Can be one or more of the #AppliesToTypes values.
\see
GetAppliesToTypes
*/
void SetAppliesToTypes(int iType) { m_iAppliesToTypes = iType; }
/**
Return the file type to which this filter applies.
\return
The file type to which this filter applies. Can be one or more of the #AppliesToTypes values.
\see
SetAppliesToTypes
*/
int GetAppliesToTypes() {return m_iAppliesToTypes;}
/**
Returns the value indicating whether the filter can decide about processing of the \a info file.
The CNameFileFilter returns the value depending on the #GetAppliesToTypes value.
\param info
A structure containing the information about the file.
\return
\c true, if the \a info file will be evaluated by the #Evaluate method; \c false otherwise.
\see
GetAppliesToTypes
\see
SetAppliesToTypes
*/
bool HandlesFile(const CFileInfo& info)
{
return info.IsDirectory() ? AppliesToType(toDirectory) : AppliesToType(toFile);
}
protected:
virtual bool Accept(LPCTSTR, LPCTSTR lpszName, const CFileInfo& info)
{
return m_matcher.IsMatch(lpszName);
}
};
/**
A filter that allows grouping of other filters.
\see
<a href="kb">0610231446|filters</a>
\see
CDirEnumerator::Start
*/
class ZIP_API CGroupFileFilter : public CFileFilter
{
public:
/**
The grouping type.
*/
enum GroupType
{
And, ///< Logical AND. All the grouped filters must accept a file for the file to be processed.
Or ///< Logical OR. At least one of the grouped filters must accept a file for the file to be processed.
};
/**
Initializes a new instance of the CGroupFileFilter class.
\param groupType
The grouping type. Should be one of the #GroupType values.
\param bAutoDelete
\c true, if the grouped filters should be automatically destroyed by this filter; \c false otherwise.
\param bInverted
Set to \c true to invert the behavior of the filter or to \c false for the normal behavior.
This filter handles the inversion mode internally.
\see
<a href="kb">0610231446|filters</a>
\see
SetType
\see
SetAutoDelete
\see
SetInverted
\see
HandlesInversion
*/
CGroupFileFilter(GroupType groupType = CGroupFileFilter::And, bool bAutoDelete = true, bool bInverted = false)
:CFileFilter(bInverted), m_iType(groupType), m_bAutoDelete(bAutoDelete)
{
}
/**
Add \a pFilter to the filter's group.
\param pFilter
The filter to add.
*/
void Add(CFileFilter* pFilter)
{
m_filters.Add(pFilter);
}
/**
Returns the filter at the given position.
\param uIndex
The index of the filter to return.
*/
CFileFilter* GetAt(ZIP_ARRAY_SIZE_TYPE uIndex)
{
return m_filters[uIndex];
}
/**
Returns the filter at the given position.
\param uIndex
The index of the filter to return.
*/
const CFileFilter* GetAt(ZIP_ARRAY_SIZE_TYPE uIndex) const
{
return m_filters[uIndex];
}
/**
Returns the filter at the given position.
\param uIndex
The index of the filter to return.
*/
const CFileFilter* operator[] (ZIP_ARRAY_SIZE_TYPE uIndex) const
{
return GetAt(uIndex);
}
/**
Returns the filter at the given position.
\param uIndex
The index of the filter to return.
*/
CFileFilter* operator[] (ZIP_ARRAY_SIZE_TYPE uIndex)
{
return GetAt(uIndex);
}
/**
Remove the filter at the given position.
The removed filter is deleted from memory,
if the CGroupFileFilter object is in the auto-delete mode.
\param uIndex
The index of the filter to remove.
\see
SetAutoDelete
*/
void RemoveAt(ZIP_ARRAY_SIZE_TYPE uIndex)
{
CFileFilter* filter = m_filters[uIndex];
// first remove, then delete
m_filters.RemoveAt(uIndex);
if (m_bAutoDelete)
delete filter;
}
/**
Removes all contained filters from the collection.
The removed filters are deleted from memory,
if the CGroupFileFilter object is in the auto-delete mode.
\see
SetAutoDelete
*/
void Clear()
{
if (m_filters.GetSize() == 0)
return;
ZIP_ARRAY_SIZE_TYPE i = m_filters.GetSize() - 1;
for (; ;)
{
RemoveAt(i);
if (i == 0)
break;
i--;
}
}
/**
Returns the number of grouped filters.
\return
The number of grouped filters.
*/
ZIP_ARRAY_SIZE_TYPE GetSize()
{
return m_filters.GetSize();
}
/**
Sets the type of grouping.
\param iType
The type of grouping. Should be one of the #GroupType values.
\see
GetType
*/
void SetType(GroupType iType) {m_iType = iType;}
/**
Returns the type of grouping.
\return
The type of groupgroupeding. Can be one of the #GroupType values.
\see
SetType
*/
GroupType GetType() const {return m_iType;}
/**
Enable or disable auto-deletion of grouped filters.
If auto-deletion is enabled, the grouped filters are released from memory
when they are removed from the group or when the CGroupFileFilter
object is destroyed.
\param bAutoDelete
\c true, to enable auto-deletion; \c false to disable.
\see
IsAutoDelete
*/
void SetAutoDelete(bool bAutoDelete) {m_bAutoDelete = bAutoDelete;}
/**
Return the value indicating whether the auto-deletion is enabled or not.
\return
\c true, if the auto-deletion is enabled; \c false otherwise.
\see
SetAutoDelete
*/
bool IsAutoDelete() const {return m_bAutoDelete;}
/**
Returns the value indicating whether the filter can decide about processing of the \a info file.
The CGroupFileFilter returns the value depending on the value returned by the grouped filters.
\param info
A structure containing the information about the file.
\return
\c true, if any of the grouped filters accepts \a info; \c false otherwise.
*/
bool HandlesFile(const CFileInfo& info)
{
for (ZIP_ARRAY_SIZE_TYPE i = 0; i < m_filters.GetSize(); i++)
// it is enough that one filter handles it
if (m_filters[i]->HandlesFile(info))
return true;
return false;
}
~CGroupFileFilter()
{
Clear();
}
protected:
virtual bool Accept(LPCTSTR lpszParentDir, LPCTSTR lpszName, const CFileInfo& info);
/**
This filter handles inversion internally.
\return
This method returns \c true for this class.
\see
CFileFilter::HandlesInversion
*/
bool HandlesInversion() const
{
return true;
}
GroupType m_iType; ///< Set with the #SetType method or in constructor.
bool m_bAutoDelete; ///< Set with the #SetAutoDelete or in constructor.
private:
#if (_MSC_VER > 1000) && (defined ZIP_HAS_DLL)
#pragma warning (push)
#pragma warning( disable : 4251 ) // needs to have dll-interface to be used by clients of class
#endif
CZipArray<CFileFilter*> m_filters;
#if (_MSC_VER > 1000) && (defined ZIP_HAS_DLL)
#pragma warning( pop)
#endif
};
}
#if _MSC_VER > 1000
#pragma warning( pop )
#endif
#endif
|