-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommon.hpp
49 lines (40 loc) · 1.02 KB
/
Common.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
#pragma once
/*
* Argument to specify input path
*/
const char* const INPUT_PATH_ARGUMENT = "-i";
/*
* Argument to specify output path
*/
const char* const OUTPUT_PATH_ARGUMENT = "-o";
/*
* Rank 0 is always master
* Other ranks are ordinary servants
*/
constexpr int MASTER_ID = 0;
/*
* The packet sent to master when the worker is free
*/
#define PACKET_WORKER_FREE ((char)0x30)
/*
* The packet sent to servant when it has to map document to word count
*/
#define PACKET_MAP_TO_WORDS ((char)0x69)
/*
* The packet sent to servant when it has to reduce word counts to one with words
* starting with one letter
*/
#define PACKET_REDUCE_TO_LETTER ((char)0xA0)
/*
* The packet sent to servant when the work is done and it can close
*/
#define PACKET_SUICIDE ((char)0x45)
/*
* This packet is kept into the master and it knows it has to wait after all servants
*/
#define PACKET_BARRIER ((char)0x77)
/*
* Separator for data in messages
* Somethin' that can't be in filename or path
*/
constexpr char MESSAGE_SEPARATOR = 255;