2 * Copyright (C) 2011 Wim Taymans <wim.taymans@gmail.be>
4 * gstmemory.c: memory block handling
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library 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 GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
24 * @short_description: refcounted wrapper for memory blocks
25 * @see_also: #GstBuffer
27 * GstMemory is a lightweight refcounted object that wraps a region of memory.
28 * They are typically used to manage the data of a #GstBuffer.
30 * Memory is usually created by allocators with a gst_allocator_alloc()
31 * method call. When NULL is used as the allocator, the default allocator will
34 * New allocators can be registered with gst_allocator_register().
35 * Allocators are identified by name and can be retrieved with
36 * gst_allocator_find().
38 * New memory can be created with gst_memory_new_wrapped() that wraps the memory
39 * allocated elsewhere.
41 * Refcounting of the memory block is performed with gst_memory_ref() and
44 * The size of the memory can be retrieved and changed with
45 * gst_memory_get_sizes() and gst_memory_resize() respectively.
47 * Getting access to the data of the memory is performed with gst_memory_map().
48 * After the memory access is completed, gst_memory_unmap() should be called.
50 * Memory can be copied with gst_memory_copy(), which will returnn a writable
51 * copy. gst_memory_share() will create a new memory block that shares the
52 * memory with an existing memory block at a custom offset and with a custom
55 * Memory can be efficiently merged when gst_memory_is_span() returns TRUE.
57 * Last reviewed on 2011-06-08 (0.11.0)
61 #include "gst_private.h"
62 #include "gstmemory.h"
64 G_DEFINE_BOXED_TYPE (GstMemory, gst_memory, (GBoxedCopyFunc) gst_memory_ref,
65 (GBoxedFreeFunc) gst_memory_unref);
68 * gst_memory_alignment:
70 * The default memory alignment in bytes - 1
71 * an alignment of 7 would be the same as what malloc() guarantees.
73 #if defined(MEMORY_ALIGNMENT_MALLOC)
74 size_t gst_memory_alignment = 7;
75 #elif defined(MEMORY_ALIGNMENT_PAGESIZE)
76 /* we fill this in in the _init method */
77 size_t gst_memory_alignment = 0;
78 #elif defined(MEMORY_ALIGNMENT)
79 size_t gst_memory_alignment = MEMORY_ALIGNMENT - 1;
81 #error "No memory alignment configured"
82 size_t gst_memory_alignment = 0;
92 /* default memory implementation */
104 /* the default allocator */
105 static const GstAllocator *_default_allocator;
107 /* our predefined allocators */
108 static const GstAllocator *_default_mem_impl;
110 /* initialize the fields */
112 _default_mem_init (GstMemoryDefault * mem, GstMemoryFlags flags,
113 GstMemory * parent, gsize slice_size, gpointer data,
114 GFreeFunc free_func, gsize maxsize, gsize offset, gsize size)
116 mem->mem.allocator = _default_mem_impl;
117 mem->mem.flags = flags;
118 mem->mem.refcount = 1;
119 mem->mem.parent = parent ? gst_memory_ref (parent) : NULL;
120 mem->slice_size = slice_size;
122 mem->free_func = free_func;
123 mem->maxsize = maxsize;
124 mem->offset = offset;
128 /* create a new memory block that manages the given memory */
129 static GstMemoryDefault *
130 _default_mem_new (GstMemoryFlags flags, GstMemory * parent, gpointer data,
131 GFreeFunc free_func, gsize maxsize, gsize offset, gsize size)
133 GstMemoryDefault *mem;
136 slice_size = sizeof (GstMemoryDefault);
138 mem = g_slice_alloc (slice_size);
139 _default_mem_init (mem, flags, parent, slice_size,
140 data, free_func, maxsize, offset, size);
145 /* allocate the memory and structure in one block */
146 static GstMemoryDefault *
147 _default_mem_new_block (gsize maxsize, gsize align, gsize offset, gsize size)
149 GstMemoryDefault *mem;
150 gsize aoffset, slice_size;
153 /* ensure configured alignment */
154 align |= gst_memory_alignment;
155 /* allocate more to compensate for alignment */
157 /* alloc header and data in one block */
158 slice_size = sizeof (GstMemoryDefault) + maxsize;
160 mem = g_slice_alloc (slice_size);
164 data = (guint8 *) mem + sizeof (GstMemoryDefault);
166 if ((aoffset = ((guintptr) data & align)))
167 aoffset = (align + 1) - aoffset;
169 _default_mem_init (mem, 0, NULL, slice_size, data, NULL, maxsize,
170 aoffset + offset, size);
176 _default_mem_alloc (const GstAllocator * allocator, gsize maxsize, gsize align)
178 return (GstMemory *) _default_mem_new_block (maxsize, align, 0, maxsize);
182 _default_mem_get_sizes (GstMemoryDefault * mem, gsize * offset, gsize * maxsize)
185 *offset = mem->offset;
187 *maxsize = mem->maxsize;
193 _default_mem_resize (GstMemoryDefault * mem, gssize offset, gsize size)
195 g_return_if_fail (offset >= 0 || mem->offset >= -offset);
196 g_return_if_fail (size + mem->offset + offset <= mem->maxsize);
198 mem->offset += offset;
203 _default_mem_map (GstMemoryDefault * mem, gsize * size, gsize * maxsize,
209 *maxsize = mem->maxsize - mem->offset;
211 return mem->data + mem->offset;
215 _default_mem_unmap (GstMemoryDefault * mem, gpointer data, gsize size)
217 g_return_val_if_fail ((guint8 *) data >= mem->data
218 && (guint8 *) data < mem->data + mem->maxsize, FALSE);
220 if (mem->data + mem->offset != data)
221 mem->offset = (guint8 *) data - mem->data;
224 g_return_val_if_fail (mem->offset + size <= mem->maxsize, FALSE);
232 _default_mem_free (GstMemoryDefault * mem)
235 gst_memory_unref (mem->mem.parent);
238 mem->free_func (mem->data);
240 g_slice_free1 (mem->slice_size, mem);
243 static GstMemoryDefault *
244 _default_mem_copy (GstMemoryDefault * mem, gssize offset, gsize size)
246 GstMemoryDefault *copy;
249 size = mem->size > offset ? mem->size - offset : 0;
251 copy = _default_mem_new_block (mem->maxsize, 0, mem->offset + offset, size);
252 memcpy (copy->data, mem->data, mem->maxsize);
257 static GstMemoryDefault *
258 _default_mem_share (GstMemoryDefault * mem, gssize offset, gsize size)
260 GstMemoryDefault *sub;
263 /* find the real parent */
264 if ((parent = mem->mem.parent) == NULL)
265 parent = (GstMemory *) mem;
268 size = mem->size - offset;
270 sub = _default_mem_new (parent->flags, parent, mem->data, NULL, mem->maxsize,
271 mem->offset + offset, size);
277 _default_mem_is_span (GstMemoryDefault * mem1, GstMemoryDefault * mem2,
282 GstMemoryDefault *parent;
284 parent = (GstMemoryDefault *) mem1->mem.parent;
286 *offset = mem1->offset - parent->offset;
289 /* and memory is contiguous */
290 return mem1->data + mem1->offset + mem1->size == mem2->data + mem2->offset;
294 _fallback_copy (GstMemory * mem, gssize offset, gssize size)
300 data = gst_memory_map (mem, &msize, NULL, GST_MAP_READ);
302 size = msize > offset ? msize - offset : 0;
303 /* use the same allocator as the memory we copy, FIXME, alignment? */
304 copy = gst_allocator_alloc (mem->allocator, size, 0);
305 dest = gst_memory_map (copy, NULL, NULL, GST_MAP_WRITE);
306 memcpy (dest, data + offset, size);
307 gst_memory_unmap (copy, dest, size);
309 gst_memory_unmap (mem, data, msize);
311 return (GstMemory *) copy;
315 _fallback_is_span (GstMemory * mem1, GstMemory * mem2, gsize * offset)
320 static GStaticRWLock lock = G_STATIC_RW_LOCK_INIT;
321 static GHashTable *allocators;
324 _priv_gst_memory_initialize (void)
326 static const GstMemoryInfo _mem_info = {
327 (GstMemoryAllocFunction) _default_mem_alloc,
328 (GstMemoryGetSizesFunction) _default_mem_get_sizes,
329 (GstMemoryResizeFunction) _default_mem_resize,
330 (GstMemoryMapFunction) _default_mem_map,
331 (GstMemoryUnmapFunction) _default_mem_unmap,
332 (GstMemoryFreeFunction) _default_mem_free,
333 (GstMemoryCopyFunction) _default_mem_copy,
334 (GstMemoryShareFunction) _default_mem_share,
335 (GstMemoryIsSpanFunction) _default_mem_is_span,
339 allocators = g_hash_table_new (g_str_hash, g_str_equal);
341 #ifdef HAVE_GETPAGESIZE
342 #ifdef MEMORY_ALIGNMENT_PAGESIZE
343 gst_memory_alignment = getpagesize () - 1;
347 GST_DEBUG ("memory alignment: %" G_GSIZE_FORMAT, gst_memory_alignment);
349 _default_mem_impl = gst_allocator_register (GST_ALLOCATOR_SYSMEM, &_mem_info);
351 _default_allocator = _default_mem_impl;
355 * gst_memory_new_wrapped:
356 * @flags: #GstMemoryFlags
357 * @data: data to wrap
358 * @free_func: function to free @data
359 * @maxsize: allocated size of @data
360 * @offset: offset in @data
361 * @size: size of valid data
363 * Allocate a new memory block that wraps the given @data.
365 * Returns: a new #GstMemory.
368 gst_memory_new_wrapped (GstMemoryFlags flags, gpointer data,
369 GFreeFunc free_func, gsize maxsize, gsize offset, gsize size)
371 GstMemoryDefault *mem;
373 g_return_val_if_fail (data != NULL, NULL);
374 g_return_val_if_fail (offset + size <= maxsize, NULL);
376 mem = _default_mem_new (flags, NULL, data, free_func, maxsize, offset, size);
378 return (GstMemory *) mem;
385 * Increases the refcount of @mem.
387 * Returns: @mem with increased refcount
390 gst_memory_ref (GstMemory * mem)
392 g_return_val_if_fail (mem != NULL, NULL);
394 g_atomic_int_inc (&mem->refcount);
403 * Decreases the refcount of @mem. When the refcount reaches 0, the free
404 * function of @mem will be called.
407 gst_memory_unref (GstMemory * mem)
409 g_return_if_fail (mem != NULL);
410 g_return_if_fail (mem->allocator != NULL);
412 if (g_atomic_int_dec_and_test (&mem->refcount))
413 mem->allocator->info.free (mem);
417 * gst_memory_get_sizes:
419 * @offset: pointer to offset
420 * @maxsize: pointer to maxsize
422 * Get the current @size, @offset and @maxsize of @mem.
424 * Returns: the current sizes of @mem
427 gst_memory_get_sizes (GstMemory * mem, gsize * offset, gsize * maxsize)
429 g_return_val_if_fail (mem != NULL, 0);
431 return mem->allocator->info.get_sizes (mem, offset, maxsize);
437 * @offset: a new offset
440 * Resize the memory region. @mem should be writable and offset + size should be
441 * less than the maxsize of @mem.
444 gst_memory_resize (GstMemory * mem, gssize offset, gsize size)
446 g_return_if_fail (mem != NULL);
447 g_return_if_fail (GST_MEMORY_IS_WRITABLE (mem));
449 mem->allocator->info.resize (mem, offset, size);
455 * @size: (out) (allow-none): pointer for size
456 * @maxsize: (out) (allow-none): pointer for maxsize
457 * @flags: mapping flags
459 * Get a pointer to the memory of @mem that can be accessed according to @flags.
461 * @size and @maxsize will contain the size of the memory and the maximum
462 * allocated memory of @mem respectively. They can be set to NULL.
464 * Returns: (transfer none): a pointer to the memory of @mem.
467 gst_memory_map (GstMemory * mem, gsize * size, gsize * maxsize,
470 g_return_val_if_fail (mem != NULL, NULL);
471 g_return_val_if_fail (!(flags & GST_MAP_WRITE) ||
472 GST_MEMORY_IS_WRITABLE (mem), NULL);
474 return mem->allocator->info.map (mem, size, maxsize, flags);
480 * @data: data to unmap
481 * @size: new size of @mem, or -1
483 * Release the memory pointer obtained with gst_memory_map() and set the size of
484 * the memory to @size. @size can be set to -1 when the size should not be
487 * It is possible to pass a different @data than that obtained from
488 * gst_memory_map() in which case the offset of @mem will be updated.
490 * Returns: TRUE when the memory was release successfully.
493 gst_memory_unmap (GstMemory * mem, gpointer data, gssize size)
495 g_return_val_if_fail (mem != NULL, FALSE);
497 return mem->allocator->info.unmap (mem, data, size);
503 * @offset: an offset to copy
504 * @size: size to copy or -1 to copy all bytes from offset
506 * Return a copy of @size bytes from @mem starting from @offset. This copy is
507 * guaranteed to be writable. @size can be set to -1 to return a copy all bytes
510 * Returns: a new #GstMemory.
513 gst_memory_copy (GstMemory * mem, gssize offset, gssize size)
515 g_return_val_if_fail (mem != NULL, NULL);
517 return mem->allocator->info.copy (mem, offset, size);
523 * @offset: an offset to share
524 * @size: size to share or -1 to share bytes from offset
526 * Return a shared copy of @size bytes from @mem starting from @offset. No
527 * memory copy is performed and the memory region is simply shared. The result
528 * is guaranteed to be not-writable. @size can be set to -1 to return a share
529 * all bytes from @offset.
531 * Returns: a new #GstMemory.
534 gst_memory_share (GstMemory * mem, gssize offset, gssize size)
536 g_return_val_if_fail (mem != NULL, NULL);
538 return mem->allocator->info.share (mem, offset, size);
542 * gst_memory_is_span:
543 * @mem1: a #GstMemory
544 * @mem2: a #GstMemory
545 * @offset: a pointer to a result offset
547 * Check if @mem1 and mem2 share the memory with a common parent memory object
548 * and that the memory is contiguous.
550 * If this is the case, the memory of @mem1 and @mem2 can be merged
551 * efficiently by performing gst_memory_share() on the parent object from
552 * the returned @offset.
554 * Returns: %TRUE if the memory is contiguous and of a common parent.
557 gst_memory_is_span (GstMemory * mem1, GstMemory * mem2, gsize * offset)
559 g_return_val_if_fail (mem1 != NULL, FALSE);
560 g_return_val_if_fail (mem2 != NULL, FALSE);
562 /* need to have the same allocators */
563 if (mem1->allocator != mem2->allocator)
566 /* need to have the same parent */
567 if (mem1->parent == NULL || mem1->parent != mem2->parent)
570 /* and memory is contiguous */
571 if (!mem1->allocator->info.is_span (mem1, mem2, offset))
578 * gst_allocator_register:
579 * @name: the name of the allocator
580 * @info: #GstMemoryInfo
582 * Registers the memory allocator with @name and implementation functions
585 * All functions in @info are mandatory exept the copy and is_span
586 * functions, which will have a default implementation when left NULL.
588 * The user_data field in @info will be passed to all calls of the alloc
591 * Returns: a new #GstAllocator.
594 gst_allocator_register (const gchar * name, const GstMemoryInfo * info)
596 GstAllocator *allocator;
598 #define INSTALL_FALLBACK(_t) \
599 if (allocator->info._t == NULL) allocator->info._t = _fallback_ ##_t;
601 g_return_val_if_fail (name != NULL, NULL);
602 g_return_val_if_fail (info != NULL, NULL);
603 g_return_val_if_fail (info->alloc != NULL, NULL);
604 g_return_val_if_fail (info->get_sizes != NULL, NULL);
605 g_return_val_if_fail (info->resize != NULL, NULL);
606 g_return_val_if_fail (info->map != NULL, NULL);
607 g_return_val_if_fail (info->unmap != NULL, NULL);
608 g_return_val_if_fail (info->free != NULL, NULL);
609 g_return_val_if_fail (info->share != NULL, NULL);
611 allocator = g_slice_new (GstAllocator);
612 allocator->name = g_quark_from_string (name);
613 allocator->info = *info;
614 INSTALL_FALLBACK (copy);
615 INSTALL_FALLBACK (is_span);
616 #undef INSTALL_FALLBACK
618 GST_DEBUG ("registering allocator \"%s\"", name);
620 g_static_rw_lock_writer_lock (&lock);
621 g_hash_table_insert (allocators, (gpointer) name, (gpointer) allocator);
622 g_static_rw_lock_writer_unlock (&lock);
628 * gst_allocator_find:
629 * @name: the name of the allocator
631 * Find a previously registered allocator with @name. When @name is NULL, the
632 * default allocator will be returned.
634 * Returns: a #GstAllocator or NULL when the allocator with @name was not
638 gst_allocator_find (const gchar * name)
640 const GstAllocator *allocator;
642 g_static_rw_lock_reader_lock (&lock);
644 allocator = g_hash_table_lookup (allocators, (gconstpointer) name);
646 allocator = _default_allocator;
648 g_static_rw_lock_reader_unlock (&lock);
654 * gst_allocator_set_default:
655 * @allocator: a #GstAllocator
657 * Set the default allocator.
660 gst_allocator_set_default (const GstAllocator * allocator)
662 g_return_if_fail (allocator != NULL);
664 g_static_rw_lock_writer_lock (&lock);
665 _default_allocator = allocator;
666 g_static_rw_lock_writer_unlock (&lock);
670 * gst_allocator_alloc:
671 * @allocator: (transfer none) (allow-none): a #GstAllocator to use
672 * @maxsize: allocated size of @data
673 * @align: alignment for the data
675 * Use @allocator to allocate a new memory block with memory that is at least
676 * @maxsize big and has the given alignment.
678 * When @allocator is NULL, the default allocator will be used.
680 * @align is given as a bitmask so that @align + 1 equals the amount of bytes to
681 * align to. For example, to align to 8 bytes, use an alignment of 7.
683 * Returns: (transfer full): a new #GstMemory.
686 gst_allocator_alloc (const GstAllocator * allocator, gsize maxsize, gsize align)
688 g_return_val_if_fail (((align + 1) & align) == 0, NULL);
690 if (allocator == NULL)
691 allocator = _default_allocator;
693 return allocator->info.alloc (allocator, maxsize, align,
694 allocator->info.user_data);