98e9a6d1ce2c046ea25d9bd13959a38c9ab347e7
[dcpomatic.git] / src / lib / content_part.h
1 /*
2     Copyright (C) 2016 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 #ifndef DCPOMATIC_CONTENT_PART_H
21 #define DCPOMATIC_CONTENT_PART_H
22
23 #include "content.h"
24 #include <boost/weak_ptr.hpp>
25 #include <boost/thread/mutex.hpp>
26
27 class Content;
28 class Film;
29
30 class ContentPart
31 {
32 public:
33         ContentPart (Content* parent)
34                 : _parent (parent)
35         {}
36
37 protected:
38         template <class T>
39         void
40         maybe_set (T& member, T new_value, int property) const
41         {
42                 {
43                         boost::mutex::scoped_lock lm (_mutex);
44                         if (member == new_value) {
45                                 return;
46                         }
47                         member = new_value;
48                 }
49                 _parent->signal_changed (property);
50         }
51
52         template <class T>
53         void
54         maybe_set (boost::optional<T>& member, T new_value, int property) const
55         {
56                 {
57                         boost::mutex::scoped_lock lm (_mutex);
58                         if (member && member.get() == new_value) {
59                                 return;
60                         }
61                         member = new_value;
62                 }
63                 _parent->signal_changed (property);
64         }
65
66         Content* _parent;
67         mutable boost::mutex _mutex;
68 };
69
70 #endif