This file is indexed.

/usr/share/gtk-doc/python/gtkdoc/scangobj.py is in gtk-doc-tools 1.27-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
# -*- python -*-
#
# gtk-doc - GTK DocBook documentation generator.
# Copyright (C) 1998  Damon Chaplin
#               2007-2016  Stefan Sauer
#
# This program 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 2 of the License, or
# (at your option) any later version.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#

"""
The scangobj tool gets information about object hierarchies and signals by
compiling and running a small C program. CFLAGS and LDFLAGS must be set
appropriately before running this script.
"""

import logging
import os
import string
import subprocess
import shlex

from . import common, config


COMMON_INCLUDES = """
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <glib-object.h>
"""

QUERY_CHILD_PROPS_PROTOTYPE = "extern GParamSpec** %s (gpointer class, guint *n_properties);"

QUERY_CHILD_PROPS_CODE = """
    if (!child_prop) {
      properties = %s (class, &n_properties);
      if (properties) {
        child_prop = TRUE;
        continue;
      }
   }
"""

MAIN_CODE = """

#ifdef GTK_IS_WIDGET_CLASS
#include <gtk/gtk.h>
#endif
static GType object_types[$ntypes];

static GType *
get_object_types (void)
{
  gpointer g_object_class;
  gint i = 0;

${get_types}
  object_types[i] = G_TYPE_INVALID;

  /* reference the GObjectClass to initialize the param spec pool
   * potentially needed by interfaces. See http://bugs.gnome.org/571820 */
  g_object_class = g_type_class_ref (G_TYPE_OBJECT);

  /* Need to make sure all the types are loaded in and initialize
   * their signals and properties.
   */
  for (i=0; object_types[i]; i++) {
    if (G_TYPE_IS_CLASSED (object_types[i]))
      g_type_class_ref (object_types[i]);
    if (G_TYPE_IS_INTERFACE (object_types[i]))
      g_type_default_interface_ref (object_types[i]);
  }

  g_type_class_unref (g_object_class);

  return object_types;
}

/*
 * This uses GObject type functions to output signal prototypes and the object
 * hierarchy.
 */

/* The output files */
const gchar *signals_filename = "$new_signals_filename";
const gchar *hierarchy_filename = "$new_hierarchy_filename";
const gchar *interfaces_filename = "$new_interfaces_filename";
const gchar *prerequisites_filename = "$new_prerequisites_filename";
const gchar *args_filename = "$new_args_filename";

static void output_signals (void);
static void output_object_signals (FILE *fp,
                                   GType object_type);
static void output_object_signal (FILE *fp,
                                  const gchar *object_class_name,
                                  guint signal_id);
static const gchar * get_type_name (GType type,
                                    gboolean * is_pointer);
static void output_object_hierarchy (void);
static void output_hierarchy (FILE *fp,
                              GType type,
                              guint level);

static void output_object_interfaces (void);
static void output_interfaces (FILE *fp,
                               GType type);

static void output_interface_prerequisites (void);
static void output_prerequisites (FILE *fp,
                                  GType type);

static void output_args (void);
static void output_object_args (FILE *fp, GType object_type);

int
main (${main_func_params})
{
  ${type_init_func};

  get_object_types ();

  output_signals ();
  output_object_hierarchy ();
  output_object_interfaces ();
  output_interface_prerequisites ();
  output_args ();

  return 0;
}

static void
output_signals (void)
{
  FILE *fp;
  gint i;

  fp = fopen (signals_filename, "w");
  if (fp == NULL) {
    g_warning ("Couldn't open output file: %s : %s", signals_filename, g_strerror(errno));
    return;
  }

  for (i = 0; object_types[i]; i++)
    output_object_signals (fp, object_types[i]);

  fclose (fp);
}

static gint
compare_signals (const void *a, const void *b)
{
  const guint *signal_a = a;
  const guint *signal_b = b;

  return strcmp (g_signal_name (*signal_a), g_signal_name (*signal_b));
}

/* This outputs all the signals of one object. */
static void
output_object_signals (FILE *fp, GType object_type)
{
  const gchar *object_class_name;
  guint *signals, n_signals;
  guint sig;

  if (G_TYPE_IS_INSTANTIATABLE (object_type) ||
      G_TYPE_IS_INTERFACE (object_type)) {

    object_class_name = g_type_name (object_type);

    signals = g_signal_list_ids (object_type, &n_signals);
    qsort (signals, n_signals, sizeof (guint), compare_signals);

    for (sig = 0; sig < n_signals; sig++) {
       output_object_signal (fp, object_class_name, signals[sig]);
    }
    g_free (signals);
  }
}

/* This outputs one signal. */
static void
output_object_signal (FILE *fp,
                      const gchar *object_name,
                      guint signal_id)
{
  GSignalQuery query_info;
  const gchar *type_name, *ret_type, *object_arg, *arg_name;
  gchar *pos, *object_arg_lower;
  gboolean is_pointer;
  gchar buffer[1024];
  guint i, param;
  gint param_num, widget_num, event_num, callback_num;
  gint *arg_num;
  gchar signal_name[128];
  gchar flags[16];

  /*  g_print ("Object: %s Signal: %u\\n", object_name, signal_id);*/

  param_num = 1;
  widget_num = event_num = callback_num = 0;

  g_signal_query (signal_id, &query_info);

  /* Output the signal object type and the argument name. We assume the
   * type is a pointer - I think that is OK. We remove "Gtk" or "Gnome" and
   * convert to lower case for the argument name. */
  pos = buffer;
  sprintf (pos, "%s ", object_name);
  pos += strlen (pos);

  /* Try to come up with a sensible variable name for the first arg
   * It chops off 2 know prefixes :/ and makes the name lowercase
   * It should replace lowercase -> uppercase with '_'
   * GFileMonitor -> file_monitor
   * GIOExtensionPoint -> extension_point
   * GtkTreeView -> tree_view
   * if 2nd char is upper case too
   *   search for first lower case and go back one char
   * else
   *   search for next upper case
   */
  if (!strncmp (object_name, "Gtk", 3))
    object_arg = object_name + 3;
  else if (!strncmp (object_name, "Gnome", 5))
    object_arg = object_name + 5;
  else
    object_arg = object_name;

  object_arg_lower = g_ascii_strdown (object_arg, -1);
  sprintf (pos, "*%s\\n", object_arg_lower);
  pos += strlen (pos);
  if (!strncmp (object_arg_lower, "widget", 6))
    widget_num = 2;
  g_free(object_arg_lower);

  /* Convert signal name to use underscores rather than dashes '-'. */
  strncpy (signal_name, query_info.signal_name, 127);
  signal_name[127] = '\\0';
  for (i = 0; signal_name[i]; i++) {
    if (signal_name[i] == '-')
      signal_name[i] = '_';
  }

  /* Output the signal parameters. */
  for (param = 0; param < query_info.n_params; param++) {
    type_name = get_type_name (query_info.param_types[param] & ~G_SIGNAL_TYPE_STATIC_SCOPE, &is_pointer);

    /* Most arguments to the callback are called "arg1", "arg2", etc.
       GtkWidgets are called "widget", "widget2", ...
       GtkCallbacks are called "callback", "callback2", ... */
    if (!strcmp (type_name, "GtkWidget")) {
      arg_name = "widget";
      arg_num = &widget_num;
    }
    else if (!strcmp (type_name, "GtkCallback")
             || !strcmp (type_name, "GtkCCallback")) {
      arg_name = "callback";
      arg_num = &callback_num;
    }
    else {
      arg_name = "arg";
      arg_num = &param_num;
    }
    sprintf (pos, "%s ", type_name);
    pos += strlen (pos);

    if (!arg_num || *arg_num == 0)
      sprintf (pos, "%s%s\\n", is_pointer ? "*" : " ", arg_name);
    else
      sprintf (pos, "%s%s%i\\n", is_pointer ? "*" : " ", arg_name,
               *arg_num);
    pos += strlen (pos);

    if (arg_num) {
      if (*arg_num == 0)
        *arg_num = 2;
      else
        *arg_num += 1;
    }
  }

  pos = flags;
  /* We use one-character flags for simplicity. */
  if (query_info.signal_flags & G_SIGNAL_RUN_FIRST)
    *pos++ = 'f';
  if (query_info.signal_flags & G_SIGNAL_RUN_LAST)
    *pos++ = 'l';
  if (query_info.signal_flags & G_SIGNAL_RUN_CLEANUP)
    *pos++ = 'c';
  if (query_info.signal_flags & G_SIGNAL_NO_RECURSE)
    *pos++ = 'r';
  if (query_info.signal_flags & G_SIGNAL_DETAILED)
    *pos++ = 'd';
  if (query_info.signal_flags & G_SIGNAL_ACTION)
    *pos++ = 'a';
  if (query_info.signal_flags & G_SIGNAL_NO_HOOKS)
    *pos++ = 'h';
  *pos = 0;

  /* Output the return type and function name. */
  ret_type = get_type_name (query_info.return_type & ~G_SIGNAL_TYPE_STATIC_SCOPE, &is_pointer);

  fprintf (fp,
           "<SIGNAL>\\n<NAME>%s::%s</NAME>\\n<RETURNS>%s%s</RETURNS>\\n<FLAGS>%s</FLAGS>\\n%s</SIGNAL>\\n\\n",
           object_name, query_info.signal_name, ret_type, is_pointer ? "*" : "", flags, buffer);
}


/* Returns the type name to use for a signal argument or return value, given
   the GtkType from the signal info. It also sets is_pointer to TRUE if the
   argument needs a '*' since it is a pointer. */
static const gchar *
get_type_name (GType type, gboolean * is_pointer)
{
  const gchar *type_name;

  *is_pointer = FALSE;
  type_name = g_type_name (type);

  switch (type) {
  case G_TYPE_NONE:
  case G_TYPE_CHAR:
  case G_TYPE_UCHAR:
  case G_TYPE_BOOLEAN:
  case G_TYPE_INT:
  case G_TYPE_UINT:
  case G_TYPE_LONG:
  case G_TYPE_ULONG:
  case G_TYPE_FLOAT:
  case G_TYPE_DOUBLE:
  case G_TYPE_POINTER:
    /* These all have normal C type names so they are OK. */
    return type_name;

  case G_TYPE_STRING:
    /* A GtkString is really a gchar*. */
    *is_pointer = TRUE;
    return "gchar";

  case G_TYPE_ENUM:
  case G_TYPE_FLAGS:
    /* We use a gint for both of these. Hopefully a subtype with a decent
       name will be registered and used instead, as GTK+ does itself. */
    return "gint";

  case G_TYPE_BOXED:
    /* The boxed type shouldn't be used itself, only subtypes. Though we
       return 'gpointer' just in case. */
    return "gpointer";

  case G_TYPE_PARAM:
    /* A GParam is really a GParamSpec*. */
    *is_pointer = TRUE;
    return "GParamSpec";

#if GLIB_CHECK_VERSION (2, 25, 9)
  case G_TYPE_VARIANT:
    *is_pointer = TRUE;
    return "GVariant";
#endif

default:
    break;
  }

  /* For all GObject subclasses we can use the class name with a "*",
     e.g. 'GtkWidget *'. */
  if (g_type_is_a (type, G_TYPE_OBJECT))
    *is_pointer = TRUE;

  /* Also catch non GObject root types */
  if (G_TYPE_IS_CLASSED (type))
    *is_pointer = TRUE;

  /* All boxed subtypes will be pointers as well. */
  /* Exception: GStrv */
  if (g_type_is_a (type, G_TYPE_BOXED) &&
      !g_type_is_a (type, G_TYPE_STRV))
    *is_pointer = TRUE;

  /* All pointer subtypes will be pointers as well. */
  if (g_type_is_a (type, G_TYPE_POINTER))
    *is_pointer = TRUE;

  /* But enums are not */
  if (g_type_is_a (type, G_TYPE_ENUM) ||
      g_type_is_a (type, G_TYPE_FLAGS))
    *is_pointer = FALSE;

  return type_name;
}


/* This outputs the hierarchy of all objects which have been initialized,
   i.e. by calling their XXX_get_type() initialization function. */
static void
output_object_hierarchy (void)
{
  FILE *fp;
  gint i,j;
  GType root, type;
  GType root_types[$ntypes] = { G_TYPE_INVALID, };

  fp = fopen (hierarchy_filename, "w");
  if (fp == NULL) {
    g_warning ("Couldn't open output file: %s : %s", hierarchy_filename, g_strerror(errno));
    return;
  }
  output_hierarchy (fp, G_TYPE_OBJECT, 0);
  output_hierarchy (fp, G_TYPE_INTERFACE, 0);

  for (i=0; object_types[i]; i++) {
    root = object_types[i];
    while ((type = g_type_parent (root))) {
      root = type;
    }
    if ((root != G_TYPE_OBJECT) && (root != G_TYPE_INTERFACE)) {
      for (j=0; root_types[j]; j++) {
        if (root == root_types[j]) {
          root = G_TYPE_INVALID; break;
        }
      }
      if(root) {
        root_types[j] = root;
        output_hierarchy (fp, root, 0);
      }
    }
  }

  fclose (fp);
}

/* This is called recursively to output the hierarchy of a object. */
static void
output_hierarchy (FILE  *fp,
                  GType  type,
                  guint   level)
{
  guint i;
  GType *children;
  guint n_children;

  if (!type)
    return;

  for (i = 0; i < level; i++)
    fprintf (fp, "  ");
  fprintf (fp, "%s\\n", g_type_name (type));

  children = g_type_children (type, &n_children);

  for (i=0; i < n_children; i++)
    output_hierarchy (fp, children[i], level + 1);

  g_free (children);
}

static void output_object_interfaces (void)
{
  guint i;
  FILE *fp;

  fp = fopen (interfaces_filename, "w");
  if (fp == NULL) {
    g_warning ("Couldn't open output file: %s : %s", interfaces_filename, g_strerror(errno));
    return;
  }
  output_interfaces (fp, G_TYPE_OBJECT);

  for (i = 0; object_types[i]; i++) {
    if (!g_type_parent (object_types[i]) &&
        (object_types[i] != G_TYPE_OBJECT) &&
        G_TYPE_IS_INSTANTIATABLE (object_types[i])) {
      output_interfaces (fp, object_types[i]);
    }
  }
  fclose (fp);
}

static void
output_interfaces (FILE  *fp,
                   GType  type)
{
  guint i;
  GType *children, *interfaces;
  guint n_children, n_interfaces;

  if (!type)
    return;

  interfaces = g_type_interfaces (type, &n_interfaces);

  if (n_interfaces > 0) {
    fprintf (fp, "%s", g_type_name (type));
    for (i=0; i < n_interfaces; i++)
        fprintf (fp, " %s", g_type_name (interfaces[i]));
    fprintf (fp, "\\n");
   }
  g_free (interfaces);

  children = g_type_children (type, &n_children);

  for (i=0; i < n_children; i++)
    output_interfaces (fp, children[i]);

  g_free (children);
}

static void output_interface_prerequisites (void)
{
  FILE *fp;

  fp = fopen (prerequisites_filename, "w");
  if (fp == NULL) {
    g_warning ("Couldn't open output file: %s : %s", prerequisites_filename, g_strerror(errno));
    return;
  }
  output_prerequisites (fp, G_TYPE_INTERFACE);
  fclose (fp);
}

static void
output_prerequisites (FILE  *fp,
                      GType  type)
{
#if GLIB_CHECK_VERSION(2,1,0)
  guint i;
  GType *children, *prerequisites;
  guint n_children, n_prerequisites;

  if (!type)
    return;

  prerequisites = g_type_interface_prerequisites (type, &n_prerequisites);

  if (n_prerequisites > 0) {
    fprintf (fp, "%s", g_type_name (type));
    for (i=0; i < n_prerequisites; i++)
        fprintf (fp, " %s", g_type_name (prerequisites[i]));
    fprintf (fp, "\\n");
   }
  g_free (prerequisites);

  children = g_type_children (type, &n_children);

  for (i=0; i < n_children; i++)
    output_prerequisites (fp, children[i]);

  g_free (children);
#endif
}

static void
output_args (void)
{
  FILE *fp;
  gint i;

  fp = fopen (args_filename, "w");
  if (fp == NULL) {
    g_warning ("Couldn't open output file: %s : %s", args_filename, g_strerror(errno));
    return;
  }

  for (i = 0; object_types[i]; i++) {
    output_object_args (fp, object_types[i]);
  }

  fclose (fp);
}

static gint
compare_param_specs (const void *a, const void *b)
{
  GParamSpec *spec_a = *(GParamSpec **)a;
  GParamSpec *spec_b = *(GParamSpec **)b;

  return strcmp (g_param_spec_get_name (spec_a), g_param_spec_get_name (spec_b));
}

/* Its common to have unsigned properties restricted
 * to the signed range. Therefore we make this look
 * a bit nicer by spelling out the max constants.
 */

/* Don't use "==" with floats, it might trigger a gcc warning.  */
#define GTKDOC_COMPARE_FLOAT(x, y) (x <= y && x >= y)

static gchar*
describe_double_constant (gdouble value)
{
  gchar *desc;

  if (GTKDOC_COMPARE_FLOAT (value, G_MAXDOUBLE))
    desc = g_strdup ("G_MAXDOUBLE");
  else if (GTKDOC_COMPARE_FLOAT (value, G_MINDOUBLE))
    desc = g_strdup ("G_MINDOUBLE");
  else if (GTKDOC_COMPARE_FLOAT (value, -G_MAXDOUBLE))
    desc = g_strdup ("-G_MAXDOUBLE");
  else if (GTKDOC_COMPARE_FLOAT (value, G_MAXFLOAT))
    desc = g_strdup ("G_MAXFLOAT");
  else if (GTKDOC_COMPARE_FLOAT (value, G_MINFLOAT))
    desc = g_strdup ("G_MINFLOAT");
  else if (GTKDOC_COMPARE_FLOAT (value, -G_MAXFLOAT))
    desc = g_strdup ("-G_MAXFLOAT");
  else{
    /* make sure floats are output with a decimal dot irrespective of
    * current locale. Use formatd since we want human-readable numbers
    * and do not need the exact same bit representation when deserialising */
    desc = g_malloc0 (G_ASCII_DTOSTR_BUF_SIZE);
    g_ascii_formatd (desc, G_ASCII_DTOSTR_BUF_SIZE, "%g", value);
  }

  return desc;
}

static gchar*
describe_signed_constant (gsize size, gint64 value)
{
  gchar *desc = NULL;

  switch (size) {
    case 2:
      if (sizeof (int) == 2) {
        if (value == G_MAXINT)
          desc = g_strdup ("G_MAXINT");
        else if (value == G_MININT)
          desc = g_strdup ("G_MININT");
      }
      break;
    case 4:
      if (sizeof (int) == 4) {
        if (value == G_MAXINT)
          desc = g_strdup ("G_MAXINT");
        else if (value == G_MININT)
          desc = g_strdup ("G_MININT");
      }
      if (value == G_MAXLONG)
        desc = g_strdup ("G_MAXLONG");
      else if (value == G_MINLONG)
        desc = g_strdup ("G_MINLONG");
      break;
    case 8:
      if (value == G_MAXINT64)
        desc = g_strdup ("G_MAXINT64");
      else if (value == G_MININT64)
        desc = g_strdup ("G_MININT64");
      break;
    default:
      break;
  }
  if (!desc)
    desc = g_strdup_printf ("%" G_GINT64_FORMAT, value);

  return desc;
}

static gchar*
describe_unsigned_constant (gsize size, guint64 value)
{
  gchar *desc = NULL;

  switch (size) {
    case 2:
      if (sizeof (int) == 2) {
        if (value == (guint64)G_MAXINT)
          desc = g_strdup ("G_MAXINT");
        else if (value == G_MAXUINT)
          desc = g_strdup ("G_MAXUINT");
      }
      break;
    case 4:
      if (sizeof (int) == 4) {
        if (value == (guint64)G_MAXINT)
          desc = g_strdup ("G_MAXINT");
        else if (value == G_MAXUINT)
          desc = g_strdup ("G_MAXUINT");
      }
      if (value == (guint64)G_MAXLONG)
        desc = g_strdup ("G_MAXLONG");
      else if (value == G_MAXULONG)
        desc = g_strdup ("G_MAXULONG");
      break;
    case 8:
      if (value == G_MAXINT64)
        desc = g_strdup ("G_MAXINT64");
      else if (value == G_MAXUINT64)
        desc = g_strdup ("G_MAXUINT64");
      break;
    default:
      break;
  }
  if (!desc)
    desc = g_strdup_printf ("%" G_GUINT64_FORMAT, value);

  return desc;
}

static gchar*
describe_type (GParamSpec *spec)
{
  gchar *desc;
  gchar *lower;
  gchar *upper;

  if (G_IS_PARAM_SPEC_CHAR (spec)) {
    GParamSpecChar *pspec = G_PARAM_SPEC_CHAR (spec);

    lower = describe_signed_constant (sizeof(gchar), pspec->minimum);
    upper = describe_signed_constant (sizeof(gchar), pspec->maximum);
    if (pspec->minimum == G_MININT8 && pspec->maximum == G_MAXINT8)
      desc = g_strdup ("");
    else if (pspec->minimum == G_MININT8)
      desc = g_strdup_printf ("<= %s", upper);
    else if (pspec->maximum == G_MAXINT8)
      desc = g_strdup_printf (">= %s", lower);
    else
      desc = g_strdup_printf ("[%s,%s]", lower, upper);
    g_free (lower);
    g_free (upper);
  }
  else if (G_IS_PARAM_SPEC_UCHAR (spec)) {
    GParamSpecUChar *pspec = G_PARAM_SPEC_UCHAR (spec);

    lower = describe_unsigned_constant (sizeof(guchar), pspec->minimum);
    upper = describe_unsigned_constant (sizeof(guchar), pspec->maximum);
    if (pspec->minimum == 0 && pspec->maximum == G_MAXUINT8)
      desc = g_strdup ("");
    else if (pspec->minimum == 0)
      desc = g_strdup_printf ("<= %s", upper);
    else if (pspec->maximum == G_MAXUINT8)
      desc = g_strdup_printf (">= %s", lower);
    else
      desc = g_strdup_printf ("[%s,%s]", lower, upper);
    g_free (lower);
    g_free (upper);
  }
  else if (G_IS_PARAM_SPEC_INT (spec)) {
    GParamSpecInt *pspec = G_PARAM_SPEC_INT (spec);

    lower = describe_signed_constant (sizeof(gint), pspec->minimum);
    upper = describe_signed_constant (sizeof(gint), pspec->maximum);
    if (pspec->minimum == G_MININT && pspec->maximum == G_MAXINT)
      desc = g_strdup ("");
    else if (pspec->minimum == G_MININT)
      desc = g_strdup_printf ("<= %s", upper);
    else if (pspec->maximum == G_MAXINT)
      desc = g_strdup_printf (">= %s", lower);
    else
      desc = g_strdup_printf ("[%s,%s]", lower, upper);
    g_free (lower);
    g_free (upper);
  }
  else if (G_IS_PARAM_SPEC_UINT (spec)) {
    GParamSpecUInt *pspec = G_PARAM_SPEC_UINT (spec);

    lower = describe_unsigned_constant (sizeof(guint), pspec->minimum);
    upper = describe_unsigned_constant (sizeof(guint), pspec->maximum);
    if (pspec->minimum == 0 && pspec->maximum == G_MAXUINT)
      desc = g_strdup ("");
    else if (pspec->minimum == 0)
      desc = g_strdup_printf ("<= %s", upper);
    else if (pspec->maximum == G_MAXUINT)
      desc = g_strdup_printf (">= %s", lower);
    else
      desc = g_strdup_printf ("[%s,%s]", lower, upper);
    g_free (lower);
    g_free (upper);
  }
  else if (G_IS_PARAM_SPEC_LONG (spec)) {
    GParamSpecLong *pspec = G_PARAM_SPEC_LONG (spec);

    lower = describe_signed_constant (sizeof(glong), pspec->minimum);
    upper = describe_signed_constant (sizeof(glong), pspec->maximum);
    if (pspec->minimum == G_MINLONG && pspec->maximum == G_MAXLONG)
      desc = g_strdup ("");
    else if (pspec->minimum == G_MINLONG)
      desc = g_strdup_printf ("<= %s", upper);
    else if (pspec->maximum == G_MAXLONG)
      desc = g_strdup_printf (">= %s", lower);
    else
      desc = g_strdup_printf ("[%s,%s]", lower, upper);
    g_free (lower);
    g_free (upper);
  }
  else if (G_IS_PARAM_SPEC_ULONG (spec)) {
    GParamSpecULong *pspec = G_PARAM_SPEC_ULONG (spec);

    lower = describe_unsigned_constant (sizeof(gulong), pspec->minimum);
    upper = describe_unsigned_constant (sizeof(gulong), pspec->maximum);
    if (pspec->minimum == 0 && pspec->maximum == G_MAXULONG)
      desc = g_strdup ("");
    else if (pspec->minimum == 0)
      desc = g_strdup_printf ("<= %s", upper);
    else if (pspec->maximum == G_MAXULONG)
      desc = g_strdup_printf (">= %s", lower);
    else
      desc = g_strdup_printf ("[%s,%s]", lower, upper);
    g_free (lower);
    g_free (upper);
  }
  else if (G_IS_PARAM_SPEC_INT64 (spec)) {
    GParamSpecInt64 *pspec = G_PARAM_SPEC_INT64 (spec);

    lower = describe_signed_constant (sizeof(gint64), pspec->minimum);
    upper = describe_signed_constant (sizeof(gint64), pspec->maximum);
    if (pspec->minimum == G_MININT64 && pspec->maximum == G_MAXINT64)
      desc = g_strdup ("");
    else if (pspec->minimum == G_MININT64)
      desc = g_strdup_printf ("<= %s", upper);
    else if (pspec->maximum == G_MAXINT64)
      desc = g_strdup_printf (">= %s", lower);
    else
      desc = g_strdup_printf ("[%s,%s]", lower, upper);
    g_free (lower);
    g_free (upper);
  }
  else if (G_IS_PARAM_SPEC_UINT64 (spec)) {
    GParamSpecUInt64 *pspec = G_PARAM_SPEC_UINT64 (spec);

    lower = describe_unsigned_constant (sizeof(guint64), pspec->minimum);
    upper = describe_unsigned_constant (sizeof(guint64), pspec->maximum);
    if (pspec->minimum == 0 && pspec->maximum == G_MAXUINT64)
      desc = g_strdup ("");
    else if (pspec->minimum == 0)
      desc = g_strdup_printf ("<= %s", upper);
    else if (pspec->maximum == G_MAXUINT64)
      desc = g_strdup_printf (">= %s", lower);
    else
      desc = g_strdup_printf ("[%s,%s]", lower, upper);
    g_free (lower);
    g_free (upper);
  }
  else if (G_IS_PARAM_SPEC_FLOAT (spec)) {
    GParamSpecFloat *pspec = G_PARAM_SPEC_FLOAT (spec);

    lower = describe_double_constant (pspec->minimum);
    upper = describe_double_constant (pspec->maximum);
    if (GTKDOC_COMPARE_FLOAT (pspec->minimum, -G_MAXFLOAT)) {
      if (GTKDOC_COMPARE_FLOAT (pspec->maximum, G_MAXFLOAT))
        desc = g_strdup ("");
      else
        desc = g_strdup_printf ("<= %s", upper);
    }
    else if (GTKDOC_COMPARE_FLOAT (pspec->maximum, G_MAXFLOAT))
      desc = g_strdup_printf (">= %s", lower);
    else
      desc = g_strdup_printf ("[%s,%s]", lower, upper);
    g_free (lower);
    g_free (upper);
  }
  else if (G_IS_PARAM_SPEC_DOUBLE (spec)) {
    GParamSpecDouble *pspec = G_PARAM_SPEC_DOUBLE (spec);

    lower = describe_double_constant (pspec->minimum);
    upper = describe_double_constant (pspec->maximum);
    if (GTKDOC_COMPARE_FLOAT (pspec->minimum, -G_MAXDOUBLE)) {
      if (GTKDOC_COMPARE_FLOAT (pspec->maximum, G_MAXDOUBLE))
        desc = g_strdup ("");
      else
        desc = g_strdup_printf ("<= %s", upper);
    }
    else if (GTKDOC_COMPARE_FLOAT (pspec->maximum, G_MAXDOUBLE))
      desc = g_strdup_printf (">= %s", lower);
    else
      desc = g_strdup_printf ("[%s,%s]", lower, upper);
    g_free (lower);
    g_free (upper);
  }
#if GLIB_CHECK_VERSION (2, 12, 0)
  else if (G_IS_PARAM_SPEC_GTYPE (spec)) {
    GParamSpecGType *pspec = G_PARAM_SPEC_GTYPE (spec);
    gboolean is_pointer;

    desc = g_strdup (get_type_name (pspec->is_a_type, &is_pointer));
  }
#endif
#if GLIB_CHECK_VERSION (2, 25, 9)
  else if (G_IS_PARAM_SPEC_VARIANT (spec)) {
    GParamSpecVariant *pspec = G_PARAM_SPEC_VARIANT (spec);
    gchar *variant_type;

    variant_type = g_variant_type_dup_string (pspec->type);
    desc = g_strdup_printf ("GVariant<%s>", variant_type);
    g_free (variant_type);
  }
#endif
  else {
    desc = g_strdup ("");
  }

  return desc;
}

static gchar*
describe_default (GParamSpec *spec)
{
  gchar *desc;

  if (G_IS_PARAM_SPEC_CHAR (spec)) {
    GParamSpecChar *pspec = G_PARAM_SPEC_CHAR (spec);

    desc = g_strdup_printf ("%d", pspec->default_value);
  }
  else if (G_IS_PARAM_SPEC_UCHAR (spec)) {
    GParamSpecUChar *pspec = G_PARAM_SPEC_UCHAR (spec);

    desc = g_strdup_printf ("%u", pspec->default_value);
  }
  else if (G_IS_PARAM_SPEC_BOOLEAN (spec)) {
    GParamSpecBoolean *pspec = G_PARAM_SPEC_BOOLEAN (spec);

    desc = g_strdup_printf ("%s", pspec->default_value ? "TRUE" : "FALSE");
  }
  else if (G_IS_PARAM_SPEC_INT (spec)) {
    GParamSpecInt *pspec = G_PARAM_SPEC_INT (spec);

    desc = g_strdup_printf ("%d", pspec->default_value);
  }
  else if (G_IS_PARAM_SPEC_UINT (spec)) {
    GParamSpecUInt *pspec = G_PARAM_SPEC_UINT (spec);

    desc = g_strdup_printf ("%u", pspec->default_value);
  }
  else if (G_IS_PARAM_SPEC_LONG (spec)) {
    GParamSpecLong *pspec = G_PARAM_SPEC_LONG (spec);

    desc = g_strdup_printf ("%ld", pspec->default_value);
  }
  else if (G_IS_PARAM_SPEC_LONG (spec)) {
    GParamSpecULong *pspec = G_PARAM_SPEC_ULONG (spec);

    desc = g_strdup_printf ("%lu", pspec->default_value);
  }
  else if (G_IS_PARAM_SPEC_INT64 (spec)) {
    GParamSpecInt64 *pspec = G_PARAM_SPEC_INT64 (spec);

    desc = g_strdup_printf ("%" G_GINT64_FORMAT, pspec->default_value);
  }
  else if (G_IS_PARAM_SPEC_UINT64 (spec))
    {
      GParamSpecUInt64 *pspec = G_PARAM_SPEC_UINT64 (spec);

      desc = g_strdup_printf ("%" G_GUINT64_FORMAT, pspec->default_value);
    }
  else if (G_IS_PARAM_SPEC_UNICHAR (spec)) {
    GParamSpecUnichar *pspec = G_PARAM_SPEC_UNICHAR (spec);

    if (g_unichar_isprint (pspec->default_value))
      desc = g_strdup_printf ("'%c'", pspec->default_value);
    else
      desc = g_strdup_printf ("%u", pspec->default_value);
  }
  else if (G_IS_PARAM_SPEC_ENUM (spec)) {
    GParamSpecEnum *pspec = G_PARAM_SPEC_ENUM (spec);

    GEnumValue *value = g_enum_get_value (pspec->enum_class, pspec->default_value);
    if (value)
      desc = g_strdup_printf ("%s", value->value_name);
    else
      desc = g_strdup_printf ("%d", pspec->default_value);
  }
  else if (G_IS_PARAM_SPEC_FLAGS (spec)) {
    GParamSpecFlags *pspec = G_PARAM_SPEC_FLAGS (spec);
    guint default_value;
    GString *acc;

    default_value = pspec->default_value;
    acc = g_string_new ("");

    while (default_value) {
      GFlagsValue *value = g_flags_get_first_value (pspec->flags_class, default_value);

      if (!value)
        break;

      if (acc->len > 0)
        g_string_append (acc, " | ");
      g_string_append (acc, value->value_name);

      default_value &= ~value->value;
    }

    if (default_value == 0)
      desc = g_string_free (acc, FALSE);
    else {
      desc = g_strdup_printf ("%d", pspec->default_value);
      g_string_free (acc, TRUE);
    }
  }
  else if (G_IS_PARAM_SPEC_FLOAT (spec)) {
    GParamSpecFloat *pspec = G_PARAM_SPEC_FLOAT (spec);

    /* make sure floats are output with a decimal dot irrespective of
     * current locale. Use formatd since we want human-readable numbers
     * and do not need the exact same bit representation when deserialising */
    desc = g_malloc0 (G_ASCII_DTOSTR_BUF_SIZE);
    g_ascii_formatd (desc, G_ASCII_DTOSTR_BUF_SIZE, "%g",
        pspec->default_value);
  }
  else if (G_IS_PARAM_SPEC_DOUBLE (spec)) {
    GParamSpecDouble *pspec = G_PARAM_SPEC_DOUBLE (spec);

    /* make sure floats are output with a decimal dot irrespective of
     * current locale. Use formatd since we want human-readable numbers
     * and do not need the exact same bit representation when deserialising */
    desc = g_malloc0 (G_ASCII_DTOSTR_BUF_SIZE);
    g_ascii_formatd (desc, G_ASCII_DTOSTR_BUF_SIZE, "%g",
        pspec->default_value);
  }
  else if (G_IS_PARAM_SPEC_STRING (spec)) {
    GParamSpecString *pspec = G_PARAM_SPEC_STRING (spec);

    if (pspec->default_value) {
      gchar *esc = g_strescape (pspec->default_value, NULL);
      desc = g_strdup_printf ("\\"%s\\"", esc);
      g_free (esc);
    }
    else
      desc = g_strdup_printf ("NULL");
  }
#if GLIB_CHECK_VERSION (2, 25, 9)
  else if (G_IS_PARAM_SPEC_VARIANT (spec)) {
    GParamSpecVariant *pspec = G_PARAM_SPEC_VARIANT (spec);

    if (pspec->default_value)
      desc = g_variant_print (pspec->default_value, TRUE);
    else
      desc = g_strdup ("NULL");
  }
#endif
  else {
    desc = g_strdup ("");
  }

  return desc;
}


static void
output_object_args (FILE *fp, GType object_type)
{
  gpointer class;
  const gchar *object_class_name;
  guint arg;
  gchar flags[16], *pos;
  GParamSpec **properties;
  guint n_properties;
  gboolean child_prop;
  gboolean style_prop;
  gboolean is_pointer;
  const gchar *type_name;
  gchar *type_desc;
  gchar *default_value;

  if (G_TYPE_IS_OBJECT (object_type)) {
    class = g_type_class_peek (object_type);
    if (!class)
      return;

    properties = g_object_class_list_properties (class, &n_properties);
  }
#if GLIB_MAJOR_VERSION > 2 || (GLIB_MAJOR_VERSION == 2 && GLIB_MINOR_VERSION >= 3)
  else if (G_TYPE_IS_INTERFACE (object_type)) {
    class = g_type_default_interface_ref (object_type);

    if (!class)
      return;

    properties = g_object_interface_list_properties (class, &n_properties);
  }
#endif
  else
    return;

  object_class_name = g_type_name (object_type);

  child_prop = FALSE;
  style_prop = FALSE;

  while (TRUE) {
    qsort (properties, n_properties, sizeof (GParamSpec *), compare_param_specs);
    for (arg = 0; arg < n_properties; arg++) {
      GParamSpec *spec = properties[arg];
      const gchar *nick, *blurb, *dot;

      if (spec->owner_type != object_type)
        continue;

      pos = flags;
      /* We use one-character flags for simplicity. */
      if (child_prop && !style_prop)
           *pos++ = 'c';
      if (style_prop)
           *pos++ = 's';
      if (spec->flags & G_PARAM_READABLE)
         *pos++ = 'r';
      if (spec->flags & G_PARAM_WRITABLE)
        *pos++ = 'w';
      if (spec->flags & G_PARAM_CONSTRUCT)
        *pos++ = 'x';
      if (spec->flags & G_PARAM_CONSTRUCT_ONLY)
        *pos++ = 'X';
      *pos = 0;

      nick = g_param_spec_get_nick (spec);
      blurb = g_param_spec_get_blurb (spec);

      dot = "";
      if (blurb) {
        int str_len = strlen (blurb);
        if (str_len > 0  && blurb[str_len - 1] != '.')
          dot = ".";
      }

      type_desc = describe_type (spec);
      default_value = describe_default (spec);
      type_name = get_type_name (spec->value_type, &is_pointer);
      fprintf (fp, "<ARG>\\n"
                   "<NAME>%s::%s</NAME>\\n"
                   "<TYPE>%s%s</TYPE>\\n"
                   "<RANGE>%s</RANGE>\\n"
                   "<FLAGS>%s</FLAGS>\\n"
                   "<NICK>%s</NICK>\\n"
                   "<BLURB>%s%s</BLURB>\\n"
                   "<DEFAULT>%s</DEFAULT>\\n"
                   "</ARG>\\n\\n",
               object_class_name, g_param_spec_get_name (spec), type_name,
               is_pointer ? "*" : "", type_desc, flags, nick ? nick : "(null)",
               blurb ? blurb : "(null)", dot, default_value);
      g_free (type_desc);
      g_free (default_value);
    }

    g_free (properties);

#ifdef GTK_IS_CONTAINER_CLASS
    if (!child_prop && GTK_IS_CONTAINER_CLASS (class)) {
      properties = gtk_container_class_list_child_properties (class, &n_properties);
      child_prop = TRUE;
      continue;
    }
#endif

#ifdef GTK_IS_CELL_AREA_CLASS
    if (!child_prop && GTK_IS_CELL_AREA_CLASS (class)) {
      properties = gtk_cell_area_class_list_cell_properties (class, &n_properties);
      child_prop = TRUE;
      continue;
    }
#endif

#ifdef GTK_IS_WIDGET_CLASS
#if GTK_CHECK_VERSION(2,1,0) && !GTK_CHECK_VERSION(3,89,2)
    if (!style_prop && GTK_IS_WIDGET_CLASS (class)) {
      properties = gtk_widget_class_list_style_properties (GTK_WIDGET_CLASS (class), &n_properties);
      style_prop = TRUE;
      continue;
    }
#endif
#endif

"""

MAIN_CODE_END = """
    break;
  }
}
"""


def execute_command(options, description, command):
    if options.verbose:
        call = subprocess.check_call
    else:
        call = subprocess.check_output

    try:
        call(command)
    except subprocess.CalledProcessError as e:
        logging.warning('%s scanner failed: %d, command: %s', description,
                        e.returncode, ' '.join(command))
        return e.returncode
    except OSError as e:
        logging.warning('%s scanner failed: %s, command: %s', description,
                        str(e), ' '.join(command))
        return 1
    return 0


def run(options):
    c_file = options.module + '-scan.c'
    output = common.open_text(c_file, 'w')

    base_filename = os.path.join(options.output_dir, options.module)
    old_signals_filename = base_filename + '.signals'
    new_signals_filename = base_filename + '.signals.new'
    old_hierarchy_filename = base_filename + '.hierarchy'
    new_hierarchy_filename = base_filename + '.hierarchy.new'
    old_interfaces_filename = base_filename + '.interfaces'
    new_interfaces_filename = base_filename + '.interfaces.new'
    old_prerequisites_filename = base_filename + '.prerequisites'
    new_prerequisites_filename = base_filename + '.prerequisites.new'
    old_args_filename = base_filename + '.args'
    new_args_filename = base_filename + '.args.new'

    # generate a C program to scan the types

    includes = ""
    forward_decls = ""
    get_types = ""
    ntypes = 1

    for line in common.open_text(options.types):
        if line.startswith('#include'):
            includes += line
        elif line.startswith('%') or line.strip() == '':
            continue
        else:
            line = line.strip()
            get_types += '  object_types[i++] = ' + line + ' ();\n'
            forward_decls += 'extern GType ' + line + ' (void);\n'
            ntypes += 1

    output.write(COMMON_INCLUDES)

    if includes:
        output.write(includes)
    else:
        output.write(forward_decls)

    if options.query_child_properties:
        output.write(QUERY_CHILD_PROPS_PROTOTYPE % options.query_child_properties)

    # substitute local vars in the template
    type_init_func = options.type_init_func
    main_func_params = "int argc, char *argv[]"
    if "argc" in type_init_func and "argv" not in type_init_func:
        main_func_params = "int argc, G_GNUC_UNUSED char *argv[]"
    elif "argc" not in type_init_func and "argv" in type_init_func:
        main_func_params = "G_GNUC_UNUSED int argc, char *argv[]"
    elif "argc" not in type_init_func and "argv" not in type_init_func:
        main_func_params = "void"

    output.write(string.Template(MAIN_CODE).substitute(locals()))

    if options.query_child_properties:
        output.write(QUERY_CHILD_PROPS_CODE % options.query_child_properties)

    output.write(MAIN_CODE_END)

    output.close()

    # Compile and run our file
    if 'libtool' in options.cc:
        o_file = options.module + '-scan.lo'
    else:
        o_file = options.module + '-scan.o'

    x_file = options.module + '-scan' + config.exeext

    logging.debug('Intermediate scanner files: %s, %s, %s', c_file, o_file, x_file)

    res = execute_command(options, 'Compiling',
                          shlex.split(options.cc) + shlex.split(options.cflags) +
                          ["-c", "-o", o_file, c_file])
    if res:
        return res

    res = execute_command(options, 'Linking',
                          shlex.split(options.ld) + [o_file] +
                          shlex.split(options.ldflags) + ['-o', x_file])
    if res:
        return res

    res = execute_command(options, 'Running',
                          shlex.split(options.run) + ['./' + x_file])
    if res:
        return res

    logging.debug('Scan complete')
    if 'GTK_DOC_KEEP_INTERMEDIATE' not in os.environ:
        os.unlink(c_file)
        os.unlink(o_file)
        os.unlink(x_file)
        if 'libtool' in options.cc:
            o_file = options.module + '-scan.o'
            if os.path.exists(o_file):
                os.unlink(o_file)
    else:
        logging.debug('Keeping generated sources for analysis: %s, %s, %s',
                      c_file, o_file, x_file)

    common.UpdateFileIfChanged(old_signals_filename, new_signals_filename, False)
    common.UpdateFileIfChanged(old_hierarchy_filename, new_hierarchy_filename, False)
    common.UpdateFileIfChanged(old_interfaces_filename, new_interfaces_filename, False)
    common.UpdateFileIfChanged(old_prerequisites_filename, new_prerequisites_filename, False)
    common.UpdateFileIfChanged(old_args_filename, new_args_filename, False)

    return 0