forked from rikyoz/bit7z
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextractcallback.hpp
65 lines (51 loc) · 2.22 KB
/
extractcallback.hpp
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
/*
* bit7z - A C++ static library to interface with the 7-zip DLLs.
* Copyright (c) 2014-2019 Riccardo Ostani - All Rights Reserved.
*
* 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.
*
* Bit7z 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 bit7z; if not, see https://www.gnu.org/licenses/.
*/
#ifndef EXTRACTCALLBACK_HPP
#define EXTRACTCALLBACK_HPP
#include "7zip/Archive/IArchive.h"
#include "7zip/ICoder.h"
#include "7zip/IPassword.h"
#include "../include/bitarchivehandler.hpp"
#include "../include/bitinputarchive.hpp"
#include "../include/callback.hpp"
namespace bit7z {
class ExtractCallback : public Callback,
public IArchiveExtractCallback,
public ICompressProgressInfo,
protected ICryptoGetTextPassword {
public:
virtual ~ExtractCallback() override;
MY_UNKNOWN_IMP3( IArchiveExtractCallback, ICompressProgressInfo, ICryptoGetTextPassword )
// IProgress from IArchiveExtractCallback
STDMETHOD( SetTotal )( UInt64 size );
STDMETHOD( SetCompleted )( const UInt64* completeValue );
// ICompressProgressInfo
STDMETHOD( SetRatioInfo )( const UInt64* inSize, const UInt64* outSize );
// IArchiveExtractCallback
STDMETHOD( PrepareOperation )( Int32 askExtractMode );
// ICryptoGetTextPassword
STDMETHOD( CryptoGetTextPassword )( BSTR* aPassword );
protected:
ExtractCallback( const BitArchiveHandler& handler,
const BitInputArchive& inputArchive);
const BitInputArchive& mInputArchive;
bool mExtractMode;
UInt64 mNumErrors;
};
}
#endif // EXTRACTCALLBACK_HPP