pvxs-sys 0.1.1

Low-level FFI bindings for EPICS PVXS library
Documentation
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
// Copyright 2026 Tine Zata
// SPDX-License-Identifier: MPL-2.0
// client_wrapper.cpp - C++ client wrapper layer for PVXS

#include "wrapper.h"
#include <sstream>
#include <chrono>
#include <thread>
#include <pvxs/log.h>

namespace pvxs_wrapper {

    // ============================================================================
    // ValueWrapper implementation
    // ============================================================================

    std::string ValueWrapper::get_field_string(const std::string& field_name) const {
        if (!value_.valid()) {
            throw PvxsError("Value is not valid");
        }
        
        try {
            auto field = value_[field_name];
            if (!field.valid()) {
                throw PvxsError("Field '" + field_name + "' not found");
            }
            return field.as<std::string>();
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error getting field '") + field_name + "': " + e.what());
        }
    }

    double ValueWrapper::get_field_double(const std::string& field_name) const {
        if (!value_.valid()) {
            throw PvxsError("Value is not valid");
        }
        
        try {
            auto field = value_[field_name];
            if (!field.valid()) {
                throw PvxsError("Field '" + field_name + "' not found");
            }
            return field.as<double>();
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error getting field '") + field_name + "': " + e.what());
        }
    }

    int32_t ValueWrapper::get_field_int32(const std::string& field_name) const {
        if (!value_.valid()) {
            throw PvxsError("Value is not valid");
        }
        
        try {
            auto field = value_[field_name];
            if (!field.valid()) {
                throw PvxsError("Field '" + field_name + "' not found");
            }
            return field.as<int32_t>();
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error getting field '") + field_name + "': " + e.what());
        }
    }

    std::string ValueWrapper::to_string() const {
        if (!value_.valid()) {
            return "(invalid)";
        }
        
        try {
            std::ostringstream ss;
            ss << value_;
            return ss.str();
        } catch (const std::exception& e) {
            return std::string("Error converting to string: ") + e.what();
        }
    }

    std::int16_t ValueWrapper::get_field_enum(const std::string& field_name) const {
        if (!value_.valid()) {
            throw PvxsError("Value is not valid");
        }
        
        try {
            auto field = value_[field_name];
            if (!field.valid()) {
                throw PvxsError("Field '" + field_name + "' not found");
            }
            return field.as<std::int16_t>();
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error getting field '") + field_name + "': " + e.what());
        }
    }

    rust::Vec<double> ValueWrapper::get_field_double_array(const std::string& field_name) const {
        if (!value_.valid()) {
            throw PvxsError("Value is not valid");
        }
        
        try {
            auto field = value_[field_name];
            if (!field.valid()) {
                throw PvxsError("Field '" + field_name + "' not found");
            }
            
            // Get the shared_array from PVXS
            auto arr = field.as<pvxs::shared_array<const double>>();
            
            // Convert to rust::Vec
            rust::Vec<double> result;
            for (size_t i = 0; i < arr.size(); ++i) {
                result.push_back(arr[i]);
            }
            return result;
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error getting array field '") + field_name + "': " + e.what());
        }
    }

    rust::Vec<int32_t> ValueWrapper::get_field_int32_array(const std::string& field_name) const {
        if (!value_.valid()) {
            throw PvxsError("Value is not valid");
        }
        
        try {
            auto field = value_[field_name];
            if (!field.valid()) {
                throw PvxsError("Field '" + field_name + "' not found");
            }
            
            // Get the shared_array from PVXS
            auto arr = field.as<pvxs::shared_array<const int32_t>>();
            
            // Convert to rust::Vec
            rust::Vec<int32_t> result;
            for (size_t i = 0; i < arr.size(); ++i) {
                result.push_back(arr[i]);
            }
            return result;
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error getting array field '") + field_name + "': " + e.what());
        }
    }

    rust::Vec<int16_t> ValueWrapper::get_field_enum_array(const std::string& field_name) const {
        if (!value_.valid()) {
            throw PvxsError("Value is not valid");
        }
        
        try {
            auto field = value_[field_name];
            if (!field.valid()) {
                throw PvxsError("Field '" + field_name + "' not found");
            }
            
            // Get the shared_array from PVXS
            auto arr = field.as<pvxs::shared_array<const int16_t>>();
            
            // Convert to rust::Vec
            rust::Vec<int16_t> result;
            for (size_t i = 0; i < arr.size(); ++i) {
                result.push_back(arr[i]);
            }
            return result;
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error getting array field '") + field_name + "': " + e.what());
        }
    }

    rust::Vec<rust::String> ValueWrapper::get_field_string_array(const std::string& field_name) const {
        if (!value_.valid()) {
            throw PvxsError("Value is not valid");
        }
        
        try {
            auto field = value_[field_name];
            if (!field.valid()) {
                throw PvxsError("Field '" + field_name + "' not found");
            }
            
            // Get the shared_array from PVXS
            auto arr = field.as<pvxs::shared_array<const std::string>>();
            
            // Convert to rust::Vec
            rust::Vec<rust::String> result;
            for (size_t i = 0; i < arr.size(); ++i) {
                result.push_back(rust::String(arr[i]));
            }
            return result;
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error getting array field '") + field_name + "': " + e.what());
        }
    }

    // ============================================================================
    // ContextWrapper implementation
    // ============================================================================

    std::unique_ptr<ContextWrapper> ContextWrapper::from_env() {
        try {
            auto config = pvxs::client::Config::fromEnv();
            auto ctx = config.build();
            return std::make_unique<ContextWrapper>(std::move(ctx));
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error creating context from environment: ") + e.what());
        }
    }

    std::unique_ptr<ValueWrapper> ContextWrapper::get(
        const std::string& pv_name, 
        double timeout) {
        
        try {
            auto op = context_.get(pv_name).exec();
            auto result = op->wait(timeout);
            return std::make_unique<ValueWrapper>(std::move(result));
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error in get for '") + pv_name + "': " + e.what());
        }
    }

    void ContextWrapper::put(
        const std::string& pv_name,
        double value,
        double timeout) {
        
        try {
            context_.put(pv_name).build([value](pvxs::Value&& val) {
                val["value"] = value;
                return std::move(val);
            }).exec()->wait(timeout);
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error in put for '") + pv_name + "': " + e.what());
        }
    }

    void ContextWrapper::put(
        const std::string& pv_name,
        int32_t value,
        double timeout) {
        
        try {
            context_.put(pv_name).build([value](pvxs::Value&& val) {
                val["value"] = value;
                return std::move(val);
            }).exec()->wait(timeout);
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error in put for '") + pv_name + "': " + e.what());
        }
    }

    void ContextWrapper::put(
        const std::string& pv_name,
        const std::string& value,
        double timeout) {
        
        try {
            context_.put(pv_name).build([&value](pvxs::Value&& val) {
                val["value"] = value;
                return std::move(val);
            }).exec()->wait(timeout);
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error in put for '") + pv_name + "': " + e.what());
        }
    }

    void ContextWrapper::put(
        const std::string& pv_name,
        int16_t value,
        double timeout) {
        
        try {
            // For enums, we need to set value.index, not just value
            context_.put(pv_name).build([value](pvxs::Value&& val) {
                val["value.index"] = value;
                return std::move(val);
            }).exec()->wait(timeout);
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error in put for '") + pv_name + "': " + e.what());
        }
    }

    void ContextWrapper::put(
        const std::string& pv_name,
        const rust::Vec<double>& value,
        double timeout) {
        
        try {
            context_.put(pv_name).build([&value](pvxs::Value&& val) {
                // Convert rust::Vec to pvxs::shared_array
                pvxs::shared_array<double> arr(value.size());
                for (size_t i = 0; i < value.size(); ++i) {
                    arr[i] = value[i];
                }
                val["value"] = arr.freeze();
                return std::move(val);
            }).exec()->wait(timeout);
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error in put for '") + pv_name + "': " + e.what());
        }
    }

    void ContextWrapper::put(
        const std::string& pv_name,
        const rust::Vec<int32_t>& value,
        double timeout) {
        
        try {
            context_.put(pv_name).build([&value](pvxs::Value&& val) {
                // Convert rust::Vec to pvxs::shared_array
                pvxs::shared_array<int32_t> arr(value.size());
                for (size_t i = 0; i < value.size(); ++i) {
                    arr[i] = value[i];
                }
                val["value"] = arr.freeze();
                return std::move(val);
            }).exec()->wait(timeout);
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error in put for '") + pv_name + "': " + e.what());
        }
    }

    void ContextWrapper::put(
        const std::string& pv_name,
        const rust::Vec<int16_t>& value,
        double timeout) {
        
        try {
            context_.put(pv_name).build([&value](pvxs::Value&& val) {
                // Convert rust::Vec to pvxs::shared_array
                pvxs::shared_array<int16_t> arr(value.size());
                for (size_t i = 0; i < value.size(); ++i) {
                    arr[i] = value[i];
                }
                val["value"] = arr.freeze();
                return std::move(val);
            }).exec()->wait(timeout);
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error in put for '") + pv_name + "': " + e.what());
        }
    }

    void ContextWrapper::put(
        const std::string& pv_name,
        const rust::Vec<rust::String>& value,
        double timeout) {
        
        try {
            context_.put(pv_name).build([&value](pvxs::Value&& val) {
                // Convert rust::Vec<rust::String> to pvxs::shared_array<std::string>
                pvxs::shared_array<std::string> arr(value.size());
                for (size_t i = 0; i < value.size(); ++i) {
                    arr[i] = std::string(value[i]);
                }
                val["value"] = arr.freeze();
                return std::move(val);
            }).exec()->wait(timeout);
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error in put for '") + pv_name + "': " + e.what());
        }
    }

    std::unique_ptr<ValueWrapper> ContextWrapper::info(
        const std::string& pv_name,
        double timeout) {
        
        try {
            auto result = context_.info(pv_name).exec()->wait(timeout);
            return std::make_unique<ValueWrapper>(std::move(result));
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error in info for '") + pv_name + "': " + e.what());
        }
    }

    std::unique_ptr<RpcWrapper> ContextWrapper::rpc_create(const std::string& pv_name) {
        try {
            return std::make_unique<RpcWrapper>(context_, pv_name);
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error creating RPC for '") + pv_name + "': " + e.what());
        }
    }

    std::unique_ptr<MonitorWrapper> ContextWrapper::monitor(const std::string& pv_name) {
        try {
            return std::make_unique<MonitorWrapper>(context_, pv_name);
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error creating monitor for '") + pv_name + "': " + e.what());
        }
    }

    std::unique_ptr<MonitorBuilderWrapper> ContextWrapper::monitor_builder(const std::string& pv_name) {
        try {
            return std::make_unique<MonitorBuilderWrapper>(context_, pv_name);
        } catch (const std::exception& e) {
            throw PvxsError(std::string("Error creating monitor builder for '") + pv_name + "': " + e.what());
        }
    }

    // ============================================================================
    // Factory functions for Rust FFI
    // ============================================================================

    std::unique_ptr<ContextWrapper> create_context_from_env() {
        return ContextWrapper::from_env();
    }

    std::unique_ptr<ValueWrapper> context_get(ContextWrapper& ctx, rust::Str pv_name, double timeout) {
        return ctx.get(std::string(pv_name), timeout);
    }

    void context_put_double(ContextWrapper& ctx, rust::Str pv_name, double value, double timeout) {
        ctx.put(std::string(pv_name), value, timeout);
    }

    void context_put_int32(ContextWrapper& ctx, rust::Str pv_name, int32_t value, double timeout) { 
        ctx.put(std::string(pv_name), value, timeout);
    }

    void context_put_string(ContextWrapper& ctx, rust::Str pv_name, int32_t value, double timeout) {
        ctx.put(std::string(pv_name), value, timeout);
    }

    void context_put_string(ContextWrapper& ctx, rust::Str pv_name, rust::String value, double timeout) {
        ctx.put(std::string(pv_name), std::string(value), timeout);
    }

    void context_put_enum(ContextWrapper& ctx, rust::Str pv_name, int16_t value, double timeout) {
        ctx.put(std::string(pv_name), value, timeout);
    }

    void context_put_double_array(ContextWrapper& ctx, rust::Str pv_name, rust::Vec<double> value, double timeout) {
        ctx.put(std::string(pv_name), value, timeout);
    }

    void context_put_int32_array(ContextWrapper& ctx, rust::Str pv_name, rust::Vec<int32_t> value, double timeout) {
        ctx.put(std::string(pv_name), value, timeout);
    }

    void context_put_string_array(ContextWrapper& ctx, rust::Str pv_name, rust::Vec<rust::String> value, double timeout) {
        ctx.put(std::string(pv_name), value, timeout);
    }

    std::unique_ptr<ValueWrapper> context_info(ContextWrapper& ctx, rust::Str pv_name, double timeout) {
        return ctx.info(std::string(pv_name), timeout);
    }

    // ============================================================================
    // Value accessor functions for Rust FFI
    // ============================================================================

    bool value_is_valid(const ValueWrapper& val) {
        return val.valid();
    }

    rust::String value_to_string(const ValueWrapper& val) {
        return val.to_string();
    }

    double value_get_field_double(const ValueWrapper& val, rust::String field_name) {
        return val.get_field_double(std::string(field_name));
    }

    int32_t value_get_field_int32(const ValueWrapper& val, rust::String field_name) {
        return val.get_field_int32(std::string(field_name));
    }

    rust::String value_get_field_string(const ValueWrapper& val, rust::String field_name) {
        return val.get_field_string(std::string(field_name));
    }

    int16_t value_get_field_enum(const ValueWrapper& val, rust::String field_name) {
        return val.get_field_enum(std::string(field_name));
    }

    rust::Vec<double> value_get_field_double_array(const ValueWrapper& val, rust::String field_name) {
        return val.get_field_double_array(std::string(field_name));
    }

    rust::Vec<int32_t> value_get_field_int32_array(const ValueWrapper& val, rust::String field_name) {
        return val.get_field_int32_array(std::string(field_name));
    }

    rust::Vec<int16_t> value_get_field_enum_array(const ValueWrapper& val, rust::String field_name) {
        return val.get_field_enum_array(std::string(field_name));
    }

    rust::Vec<rust::String> value_get_field_string_array(const ValueWrapper& val, rust::String field_name) {
        return val.get_field_string_array(std::string(field_name));
    }
} // namespace pvxs_wrapper