C++11 tidying.
[dcpomatic.git] / src / lib / zipper.cc
1 /*
2     Copyright (C) 2020-2021 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
22 #include "zipper.h"
23 #include "exceptions.h"
24 #include "dcpomatic_assert.h"
25 #include <zip.h>
26 #include <boost/filesystem.hpp>
27 #include <stdexcept>
28
29
30 using std::string;
31 using std::runtime_error;
32 using std::shared_ptr;
33
34
35 Zipper::Zipper (boost::filesystem::path file)
36 {
37         int error;
38         _zip = zip_open (file.string().c_str(), ZIP_CREATE | ZIP_EXCL, &error);
39         if (!_zip) {
40                 if (error == ZIP_ER_EXISTS) {
41                         throw FileError ("ZIP file already exists", file);
42                 }
43                 throw FileError ("could not create ZIP file", file);
44         }
45 }
46
47
48 void
49 Zipper::add (string name, string content)
50 {
51         shared_ptr<string> copy(new string(content));
52         _store.push_back (copy);
53
54         auto source = zip_source_buffer (_zip, copy->c_str(), copy->length(), 0);
55         if (!source) {
56                 throw runtime_error ("could not create ZIP source");
57         }
58
59         if (zip_add(_zip, name.c_str(), source) == -1) {
60                 throw runtime_error ("failed to add data to ZIP archive");
61         }
62 }
63
64
65 void
66 Zipper::close ()
67 {
68         if (zip_close(_zip) == -1) {
69                 throw runtime_error ("failed to close ZIP archive");
70         }
71         _zip = 0;
72 }
73
74
75 Zipper::~Zipper ()
76 {
77         if (_zip) {
78                 zip_close(_zip);
79         }
80 }