9d8196374c94d9fd739a61b50524b2321e3f30e4
[dcpomatic.git] / src / lib / disk_writer_messages.h
1 /*
2     Copyright (C) 2020 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /* We have the front-end application dcpomatic2_disk and the back-end
22  * dcpomatic2_disk_writer.  The communication is line-based, separated
23  * by \n.
24  */
25
26 /* REQUEST TO WRITE DCP */
27
28 // Front-end sends:
29  
30 #define DISK_WRITER_WRITE "W"
31 // DCP pathname
32 // Internal name of the drive to write to
33
34 // Back-end responds:
35
36 // everything is ok
37 #define DISK_WRITER_OK "D"
38
39 // there was an error
40 #define DISK_WRITER_ERROR "E"
41 // Error message
42 // Error number
43
44 //  the drive is being formatted
45 #define DISK_WRITER_FORMATTING "F"
46
47 // data is being copied, 30% done
48 #define DISK_WRITER_PROGRESS "P"
49 // 0.3\n
50
51
52 /* REQUEST TO QUIT */
53
54 // Front-end sends:
55 #define DISK_WRITER_QUIT "Q"
56
57
58 /* REQUEST TO UNMOUNT A DRIVE */
59
60 // Front-end sends:
61 #define DISK_WRITER_UNMOUNT "U"
62 // XML representation of Drive object to unmount 
63
64 // Back-end responds:
65 // DISK_WRITER_OK
66 // or
67 // DISK_WRITER_ERROR
68