seq_clientmgr.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * ALSA sequencer Client Manager
  3. * Copyright (c) 1998-1999 by Frank van de Pol <fvdpol@coil.demon.nl>
  4. *
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program 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
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. *
  20. */
  21. #ifndef __SND_SEQ_CLIENTMGR_H
  22. #define __SND_SEQ_CLIENTMGR_H
  23. #include <sound/seq_kernel.h>
  24. #include <linux/bitops.h>
  25. #include "seq_fifo.h"
  26. #include "seq_ports.h"
  27. #include "seq_lock.h"
  28. /* client manager */
  29. struct _snd_seq_user_client {
  30. struct file *file; /* file struct of client */
  31. /* ... */
  32. /* fifo */
  33. fifo_t *fifo; /* queue for incoming events */
  34. int fifo_pool_size;
  35. };
  36. struct _snd_seq_kernel_client {
  37. snd_card_t *card;
  38. /* pointer to client functions */
  39. void *private_data; /* private data for client */
  40. /* ... */
  41. };
  42. struct _snd_seq_client {
  43. snd_seq_client_type_t type;
  44. unsigned int accept_input: 1,
  45. accept_output: 1;
  46. char name[64]; /* client name */
  47. int number; /* client number */
  48. unsigned int filter; /* filter flags */
  49. DECLARE_BITMAP(event_filter, 256);
  50. snd_use_lock_t use_lock;
  51. int event_lost;
  52. /* ports */
  53. int num_ports; /* number of ports */
  54. struct list_head ports_list_head;
  55. rwlock_t ports_lock;
  56. struct semaphore ports_mutex;
  57. int convert32; /* convert 32->64bit */
  58. /* output pool */
  59. pool_t *pool; /* memory pool for this client */
  60. union {
  61. user_client_t user;
  62. kernel_client_t kernel;
  63. } data;
  64. };
  65. /* usage statistics */
  66. typedef struct {
  67. int cur;
  68. int peak;
  69. } usage_t;
  70. extern int client_init_data(void);
  71. extern int snd_sequencer_device_init(void);
  72. extern void snd_sequencer_device_done(void);
  73. /* get locked pointer to client */
  74. extern client_t *snd_seq_client_use_ptr(int clientid);
  75. /* unlock pointer to client */
  76. #define snd_seq_client_unlock(client) snd_use_lock_free(&(client)->use_lock)
  77. /* dispatch event to client(s) */
  78. extern int snd_seq_dispatch_event(snd_seq_event_cell_t *cell, int atomic, int hop);
  79. /* exported to other modules */
  80. extern int snd_seq_register_kernel_client(snd_seq_client_callback_t *callback, void *private_data);
  81. extern int snd_seq_unregister_kernel_client(int client);
  82. extern int snd_seq_kernel_client_enqueue(int client, snd_seq_event_t *ev, int atomic, int hop);
  83. int snd_seq_kernel_client_enqueue_blocking(int client, snd_seq_event_t * ev, struct file *file, int atomic, int hop);
  84. int snd_seq_kernel_client_write_poll(int clientid, struct file *file, poll_table *wait);
  85. int snd_seq_client_notify_subscription(int client, int port, snd_seq_port_subscribe_t *info, int evtype);
  86. #endif