Mercurial > hg > beaglert
comparison projects/heavy/circularBuffer/HvBase.c @ 163:20b52283c7b4 heavy-updated
- added circular buffer pd/heavy example (works but process needs to be killed manually if launched via ssh?)
author | chnrx <chris.heinrichs@gmail.com> |
---|---|
date | Thu, 12 Nov 2015 15:55:30 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
162:c3e8226a5651 | 163:20b52283c7b4 |
---|---|
1 /** | |
2 * Copyright (c) 2014, 2015, Enzien Audio Ltd. | |
3 * | |
4 * Permission to use, copy, modify, and/or distribute this software for any | |
5 * purpose with or without fee is hereby granted, provided that the above | |
6 * copyright notice and this permission notice appear in all copies. | |
7 * | |
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | |
9 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY | |
10 * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | |
11 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM | |
12 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR | |
13 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | |
14 * PERFORMANCE OF THIS SOFTWARE. | |
15 */ | |
16 | |
17 #include "HvBase.h" | |
18 | |
19 void ctx_setBasePath(HvBase *const _c, const char *basePath) { | |
20 hv_free(_c->basePath); | |
21 if (basePath != NULL) { | |
22 hv_size_t len = (hv_size_t) hv_strlen(basePath); | |
23 _c->basePath = (char *) hv_malloc((len+1)*sizeof(char)); | |
24 hv_strncpy(_c->basePath, basePath, len); | |
25 } | |
26 } | |
27 | |
28 void ctx_cancelMessage(HvBase *_c, HvMessage *m, void (*sendMessage)(HvBase *, int, const HvMessage *)) { | |
29 mq_removeMessage(&_c->mq, m, sendMessage); | |
30 } | |
31 | |
32 void ctx_scheduleMessageForReceiverV(HvBase *const _c, const char *name, | |
33 const hv_uint32_t timestamp, const char *format, ...) { | |
34 va_list ap; | |
35 va_start(ap, format); | |
36 | |
37 const int numElem = (int) hv_strlen(format); | |
38 HvMessage *m = HV_MESSAGE_ON_STACK(numElem); | |
39 msg_init(m, numElem, timestamp); | |
40 for (int i = 0; i < numElem; i++) { | |
41 switch (format[i]) { | |
42 case 'b': msg_setBang(m,i); break; | |
43 case 'f': msg_setFloat(m, i, (float) va_arg(ap, double)); break; | |
44 case 's': msg_setSymbol(m, i, (char *) va_arg(ap, char *)); break; | |
45 default: break; | |
46 } | |
47 } | |
48 _c->f_scheduleMessageForReceiver(_c, name, m); | |
49 | |
50 va_end(ap); | |
51 } |