aboutsummaryrefslogtreecommitdiff
path: root/threadlib/src/detach.c
blob: fc5229cf9561e56034eb7783d7a40c48813df0f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/* 
* 
* detach
* Copyright (C) 2005 Georg Holzmann, <grh@mur.at>
* Copyright (C) 2005  Tim Blechmann
* 
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* 
* This program 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 General Public License for more details.
* 
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING.  If not, write to
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/

#include "threadlib.h"

static t_class *detach_class;

typedef t_fifo fifo_t; /* for emacs syntax highlighting */

typedef struct _detach
{
  t_object x_obj;

  t_outlet * x_outlet;

  pthread_t x_thread;
  pthread_mutex_t x_mutex;
  pthread_cond_t x_cond;

  fifo_t * x_fifo;

} detach_t;

typedef struct _detach_content
{
  struct _detach_content_t * next;
  enum { BANG, 
         POINTER,
         FLOAT,
         SYMBOL,
         LIST,
         ANYTHING,
         CANCEL} type;
  int argc;
  t_atom * argv;
  t_symbol * symbol;
} detach_content_t;

static void detach_thread(detach_t* x)
{
  detach_content_t * me;
  while(1)
  {
    pthread_cond_wait(&x->x_cond, &x->x_mutex);

    me = (detach_content_t*) threadlib_fifo_get(x->x_fifo);

    while (me != NULL)
    {
      /* run function */
      switch (me->type)
      {
        case BANG:
          outlet_bang(x->x_outlet);
          break;
        case FLOAT:
	  outlet_float(x->x_outlet, atom_getfloat(me->argv));
	  break;
	case SYMBOL:
	  outlet_symbol(x->x_outlet, atom_getsymbol(me->argv));
	  break;
	case LIST:
	  outlet_list(x->x_outlet, 0, me->argc, me->argv);
	  freebytes(me->argv, me->argc * sizeof(t_atom));
	  break;
	case POINTER:
	  outlet_pointer(x->x_outlet, me->argv->a_w.w_gpointer);
	  break;
	case ANYTHING:
	  outlet_anything(x->x_outlet, me->symbol, me->argc, me->argv);
	  freebytes(me->argv, me->argc * sizeof(t_atom));
	  break;
	case CANCEL:
	  goto done;
      }
      
      /* free */
      if (me->argc)
	freebytes(me->argv, me->argc * sizeof (t_atom));
      freebytes (me, sizeof(detach_content_t));
      me = (detach_content_t*) threadlib_fifo_get(x->x_fifo);
    }
  }

 done: /* free the fifo and exit */

  do 
  {
    if (me->argc)
      freebytes(me->argv, me->argc * sizeof (t_atom));
    freebytes (me, sizeof(detach_content_t));
  }
  while ( (me = (detach_content_t*) threadlib_fifo_get(x->x_fifo)) );

  threadlib_fifo_destroy(x->x_fifo);
  pthread_mutex_destroy(&x->x_mutex);
  pthread_cond_destroy(&x->x_cond);
  return;
}

/* todo: take argument for thread priority */
static detach_t * detach_new()
{
  detach_t *x = (detach_t*) pd_new(detach_class);
  int status;

  x->x_outlet = outlet_new(&x->x_obj, NULL);
  x->x_fifo = threadlib_fifo_init();

  /* thread initialisation */
  pthread_mutex_init (&x->x_mutex,NULL);
  pthread_mutex_unlock (&x->x_mutex);
  pthread_cond_init (&x->x_cond,NULL);

  status = pthread_create(&x->x_thread, NULL,
        			(void*)detach_thread, x);
  
  if (status == 0)
    post("detaching thread");
  
  return x;
}

static void detach_free(detach_t * x)
{
  detach_content_t * me = getbytes(sizeof(detach_content_t));

  me->type = CANCEL;
  me->argc = 0;
  threadlib_fifo_put(x->x_fifo, me);
  pthread_cond_broadcast(&x->x_cond);
}

static void detach_bang(detach_t * x)
{
  detach_content_t * me = getbytes(sizeof(detach_content_t));
  
  me->type = BANG;
  me->argc = 0;
  threadlib_fifo_put(x->x_fifo, me);

  pthread_cond_broadcast(&x->x_cond);
}

static void detach_float(detach_t * x, t_float f)
{
  detach_content_t * me = getbytes(sizeof(detach_content_t));

  me->type = FLOAT;
  me->argc = 1;
  me->argv = getbytes(sizeof(t_atom));
  SETFLOAT(me->argv, f);
  threadlib_fifo_put(x->x_fifo, me);

  pthread_cond_broadcast(&x->x_cond);
}

static void detach_pointer(detach_t * x, t_gpointer* gp)
{
  detach_content_t * me = getbytes(sizeof(detach_content_t));
  
  me->type = POINTER;
  me->argc = 1;
  me->argv = getbytes(sizeof(t_atom));
  SETPOINTER(me->argv, gp);
  threadlib_fifo_put(x->x_fifo, me);

  pthread_cond_broadcast(&x->x_cond);
}

static void detach_symbol(detach_t * x, t_symbol * s)
{
  detach_content_t * me = getbytes(sizeof(detach_content_t));

  me->type = SYMBOL;
  me->argc = 1;
  me->argv = getbytes(sizeof(t_atom));
  SETSYMBOL(me->argv, s);
  threadlib_fifo_put(x->x_fifo, me);

  pthread_cond_broadcast(&x->x_cond);
}

static void detach_list(detach_t * x, t_symbol * s, int argc, t_atom* argv)
{
  detach_content_t * me = getbytes(sizeof(detach_content_t));

  me->type = LIST;
  me->argc = argc;
  me->argv = copybytes(argv, argc * sizeof(t_atom));
  threadlib_fifo_put(x->x_fifo, me);

  pthread_cond_broadcast(&x->x_cond);
}

static void detach_anything(detach_t * x, t_symbol * s, int argc, t_atom* argv)
{
  detach_content_t * me = getbytes(sizeof(detach_content_t));

  me->type = ANYTHING;
  me->argc = argc;
  me->argv = copybytes(argv, argc * sizeof(t_atom));
  me->symbol = s;
  threadlib_fifo_put(x->x_fifo, me);

  pthread_cond_broadcast(&x->x_cond);
}

void detach_setup(void)
{
  detach_class = class_new(gensym("detach"), (t_newmethod)detach_new,
			  (t_method)detach_free, sizeof(detach_t),
			  CLASS_DEFAULT, 0);
  
  class_addbang(detach_class, detach_bang);
  class_addfloat(detach_class, detach_float);
  class_addpointer(detach_class, detach_pointer);
  class_addsymbol(detach_class, detach_symbol);
  class_addlist(detach_class, detach_list);
  class_addanything(detach_class, detach_anything);
}