blob: 1f9088b3e9c87f4b5efc26731cae3933aa89697e [file] [log] [blame]
Michel Dänzer5e27cd42009-03-04 11:58:48 +01001/**************************************************************************
2 *
3 * Copyright 2009 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28#ifndef P_REFCNT_H
29#define P_REFCNT_H
30
31
32#include "p_defines.h"
Thomas Hellstromcf25ef92009-03-13 15:47:18 +010033#include "p_atomic.h"
Michel Dänzer5e27cd42009-03-04 11:58:48 +010034
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40
41struct pipe_reference
42{
Thomas Hellstromcf25ef92009-03-13 15:47:18 +010043 struct pipe_atomic count;
Michel Dänzer5e27cd42009-03-04 11:58:48 +010044};
45
46
47static INLINE void
48pipe_reference_init(struct pipe_reference *reference, unsigned count)
49{
Thomas Hellstromcf25ef92009-03-13 15:47:18 +010050 p_atomic_set(&reference->count, count);
Michel Dänzer5e27cd42009-03-04 11:58:48 +010051}
52
53
Michel Dänzere9d156e2009-03-23 18:03:13 +010054static INLINE bool
55pipe_is_referenced(struct pipe_reference *reference)
56{
57 return p_atomic_read(&reference->count) != 0;
58}
59
60
Michel Dänzer5e27cd42009-03-04 11:58:48 +010061/**
62 * Set 'ptr' to point to 'reference' and update reference counting.
63 * The old thing pointed to, if any, will be unreferenced first.
64 * 'reference' may be NULL.
Michel Dänzer5e27cd42009-03-04 11:58:48 +010065 */
66static INLINE bool
67pipe_reference(struct pipe_reference **ptr, struct pipe_reference *reference)
68{
69 bool destroy = FALSE;
70
José Fonseca3463b142009-06-16 13:05:25 +010071 if(*ptr != reference) {
72 /* bump the reference.count first */
73 if (reference) {
74 assert(pipe_is_referenced(reference));
75 p_atomic_inc(&reference->count);
Michel Dänzer5e27cd42009-03-04 11:58:48 +010076 }
José Fonseca3463b142009-06-16 13:05:25 +010077
78 if (*ptr) {
79 assert(pipe_is_referenced(*ptr));
80 if (p_atomic_dec_zero(&(*ptr)->count)) {
81 destroy = TRUE;
82 }
83 }
84
85 *ptr = reference;
Michel Dänzer5e27cd42009-03-04 11:58:48 +010086 }
87
Michel Dänzer5e27cd42009-03-04 11:58:48 +010088 return destroy;
89}
90
Michel Dänzere9d156e2009-03-23 18:03:13 +010091
Michel Dänzera2aedf92009-03-09 12:58:16 +010092#ifdef __cplusplus
93}
94#endif
Michel Dänzer5e27cd42009-03-04 11:58:48 +010095
96#endif /* P_REFCNT_H */