-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathecflow_util_wrap.cxx
638 lines (454 loc) · 20.7 KB
/
ecflow_util_wrap.cxx
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
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 4.0.1
*
* This file is not intended to be easily readable and contains a number of
* coding conventions designed to improve portability and efficiency. Do not make
* changes to this file unless you know what you are doing--modify the SWIG
* interface file instead.
* ----------------------------------------------------------------------------- */
// source: ecflow_util.i
#define SWIGMODULE ecflow_client
#ifdef __cplusplus
/* SwigValueWrapper is described in swig.swg */
template<typename T> class SwigValueWrapper {
struct SwigMovePointer {
T *ptr;
SwigMovePointer(T *p) : ptr(p) { }
~SwigMovePointer() { delete ptr; }
SwigMovePointer& operator=(SwigMovePointer& rhs) { T* oldptr = ptr; ptr = 0; delete oldptr; ptr = rhs.ptr; rhs.ptr = 0; return *this; }
} pointer;
SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
SwigValueWrapper(const SwigValueWrapper<T>& rhs);
public:
SwigValueWrapper() : pointer(0) { }
SwigValueWrapper& operator=(const T& t) { SwigMovePointer tmp(new T(t)); pointer = tmp; return *this; }
operator T&() const { return *pointer.ptr; }
T *operator&() { return pointer.ptr; }
};
template <typename T> T SwigValueInit() {
return T();
}
#endif
/* -----------------------------------------------------------------------------
* This section contains generic SWIG labels for method/variable
* declarations/attributes, and other compiler dependent labels.
* ----------------------------------------------------------------------------- */
/* template workaround for compilers that cannot correctly implement the C++ standard */
#ifndef SWIGTEMPLATEDISAMBIGUATOR
# if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x560)
# define SWIGTEMPLATEDISAMBIGUATOR template
# elif defined(__HP_aCC)
/* Needed even with `aCC -AA' when `aCC -V' reports HP ANSI C++ B3910B A.03.55 */
/* If we find a maximum version that requires this, the test would be __HP_aCC <= 35500 for A.03.55 */
# define SWIGTEMPLATEDISAMBIGUATOR template
# else
# define SWIGTEMPLATEDISAMBIGUATOR
# endif
#endif
/* inline attribute */
#ifndef SWIGINLINE
# if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
# define SWIGINLINE inline
# else
# define SWIGINLINE
# endif
#endif
/* attribute recognised by some compilers to avoid 'unused' warnings */
#ifndef SWIGUNUSED
# if defined(__GNUC__)
# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
# define SWIGUNUSED __attribute__ ((__unused__))
# else
# define SWIGUNUSED
# endif
# elif defined(__ICC)
# define SWIGUNUSED __attribute__ ((__unused__))
# else
# define SWIGUNUSED
# endif
#endif
#ifndef SWIG_MSC_UNSUPPRESS_4505
# if defined(_MSC_VER)
# pragma warning(disable : 4505) /* unreferenced local function has been removed */
# endif
#endif
#ifndef SWIGUNUSEDPARM
# ifdef __cplusplus
# define SWIGUNUSEDPARM(p)
# else
# define SWIGUNUSEDPARM(p) p SWIGUNUSED
# endif
#endif
/* internal SWIG method */
#ifndef SWIGINTERN
# define SWIGINTERN static SWIGUNUSED
#endif
/* internal inline SWIG method */
#ifndef SWIGINTERNINLINE
# define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
#endif
/* exporting methods */
#if defined(__GNUC__)
# if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
# ifndef GCC_HASCLASSVISIBILITY
# define GCC_HASCLASSVISIBILITY
# endif
# endif
#endif
#ifndef SWIGEXPORT
# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
# if defined(STATIC_LINKED)
# define SWIGEXPORT
# else
# define SWIGEXPORT __declspec(dllexport)
# endif
# else
# if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
# define SWIGEXPORT __attribute__ ((visibility("default")))
# else
# define SWIGEXPORT
# endif
# endif
#endif
/* calling conventions for Windows */
#ifndef SWIGSTDCALL
# if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
# define SWIGSTDCALL __stdcall
# else
# define SWIGSTDCALL
# endif
#endif
/* Deal with Microsoft's attempt at deprecating C standard runtime functions */
#if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
# define _CRT_SECURE_NO_DEPRECATE
#endif
/* Deal with Microsoft's attempt at deprecating methods in the standard C++ library */
#if !defined(SWIG_NO_SCL_SECURE_NO_DEPRECATE) && defined(_MSC_VER) && !defined(_SCL_SECURE_NO_DEPRECATE)
# define _SCL_SECURE_NO_DEPRECATE
#endif
/* Deal with Apple's deprecated 'AssertMacros.h' from Carbon-framework */
#if defined(__APPLE__) && !defined(__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES)
# define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES 0
#endif
/* Intel's compiler complains if a variable which was never initialised is
* cast to void, which is a common idiom which we use to indicate that we
* are aware a variable isn't used. So we just silence that warning.
* See: https://github.com/swig/swig/issues/192 for more discussion.
*/
#ifdef __INTEL_COMPILER
# pragma warning disable 592
#endif
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
typedef long long intgo;
typedef unsigned long long uintgo;
# if !defined(__clang__) && (defined(__i386__) || defined(__x86_64__))
# define SWIGSTRUCTPACKED __attribute__((__packed__, __gcc_struct__))
# else
# define SWIGSTRUCTPACKED __attribute__((__packed__))
# endif
typedef struct { char *p; intgo n; } _gostring_;
typedef struct { void* array; intgo len; intgo cap; } _goslice_;
#define swiggo_size_assert_eq(x, y, name) typedef char name[(x-y)*(x-y)*-2+1];
#define swiggo_size_assert(t, n) swiggo_size_assert_eq(sizeof(t), n, swiggo_sizeof_##t##_is_not_##n)
swiggo_size_assert(char, 1)
swiggo_size_assert(short, 2)
swiggo_size_assert(int, 4)
typedef long long swiggo_long_long;
swiggo_size_assert(swiggo_long_long, 8)
swiggo_size_assert(float, 4)
swiggo_size_assert(double, 8)
#ifdef __cplusplus
extern "C" {
#endif
extern void crosscall2(void (*fn)(void *, int), void *, int);
extern char* _cgo_topofstack(void) __attribute__ ((weak));
extern void _cgo_allocate(void *, int);
extern void _cgo_panic(void *, int);
#ifdef __cplusplus
}
#endif
static char *_swig_topofstack() {
if (_cgo_topofstack) {
return _cgo_topofstack();
} else {
return 0;
}
}
static void _swig_gopanic(const char *p) {
struct {
const char *p;
} SWIGSTRUCTPACKED a;
a.p = p;
crosscall2(_cgo_panic, &a, (int) sizeof a);
}
#define SWIG_contract_assert(expr, msg) \
if (!(expr)) { _swig_gopanic(msg); } else
static _gostring_ Swig_AllocateString(const char *p, size_t l) {
_gostring_ ret;
ret.p = (char*)malloc(l);
memcpy(ret.p, p, l);
ret.n = l;
return ret;
}
static void Swig_free(void* p) {
free(p);
}
static void* Swig_malloc(int c) {
return malloc(c);
}
#include "ecflow_util.h"
#include <vector>
#include <stdexcept>
#include <string>
SWIGINTERN std::vector< EcflowUtil::NodeStatusRecord >::const_reference std_vector_Sl_EcflowUtil_NodeStatusRecord_Sg__get(std::vector< EcflowUtil::NodeStatusRecord > *self,int i){
int size = int(self->size());
if (i>=0 && i<size)
return (*self)[i];
else
throw std::out_of_range("vector index out of range");
}
SWIGINTERN void std_vector_Sl_EcflowUtil_NodeStatusRecord_Sg__set(std::vector< EcflowUtil::NodeStatusRecord > *self,int i,std::vector< EcflowUtil::NodeStatusRecord >::value_type const &val){
int size = int(self->size());
if (i>=0 && i<size)
(*self)[i] = val;
else
throw std::out_of_range("vector index out of range");
}
#ifdef __cplusplus
extern "C" {
#endif
void _wrap_Swig_free_ecflow_client_149cbf1b1d6d7ca4(void *_swig_go_0) {
void *arg1 = (void *) 0 ;
arg1 = *(void **)&_swig_go_0;
Swig_free(arg1);
}
void *_wrap_Swig_malloc_ecflow_client_149cbf1b1d6d7ca4(intgo _swig_go_0) {
int arg1 ;
void *result = 0 ;
void *_swig_go_result;
arg1 = (int)_swig_go_0;
result = (void *)Swig_malloc(arg1);
*(void **)&_swig_go_result = (void *)result;
return _swig_go_result;
}
void _wrap_NodeStatusRecord_path__set_ecflow_client_149cbf1b1d6d7ca4(EcflowUtil::NodeStatusRecord *_swig_go_0, _gostring_ _swig_go_1) {
EcflowUtil::NodeStatusRecord *arg1 = (EcflowUtil::NodeStatusRecord *) 0 ;
std::string *arg2 = 0 ;
arg1 = *(EcflowUtil::NodeStatusRecord **)&_swig_go_0;
std::string arg2_str(_swig_go_1.p, _swig_go_1.n);
arg2 = &arg2_str;
if (arg1) (arg1)->path_ = *arg2;
}
_gostring_ _wrap_NodeStatusRecord_path__get_ecflow_client_149cbf1b1d6d7ca4(EcflowUtil::NodeStatusRecord *_swig_go_0) {
EcflowUtil::NodeStatusRecord *arg1 = (EcflowUtil::NodeStatusRecord *) 0 ;
std::string *result = 0 ;
_gostring_ _swig_go_result;
arg1 = *(EcflowUtil::NodeStatusRecord **)&_swig_go_0;
result = (std::string *) & ((arg1)->path_);
_swig_go_result = Swig_AllocateString((*result).data(), (*result).length());
return _swig_go_result;
}
void _wrap_NodeStatusRecord_status__set_ecflow_client_149cbf1b1d6d7ca4(EcflowUtil::NodeStatusRecord *_swig_go_0, _gostring_ _swig_go_1) {
EcflowUtil::NodeStatusRecord *arg1 = (EcflowUtil::NodeStatusRecord *) 0 ;
std::string *arg2 = 0 ;
arg1 = *(EcflowUtil::NodeStatusRecord **)&_swig_go_0;
std::string arg2_str(_swig_go_1.p, _swig_go_1.n);
arg2 = &arg2_str;
if (arg1) (arg1)->status_ = *arg2;
}
_gostring_ _wrap_NodeStatusRecord_status__get_ecflow_client_149cbf1b1d6d7ca4(EcflowUtil::NodeStatusRecord *_swig_go_0) {
EcflowUtil::NodeStatusRecord *arg1 = (EcflowUtil::NodeStatusRecord *) 0 ;
std::string *result = 0 ;
_gostring_ _swig_go_result;
arg1 = *(EcflowUtil::NodeStatusRecord **)&_swig_go_0;
result = (std::string *) & ((arg1)->status_);
_swig_go_result = Swig_AllocateString((*result).data(), (*result).length());
return _swig_go_result;
}
EcflowUtil::NodeStatusRecord *_wrap_new_NodeStatusRecord_ecflow_client_149cbf1b1d6d7ca4() {
EcflowUtil::NodeStatusRecord *result = 0 ;
EcflowUtil::NodeStatusRecord *_swig_go_result;
result = (EcflowUtil::NodeStatusRecord *)new EcflowUtil::NodeStatusRecord();
*(EcflowUtil::NodeStatusRecord **)&_swig_go_result = (EcflowUtil::NodeStatusRecord *)result;
return _swig_go_result;
}
void _wrap_delete_NodeStatusRecord_ecflow_client_149cbf1b1d6d7ca4(EcflowUtil::NodeStatusRecord *_swig_go_0) {
EcflowUtil::NodeStatusRecord *arg1 = (EcflowUtil::NodeStatusRecord *) 0 ;
arg1 = *(EcflowUtil::NodeStatusRecord **)&_swig_go_0;
delete arg1;
}
EcflowUtil::EcflowClientWrapper *_wrap_new_EcflowClientWrapper_ecflow_client_149cbf1b1d6d7ca4(_gostring_ _swig_go_0, _gostring_ _swig_go_1) {
std::string *arg1 = 0 ;
std::string *arg2 = 0 ;
EcflowUtil::EcflowClientWrapper *result = 0 ;
EcflowUtil::EcflowClientWrapper *_swig_go_result;
std::string arg1_str(_swig_go_0.p, _swig_go_0.n);
arg1 = &arg1_str;
std::string arg2_str(_swig_go_1.p, _swig_go_1.n);
arg2 = &arg2_str;
result = (EcflowUtil::EcflowClientWrapper *)new EcflowUtil::EcflowClientWrapper((std::string const &)*arg1,(std::string const &)*arg2);
*(EcflowUtil::EcflowClientWrapper **)&_swig_go_result = (EcflowUtil::EcflowClientWrapper *)result;
return _swig_go_result;
}
void _wrap_delete_EcflowClientWrapper_ecflow_client_149cbf1b1d6d7ca4(EcflowUtil::EcflowClientWrapper *_swig_go_0) {
EcflowUtil::EcflowClientWrapper *arg1 = (EcflowUtil::EcflowClientWrapper *) 0 ;
arg1 = *(EcflowUtil::EcflowClientWrapper **)&_swig_go_0;
delete arg1;
}
void _wrap_EcflowClientWrapper_setConnectTimeout_ecflow_client_149cbf1b1d6d7ca4(EcflowUtil::EcflowClientWrapper *_swig_go_0, intgo _swig_go_1) {
EcflowUtil::EcflowClientWrapper *arg1 = (EcflowUtil::EcflowClientWrapper *) 0 ;
int arg2 ;
arg1 = *(EcflowUtil::EcflowClientWrapper **)&_swig_go_0;
arg2 = (int)_swig_go_1;
(arg1)->setConnectTimeout(arg2);
}
intgo _wrap_EcflowClientWrapper_sync_ecflow_client_149cbf1b1d6d7ca4(EcflowUtil::EcflowClientWrapper *_swig_go_0) {
EcflowUtil::EcflowClientWrapper *arg1 = (EcflowUtil::EcflowClientWrapper *) 0 ;
int result;
intgo _swig_go_result;
arg1 = *(EcflowUtil::EcflowClientWrapper **)&_swig_go_0;
result = (int)(arg1)->sync();
_swig_go_result = result;
return _swig_go_result;
}
std::vector< EcflowUtil::NodeStatusRecord > *_wrap_EcflowClientWrapper_statusRecords_ecflow_client_149cbf1b1d6d7ca4(EcflowUtil::EcflowClientWrapper *_swig_go_0) {
EcflowUtil::EcflowClientWrapper *arg1 = (EcflowUtil::EcflowClientWrapper *) 0 ;
std::vector< EcflowUtil::NodeStatusRecord > result;
std::vector< EcflowUtil::NodeStatusRecord > *_swig_go_result;
arg1 = *(EcflowUtil::EcflowClientWrapper **)&_swig_go_0;
result = (arg1)->statusRecords();
*(std::vector< EcflowUtil::NodeStatusRecord > **)&_swig_go_result = new std::vector< EcflowUtil::NodeStatusRecord >(result);
return _swig_go_result;
}
_gostring_ _wrap_EcflowClientWrapper_statusRecordsJson_ecflow_client_149cbf1b1d6d7ca4(EcflowUtil::EcflowClientWrapper *_swig_go_0) {
EcflowUtil::EcflowClientWrapper *arg1 = (EcflowUtil::EcflowClientWrapper *) 0 ;
std::string result;
_gostring_ _swig_go_result;
arg1 = *(EcflowUtil::EcflowClientWrapper **)&_swig_go_0;
result = (arg1)->statusRecordsJson();
_swig_go_result = Swig_AllocateString((&result)->data(), (&result)->length());
return _swig_go_result;
}
_gostring_ _wrap_EcflowClientWrapper_errorMessage_ecflow_client_149cbf1b1d6d7ca4(EcflowUtil::EcflowClientWrapper *_swig_go_0) {
EcflowUtil::EcflowClientWrapper *arg1 = (EcflowUtil::EcflowClientWrapper *) 0 ;
std::string result;
_gostring_ _swig_go_result;
arg1 = *(EcflowUtil::EcflowClientWrapper **)&_swig_go_0;
result = (arg1)->errorMessage();
_swig_go_result = Swig_AllocateString((&result)->data(), (&result)->length());
return _swig_go_result;
}
std::vector< EcflowUtil::NodeStatusRecord > *_wrap_new_NodeStatusRecordVector__SWIG_0_ecflow_client_149cbf1b1d6d7ca4() {
std::vector< EcflowUtil::NodeStatusRecord > *result = 0 ;
std::vector< EcflowUtil::NodeStatusRecord > *_swig_go_result;
result = (std::vector< EcflowUtil::NodeStatusRecord > *)new std::vector< EcflowUtil::NodeStatusRecord >();
*(std::vector< EcflowUtil::NodeStatusRecord > **)&_swig_go_result = (std::vector< EcflowUtil::NodeStatusRecord > *)result;
return _swig_go_result;
}
std::vector< EcflowUtil::NodeStatusRecord > *_wrap_new_NodeStatusRecordVector__SWIG_1_ecflow_client_149cbf1b1d6d7ca4(long long _swig_go_0) {
std::vector< EcflowUtil::NodeStatusRecord >::size_type arg1 ;
std::vector< EcflowUtil::NodeStatusRecord > *result = 0 ;
std::vector< EcflowUtil::NodeStatusRecord > *_swig_go_result;
arg1 = (size_t)_swig_go_0;
result = (std::vector< EcflowUtil::NodeStatusRecord > *)new std::vector< EcflowUtil::NodeStatusRecord >(arg1);
*(std::vector< EcflowUtil::NodeStatusRecord > **)&_swig_go_result = (std::vector< EcflowUtil::NodeStatusRecord > *)result;
return _swig_go_result;
}
std::vector< EcflowUtil::NodeStatusRecord > *_wrap_new_NodeStatusRecordVector__SWIG_2_ecflow_client_149cbf1b1d6d7ca4(std::vector< EcflowUtil::NodeStatusRecord > *_swig_go_0) {
std::vector< EcflowUtil::NodeStatusRecord > *arg1 = 0 ;
std::vector< EcflowUtil::NodeStatusRecord > *result = 0 ;
std::vector< EcflowUtil::NodeStatusRecord > *_swig_go_result;
arg1 = *(std::vector< EcflowUtil::NodeStatusRecord > **)&_swig_go_0;
result = (std::vector< EcflowUtil::NodeStatusRecord > *)new std::vector< EcflowUtil::NodeStatusRecord >((std::vector< EcflowUtil::NodeStatusRecord > const &)*arg1);
*(std::vector< EcflowUtil::NodeStatusRecord > **)&_swig_go_result = (std::vector< EcflowUtil::NodeStatusRecord > *)result;
return _swig_go_result;
}
long long _wrap_NodeStatusRecordVector_size_ecflow_client_149cbf1b1d6d7ca4(std::vector< EcflowUtil::NodeStatusRecord > *_swig_go_0) {
std::vector< EcflowUtil::NodeStatusRecord > *arg1 = (std::vector< EcflowUtil::NodeStatusRecord > *) 0 ;
std::vector< EcflowUtil::NodeStatusRecord >::size_type result;
long long _swig_go_result;
arg1 = *(std::vector< EcflowUtil::NodeStatusRecord > **)&_swig_go_0;
result = ((std::vector< EcflowUtil::NodeStatusRecord > const *)arg1)->size();
_swig_go_result = result;
return _swig_go_result;
}
long long _wrap_NodeStatusRecordVector_capacity_ecflow_client_149cbf1b1d6d7ca4(std::vector< EcflowUtil::NodeStatusRecord > *_swig_go_0) {
std::vector< EcflowUtil::NodeStatusRecord > *arg1 = (std::vector< EcflowUtil::NodeStatusRecord > *) 0 ;
std::vector< EcflowUtil::NodeStatusRecord >::size_type result;
long long _swig_go_result;
arg1 = *(std::vector< EcflowUtil::NodeStatusRecord > **)&_swig_go_0;
result = ((std::vector< EcflowUtil::NodeStatusRecord > const *)arg1)->capacity();
_swig_go_result = result;
return _swig_go_result;
}
void _wrap_NodeStatusRecordVector_reserve_ecflow_client_149cbf1b1d6d7ca4(std::vector< EcflowUtil::NodeStatusRecord > *_swig_go_0, long long _swig_go_1) {
std::vector< EcflowUtil::NodeStatusRecord > *arg1 = (std::vector< EcflowUtil::NodeStatusRecord > *) 0 ;
std::vector< EcflowUtil::NodeStatusRecord >::size_type arg2 ;
arg1 = *(std::vector< EcflowUtil::NodeStatusRecord > **)&_swig_go_0;
arg2 = (size_t)_swig_go_1;
(arg1)->reserve(arg2);
}
bool _wrap_NodeStatusRecordVector_isEmpty_ecflow_client_149cbf1b1d6d7ca4(std::vector< EcflowUtil::NodeStatusRecord > *_swig_go_0) {
std::vector< EcflowUtil::NodeStatusRecord > *arg1 = (std::vector< EcflowUtil::NodeStatusRecord > *) 0 ;
bool result;
bool _swig_go_result;
arg1 = *(std::vector< EcflowUtil::NodeStatusRecord > **)&_swig_go_0;
result = (bool)((std::vector< EcflowUtil::NodeStatusRecord > const *)arg1)->empty();
_swig_go_result = result;
return _swig_go_result;
}
void _wrap_NodeStatusRecordVector_clear_ecflow_client_149cbf1b1d6d7ca4(std::vector< EcflowUtil::NodeStatusRecord > *_swig_go_0) {
std::vector< EcflowUtil::NodeStatusRecord > *arg1 = (std::vector< EcflowUtil::NodeStatusRecord > *) 0 ;
arg1 = *(std::vector< EcflowUtil::NodeStatusRecord > **)&_swig_go_0;
(arg1)->clear();
}
void _wrap_NodeStatusRecordVector_add_ecflow_client_149cbf1b1d6d7ca4(std::vector< EcflowUtil::NodeStatusRecord > *_swig_go_0, EcflowUtil::NodeStatusRecord *_swig_go_1) {
std::vector< EcflowUtil::NodeStatusRecord > *arg1 = (std::vector< EcflowUtil::NodeStatusRecord > *) 0 ;
std::vector< EcflowUtil::NodeStatusRecord >::value_type *arg2 = 0 ;
arg1 = *(std::vector< EcflowUtil::NodeStatusRecord > **)&_swig_go_0;
arg2 = *(std::vector< EcflowUtil::NodeStatusRecord >::value_type **)&_swig_go_1;
(arg1)->push_back((std::vector< EcflowUtil::NodeStatusRecord >::value_type const &)*arg2);
}
EcflowUtil::NodeStatusRecord *_wrap_NodeStatusRecordVector_get_ecflow_client_149cbf1b1d6d7ca4(std::vector< EcflowUtil::NodeStatusRecord > *_swig_go_0, intgo _swig_go_1) {
std::vector< EcflowUtil::NodeStatusRecord > *arg1 = (std::vector< EcflowUtil::NodeStatusRecord > *) 0 ;
int arg2 ;
std::vector< EcflowUtil::NodeStatusRecord >::value_type *result = 0 ;
EcflowUtil::NodeStatusRecord *_swig_go_result;
arg1 = *(std::vector< EcflowUtil::NodeStatusRecord > **)&_swig_go_0;
arg2 = (int)_swig_go_1;
try {
result = (std::vector< EcflowUtil::NodeStatusRecord >::value_type *) &std_vector_Sl_EcflowUtil_NodeStatusRecord_Sg__get(arg1,arg2);
} catch(std::out_of_range &_e) {
(void)_e;
_swig_gopanic("C++ std::out_of_range exception thrown");
}
*(std::vector< EcflowUtil::NodeStatusRecord >::value_type **)&_swig_go_result = result;
return _swig_go_result;
}
void _wrap_NodeStatusRecordVector_set_ecflow_client_149cbf1b1d6d7ca4(std::vector< EcflowUtil::NodeStatusRecord > *_swig_go_0, intgo _swig_go_1, EcflowUtil::NodeStatusRecord *_swig_go_2) {
std::vector< EcflowUtil::NodeStatusRecord > *arg1 = (std::vector< EcflowUtil::NodeStatusRecord > *) 0 ;
int arg2 ;
std::vector< EcflowUtil::NodeStatusRecord >::value_type *arg3 = 0 ;
arg1 = *(std::vector< EcflowUtil::NodeStatusRecord > **)&_swig_go_0;
arg2 = (int)_swig_go_1;
arg3 = *(std::vector< EcflowUtil::NodeStatusRecord >::value_type **)&_swig_go_2;
try {
std_vector_Sl_EcflowUtil_NodeStatusRecord_Sg__set(arg1,arg2,(EcflowUtil::NodeStatusRecord const &)*arg3);
} catch(std::out_of_range &_e) {
(void)_e;
_swig_gopanic("C++ std::out_of_range exception thrown");
}
}
void _wrap_delete_NodeStatusRecordVector_ecflow_client_149cbf1b1d6d7ca4(std::vector< EcflowUtil::NodeStatusRecord > *_swig_go_0) {
std::vector< EcflowUtil::NodeStatusRecord > *arg1 = (std::vector< EcflowUtil::NodeStatusRecord > *) 0 ;
arg1 = *(std::vector< EcflowUtil::NodeStatusRecord > **)&_swig_go_0;
delete arg1;
}
#ifdef __cplusplus
}
#endif