File: type_codec.hpp

package info (click to toggle)
supercollider 1%3A3.10.0%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 45,496 kB
  • sloc: cpp: 283,513; lisp: 74,040; ansic: 72,252; sh: 23,016; python: 7,175; makefile: 1,087; perl: 766; java: 677; yacc: 314; lex: 175; ruby: 136; objc: 65; xml: 15
file content (509 lines) | stat: -rw-r--r-- 10,659 bytes parent folder | download
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
/************************************************************************
*
* Copyright 2010 - 2012 Jakob Leben (jakob.leben@gmail.com)
*
* This file is part of SuperCollider Qt GUI.
*
* 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, see <http://www.gnu.org/licenses/>.
*
************************************************************************/

#pragma once

#include "widgets/QcTreeWidget.h"
#include "widgets/QcMenu.h"
#include "image.h"

#include <PyrSlot.h>
#include <PyrKernel.h>

#include <QDebug>
#include <QChar>
#include <QString>
#include <QPoint>
#include <QPointF>
#include <QSize>
#include <QSizeF>
#include <QRect>
#include <QRectF>
#include <QColor>
#include <QFont>
#include <QPalette>
#include <QWidget>
#include <QLayout>
#include <QVector>
#include <QUrl>
#include <QVariantList>

class QObjectProxy;

namespace QtCollider {

template <typename T, typename EnabledT=void> struct TypeCodec { };

// Forwarding from QtCollider namespace to TypeCodec

template <typename T> inline
T read( PyrSlot *slot )
{
  return TypeCodec<T>::read(slot);
}

template <typename T> inline
void write( PyrSlot *slot, const T & val )
{
  return TypeCodec<T>::write(slot, val);
}

// Lazy conversion, allows automatic codec deduction

struct DecodableSlot
{
  PyrSlot *_slot;
  DecodableSlot( PyrSlot *slot ): _slot(slot) {}
  template<typename T> operator T () { return TypeCodec<T>::safeRead(_slot); }
};

inline
DecodableSlot get( PyrSlot * slot )
{
  return DecodableSlot(slot);
}

template<typename T> inline
T get( PyrSlot * slot )
{
  return TypeCodec<T>::safeRead(slot);
}

template<typename T> inline
void set( PyrSlot *slot, const T & val )
{
  // write is always type-safe
  TypeCodec<T>::write( slot, val );
}
  
template<typename IteratorT>
static void setObjectList( PyrSlot *slot, int size, IteratorT iter, IteratorT end)
{
  typedef typename IteratorT::value_type ValueT;
  VMGlobals *g = gMainVMGlobals;
  
  PyrObject *array = newPyrArray( g->gc, size, 0, true );
  SetObject( slot, array );
  
  PyrSlot *s = array->slots;
  for ( ; iter != end; ++iter)
  {
    if (size > 0) {
      TypeCodec<ValueT>::write(s, *iter);
      ++array->size;
      ++s;
      --size;
    }
  }
}


// TypeCodecs

template <> struct TypeCodec<bool>
{
  static bool read( PyrSlot *slot )
  {
    return IsTrue( slot );
  }

  static bool safeRead( PyrSlot *slot )
  {
    return read(slot);
  }

  static void write( PyrSlot *slot, const bool val )
  {
    if(val)
      SetTrue(slot);
    else
      SetFalse(slot);
  }
};

template <> struct TypeCodec<int>
{
  static int read( PyrSlot *slot )
  {
    return slotRawInt(slot);
  }

  static int safeRead( PyrSlot *slot )
  {
    int val;
    if (slotIntVal(slot, &val)) return 0;
    return val;
  }

  static void write( PyrSlot *slot, const int val )
  {
    SetInt(slot, val);
  }
};

template <> struct TypeCodec<float>
{
  static float read( PyrSlot *slot )
  {
    return slotRawFloat(slot);
  }

  static float safeRead( PyrSlot *slot )
  {
    float val;
    if (slotFloatVal(slot, &val)) return 0.f;
    return val;
  }

  static void write( PyrSlot *slot, const float val )
  {
    SetFloat(slot, val);
  }
};

template <> struct TypeCodec<double>
{
  static double read( PyrSlot *slot )
  {
    double d;
    slotVal(slot, &d);
    return d;
  }

  static double safeRead( PyrSlot *slot )
  {
    double val;
    if (slotDoubleVal(slot, &val)) return 0.0;
    return val;
  }

  static void write( PyrSlot *slot, const double val )
  {
    // NOTE: the signature actually reads SetFloat(PyrSlot*, double):
    SetFloat(slot, val);
  }
};

template <> struct TypeCodec<QChar>
{
  static QChar read( PyrSlot *slot )
  {
    return QChar( slotRawChar(slot) );
  }

  static QChar safeRead( PyrSlot *slot )
  {
    if (GetTag(slot) == tagChar)
      return QChar( slotRawChar(slot) );
    else
      return QChar();
  }

  static void write( PyrSlot *slot, const QChar & val )
  {
    // FIXME: Should add support for unicode in PyrSlot!
    SetChar(slot, val.toLatin1());
  }
};

template <> struct TypeCodec<QString>
{
  static QString read( PyrSlot *slot );

  static QString safeRead( PyrSlot *slot )
  {
    return read(slot);
  }

  static void write( PyrSlot *slot, const QString & val );
};

template <> struct TypeCodec<QUrl>
{
  static QUrl read( PyrSlot *slot );
  
  static QUrl safeRead( PyrSlot *slot )
  {
    return read(slot);
  }
  
  static void write( PyrSlot *slot, const QUrl & val );
};

template <> struct TypeCodec<QPointF>
{
  static QPointF read( PyrSlot *slot );

  static QPointF safeRead( PyrSlot *slot );

  static void write( PyrSlot *slot, const QPointF & pt );
};

template <> struct TypeCodec<QPoint>
{
  static QPoint read( PyrSlot *slot )
  {
    return TypeCodec<QPointF>::read(slot).toPoint();
  }

  static QPoint safeRead( PyrSlot *slot )
  {
    return TypeCodec<QPointF>::safeRead(slot).toPoint();
  }

  static void write( PyrSlot *slot, const QPoint & pt )
  {
    TypeCodec<QPointF>::write(slot, pt);
  }
};

template <> struct TypeCodec<QRectF>
{
  static QRectF read( PyrSlot *slot );

  static QRectF safeRead( PyrSlot *slot );

  static void write( PyrSlot *slot, const QRectF & r );
};

template <> struct TypeCodec<QRect>
{
  static QRect read( PyrSlot *slot )
  {
    return TypeCodec<QRectF>::read(slot).toRect();
  }

  static QRect safeRead( PyrSlot *slot )
  {
    return TypeCodec<QRectF>::safeRead(slot).toRect();
  }

  static void write( PyrSlot *slot, const QRect & rect )
  {
    TypeCodec<QRectF>::write(slot, rect);
  }
};

template <> struct TypeCodec<QSizeF>
{
  static QSizeF read( PyrSlot *slot );

  static QSizeF safeRead( PyrSlot *slot );

  static void write( PyrSlot *slot, const QSizeF & sz );
};

template <> struct TypeCodec<QSize>
{
  static QSize read( PyrSlot *slot )
  {
    return TypeCodec<QSizeF>::read(slot).toSize();
  }

  static QSize safeRead( PyrSlot *slot )
  {
    return TypeCodec<QSizeF>::safeRead(slot).toSize();
  }

  static void write( PyrSlot *slot, const QSize & size )
  {
    TypeCodec<QSizeF>::write(slot, size);
  }
};

template <> struct TypeCodec<QColor>
{
  static QColor read( PyrSlot *slot );

  static QColor safeRead( PyrSlot *slot )
  {
    if (IsObj(slot))
      return read(slot);
    return QColor();
  }

  static void write( PyrSlot *slot, const QColor & );
};

template <> struct TypeCodec<QFont>
{
  static QFont read( PyrSlot *slot );

  static QFont safeRead( PyrSlot *slot );

  static void write( PyrSlot *slot, const QFont & )
  {
    qWarning("WARNING: QtCollider: writing QFont to PyrSlot not supported.");
  }
};

template <> struct TypeCodec<QPalette>
{
  static QPalette read( PyrSlot *slot );

  static QPalette safeRead( PyrSlot *slot );

  static void write( PyrSlot *slot, const QPalette & );
};

template <> struct TypeCodec<QObjectProxy*>
{
  static QObjectProxy* read( PyrSlot *slot )
  {
    PyrSlot *proxySlot = slotRawObject( slot )->slots;
    if( IsPtr( proxySlot ) )
      return (QObjectProxy*) slotRawPtr( proxySlot );
    else
      return 0;
  }

  static QObjectProxy* safeRead( PyrSlot *slot );

  static void write( PyrSlot *, QObjectProxy * )
  {
    qWarning("WARNING: QtCollider: writing QObjectProxy* to PyrSlot not supported.");
  }
};

template <> struct TypeCodec<QObject*>
{
  static QObject* read( PyrSlot * )
  {
    qWarning("WARNING: QtCollider: reading QObject* from PyrSlot not supported.");
    return 0;
  }

  static void write( PyrSlot *, QObject * );
};


#define TYPE_IS_QOBJECT(type) std::is_convertible<QObjectT, QObject*>::value
template <> struct TypeCodec<PyrObject*>
{
  static PyrObject* read( PyrSlot * )
  {
    qWarning("WARNING: TypeCodec<PyrObject*>::read(PyrSlot*) = NO-OP");
    return 0;
  }

  static void write( PyrSlot *slot, PyrObject *object )
  {
    SetObject(slot, object);
  }
};

template <> struct TypeCodec<QcTreeWidget::ItemPtr>
{
  static QcTreeWidget::ItemPtr read( PyrSlot *slot );

  static void write( PyrSlot *slot, const QcTreeWidget::ItemPtr & );
};

template <> struct TypeCodec<SharedImage>
{
    static SharedImage read( PyrSlot * slot );
    static SharedImage safeRead( PyrSlot * slot );
    static void write ( PyrSlot *slot, SharedImage image );
};

template <> struct TypeCodec< QVector<int> >
{
  static QVector<int> read( PyrSlot *slot );

  static void write( PyrSlot *slot, const QVector<int> & );
};

template <> struct TypeCodec< QVector<double> >
{
  static QVector<double> read( PyrSlot *slot );

  static void write( PyrSlot *slot, const QVector<double> & );
};
  
template <typename ContainedT>
struct TypeCodec< QVector<ContainedT> >
{
  static QVector<ContainedT> read( PyrSlot *slot ) {
    qWarning("WARNING: TypeCodec<PyrObject*>::read(PyrSlot*) = NO-OP");
    return QVector<ContainedT>();
  }
  
  static void write( PyrSlot *slot, const QVector<ContainedT> & vec)
  {
    setObjectList(slot, vec.size(), vec.begin(), vec.end());
  }
};

template <typename ContainedT>
struct TypeCodec< QList<ContainedT> >
{
  static QList<ContainedT> read( PyrSlot *slot ) {
    qWarning("WARNING: TypeCodec<PyrObject*>::read(PyrSlot*) = NO-OP");
    return QList<ContainedT>();
  }
  
  static void write( PyrSlot *slot, const QList<ContainedT> & vec)
  {
    setObjectList(slot, vec.size(), vec.begin(), vec.end());
  }
};

template <> struct TypeCodec<QVariantList>
{
  static QVariantList read( PyrSlot *slot );

  static QVariantList safeRead( PyrSlot *slot )
  {
    return read(slot);
  }

  static void write( PyrSlot *slot, const QVariantList & );
};

template<typename QObjectT>
struct TypeCodec<QObjectT, void>
{
  static QObjectT read( PyrSlot *slot )
  {
    return safeRead(slot);
  }

  static QObjectT safeRead( PyrSlot *slot )
  {
    auto proxy = TypeCodec<QObjectProxy*>::safeRead(slot);

    if (proxy) {
      auto action = qobject_cast<QObjectT>(proxy->object());
      return action;
    } else {
      return 0;
    }
  }

  static void write(PyrSlot * slot, QObjectT object)
  {
    auto qobject = qobject_cast<QObject*>(object);
    TypeCodec<QObject*>::write(slot, qobject);
  }

};

} // namespace QtCollider