-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathwsman-client_opt.i
667 lines (620 loc) · 14.5 KB
/
wsman-client_opt.i
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
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
/*
*
* ClientOptions
*
* client option declarations for openwsman swig bindings
*
*/
%rename(ClientOptions) client_opt_t;
%nodefault client_opt_t;
typedef struct {} client_opt_t;
/*
* Document-class: ClientOptions
*
* ClientOptions control the behaviour of the Client connection
*
* The primary use of ClientOptions in normal operations is adding
* selectors - key/value pairs added to the request URL.
*
* For WS-CIM operations, selectors define the key attributes for
* the selected CIM class to address a specific instance of the class.
*
*/
%extend client_opt_t {
client_opt_t() {
client_opt_t *options = wsmc_options_init();
return options;
}
~client_opt_t() {
wsmc_options_destroy( $self );
}
/*
* Request to dump all operations to the dumpfile
*
* Used for debugging on the wire-level
*
* See also: clear_dump_request
*
* call-seq:
* options.set_dump_request
*
*/
void set_dump_request(void) {
wsmc_set_action_option($self, FLAG_DUMP_REQUEST );
}
/*
* Reset dump all operations to the dumpfile
*
* Used for debugging on the wire-level
*
* See also: set_dump_request
*
* call-seq:
* options.clear_dump_request
*
*/
void clear_dump_request(void) {
wsmc_clear_action_option($self, FLAG_DUMP_REQUEST );
}
#if defined(SWIGRUBY)
%rename( "flags=" ) set_flags(unsigned long flags);
#endif
/*
* set option flag(s)
*
* adds new flag(s) to options
*
* call-seq:
* options.flags = Openwsman::FLAG_ENUMERATION_OPTIMIZATION
*
*/
void set_flags(unsigned long flags) {
wsmc_set_action_option($self, flags);
}
#if defined(SWIGRUBY)
%rename( "flags" ) get_flags();
#endif
/*
* get option flag(s)
*
* return current flags bitmask
*
* call-seq:
* optins.flags -> Integer
*
*/
unsigned long get_flags() {
return wsmc_get_action_option($self);
}
/*
* clear option flag(s)
*
* clears specific flag(s) from options
*
* call-seq:
* options.clear_flags Openwsman::FLAG_ENUMERATION_OPTIMIZATION
*
*/
void clear_flags(unsigned long flags) {
wsmc_clear_action_option($self, flags);
}
/*
* reset option flags
*
* sets option flags bitmask to FLAG_NONE
*
* call-seq:
* options.reset_flags
*
*/
void reset_flags() {
wsmc_clear_action_option($self, ~FLAG_NONE);
}
#if defined(SWIGRUBY)
%rename( "max_envelope_size=" ) set_max_envelope_size(unsigned long size);
#endif
/*
* Limit size of result document
*
* call-seq:
* options.max_envelope_size = 10240
*
*/
void set_max_envelope_size(unsigned long size) {
$self->max_envelope_size = size;
}
#if defined(SWIGRUBY)
%rename( "max_envelope_size" ) get_max_envelope_size();
#endif
/*
* Return size limit of result document
*
* call-seq:
* options.max_envelope_size -> Integer
*
*/
unsigned long get_max_envelope_size() {
return $self->max_envelope_size;
}
#if defined(SWIGRUBY)
%rename( "max_elements=" ) set_max_elements(int elements);
#endif
/*
* Limit number of elements returned by enumeration
*
* call-seq:
* options.max_elements = 42
*
*/
void set_max_elements(int elements) {
$self->max_elements = elements;
}
#if defined(SWIGRUBY)
%rename( "max_elements" ) get_max_elements();
#endif
/*
* Return enumeration elements limit
*
* call-seq:
* options.max_elements -> Integer
*
*/
int get_max_elements() {
return $self->max_elements;
}
#if defined(SWIGRUBY)
%rename( "timeout=" ) set_timeout(unsigned long timeout);
#endif
/*
* Operation timeout in milliseconds
* See Openwsman::Transport.timeout for transport timeout
*
* call-seq:
* options.timeout = 60*1000 # 60 seconds
*
*/
void set_timeout(unsigned long timeout) {
$self->timeout = timeout;
}
#if defined(SWIGRUBY)
%rename( "timeout" ) get_timeout();
#endif
/*
* Return operation timeout in milliseconds
* See Openwsman::Transport.timeout for transport timeout
*
* call-seq:
* options.timeout -> Integer
*
*/
unsigned long get_timeout() {
return $self->timeout;
}
#if defined(SWIGRUBY)
%rename( "fragment=" ) set_fragment(char *fragment);
#endif
/*
* Set fragment filter
* See DSP0226, section 7.7.
* (Supported Dialects: XPATH)
*
* call-seq:
* options.fragment = "xpath/expression"
*
*/
void set_fragment(char *fragment) {
wsmc_set_fragment(fragment, $self);
}
#if defined(SWIGRUBY)
%rename( "fragment" ) get_fragment();
#endif
/*
* Get fragment filter
* See DSP0226, section 7.7.
*
* call-seq:
* options.fragment -> String
*
*/
const char *get_fragment() {
return $self->fragment;
}
#if defined(SWIGRUBY)
%rename( "cim_namespace=" ) set_cim_namespace(char *cim_namespace);
#endif
/*
* Set CIM Namespace for Openwsman
* (default is root/cimv2)
* Note:
* Microsoft WinRM set the resource namespace by attaching it
* to the resource URI
*
* See also: Openwsman.epr_prefix_for
*
* call-seq:
* options.cim_namespace = "root/interop"
*
*/
void set_cim_namespace(char *cim_namespace) {
wsmc_set_cim_ns(cim_namespace, $self);
}
#if defined(SWIGRUBY)
%rename( "cim_namespace" ) get_cim_namespace();
#endif
/*
* Get CIM Namespace for Openwsman
* Note:
* Microsoft WinRM set the resource namespace by attaching it
* to the resource URI
*
* See also: Openwsman.epr_prefix_for
*
* call-seq:
* options.cim_namespace -> String
*
*/
const char *get_cim_namespace() {
return $self->cim_ns;
}
#if defined(SWIGRUBY)
%rename( "reference=" ) set_reference(const char *reference);
#endif
/*
* Set WS-Addressing reference properties
* Argument must the string representation of a valid XML document
*
* call-seq:
* options.reference = "<xml ...>"
*
*/
void set_reference(const char *reference) {
wsmc_set_reference(reference, $self);
}
#if defined(SWIGRUBY)
%rename( "reference" ) get_reference();
#endif
/*
* Get WS-Addressing reference properties
* Returns the string representation of a valid XML document
*
* call-seq:
* options.reference -> String
*
*/
const char *get_reference() {
return $self->reference;
}
#if defined(SWIGRUBY)
/*
* Add an option (for OptionSet) as key/value pair
*
* NOTE:
* the value must be properly escaped (replace & with &, etc.)
* in Ruby use CGI::escapeHTML()
*
* call-seq:
* options.add_option "Name", "Value"
*
*/
void add_option(VALUE k, VALUE v)
{
const char *key = as_string(k);
const char *value = as_string(v);
#else
void add_option(const char *key, const char *value)
{
#endif
wsmc_add_option($self, key, value);
}
#if defined(SWIGRUBY)
%rename( "options=" ) set_options(VALUE hash);
/*
* Set options (for OptionSet) from Hash
*
* NOTE:
* the values must be properly escaped (replace & with &, etc.)
* in Ruby use CGI::escapeHTML()
*
* call-seq:
* options.options = { "Name" => "Value", ... }
*
*/
void set_options(VALUE hash)
{
$self->options = value2hash(NULL, hash, 0);
}
%rename( "options" ) get_options(void);
/*
* Get options (for OptionSet) as Hash
*
* call-seq:
* options.options -> Hash
*
*/
VALUE get_options(void)
{
return hash2value($self->options);
}
#endif
#if defined(SWIGRUBY)
/*
* Add a selector as key/value pair
*
* NOTE:
* the string value must be properly escaped (replace & with &, etc.)
* in Ruby use CGI::escapeHTML()
*
* call-seq:
* options.add_selector "Key", "Value"
* options.add_selector "Key", end_point_reference
*
*/
void add_selector(VALUE k, VALUE v)
{
const char *key = as_string(k);
KLASS_DECL(SwigClassEndPointReference,SWIGTYPE_p_epr_t);
if (CLASS_OF(v) == KLASS_OF(SwigClassEndPointReference)) {
epr_t *epr;
SWIG_ConvertPtr(v, (void **)&epr, SWIGTYPE_p_epr_t, 0);
wsmc_add_selector_epr($self, key, epr);
}
else {
const char *value = as_string(v);
wsmc_add_selector($self, key, value);
}
}
#else
void add_selector(const char *key, const char *value)
{
wsmc_add_selector($self, key, value);
}
#endif
#if defined(SWIGRUBY)
%rename( "selectors" ) get_selectors(void);
/*
* Get selectors as Hash
*
* call-seq:
* options.selectors -> Hash
*
*/
VALUE get_selectors(void)
{
return kv_list_to_hash($self->selectors);
}
#endif
#if defined(SWIGRUBY)
/*
* Add a property as key/value pair
* * Input parameters to 'invoke'd methods are represented as ClientOption properties
* * Key is evaluated as String
* * Value is evaluated as String or EndPointReference
*
* call-seq:
* options.add_property "Key", "Value"
* options.add_property "Key", EndPointReference.new(...)
*
*/
void add_property(VALUE k, VALUE v)
{
const char *key = as_string(k);
KLASS_DECL(SwigClassEndPointReference,SWIGTYPE_p_epr_t);
if (CLASS_OF(v) == KLASS_OF(SwigClassEndPointReference)) {
const epr_t *epr;
SWIG_ConvertPtr(v, (void **)&epr, SWIGTYPE_p_epr_t, 0);
wsmc_add_property_epr($self, key, epr);
}
else {
const char *value = as_string(v);
wsmc_add_property($self, key, value);
}
}
#else
/*
* Add a string property as key/value pair
* * Input parameters to 'invoke'd methods are represented as ClientOption properties
*
* call-seq:
* options.add_property( "Key", "Value" )
*
*/
void add_property(const char *key, const char *value)
{
wsmc_add_property($self, key, value);
}
/*
* Add a string property as key/value pair (an 'add_property' analogue for adding array items)
* * Input parameters to 'invoke'd methods are represented as ClientOption properties
*
* call-seq:
* options.add_property( "Key", "Value" )
*
*/
void add_property_array_item(const char *key, const char *value)
{
wsmc_add_property_array_item($self, key, value);
}
/*
* Add an EndPointReference property as key/value pair
* Input parameters to 'invoke'd methods are represented as ClientOption properties
*
* call-seq:
* options.add_property( String, EndPointReference )
*
*/
void add_property(const char *key, const epr_t *epr)
{
wsmc_add_property_epr($self, key, epr);
}
#endif
#if defined(SWIGRUBY)
%rename( "properties" ) get_properties(void);
/*
* Get properties as Hash
* * Input parameters to 'invoke'd methods are represented as ClientOption properties
*
* call-seq:
* options.properties -> Hash
*
*/
VALUE get_properties(void)
{
return kv_list_to_hash($self->properties);
}
#endif
#if defined(SWIGRUBY)
%rename( "delivery_uri=" ) set_delivery_uri(const char *delivery_uri);
#endif
/*
* Set delivery uri
*
* call-seq:
* options.delivery_uri = "http://..."
*
*/
void set_delivery_uri( const char *delivery_uri ) {
wsmc_set_delivery_uri(delivery_uri, $self);
}
/*
* Get delivery uri
*
* call-seq:
* options.delivery_uri -> String
*
*/
const char *delivery_uri() {
return $self->delivery_uri;
}
#if defined(SWIGRUBY)
%rename( "sub_expiry=" ) set_sub_expiry(float event_subscription_expire);
#endif
/*
* Set subscription expiry timeout (in seconds.milliseconds (float))
*
* call-seq:
* options.sub_expiry = 600 # 10 mins
*
*/
void set_sub_expiry(float event_subscription_expire) {
wsmc_set_sub_expiry(event_subscription_expire, $self);
}
/*
* Get subscription expiry timeout (in seconds)
*
* call-seq:
* options.sub_expiry -> Float
*
*/
float sub_expiry() {
return $self->expires;
}
#if defined(SWIGRUBY)
%rename("heartbeat_interval=") set_heartbeat_interval(float heartbeat_interval);
#endif
/*
* Set subscription heartbeat interval (in seconds.milliseconds (float))
*
* call-seq:
* options.heartbeat_interval = 60 # every minute
*
*/
void set_heartbeat_interval(float heartbeat_interval) {
wsmc_set_heartbeat_interval(heartbeat_interval, $self);
}
/*
* Get subscription heartbeat interval (in seconds)
*
* call-seq:
* options.heartbeat_interval -> Float
*
*/
float heartbeat_interval() {
return $self->heartbeat_interval;
}
#if defined(SWIGRUBY)
%rename( "delivery_mode=" ) set_delivery_mode(unsigned int delivery_mode);
#endif
/*
* Set subscription delivery mode (push, pushwithack,events,pull)
*
* call-seq:
* options.delivery_mode = Openwsman::WSMAN_DELIVERY_PUSH
*
*/
void set_delivery_mode(unsigned int delivery_mode) {
if (delivery_mode > WSMAN_DELIVERY_PULL)
SWIG_exception( SWIG_ValueError, "Bad delivery mode" );
wsmc_set_delivery_mode(delivery_mode, $self);
#if defined(SWIGPYTHON) || defined(SWIGPERL) || defined(SWIGJAVA)
fail:
return;
#endif
}
/*
* Get subscription delivery mode (push, pushwithack,events,pull)
*
* call-seq:
* options.delivery_mode -> Integer
*
*/
int delivery_mode() {
return $self->delivery_mode;
}
#if defined(SWIGRUBY)
%rename( "delivery_security_mode=" ) set_delivery_security_mode(unsigned int delivery_mode);
#endif
/*
* Set subscription delivery security mode
*
* (auto, http basic, http digest, https basic, https digest,
* https mutual, https mutual basic, https mutual digest,
* http spnego kerberos, https spnego kerberos,
* https mutual spnego kerberos)
*
* call-seq:
* options.delivery_security_mode = Openwsman::WSMAN_DELIVERY_SEC_HTTPS_BASIC
*
*/
void set_delivery_security_mode(unsigned int delivery_sec_mode) {
if (delivery_sec_mode > WSMAN_DELIVERY_SEC_HTTP_SPNEGO_KERBEROS)
SWIG_exception( SWIG_ValueError, "Bad delivery security mode" );
wsmc_set_delivery_security_mode(delivery_sec_mode, $self);
#if defined(SWIGPYTHON) || defined(SWIGPERL) || defined(SWIGJAVA)
fail:
return;
#endif
}
/*
* Get subscription delivery security mode
*
* call-seq:
* options.delivery_security_mode -> Integer
*
*/
int delivery_sec_mode() {
return $self->delivery_sec_mode;
}
#if defined(SWIGRUBY)
%rename("locale=") set_locale(const char *locale);
#endif
/*
* Set request locale
*
* call-seq:
* options.locale = "en_us"
*
*/
void set_locale(const char *locale) {
wsmc_set_locale($self, locale);
}
/*
* Get locales
*
* call-seq:
* options.locale -> String
*
*/
const char *locale() {
return $self->locale;
}
}