-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbzipthread.h
48 lines (41 loc) · 1.16 KB
/
bzipthread.h
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
#pragma once
#ifndef bzipthread
#define bzipthread
#include <thread>
#include <mutex>
#include <condition_variable>
#include "definitions.h"
using namespace std;
// READY - данные подготовлены для потока.
// DONE - данные вычислены потоком.
// NO - не то, ни другое.
// ERROR - ошибка в потоке.
// END - сигнализирует потоку, что ему нужно заветшиться.
enum readiness {READY, DONE, NO, ERROR, END};
struct threadVariables
{
mutex theMutex;
condition_variable cond;
readiness dataReady;
exception_ptr pExc;
threadVariables(): dataReady(NO) {};
};
struct bzipArguments
{
byte *in;
byte *out;
byte *codesLengths;
int inSize;
int outSize;
int lastBytePosition;
bzipArguments(): in(NULL), out(NULL), codesLengths(NULL), inSize(0), outSize(0), lastBytePosition(0) {};
~bzipArguments()
{
delete [] in;
delete [] out;
delete [] codesLengths;
}
};
void BZIPEncodeThread(bzipArguments &args, threadVariables &vars);
void BZIPDecodeThread(bzipArguments &args, threadVariables &vars);
#endif