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
|
////////////////////////////////////////////////////////////////////////////////
// This source file is part of the ZipArchive Library Open Source distribution
// and is Copyrighted 2000 - 2022 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: https://www.artpol-software.com
////////////////////////////////////////////////////////////////////////////////
/**
* \file ZipCallbackProvider.h
* Includes the ZipArchiveLib::CZipCallbackProvider class.
*
*/
#if !defined(ZIPARCHIVE_ZIPCALLBACKPROVIDER_DOT_H)
#define ZIPARCHIVE_ZIPCALLBACKPROVIDER_DOT_H
#if _MSC_VER > 1000
#pragma once
#if defined ZIP_HAS_DLL
#pragma warning (push)
#pragma warning( disable : 4275 ) // non dll-interface used as base for dll-interface class
#endif
#endif
#include "ZipCallback.h"
#include "ZipExport.h"
#include "ZipCollections.h"
namespace ZipArchiveLib
{
class ZIP_API CZipCallbackProvider : public CZipMap<CZipActionCallback::CallbackType, CZipActionCallback*>
{
public:
void Set(CZipActionCallback* pCallback, int iWhich)
{
CZipActionCallback::CallbackType cbs[] = {CZipActionCallback::cbAdd, CZipActionCallback::cbAddTmp, CZipActionCallback::cbAddStore, CZipActionCallback::cbExtract, CZipActionCallback::cbDeleteCnt, CZipActionCallback::cbDelete, CZipActionCallback::cbTest, CZipActionCallback::cbSave, CZipActionCallback::cbGet, CZipActionCallback::cbModify, CZipActionCallback::cbMoveData, CZipActionCallback::cbCalculateForMulti, CZipActionCallback::cbMultiAdd, CZipActionCallback::cbEncryptPrepare, CZipActionCallback::cbEncryptMoveData, CZipActionCallback::cbEncrypt, CZipActionCallback::cbMultiEncrypt};
int iCount = sizeof(cbs)/sizeof(CZipActionCallback::CallbackType);
for (int i = 0; i < iCount; i++)
{
CZipActionCallback::CallbackType iCallback = cbs[i];
if (iWhich & iCallback)
SetInternal(pCallback, iCallback);
}
}
CZipActionCallback* Get(CZipActionCallback::CallbackType iType)
{
CZipActionCallback* pCallback = NULL;
if (Lookup(iType, pCallback))
{
pCallback->m_iType = iType;
return pCallback;
}
else
return NULL;
}
protected:
void SetInternal(CZipActionCallback* pCallback, CZipActionCallback::CallbackType iType)
{
if (pCallback)
{
SetAt(iType, pCallback);
}
else
RemoveKey(iType);
}
};
} // namespace
#if (_MSC_VER > 1000) && (defined ZIP_HAS_DLL)
#pragma warning (pop)
#endif
#endif // !defined(ZIPARCHIVE_ZIPCALLBACKPROVIDER_DOT_H)
|