mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			93 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* Pinos
 | 
						|
 * Copyright (C) 2015 Wim Taymans <wim.taymans@gmail.com>
 | 
						|
 *
 | 
						|
 * This library is free software; you can redistribute it and/or
 | 
						|
 * modify it under the terms of the GNU Library General Public
 | 
						|
 * License as published by the Free Software Foundation; either
 | 
						|
 * version 2 of the License, or (at your option) any later version.
 | 
						|
 *
 | 
						|
 * This library 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
 | 
						|
 * Library General Public License for more details.
 | 
						|
 *
 | 
						|
 * You should have received a copy of the GNU Library General Public
 | 
						|
 * License along with this library; if not, write to the
 | 
						|
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
 | 
						|
 * Boston, MA 02110-1301, USA.
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __PINOS_OBJECT_H__
 | 
						|
#define __PINOS_OBJECT_H__
 | 
						|
 | 
						|
#include <stdint.h>
 | 
						|
 | 
						|
#include <pinos/client/signal.h>
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
typedef struct _PinosObject PinosObject;
 | 
						|
typedef struct _PinosInterface PinosInterface;
 | 
						|
 | 
						|
typedef enum {
 | 
						|
  PINOS_OBJECT_FLAG_NONE          = 0,
 | 
						|
  PINOS_OBJECT_FLAG_DESTROYING    = (1 << 0),
 | 
						|
} PinosObjectFlags;
 | 
						|
 | 
						|
typedef void (*PinosDestroyFunc)  (PinosObject *object);
 | 
						|
 | 
						|
struct _PinosInterface {
 | 
						|
  uint32_t  type;
 | 
						|
  void     *iface;
 | 
						|
};
 | 
						|
 | 
						|
struct _PinosObject {
 | 
						|
  uint32_t          id;
 | 
						|
  PinosObjectFlags  flags;
 | 
						|
  PinosDestroyFunc  destroy;
 | 
						|
  PinosSignal       destroy_signal;
 | 
						|
  unsigned int      n_interfaces;
 | 
						|
  PinosInterface   *interfaces;
 | 
						|
};
 | 
						|
 | 
						|
static inline void
 | 
						|
pinos_object_init (PinosObject      *object,
 | 
						|
                   PinosDestroyFunc  destroy,
 | 
						|
                   unsigned int      n_interfaces,
 | 
						|
                   PinosInterface   *interfaces)
 | 
						|
{
 | 
						|
  object->id = SPA_ID_INVALID;
 | 
						|
  object->flags = 0;
 | 
						|
  object->destroy = destroy;
 | 
						|
  pinos_signal_init (&object->destroy_signal);
 | 
						|
  object->n_interfaces = n_interfaces;
 | 
						|
  object->interfaces = interfaces;
 | 
						|
}
 | 
						|
 | 
						|
static inline void *
 | 
						|
pinos_object_get_interface (PinosObject *object,
 | 
						|
                            uint32_t     type)
 | 
						|
{
 | 
						|
  unsigned int i;
 | 
						|
  for (i = 0; i < object->n_interfaces; i++)
 | 
						|
    if (object->interfaces[i].type == type)
 | 
						|
      return object->interfaces[i].iface;
 | 
						|
  return NULL;
 | 
						|
}
 | 
						|
 | 
						|
static inline void
 | 
						|
pinos_object_destroy (PinosObject *object)
 | 
						|
{
 | 
						|
  object->flags |= PINOS_OBJECT_FLAG_DESTROYING;
 | 
						|
  pinos_signal_emit (&object->destroy_signal, object, NULL);
 | 
						|
  if (object->destroy)
 | 
						|
    object->destroy (object);
 | 
						|
}
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* __PINOS_OBJECT_H__ */
 |