summaryrefslogtreecommitdiff
path: root/swig/Callbacks.i
blob: 1c5e83c12c589be0c9be1357f566e5d3c3c40998 (plain)
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
/*
 * Callbacks.i
 *
 * Callback glue code
 *
 * Author: Klaus Kaempf <kkaempf@suse.de>
 *
 */


/*
 * Commit callbacks
 *
 */

%{
#include <cstdarg>
#include <zypp/ZYppCallbacks.h>
/*
 * Helpers
 *
 */

/*
 * Action
 * Symbol representation of :abort, :retry, and :ignore
 *
 */

static Target_Type action_abort()
  {
#if defined(SWIGRUBY)
    static VALUE value = Qnil;
    if (value == Qnil)
      value = ID2SYM(rb_intern("abort"));
    return value;
#else
  return Target_String("abort");
#endif
    return 0; // fallback
  }

static Target_Type action_retry()
  {
#if defined(SWIGRUBY)
    static VALUE value = Qnil;
    if (value == Qnil)
      value = ID2SYM(rb_intern("retry"));
    return value;
#else
  return Target_String("retry");
#endif
    return 0; // fallback
  }

static Target_Type action_ignore()
  {
#if defined(SWIGRUBY)
    static VALUE value = Qnil;
    if (value == Qnil)
      value = ID2SYM(rb_intern("ignore"));
    return value;
#else
  return Target_String("ignore");
#endif
    return 0; // fallback
  }

/*
 * Error
 * Symbol representation of :no_error, :not_found, :io, :invalid
 *
 */

static Target_Type error_no_error()
  {
#if defined(SWIGRUBY)
    static VALUE value = Qnil;
    if (value == Qnil)
      value = ID2SYM(rb_intern("no_error"));
    return value;
#else
  return Target_String("no_error");
#endif
    return 0; // fallback
  }

static Target_Type error_not_found()
  {
#if defined(SWIGRUBY)
    static VALUE value = Qnil;
    if (value == Qnil)
      value = ID2SYM(rb_intern("not_found"));
    return value;
#else
  return Target_String("not_found");
#endif
    return 0; // fallback
  }

static Target_Type error_io()
  {
#if defined(SWIGRUBY)
    static VALUE value = Qnil;
    if (value == Qnil)
      value = ID2SYM(rb_intern("io"));
    return value;
#else
  return Target_String("io");
#endif
    return 0; // fallback
  }

static Target_Type error_invalid()
  {
#if defined(SWIGRUBY)
    static VALUE value = Qnil;
    if (value == Qnil)
      value = ID2SYM(rb_intern("invalid"));
    return value;
#else
  return Target_String("invalid");
#endif
    return 0; // fallback
  }

/*
 * This is what makes people hate the ZYPP API. Why can't there
 * be _one_ Error type ?!
 */
static Target_Type
remove_error2target(target::rpm::RemoveResolvableReport::Error error)
{
  Target_Type e;
  switch(error) {
    case target::rpm::RemoveResolvableReport::NO_ERROR:  e = error_no_error(); break;
    case target::rpm::RemoveResolvableReport::NOT_FOUND: e = error_not_found(); break;
    case target::rpm::RemoveResolvableReport::IO:        e = error_io(); break;
    case target::rpm::RemoveResolvableReport::INVALID:   e = error_invalid(); break;
  }
  return e;
}


/*
 * This is what makes people hate the ZYPP API. Why can't there
 * be _one_ Error type ?!
 */
static Target_Type
install_error2target(target::rpm::InstallResolvableReport::Error error)
{
  Target_Type e;
  switch(error) {
    case target::rpm::InstallResolvableReport::NO_ERROR:  e = error_no_error(); break;
    case target::rpm::InstallResolvableReport::NOT_FOUND: e = error_not_found(); break;
    case target::rpm::InstallResolvableReport::IO:        e = error_io(); break;
    case target::rpm::InstallResolvableReport::INVALID:   e = error_invalid(); break;
  }
  return e;
}


/*
 * This is what makes people hate the ZYPP API. Why can't there
 * be _one_ Action type ?!
 */
static target::PatchScriptReport::Action
target2patch_script_action(Target_Type a)
{
#if defined(SWIGPYTHON)
  const char *s;
  if (!PyString_Check(a)) {
    SWIG_exception_fail(SWIG_TypeError, "Expected string type");
  }
  s = PyString_AsString(a);
  if (!strcmp(s, "abort"))
    return zypp::target::PatchScriptReport::ABORT;
  else if (!strcmp(s, "retry"))
    return zypp::target::PatchScriptReport::RETRY;
  else if (!strcmp(s, "ignore"))
    return zypp::target::PatchScriptReport::IGNORE;
  SWIG_exception_fail(SWIG_ArgError(SWIG_ValueError), "Expected \"abort\", \"retry\"  or \"ignore\"");
#endif
#if defined(SWIGRUBY)
  if (a == action_abort())
    return zypp::target::PatchScriptReport::ABORT;
  else if (a == action_retry())
    return zypp::target::PatchScriptReport::RETRY;
  else if (a == action_ignore())
    return zypp::target::PatchScriptReport::IGNORE;
  SWIG_exception_fail(SWIG_ArgError(SWIG_ValueError), "Expected :abort, :retry  or :ignore");
#endif
fail:
  return zypp::target::PatchScriptReport::ABORT;
}


static target::rpm::RemoveResolvableReport::Action
target2removal_action(Target_Type a)
{
#if defined(SWIGPYTHON)
  const char *s;
  if (!PyString_Check(a)) {
    SWIG_exception_fail(SWIG_TypeError, "Expected string type");
  }
  s = PyString_AsString(a);
  if (!strcmp(s, "abort"))
    return zypp::target::rpm::RemoveResolvableReport::ABORT;
  else if (!strcmp(s, "retry"))
    return zypp::target::rpm::RemoveResolvableReport::RETRY;
  else if (!strcmp(s, "ignore"))
    return zypp::target::rpm::RemoveResolvableReport::IGNORE;
  SWIG_exception_fail(SWIG_ArgError(SWIG_ValueError), "Expected \"abort\", \"retry\" or \"ignore\"");
#endif
#if defined(SWIGRUBY)
  if (a == action_abort())
    return zypp::target::rpm::RemoveResolvableReport::ABORT;
  else if (a == action_retry())
    return zypp::target::rpm::RemoveResolvableReport::RETRY;
  else if (a == action_ignore())
    return zypp::target::rpm::RemoveResolvableReport::IGNORE;
  SWIG_exception_fail(SWIG_ArgError(SWIG_ValueError), "Expected :abort, :retry or :ignore");
#endif
fail:
  return zypp::target::rpm::RemoveResolvableReport::ABORT;
}


static target::rpm::InstallResolvableReport::Action
target2install_action(Target_Type a)
{
#if defined(SWIGPYTHON)
  const char *s;
  if (!PyString_Check(a)) {
    SWIG_exception_fail(SWIG_TypeError, "Expected string type");
  }
  s = PyString_AsString(a);
  if (!strcmp(s, "abort"))
    return zypp::target::rpm::InstallResolvableReport::ABORT;
  else if (!strcmp(s, "retry"))
    return zypp::target::rpm::InstallResolvableReport::RETRY;
  else if (!strcmp(s, "ignore"))
    return zypp::target::rpm::InstallResolvableReport::IGNORE;
  SWIG_exception_fail(SWIG_ArgError(SWIG_ValueError), "Expected \"abort\", \"retry\" or \"ignore\"");
#endif
#if defined(SWIGRUBY)
  if (a == action_abort())
    return zypp::target::rpm::InstallResolvableReport::ABORT;
  else if (a == action_retry())
    return zypp::target::rpm::InstallResolvableReport::RETRY;
  else if (a == action_ignore())
    return zypp::target::rpm::InstallResolvableReport::IGNORE;
  SWIG_exception_fail(SWIG_ArgError(SWIG_ValueError), "Expected :abort, :retry or :ignore");
#endif
fail:
  return zypp::target::rpm::InstallResolvableReport::ABORT;
}


/*
 * target_call
 *
 * Generic helper to call a function of the target language
 *
 */
static Target_Type
target_call(Target_Type instance, const char *name, int argc, ... )
{
    va_list ap;
    va_start(ap, argc);
#if defined(SWIGPYTHON)
    /*
     * Python call with multiple args is like Array
     */
    Target_Type argv = PyTuple_New(argc);
    int i;
    for (i = 0; i < argc; ++i)
    {
        PyObject* arg = va_arg(ap, PyObject*);
        if (arg == NULL)
        {
            arg = Py_None;
            Py_IncRef(arg);
        }
        PyTuple_SET_ITEM(argv, i, arg);
    }

    PyObject *pyfunc = PyObject_GetAttrString(instance, name);
    PyObject *result = NULL;

    if (pyfunc == NULL)
    {
        PyErr_Print();
        PyErr_Clear();
        goto cleanup;
    }
    if (! PyCallable_Check(pyfunc))
    {
        fprintf(stderr,"%s not callable\n", name);
        goto cleanup;
    }

    result = PyObject_CallObject(pyfunc, argv);
    if (PyErr_Occurred())
    {
        fprintf(stderr,"%s returned error\n", name);
        PyErr_Print();
        PyErr_Clear();
        goto cleanup;
    }

cleanup:
    if (pyfunc) Py_DecRef(pyfunc);
    if (argv) Py_DecRef(argv);
#endif
#if defined(SWIGRUBY)
    /*
     * Ruby call with multiple args is like argc/argv
     */
    Target_Type *argv = (Target_Type *)alloca(argc * sizeof(Target_Type));
    Target_Type *argvp = argv;
    int i = argc;
    while(i-- > 0) {
      *argvp++ = va_arg(ap, Target_Type);
    }
    VALUE result = rb_funcall3( instance, rb_intern(name), argc, argv );
#endif
#if defined(SWIGPERL)
    Target_Type result = Target_Null;
#endif
    va_end(ap);
    return result;
}


/*
 * Patch message
 *
 * calls 'show_message(zypp::Patch)'
 */

struct PatchMessageReportReceiver : public zypp::callback::ReceiveReport<zypp::target::PatchMessageReport>
{

  Target_Type instance;

  /** Display \c patch->message().
   * Return \c true to continue, \c false to abort commit.
   */
  virtual bool show( zypp::Patch::constPtr & patch )
  {
    int result;
    Target_Type r = SWIG_NewPointerObj((void *)&patch, SWIGTYPE_p_zypp__Patch, 0);
    Target_Type res = target_call(instance, "patch_message", 1, r );
#if defined(SWIGPYTHON)
    result = PyObject_IsTrue(res) ? true : false;
    if (res) Py_DecRef(res);
#endif
#if defined(SWIGRUBY)
    result = RTEST(res) ? true : false;
#endif
    return result;
  }
};


/*
 * Patch script
 *
 */

struct PatchScriptReportReceiver : public zypp::callback::ReceiveReport<zypp::target::PatchScriptReport>
{

  Target_Type instance;

  virtual void start( const zypp::Package::constPtr & package,
		      const zypp::Pathname & path_r ) // script path
  {
    Target_Type pac = SWIG_NewPointerObj((void *)&(*package), SWIGTYPE_p_zypp__Package, 0);
    Target_Type path = SWIG_NewPointerObj((void *)&path_r, SWIGTYPE_p_zypp__filesystem__Pathname, 0);
    Target_Type result = target_call(instance, "patch_script_start", 2, pac, path );
#if defined(SWIGPYTHON)
    if (result) Py_DecRef(result);
    Py_DecRef(path);
    Py_DecRef(pac);
#endif
    return;
  }

  /**
   * Progress provides the script output (Notify=OUTPUT). If the script is quiet,
   * from time to time still-alive pings are sent to the ui. (Notify=PING)
   * Returning \c FALSE aborts script execution.
   */
  virtual bool progress( Notify kind, const std::string &output )
  {
    int result;
    Target_Type str = Target_String(output.c_str());
    Target_Type k;
    switch(kind) {
      case OUTPUT:
#if defined(SWIGPYTHON)
        k = Target_String("OUTPUT");
#endif
#if defined(SWIGRUBY)
        k = ID2SYM(rb_intern("OUTPUT"));
#endif
        break;
      case PING:
#if defined(SWIGPYTHON)
        k = Target_String("PING");
#endif
#if defined(SWIGRUBY)
        k = ID2SYM(rb_intern("PING"));
#endif
        break;
    }
    Target_Type res = target_call(instance, "patch_script_progress", 2, k, str );
#if defined(SWIGPYTHON)
    result = PyObject_IsTrue(res) ? true : false;
    if (res) Py_DecRef(res);
    Py_DecRef(k);
    Py_DecRef(str);
#endif
#if defined(SWIGRUBY)
    result = RTEST(res) ? true : false;
#endif
    return result;
  }

  /** Report patch script error.
   */
  virtual Action problem( const std::string & description )
  {
    Action result;
    Target_Type str = Target_String(description.c_str());
    Target_Type res = target_call(instance, "patch_script_problem", 1, str );
    result = target2patch_script_action(res);
#if defined(SWIGPYTHON)
    Py_DecRef(str);
    if (res) Py_DecRef(res);
#endif
    return result;
  }

  /** Patch script finish. */
  virtual void finish()
  {
    Target_Type res = target_call(instance, "patch_script_finish", 0 );
#if defined(SWIGPYTHON)
    if (res) Py_DecRef(res);
#endif
    return;
  }
};


/*
 * Remove
 *
 */

struct RemoveResolvableReportReceiver : public zypp::callback::ReceiveReport<zypp::target::rpm::RemoveResolvableReport>
{

  Target_Type instance;

  virtual void start( Resolvable::constPtr resolvable )
  {
    Target_Type r = SWIG_NewPointerObj((void *)&(*resolvable), SWIGTYPE_p_zypp__Resolvable, 0);
    Target_Type result = target_call(instance, "removal_start", 1, r );
#if defined(SWIGPYTHON)
    Py_DecRef(r);
    if (result) Py_DecRef(result);
#endif
    return;
  }

 /**
   * Return \c true to continue, \c false to abort commit.
   */
  virtual bool progress(int value, zypp::Resolvable::constPtr resolvable)
  {
    bool result;
    Target_Type r = SWIG_NewPointerObj((void *)&(*resolvable), SWIGTYPE_p_zypp__Resolvable, 0);
    Target_Type v = Target_Int(value);
    Target_Type res = target_call(instance, "removal_progress", 2, r, v );
#if defined(SWIGPYTHON)
    result = PyObject_IsTrue(res) ? true : false;
    Py_DecRef(v);
    Py_DecRef(r);
    if (res) Py_DecRef(res);
#endif
#if defined(SWIGRUBY)
    result = RTEST(res) ? true : false;
#endif
    return result;
  }

  virtual Action problem( zypp::Resolvable::constPtr resolvable, target::rpm::RemoveResolvableReport::Error error, const std::string & description )
  {
    Action result;
    Target_Type r = SWIG_NewPointerObj((void *)&(*resolvable), SWIGTYPE_p_zypp__Resolvable, 0);
    Target_Type e = remove_error2target(error);
    Target_Type d = Target_String(description.c_str());
    Target_Type res = target_call(instance, "removal_problem", 3, r, e, d );
    result = target2removal_action(res);
#if defined(SWIGPYTHON)
    if (res) Py_DecRef(res);
    Py_DecRef(d);
    Py_DecRef(e);
    Py_DecRef(r);
#endif
    return result;
  }

  virtual void finish( zypp::Resolvable::constPtr resolvable, Error error, const std::string & reason )
  {
    Target_Type r = SWIG_NewPointerObj((void *)&(*resolvable), SWIGTYPE_p_zypp__Resolvable, 0);
    Target_Type e = remove_error2target(error);
    Target_Type d = Target_String(reason.c_str());
    Target_Type res = target_call(instance, "removal_finish", 3, r, e, d );
#if defined(SWIGPYTHON)
    if (res) Py_DecRef(res);
    Py_DecRef(d);
    Py_DecRef(e);
    Py_DecRef(r);
#endif
    return;
  }
};


/*
 * Install
 *
 */

struct InstallResolvableReportReceiver : public zypp::callback::ReceiveReport<zypp::target::rpm::InstallResolvableReport>
{

  Target_Type instance;

  virtual void start( zypp::Resolvable::constPtr resolvable )
  {
    Target_Type r = SWIG_NewPointerObj((void *)&(*resolvable), SWIGTYPE_p_zypp__Resolvable, 0);
    Target_Type result = target_call(instance, "install_start", 1, r );
#if defined(SWIGPYTHON)
    Py_DecRef(r);
    if (result) Py_DecRef(result);
#endif
    return;
  }

 /**
   * Return \c true to continue, \c false to abort commit.
   */
  virtual bool progress(int value, zypp::Resolvable::constPtr resolvable)
  {
    bool result;
    Target_Type r = SWIG_NewPointerObj((void *)&(*resolvable), SWIGTYPE_p_zypp__Resolvable, 0);
    Target_Type v = Target_Int(value);
    Target_Type res = target_call(instance, "install_progress", 2, r, v );
#if defined(SWIGPYTHON)
    result = PyObject_IsTrue(res) ? true : false;
    Py_DecRef(v);
    Py_DecRef(r);
    if (res) Py_DecRef(res);
#endif
#if defined(SWIGRUBY)
    result = RTEST(res) ? true : false;
#endif
    return result;
  }

  virtual Action problem( zypp::Resolvable::constPtr resolvable, Error error, const std::string & description, RpmLevel level )
  {
    Action result;
    Target_Type r = SWIG_NewPointerObj((void *)&(*resolvable), SWIGTYPE_p_zypp__Resolvable, 0);
    Target_Type e = install_error2target(error);
    Target_Type d = Target_String(description.c_str());
    Target_Type res = target_call(instance, "install_problem", 3, r, e, d );
    result = target2install_action(res);
#if defined(SWIGPYTHON)
    if (res) Py_DecRef(res);
    Py_DecRef(d);
    Py_DecRef(e);
    Py_DecRef(r);
#endif
    return result;
  }

  virtual void finish( zypp::Resolvable::constPtr resolvable, Error error, const std::string & reason, RpmLevel level )
  {
    Target_Type r = SWIG_NewPointerObj((void *)&(*resolvable), SWIGTYPE_p_zypp__Resolvable, 0);
    Target_Type e = install_error2target(error);
    Target_Type d = Target_String(reason.c_str());
    Target_Type res = target_call(instance, "install_finish", 3, r, e, d );
#if defined(SWIGPYTHON)
    if (res) Py_DecRef(res);
    Py_DecRef(d);
    Py_DecRef(e);
    Py_DecRef(r);
#endif
    return;
  }
};

#include "CommitCallbacks.h"

%}

%include "CommitCallbacks.h"