849b7d24b614d267293ae9c6dd027cad712cba71
[libdcp.git] / src / util.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/util.cc
21  *  @brief Utility methods.
22  */
23
24 #include <stdexcept>
25 #include <sstream>
26 #include <iostream>
27 #include <iomanip>
28 #include <boost/filesystem.hpp>
29 #include <openssl/sha.h>
30 #include "KM_util.h"
31 #include "KM_fileio.h"
32 #include "AS_DCP.h"
33 #include "util.h"
34 #include "exceptions.h"
35
36 using namespace std;
37 using namespace boost;
38
39 string
40 libdcp::make_uuid ()
41 {
42         char buffer[64];
43         Kumu::UUID id;
44         Kumu::GenRandomValue (id);
45         id.EncodeHex (buffer, 64);
46         return string (buffer);
47 }
48
49 string
50 libdcp::make_digest (string filename, sigc::signal1<void, float>* progress)
51 {
52         int const file_size = filesystem::file_size (filename);
53         
54         Kumu::FileReader reader;
55         if (ASDCP_FAILURE (reader.OpenRead (filename.c_str ()))) {
56                 throw FileError ("could not open file to compute digest", filename);
57         }
58         
59         SHA_CTX sha;
60         SHA1_Init (&sha);
61         
62         Kumu::ByteString read_buffer (65536);
63         int done = 0;
64         while (1) {
65                 ui32_t read = 0;
66                 Kumu::Result_t r = reader.Read (read_buffer.Data(), read_buffer.Capacity(), &read);
67                 
68                 if (r == Kumu::RESULT_ENDOFFILE) {
69                         break;
70                 } else if (ASDCP_FAILURE (r)) {
71                         throw FileError ("could not read file to compute digest", filename);
72                 }
73                 
74                 SHA1_Update (&sha, read_buffer.Data(), read);
75                 done += read;
76
77                 if (progress) {
78                         (*progress) (0.5 + (0.5 * done / file_size));
79                 }
80         }
81
82         byte_t byte_buffer[20];
83         SHA1_Final (byte_buffer, &sha);
84
85         stringstream s;
86         char digest[64];
87         return Kumu::base64encode (byte_buffer, 20, digest, 64);
88 }