File: scsynthsend.h

package info (click to toggle)
supercollider 1%3A3.13.0%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 80,292 kB
  • sloc: cpp: 476,363; lisp: 84,680; ansic: 77,685; sh: 25,509; python: 7,909; makefile: 3,440; perl: 1,964; javascript: 974; xml: 826; java: 677; yacc: 314; lex: 175; objc: 152; ruby: 136
file content (149 lines) | stat: -rw-r--r-- 4,267 bytes parent folder | download | duplicates (4)
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
/*
    SuperCollider real time audio synthesis system
    Copyright (c) 2002 James McCartney. All rights reserved.
    http://www.audiosynth.com

    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; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
*/

#pragma once

#include "SC_Endian.h"
#include "SC_Types.h"
#include <stdexcept>
#include <cstring>
#include <string>

template <int MaxPacketSize = 8192> struct scpacket {
    static const int kBufSize = MaxPacketSize / sizeof(int32); // round down
    int32 *wrpos, *endpos, *msgsizepos;
    char* tagwrpos;
    int inbundle;
    int32 buf[kBufSize];

    void throw_overflow_exception() { throw std::runtime_error(std::string("buffer overflow")); }

    scpacket() { reset(); }
    void reset() {
        wrpos = buf;
        endpos = buf + kBufSize;
        inbundle = 0;
    }
    void addi(int i) {
        if (wrpos >= endpos)
            throw_overflow_exception();
        *wrpos++ = sc_htonl(i);
    }
    void addii(int64 ii) {
        int i;
        i = (int)(ii >> 32);
        addi(i);
        i = (int)ii;
        addi(i);
    }
    void addf(float f) {
        if (wrpos >= endpos)
            throw_overflow_exception();
        elem32 slot;
        slot.f = f;
        *wrpos++ = sc_htonl(slot.i);
    }
    void addd(double f) {
        if (wrpos >= endpos)
            throw_overflow_exception();
        elem64 slot;
        slot.f = f;
        *wrpos++ = sc_htonl(slot.i >> 32);
        *wrpos++ = sc_htonl(slot.i & 0x00000000FFFFFFFF);
    }
    void adds(const char* src) {
        size_t len = strlen(src);
        size_t len4 = (len + 4) >> 2;
        if (wrpos + len4 > endpos)
            throw_overflow_exception();
        wrpos[len4 - 1] = 0;
        memcpy(wrpos, src, len);
        wrpos += len4;
    }
    void adds_slpre(const char* src) // prepends a slash
    {
        size_t len = strlen(src);
        size_t len4 = (len + 5) >> 2;
        if (wrpos + len4 > endpos)
            throw_overflow_exception();
        wrpos[len4 - 1] = 0;
        char* wrpos_c = (char*)wrpos;
        *wrpos_c = '/';
        memcpy(wrpos_c + 1, src, len);
        wrpos += len4;
    }
    void adds(const char* src, size_t len) {
        size_t len4 = (len + 4) >> 2;
        if (wrpos + len4 > endpos)
            throw_overflow_exception();
        wrpos[len4 - 1] = 0;
        memcpy(wrpos, src, len);
        wrpos += len4;
    }
    void addb(uint8* src, size_t len) {
        size_t len4 = (len + 3) >> 2;
        if (wrpos + (len4 + 1) > endpos)
            throw_overflow_exception();
        wrpos[len4 - 1] = 0;
        int32 swaplen = len;
        *wrpos++ = sc_htonl(swaplen);
        memcpy(wrpos, src, len);
        wrpos += len4;
    }
    void addtag(char c) { *tagwrpos++ = c; }
    void skip(int n) {
        if (wrpos + n > endpos)
            throw_overflow_exception();
        wrpos += n;
    }
    void maketags(int n) {
        int size4 = (n + 4) >> 2;
        tagwrpos = (char*)wrpos;
        skip(size4);
        wrpos[-1] = 0;
    }
    size_t size() { return (char*)wrpos - (char*)buf; }
    char* data() { return (char*)buf; }

    void OpenBundle(int64 time) {
        inbundle++;
        adds("#bundle");
        addii(time);
    }
    void CloseBundle() {
        if (inbundle)
            inbundle--;
    }

    void BeginMsg() {
        if (inbundle) {
            msgsizepos = wrpos;
            addi(0);
        }
    }
    void EndMsg() {
        if (inbundle) {
            *msgsizepos = sc_htonl(((wrpos - msgsizepos) - 1) * sizeof(int32));
        }
    }
};

typedef scpacket<> small_scpacket;
typedef scpacket<65516> big_scpacket;