Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[dcpomatic.git] / src / lib / content_part.h
1 /*
2     Copyright (C) 2016 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 #ifndef DCPOMATIC_CONTENT_PART_H
22 #define DCPOMATIC_CONTENT_PART_H
23
24 #include "content.h"
25 #include <boost/weak_ptr.hpp>
26 #include <boost/thread/mutex.hpp>
27
28 class Content;
29 class Film;
30
31 class ContentPart
32 {
33 public:
34         ContentPart (Content* parent)
35                 : _parent (parent)
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         mutable boost::mutex _mutex;
69 };
70
71 #endif