forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvlc_cxx_helpers.hpp
413 lines (361 loc) · 10.4 KB
/
vlc_cxx_helpers.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
/*****************************************************************************
* vlc_cxx_helpers.hpp: C++ helpers
*****************************************************************************
* Copyright (C) 1998-2018 VLC authors and VideoLAN
*
* Authors: Hugo Beauzée-Luyssen <[email protected]>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef VLC_CXX_HELPERS_HPP
#define VLC_CXX_HELPERS_HPP
/******************************************************************************
* C++ memory management helpers
******************************************************************************/
#ifdef __cplusplus
#include <memory>
#include <utility>
#include <type_traits>
#ifdef VLC_THREADS_H_
// Ensure we can use vlc_sem_wait_i11e. We can't declare different versions
// of the semaphore helper based on vlc_interrupt inclusion, as it would
// violate ODR
# include <vlc_interrupt.h>
#endif
namespace vlc
{
namespace
{
// This helpers need static linkage to avoid their signature to change when
// building as C++17 (noexcept becomes part of the function signature stating there)
// Wraps a pointer with a custom releaser
// ex: auto ptr = vlc_wrap_cptr( input_item, &input_item_Release );
///
/// Wraps a C pointer into a std::unique_ptr
///
/// This will convert a C pointer of type T to a std::unique_ptr<T, R> where
/// T is the pointee type, and R is an arbitrary releaser type.
///
/// ptr will be automatically released by calling r( ptr ) when falling out of
/// scope (whether by returning of by throwing an exception
///
/// @param ptr a C pointer
/// @param r An instance of a Callable type, that will be invoked with ptr
/// as its first and only parameter.
template <typename T, typename Releaser>
inline auto wrap_cptr( T* ptr, Releaser&& r ) noexcept
-> std::unique_ptr<T, typename std::decay<decltype( r )>::type>
{
return std::unique_ptr<T, typename std::decay<decltype( r )>::type>{
ptr, std::forward<Releaser>( r )
};
}
///
/// Wraps a C pointer into a std::unique_ptr
///
/// This will convert a C pointer to an array of type T to a
/// std::unique_ptr<T[], R> where T is the pointee type, and R is an arbitrary
/// releaser type.
///
/// ptr will be automatically released by calling r( ptr ) when falling out of
/// scope (whether by returning of by throwing an exception
///
/// This function is equivalent to wrap_cptr, except that the returned
/// unique_ptr provides an operator[] for array access instead of operator* and
/// operator->
///
/// @param ptr a C pointer
/// @param r An instance of a Callable type, that will be invoked with ptr
/// as its first and only parameter.
template <typename T, typename Releaser>
inline auto wrap_carray( T* ptr, Releaser&& r ) noexcept
-> std::unique_ptr<T[], typename std::decay<decltype( r )>::type>
{
return std::unique_ptr<T[], typename std::decay<decltype( r )>::type>{
ptr, std::forward<Releaser>( r )
};
}
///
/// Wraps a C pointer into a std::unique_ptr
///
/// This is a convenience wrapper that will use free() as its releaser
///
template <typename T>
inline std::unique_ptr<T, void (*)(void*)> wrap_cptr( T* ptr ) noexcept
{
return wrap_cptr( ptr, &free );
}
///
/// Wraps a C pointer into a std::unique_ptr
///
/// This is a convenience wrapper that will use free() as its releaser
///
template <typename T>
inline std::unique_ptr<T[], void (*)(void*)> wrap_carray( T* ptr ) noexcept
{
return wrap_carray( ptr, &free );
}
} // anonymous namespace
///
/// Wraps a C shared resource having associated Hold() and Release() functions
//
/// This is a RAII wrapper for C shared resources (which are manually managed by
/// calling explicitly their Hold() and Release() functions).
///
/// The Hold() and Release() functions must accept exactly one parameter having
/// type T* (the raw pointer type). Their return type is irrelevant.
///
/// To create a new shared resource wrapper type for my_type_t, simply declare:
///
/// using MyTypePtr =
/// vlc_shared_data_ptr_type(my_type_t, my_type_Hold, my_type_Release);
///
/// Then use it to wrap a raw C pointer:
///
/// my_type_t *raw_ptr = /* ... */;
/// MyTypePtr ptr(raw_ptr);
// In C++17, the template declaration could be replaced by:
// template<typename T, auto HOLD, auto RELEASE>
template <typename T, typename H, typename R, H HOLD, R RELEASE>
class vlc_shared_data_ptr {
T *ptr = nullptr;
public:
/* default implicit constructor */
vlc_shared_data_ptr() = default;
/**
* Wrap a shared resource.
*
* If the pointer is not nullptr, and hold is true, then the resource is
* hold (the caller shared ownership is preserved).
* If hold is false, then the caller transfers the ownership to this
* wrapper.
*
* \param ptr the raw pointer (can be nullptr)
* \param hold whether the resource must be hold
*/
explicit vlc_shared_data_ptr(T *ptr, bool hold = true)
: ptr(ptr)
{
if (ptr && hold)
HOLD(ptr);
}
vlc_shared_data_ptr(const vlc_shared_data_ptr &other)
: vlc_shared_data_ptr(other.ptr) {}
vlc_shared_data_ptr(vlc_shared_data_ptr &&other) noexcept
: ptr(other.ptr)
{
other.ptr = nullptr;
}
~vlc_shared_data_ptr()
{
if (ptr)
RELEASE(ptr);
}
vlc_shared_data_ptr &operator=(const vlc_shared_data_ptr &other)
{
reset(other.ptr, true);
return *this;
}
vlc_shared_data_ptr &operator=(vlc_shared_data_ptr &&other) noexcept
{
reset(other.ptr, false);
other.ptr = nullptr;
return *this;
}
bool operator==(const vlc_shared_data_ptr &other) const
{
return ptr == other.ptr;
}
bool operator==(std::nullptr_t) const noexcept
{
return ptr == nullptr;
}
bool operator!=(const vlc_shared_data_ptr &other) const
{
return !(*this == other);
}
bool operator!=(std::nullptr_t) const noexcept
{
return ptr != nullptr;
}
explicit operator bool() const
{
return ptr;
}
T &operator*() const
{
return *ptr;
}
T *operator->() const
{
return ptr;
}
T *get() const
{
return ptr;
}
/**
* Reset the shared resource.
*
* ptr.reset(rawptr, hold);
*
* is semantically equivalent to:
*
* ptr = vlc_shared_data_ptr<...>(rawptr, hold);
*
* If the pointer is not nullptr, and hold is true, then the resource is
* hold (the caller shared ownership is preserved).
* If hold is false, then the caller transfers the ownership to this
* wrapper.
*
* \param ptr the raw pointer (can be nullptr)
* \param hold whether the resource must be hold
*/
void reset(T *newptr = nullptr, bool hold = true)
{
if (newptr && hold)
HOLD(newptr);
if (ptr)
RELEASE(ptr);
ptr = newptr;
}
};
// useful due to the unnecessarily complex template declaration before C++17
#define vlc_shared_data_ptr_type(type, hold, release) \
::vlc::vlc_shared_data_ptr<type, decltype(&hold), decltype(&release), \
&hold, &release>
#ifdef VLC_THREADS_H_
namespace threads
{
class mutex
{
public:
mutex() noexcept
{
vlc_mutex_init( &m_mutex );
}
~mutex()
{
vlc_mutex_destroy( &m_mutex );
}
mutex( const mutex& ) = delete;
mutex& operator=( const mutex& ) = delete;
mutex( mutex&& ) = delete;
mutex& operator=( mutex&& ) = delete;
void lock() noexcept
{
vlc_mutex_lock( &m_mutex );
}
void unlock() noexcept
{
vlc_mutex_unlock( &m_mutex );
}
private:
vlc_mutex_t m_mutex;
friend class condition_variable;
friend class mutex_locker;
};
class condition_variable
{
public:
condition_variable() noexcept
{
vlc_cond_init( &m_cond );
}
~condition_variable()
{
vlc_cond_destroy( &m_cond );
}
void signal() noexcept
{
vlc_cond_signal( &m_cond );
}
void broadcast() noexcept
{
vlc_cond_broadcast( &m_cond );
}
void wait( mutex& mutex ) noexcept
{
vlc_cond_wait( &m_cond, &mutex.m_mutex );
}
int timedwait( mutex& mutex, vlc_tick_t deadline ) noexcept
{
return vlc_cond_timedwait( &m_cond, &mutex.m_mutex, deadline );
}
private:
vlc_cond_t m_cond;
};
class mutex_locker
{
public:
mutex_locker( vlc_mutex_t* m ) noexcept
: m_mutex( m )
{
vlc_mutex_lock( m_mutex );
}
mutex_locker( mutex& m ) noexcept
: mutex_locker( &m.m_mutex )
{
}
~mutex_locker()
{
vlc_mutex_unlock( m_mutex );
}
mutex_locker( const mutex_locker& ) = delete;
mutex_locker& operator=( const mutex_locker& ) = delete;
mutex_locker( mutex_locker&& ) = delete;
mutex_locker& operator=( mutex_locker&& ) = delete;
private:
vlc_mutex_t* m_mutex;
};
class semaphore
{
public:
semaphore() noexcept
{
vlc_sem_init( &m_sem, 0 );
}
semaphore( unsigned int count ) noexcept
{
vlc_sem_init( &m_sem, count );
}
~semaphore()
{
vlc_sem_destroy( &m_sem );
}
semaphore( const semaphore& ) = delete;
semaphore& operator=( const semaphore& ) = delete;
semaphore( semaphore&& ) = delete;
semaphore& operator=( semaphore&& ) = delete;
int post() noexcept
{
return vlc_sem_post( &m_sem );
}
void wait() noexcept
{
vlc_sem_wait( &m_sem );
}
int wait_i11e() noexcept
{
return vlc_sem_wait_i11e( &m_sem );
}
private:
vlc_sem_t m_sem;
};
}
#endif // VLC_THREADS_H_
} // namespace vlc
#endif
#endif // VLC_CXX_HELPERS_HPP