Add maybe_set to ContentPart.
[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, boost::shared_ptr<const Film> film)
34                 : _parent (parent)
35                 , _film (film)
36         {}
37
38 protected:
39         template <class T>
40         void
41         maybe_set (T& member, T new_value, int property) const
42         {
43                 {
44                         boost::mutex::scoped_lock lm (_mutex);
45                         if (member == new_value) {
46                                 return;
47                         }
48                         member = new_value;
49                 }
50                 _parent->signal_changed (property);
51         }
52
53         template <class T>
54         void
55         maybe_set (boost::optional<T>& member, T new_value, int property) const
56         {
57                 {
58                         boost::mutex::scoped_lock lm (_mutex);
59                         if (member && member.get() == new_value) {
60                                 return;
61                         }
62                         member = new_value;
63                 }
64                 _parent->signal_changed (property);
65         }
66
67         Content* _parent;
68         boost::weak_ptr<const Film> _film;
69         mutable boost::mutex _mutex;
70 };
71
72 #endif