Remove unused method.
[libdcp.git] / src / asset.h
1 /*
2     Copyright (C) 2014 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/asset.h
21  *  @brief Asset class.
22  */ 
23
24 #ifndef LIBDCP_ASSET_H
25 #define LIBDCP_ASSET_H
26
27 #include "object.h"
28 #include "types.h"
29 #include <boost/filesystem.hpp>
30 #include <boost/function.hpp>
31 #include <boost/bind.hpp>
32
33 namespace xmlpp {
34         class Node;
35 }
36
37 namespace dcp {
38
39 /** @class Asset
40  *  @brief Parent class for DCP assets, i.e. picture/sound/subtitles and CPLs.
41  *
42  *  Note that this class is not used for ReelAssets; those are just for the metadata
43  *  that gets put into &lt;Reel&gt;s.
44  */
45 class Asset : public Object
46 {
47 public:
48         Asset ();
49         Asset (boost::filesystem::path file);
50
51         virtual bool equals (
52                 boost::shared_ptr<const Asset> other,
53                 EqualityOptions opt,
54                 boost::function<void (NoteType, std::string)> note
55                 ) const;
56
57         /** Write details of the asset to a ASSETMAP.
58          *  @param node Parent node.
59          */
60         void write_to_assetmap (xmlpp::Node* node, boost::filesystem::path root) const;
61
62         /** Write details of the asset to a PKL AssetList node.
63          *  @param node Parent node.
64          *  @param standard Standard to use.
65          */
66         void write_to_pkl (xmlpp::Node* node, Standard standard) const;
67
68         boost::filesystem::path file () const {
69                 return _file;
70         }
71
72         void set_file (boost::filesystem::path file) const;
73
74         /** @return the hash of this asset's file */
75         std::string hash (boost::function<void (float)> progress = 0) const;
76
77 protected:
78         virtual std::string pkl_type (Standard standard) const = 0;
79
80         /** The most recent disk file used to read or write this asset; may be empty */
81         mutable boost::filesystem::path _file;
82         /** Hash of _file, or empty if the hash has not yet been computed */
83         mutable std::string _hash;
84 };
85
86 }
87
88 #endif