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
|
/* -*- c++ -*- */
/*
* Copyright 2006,2009,2010 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio 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 3, or (at your option)
* any later version.
*
* GNU Radio 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 GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifndef INCLUDED_PMT_INT_H
#define INCLUDED_PMT_INT_H
#include <gruel/pmt.h>
#include <boost/utility.hpp>
#include <boost/detail/atomic_count.hpp>
/*
* EVERYTHING IN THIS FILE IS PRIVATE TO THE IMPLEMENTATION!
*
* See pmt.h for the public interface
*/
#define PMT_LOCAL_ALLOCATOR 0 // define to 0 or 1
namespace pmt {
class GRUEL_API pmt_base : boost::noncopyable {
mutable boost::detail::atomic_count count_;
protected:
pmt_base() : count_(0) {};
virtual ~pmt_base();
public:
virtual bool is_bool() const { return false; }
virtual bool is_symbol() const { return false; }
virtual bool is_number() const { return false; }
virtual bool is_integer() const { return false; }
virtual bool is_uint64() const { return false; }
virtual bool is_real() const { return false; }
virtual bool is_complex() const { return false; }
virtual bool is_null() const { return false; }
virtual bool is_pair() const { return false; }
virtual bool is_tuple() const { return false; }
virtual bool is_vector() const { return false; }
virtual bool is_dict() const { return false; }
virtual bool is_any() const { return false; }
virtual bool is_uniform_vector() const { return false; }
virtual bool is_u8vector() const { return false; }
virtual bool is_s8vector() const { return false; }
virtual bool is_u16vector() const { return false; }
virtual bool is_s16vector() const { return false; }
virtual bool is_u32vector() const { return false; }
virtual bool is_s32vector() const { return false; }
virtual bool is_u64vector() const { return false; }
virtual bool is_s64vector() const { return false; }
virtual bool is_f32vector() const { return false; }
virtual bool is_f64vector() const { return false; }
virtual bool is_c32vector() const { return false; }
virtual bool is_c64vector() const { return false; }
friend void intrusive_ptr_add_ref(pmt_base* p);
friend void intrusive_ptr_release(pmt_base* p);
# if (PMT_LOCAL_ALLOCATOR)
void *operator new(size_t);
void operator delete(void *, size_t);
#endif
};
class pmt_bool : public pmt_base
{
public:
pmt_bool();
//~pmt_bool(){}
bool is_bool() const { return true; }
};
class pmt_symbol : public pmt_base
{
std::string d_name;
pmt_t d_next;
public:
pmt_symbol(const std::string &name);
//~pmt_symbol(){}
bool is_symbol() const { return true; }
const std::string name() { return d_name; }
pmt_t next() { return d_next; } // symbol table link
void set_next(pmt_t next) { d_next = next; }
};
class pmt_integer : public pmt_base
{
public:
long d_value;
pmt_integer(long value);
//~pmt_integer(){}
bool is_number() const { return true; }
bool is_integer() const { return true; }
long value() const { return d_value; }
};
class pmt_uint64 : public pmt_base
{
public:
uint64_t d_value;
pmt_uint64(uint64_t value);
//~pmt_uint64(){}
bool is_number() const { return true; }
bool is_uint64() const { return true; }
uint64_t value() const { return d_value; }
};
class pmt_real : public pmt_base
{
public:
double d_value;
pmt_real(double value);
//~pmt_real(){}
bool is_number() const { return true; }
bool is_real() const { return true; }
double value() const { return d_value; }
};
class pmt_complex : public pmt_base
{
public:
std::complex<double> d_value;
pmt_complex(std::complex<double> value);
//~pmt_complex(){}
bool is_number() const { return true; }
bool is_complex() const { return true; }
std::complex<double> value() const { return d_value; }
};
class pmt_null : public pmt_base
{
public:
pmt_null();
//~pmt_null(){}
bool is_null() const { return true; }
};
class pmt_pair : public pmt_base
{
public:
pmt_t d_car;
pmt_t d_cdr;
pmt_pair(const pmt_t& car, const pmt_t& cdr);
//~pmt_pair(){};
bool is_pair() const { return true; }
pmt_t car() const { return d_car; }
pmt_t cdr() const { return d_cdr; }
void set_car(pmt_t car) { d_car = car; }
void set_cdr(pmt_t cdr) { d_cdr = cdr; }
};
class pmt_vector : public pmt_base
{
std::vector<pmt_t> d_v;
public:
pmt_vector(size_t len, pmt_t fill);
//~pmt_vector();
bool is_vector() const { return true; }
pmt_t ref(size_t k) const;
void set(size_t k, pmt_t obj);
void fill(pmt_t fill);
size_t length() const { return d_v.size(); }
pmt_t _ref(size_t k) const { return d_v[k]; }
};
class pmt_tuple : public pmt_base
{
std::vector<pmt_t> d_v;
public:
pmt_tuple(size_t len);
//~pmt_tuple();
bool is_tuple() const { return true; }
pmt_t ref(size_t k) const;
size_t length() const { return d_v.size(); }
pmt_t _ref(size_t k) const { return d_v[k]; }
void _set(size_t k, pmt_t v) { d_v[k] = v; }
};
class pmt_any : public pmt_base
{
boost::any d_any;
public:
pmt_any(const boost::any &any);
//~pmt_any();
bool is_any() const { return true; }
const boost::any &ref() const { return d_any; }
void set(const boost::any &any) { d_any = any; }
};
class pmt_uniform_vector : public pmt_base
{
public:
bool is_uniform_vector() const { return true; }
virtual const void *uniform_elements(size_t &len) = 0;
virtual void *uniform_writable_elements(size_t &len) = 0;
virtual size_t length() const = 0;
};
#include "pmt_unv_int.h"
} /* namespace pmt */
#endif /* INCLUDED_PMT_INT_H */
|