| 1 | /*
|
|---|
| 2 | * Copyright (c) 2013 Jan Vesely
|
|---|
| 3 | * All rights reserved.
|
|---|
| 4 | *
|
|---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 6 | * modification, are permitted provided that the following conditions
|
|---|
| 7 | * are met:
|
|---|
| 8 | *
|
|---|
| 9 | * - Redistributions of source code must retain the above copyright
|
|---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 13 | * documentation and/or other materials provided with the distribution.
|
|---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 15 | * derived from this software without specific prior written permission.
|
|---|
| 16 | *
|
|---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 27 | */
|
|---|
| 28 |
|
|---|
| 29 | /** @addtogroup audio
|
|---|
| 30 | * @brief HelenOS sound server
|
|---|
| 31 | * @{
|
|---|
| 32 | */
|
|---|
| 33 | /** @file
|
|---|
| 34 | */
|
|---|
| 35 |
|
|---|
| 36 | #include <malloc.h>
|
|---|
| 37 | #include "audio_data.h"
|
|---|
| 38 |
|
|---|
| 39 | static void ref_inc(audio_data_t *adata)
|
|---|
| 40 | {
|
|---|
| 41 | assert(adata);
|
|---|
| 42 | assert(atomic_get(&adata->refcount) > 0);
|
|---|
| 43 | atomic_inc(&adata->refcount);
|
|---|
| 44 | }
|
|---|
| 45 |
|
|---|
| 46 | static void ref_dec(audio_data_t *adata)
|
|---|
| 47 | {
|
|---|
| 48 | assert(adata);
|
|---|
| 49 | assert(atomic_get(&adata->refcount) > 0);
|
|---|
| 50 | atomic_count_t refc = atomic_predec(&adata->refcount);
|
|---|
| 51 | if (refc == 0) {
|
|---|
| 52 | free(adata->data);
|
|---|
| 53 | free(adata);
|
|---|
| 54 | }
|
|---|
| 55 | }
|
|---|
| 56 |
|
|---|
| 57 | audio_data_link_t *audio_data_link_clone(audio_data_t *adata)
|
|---|
| 58 | {
|
|---|
| 59 | assert(adata);
|
|---|
| 60 | audio_data_link_t *link = malloc(sizeof(audio_data_link_t));
|
|---|
| 61 | if (link) {
|
|---|
| 62 | ref_inc(adata);
|
|---|
| 63 | link->adata = adata;
|
|---|
| 64 | link->position = 0;
|
|---|
| 65 | }
|
|---|
| 66 | return link;
|
|---|
| 67 | }
|
|---|
| 68 |
|
|---|
| 69 | audio_data_link_t * audio_data_link_create(const void *data, size_t size)
|
|---|
| 70 | {
|
|---|
| 71 | audio_data_link_t *link = NULL;
|
|---|
| 72 | audio_data_t *adata = malloc(sizeof(audio_data_t));
|
|---|
| 73 | if (adata) {
|
|---|
| 74 | adata->data = data;
|
|---|
| 75 | adata->size = size;
|
|---|
| 76 | atomic_set(&adata->refcount, 1);
|
|---|
| 77 | link = audio_data_link_clone(adata);
|
|---|
| 78 | /* This will either return refcount to 1 or clean adata if
|
|---|
| 79 | * cloning failed */
|
|---|
| 80 | ref_dec(adata);
|
|---|
| 81 | }
|
|---|
| 82 | return link;
|
|---|
| 83 | }
|
|---|
| 84 |
|
|---|
| 85 | void audio_data_link_destroy(audio_data_link_t *link)
|
|---|
| 86 | {
|
|---|
| 87 | assert(link);
|
|---|
| 88 | assert(!link_in_use(&link->link));
|
|---|
| 89 | ref_dec(link->adata);
|
|---|
| 90 | free(link);
|
|---|
| 91 | }
|
|---|
| 92 |
|
|---|
| 93 | /**
|
|---|
| 94 | * @}
|
|---|
| 95 | */
|
|---|