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