aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/gnunet-conversation-gtk_phone.c
blob: 05be2bfab8aa9d90a9bb45cfe8664be001298d30 (plain) (blame)
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
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
/*
     This file is part of GNUnet.
     (C) 2010-2014 Christian Grothoff (and other contributing authors)

     GNUnet 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 3, or (at your
     option) any later version.

     GNUnet 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 GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
     Boston, MA 02111-1307, USA.
*/

/**
 * @file src/conversation/gnunet-conversation-gtk_phone.c
 * @brief main logic to manage phone calls
 * @author yids
 * @author hark
 * @author Christian Grothoff
 */
#include "gnunet-conversation-gtk.h"
#include "gnunet-conversation-gtk_egos.h"
#include "gnunet-conversation-gtk_history.h"
#include "gnunet-conversation-gtk_log.h"
#include "gnunet-conversation-gtk_phone.h"


/**
 * active calls treeview columns
 */
enum ActiveCallsTreeViewColumns
{
  AL_caller_id, //*gchar
  AL_caller,  //*
  AL_caller_num, //gint
  AL_type, //gint
  AL_caller_state, //gint
  AL_call, //*
  AL_call_state, //gint
  AL_call_num //gint
};


/**
 * callerstate (state of incoming call)
 */
enum CallerState
{
  CT_active,
  CT_suspended,
  CT_ringing,
  CT_dead,
  CT_hangup,
  CT_rejected,
  CT_other
};


/**
 * type of call
 */
enum TypeOfCall
{
  CALL_IN,
  CALL_OUT
};


/**
 * Possible states of the phone.
 */
enum PhoneState
{
  /**
   * We're waiting for our own idenitty.
   */
  PS_LOOKUP_EGO,

  /**
   * We're listening for calls
   */
  PS_LISTEN,

  /**
   * We accepted an incoming phone call.
   */
  PS_ACCEPTED,

  /**
   * Internal error
   */
  PS_ERROR
};


/**
 * States for current outgoing call.
 */
enum CallState
{
  /**
   * We are looking up some other participant.
   */
  CS_RESOLVING,

  /**
   * We are now ringing the other participant.
   */
  CS_RINGING,

  /**
   * The other party accepted our call and we are now connected.
   */
  CS_CONNECTED,

  /**
   * The call is currently suspended (by us).
   */
  CS_SUSPENDED
};



/**
 * List of incoming calls
 */
struct CallList
{

  /**
   * A DLL.
   */
  struct CallList *prev;

  /**
   * A DLL.
   */
  struct CallList *next;

  /**
   * Handle to hang up or activate.
   */
  struct GNUNET_CONVERSATION_Caller *caller;

  /**
   * Handle to call currently selected in list
   */
  struct GNUNET_CONVERSATION_Caller *caller_selected;

  /**
   * String identifying the caller.
   */
  char *caller_id;

  /**
   * Unique number of the caller.
   */
  unsigned int caller_num;

};


/**
 *
 */
static struct GNUNET_CONVERSATION_Caller *caller_selected;

/**
 *
 */
static struct GNUNET_CONVERSATION_Call *call_selected;


/**
 * List of active calls
 */
static GtkListStore *active_liststore;

/**
 * List of active calls
 */
static GtkTreeView *active_treeview;

/**
 * Unique number of call (outgoing)
 */
static unsigned int call_counter;

/**
 * Counts the number of incoming calls we have had so far.
 */
static unsigned int caller_num_gen;

/**
 * Phone handle
 */
static struct GNUNET_CONVERSATION_Phone *phone;

/**
 * Call handle (for active outgoing call).
 */
static struct GNUNET_CONVERSATION_Call *call;

/**
 * Caller handle (for active incoming call).
 */
static struct CallList *cl_active;

/**
 * Head of calls waiting to be accepted.
 */
static struct CallList *cl_head;

/**
 * Tail of calls waiting to be accepted.
 */
static struct CallList *cl_tail;

/**
 * Our speaker.
 */
static struct GNUNET_SPEAKER_Handle *speaker;

/**
 * Our microphone.
 */
static struct GNUNET_MICROPHONE_Handle *mic;

/**
 * Our phone's current state.
 */
static enum PhoneState phone_state;

/**
 * Our call's current state.
 */
static enum CallState call_state;

/**
 * Name of conversation partner (if any).
 */
static char *peer_name;

/**
 * GNS address for this phone.
 */
static char *address;

static GtkWidget *b_add_contact;

static GtkWidget *b_accept;

static GtkWidget *b_refuse;

static GtkWidget *b_suspend; // pause

static GtkWidget *b_resume;

static GtkWidget *b_call; // connect

static GtkWidget *b_hangup; // disconnect up



/**
 * Update status based on current phone state.
 *
 * @param args arguments given to the command
 */
static void
do_status ()
{
  switch (phone_state)
  {
  case PS_LOOKUP_EGO:
    GCG_update_status_bar ("%s",
                       _("Phone inactive: no ego selected for the caller ID."));
    GCG_set_status_icon ("gnunet-conversation-gtk-tray-pending");
    break;
  case PS_LISTEN:
    GCG_update_status_bar ("%s",
                       _("We are listening for incoming calls"));
    GCG_set_status_icon ("gnunet-conversation-gtk-tray-available");
    break;
  case PS_ACCEPTED:
    GCG_update_status_bar (_("You are having a conversation with `%s'.\n"),
                       peer_name);
    GCG_set_status_icon ("gnunet-conversation-call-active");
    break;
  case PS_ERROR:
    GCG_update_status_bar (_("We had an internal error setting up our phone line. You can still make calls."));
    GCG_set_status_icon ("gnunet-conversation-offline");
    break;
  }
  if (NULL != call)
  {
    switch (call_state)
    {
    case CS_RESOLVING:
      GCG_update_status_bar (_("We are trying to find the network address to call `%s'."),
                         peer_name);
      GCG_set_status_icon ("gnunet-conversation-gtk-tray-call-pending");
      break;
    case CS_RINGING:
      GCG_update_status_bar (_("We are calling `%s', his phone should be ringing."),
                         peer_name);
      GCG_set_status_icon ("gnunet-conversation-gtk-tray-call-ringing");
      break;
    case CS_CONNECTED:
      GCG_update_status_bar (_("You are having a conversation with `%s'."),
                         peer_name);
      GCG_set_status_icon ("gnunet-conversation-gtk-tray-call-active");
      break;
    case CS_SUSPENDED:
      GCG_update_status_bar (_("Conversation suspended, you can accept or initiate another call now."),
                         peer_name);
      GCG_set_status_icon ("gnunet-conversation-gtk-tray-call-suspended");
      break;
    }
  }
  if ( ( (NULL == call) ||
         (CS_SUSPENDED == call_state) ) &&
       (NULL != cl_head) &&
       ( (cl_head != cl_active) ||
         (cl_head != cl_tail) ) )
    GCG_set_status_icon ("gnunet-conversation-gtk-tray-call-incoming");
}



/**
 * @brief print info for currently selected call
 */
static void
print_call_info ()
{
  GtkTreeIter gtkiter;
  gboolean valid;
  gint row_count = 0;

  valid = gtk_tree_model_get_iter_first (GTK_TREE_MODEL (active_liststore),
                                         &gtkiter);
  if (! valid)
    GNUNET_break(0);

  while (valid)
  {
    gchar *str_data;
    gint   int_data;
    gpointer cl_caller;
    gpointer cl_call;

    gtk_tree_model_get (GTK_TREE_MODEL (active_liststore),
                        &gtkiter,
                        AL_caller,     &cl_caller,
                        AL_caller_id,  &str_data,
                        AL_caller_num, &int_data,
                        AL_call,       &cl_call,
                        -1);
    if (call_selected == cl_call)
    {
      GCG_log (_("info for active outgoing call:%s number: %u row: %u"),
               str_data,
               int_data,
               row_count);
      break;
    }
    g_free (str_data);
    row_count++;
    valid = gtk_tree_model_iter_next (GTK_TREE_MODEL(active_liststore), &gtkiter);
  }
}


/**
 * @brief sets caller_selected, and enables or disables the active call list buttons
 */
static void
update_active_call_list_buttons ()
{
  gchar *caller_id;
  gpointer cl_caller;
  gpointer cl_call;
  gint     cl_caller_state;
  gint     cl_type;
  //gint     cl_caller_type;
  GtkTreeSelection *active_selection;
  GtkTreeIter gcl_selected;
  //   active_liststore_selection = GCG_get_main_window_object(ml,"GNUNET_CONVERSATION_GTK_active_calls_selection");

  // reset references to selected call/caller
  //caller_selected = NULL;
  //call_selected = NULL;
  GCG_log("reset caller selected");
  active_selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (active_treeview));
  if (gtk_tree_selection_get_selected (active_selection,
                                       NULL,
                                       &gcl_selected))
  {
    // get selected call
    gtk_tree_model_get (GTK_TREE_MODEL(active_liststore), &gcl_selected,
                        AL_caller, &cl_caller, // reference to incoming call
                        AL_caller_id, &caller_id,
                        AL_caller_state, &cl_caller_state,
                        AL_type, &cl_type,
                        AL_call, &cl_call, // reference to outgoing call
                        -1);
    // check if selected call is a incoming or outgoing call
    switch (cl_type)
    {
    case CALL_IN:
      call_selected = NULL;
      caller_selected = cl_caller;
      GNUNET_break (NULL != caller_selected);
      break;
    case CALL_OUT:
      caller_selected = NULL;
      call_selected = cl_call;
      GCG_log("outgoing selected");
      GNUNET_break (NULL != call_selected);
      break;
    default:
      GNUNET_break(0);
      break;
    }
    gtk_widget_show(GTK_WIDGET(GCG_get_main_window_object("GNUNET_GTK_conversation_active_call_list_buttons")));
    GCG_log("caller state: %u phone_state: %u",
            cl_caller_state,
            phone_state);
    switch (cl_caller_state)
    {
      /* buttons:
       *  contact
       *  accept
       *  hangup
       *  suspend
       *  resume
       *
       *  TODO: check if there is incoming or outgoing call,
       *         disable resume and accept buttons.
       *         or suspend that other call
       */
    case CT_active:
      // hangup, pause
      //GCG_log("CT_active state: %u ",cl_caller_state);
      gtk_widget_set_sensitive (b_add_contact, TRUE);
      gtk_widget_set_sensitive (b_accept, FALSE);
      gtk_widget_set_sensitive (b_hangup, TRUE);
      gtk_widget_set_sensitive (b_suspend, TRUE);
      gtk_widget_set_sensitive (b_resume, FALSE);
      break;
    case CT_ringing:
      // pickup, phonebook
      //GCG_log("CT_ring show button");
      gtk_widget_set_sensitive (b_add_contact, TRUE);
      if (phone_state == PS_LISTEN)
      {
        gtk_widget_set_sensitive (b_accept, TRUE);
      }
      else
      {
        gtk_widget_set_sensitive (b_accept, FALSE);
      }
      gtk_widget_set_sensitive (b_hangup, FALSE);
      gtk_widget_set_sensitive (b_suspend, FALSE);
      gtk_widget_set_sensitive (b_resume, FALSE);
      break;
    case CT_rejected:
      //add to phonebook
      //GCG_log("CT_rejected ");
      gtk_widget_set_sensitive (b_add_contact, TRUE);
      gtk_widget_set_sensitive (b_accept, FALSE);
      gtk_widget_set_sensitive (b_hangup, FALSE);
      gtk_widget_set_sensitive (b_suspend, FALSE);
      gtk_widget_set_sensitive (b_resume, FALSE);
      break;
    case CT_suspended:
      // resume, hangup
      //GCG_log("CT_suspended ");
      gtk_widget_set_sensitive (b_add_contact, TRUE);
      gtk_widget_set_sensitive (b_accept, FALSE);
      gtk_widget_set_sensitive (b_hangup, TRUE);
      gtk_widget_set_sensitive (b_suspend, FALSE);
      if (phone_state == PS_LISTEN)
      {
        GCG_log("enable resume button");
        gtk_widget_set_sensitive (b_resume, TRUE);
      }
      else
      {
        GCG_log("do not disable resume button (for test)");
        gtk_widget_set_sensitive (b_resume, TRUE);
      }
      break;
    case CT_other:
      //add to phonebook
      //GCG_log("CT_rejected ");
      gtk_widget_set_sensitive (b_add_contact, TRUE);
      gtk_widget_set_sensitive (b_accept, TRUE);
      gtk_widget_set_sensitive (b_hangup, TRUE);
      gtk_widget_set_sensitive (b_suspend, TRUE);
      gtk_widget_set_sensitive (b_resume, TRUE);
      break;

    default:
      GNUNET_break(0);
      break;
    }
    print_call_info();
  }
  else
  {
    GCG_log("nothing selected");
    //gtk_widget_hide(GTK_WIDGET(GCG_get_main_window_object("GNUNET_GTK_conversation_active_call_list_buttons" )));
  }
}


/**
 * @brief executed when selecting a different item in active call list
 */
void
gnunet_conversation_gtk_active_calls_treeview_selection_changed_cb ()
{
  update_active_call_list_buttons();
}


static void
disable_list_buttons ()
{
  gtk_widget_set_sensitive (b_add_contact, FALSE);
  gtk_widget_set_sensitive (b_accept, FALSE);
  gtk_widget_set_sensitive (b_hangup, FALSE);
  gtk_widget_set_sensitive (b_suspend, FALSE);
  gtk_widget_set_sensitive (b_resume, FALSE);
}


/**
 * set state of outgoing call
 */
static void
set_outgoing_call_state (struct GNUNET_CONVERSATION_Call *call,
                         int state)
{
  GtkTreeIter gtkiter;
  gint valid = 0;
  gint cl_type;

  valid = gtk_tree_model_get_iter_first (GTK_TREE_MODEL (active_liststore),
                                         &gtkiter);
  if (!valid)
    GNUNET_break(0);
  while (valid)
  {
    gchar *cl_caller_id;
    gint   cl_caller_num;
    gpointer cl_call;

    gtk_tree_model_get ( GTK_TREE_MODEL( active_liststore ), &gtkiter,
                         AL_call, &cl_call,
                         AL_caller_id,&cl_caller_id,
                         AL_caller_num,&cl_caller_num,
                         AL_type, &cl_type,
                         -1);
    if (cl_type == CALL_OUT)
    {
      if (call == NULL) // function called by phone event handler
      {
        GCG_log("event handler");
        gtk_list_store_set(active_liststore, &gtkiter,
                           AL_call_state, state,
                           -1);
        switch (state)
        {
          /**
           * We are the caller and are now ringing the other party (GNS lookup
           * succeeded).
           */
        case  GNUNET_CONVERSATION_EC_CALL_RINGING:
          break;
          /**
           * We are the caller and are now ready to talk as the callee picked up.
           */
        case GNUNET_CONVERSATION_EC_CALL_PICKED_UP:
          break;
          /**
           * We are the caller and failed to locate a phone record in GNS.
           * After this invocation, the respective call handle will be
           * automatically destroyed and the client must no longer call
           * #GNUNET_CONVERSATION_call_stop or any other function on the
           * call object.
           */
        case GNUNET_CONVERSATION_EC_CALL_GNS_FAIL:
           gtk_list_store_remove(active_liststore,&gtkiter);
           disable_list_buttons();
           break;
          /**
           * We are the caller and the callee called
           * #GNUNET_CONVERSATION_caller_hang_up.  After this invocation, the
           * respective call handle will be automatically destroyed and the
           * client must no longer call #GNUNET_CONVERSATION_call_stop.
           */
        case GNUNET_CONVERSATION_EC_CALL_HUNG_UP:
          gtk_list_store_remove(active_liststore,&gtkiter);
          disable_list_buttons();
          break;
          /**
           * We are the caller and the callee suspended the call.  Note that
           * both sides can independently suspend and resume calls; a call is
           * only "working" of both sides are active.
           */
        case GNUNET_CONVERSATION_EC_CALL_SUSPENDED:
          break;
          /**
           * We are the caller and the callee suspended the call.  Note that
           * both sides can independently suspend and resume calls; a call is
           * only "working" of both sides are active.
           */
        case GNUNET_CONVERSATION_EC_CALL_RESUMED:
          break;
          /**
           * We had an error handing the call, and are now restarting it
           * (back to lookup).  This happens, for example, if the peer
           * is restarted during a call.
           */
        case GNUNET_CONVERSATION_EC_CALL_ERROR:
          break;
        default:
          break;
        }
      }
      else if (call == cl_call) // function called for specific call
      {
        //GCG_log (_("setting state for call:%u row: %u state: %u"),cl_caller_num,row_count,state);

        switch (state)
        {
        case CT_hangup:
          //GCG_log("remove line cause hangup");
          gtk_list_store_remove(active_liststore,&gtkiter);
          disable_list_buttons();
          break;
        case CT_rejected:
          //GCG_log("remove line cause rejected");
          gtk_list_store_remove(active_liststore,&gtkiter);
          disable_list_buttons();
          break;
        default:
          gtk_list_store_set(active_liststore, &gtkiter,
                             AL_caller_state, state,
                             -1);
          break;
        }
      }
    }
    g_free (cl_caller_id);
    valid = gtk_tree_model_iter_next (GTK_TREE_MODEL(active_liststore), &gtkiter);
  }
  GCG_update_status_bar ("");
}


/**
 * set call state of a incoming call
 */
static void
set_incoming_call_state (struct GNUNET_CONVERSATION_Caller *caller,
                         int state)
{
  GtkTreeIter gtkiter;
  gint valid = 0;

  valid = gtk_tree_model_get_iter_first( GTK_TREE_MODEL( active_liststore ), &gtkiter );
  if (!valid)
    GNUNET_break(0);
  while (valid)
  {
    gchar *cl_caller_id;
    gint   cl_caller_num;
    gpointer cl_caller;

    gtk_tree_model_get (GTK_TREE_MODEL (active_liststore ),
                        &gtkiter,
                        AL_caller, &cl_caller,
                        AL_caller_id, &cl_caller_id,
                        AL_caller_num, &cl_caller_num,
                        -1);
    if (caller == cl_caller)
    {
      switch (state)
      {
      case CT_hangup:
        //GCG_log("remove line cause hangup");
        gtk_list_store_remove (active_liststore,
                               &gtkiter);
        disable_list_buttons ();
        break;
      case CT_rejected:
        //GCG_log("remove line cause rejected");
        gtk_list_store_remove (active_liststore,
                               &gtkiter);
        disable_list_buttons ();
        break;
      default:
        gtk_list_store_set (active_liststore,
                            &gtkiter,
                            AL_caller_state, state,
                            -1);
        break;
      }
    }
    g_free (cl_caller_id);
    valid = gtk_tree_model_iter_next (GTK_TREE_MODEL(active_liststore),
                                      &gtkiter);
  }
  GCG_update_status_bar("");
}


/**
 * Function called with an event emitted by a phone.
 *
 * @param cls closure
 * @param code type of the event
 * @param caller handle for the caller
 * @param caller_id name of the caller in GNS
 */
static void
phone_event_handler (void *cls,
                     enum GNUNET_CONVERSATION_PhoneEventCode code,
                     struct GNUNET_CONVERSATION_Caller *caller,
                     const char *caller_id)
{
  GtkTreeIter gtkiter;
  GtkTreeIter gtkiter1;
  gboolean valid;
  struct CallList *cl;

  switch (code)
  {
  case GNUNET_CONVERSATION_EC_PHONE_RING:
    caller_num_gen++;
    GCG_log (_("A Incoming call from `%s' with number %u\n"),
             caller_id,
             caller_num_gen);
    cl = GNUNET_new (struct CallList);
    cl->caller = caller;
    cl->caller_id = GNUNET_strdup (caller_id);
    cl->caller_num = caller_num_gen;
    GNUNET_CONTAINER_DLL_insert (cl_head, cl_tail, cl);
    gtk_list_store_append (active_liststore,
                           &gtkiter);
    gtk_list_store_set (active_liststore,
                        &gtkiter,
                        AL_caller_id, caller_id,
                        AL_caller, caller,
                        AL_caller_num, caller_num_gen,
                        AL_caller_state, CT_ringing,
                        AL_type, CALL_IN,
                        -1);
    break;
  case GNUNET_CONVERSATION_EC_PHONE_HUNG_UP:
    valid = gtk_tree_model_get_iter_first( GTK_TREE_MODEL( active_liststore ), &gtkiter1 );
    if (!valid)
      GNUNET_break(0);
    while (valid)
    {
      gchar *str_data;
      gint   int_data;
      gpointer cl_caller;

      gtk_tree_model_get (GTK_TREE_MODEL(active_liststore),
                          &gtkiter1,
                          AL_caller, &cl_caller,
                          AL_caller_id, &str_data,
                          AL_caller_num, &int_data,
                          -1);
      if (caller == cl_caller)
      {
        GCG_log (_("phone hung up:%s number: %u "),
                 str_data,
                 int_data);
        set_incoming_call_state (caller,
                                 CT_rejected);
        break;
      }
      g_free (str_data);
      valid = gtk_tree_model_iter_next (GTK_TREE_MODEL(active_liststore), &gtkiter1);
    }
    phone_state = PS_LISTEN;
    break;
  }
  do_status();
}


/**
 * Function called with an event emitted by a caller.
 *
 * @param cls closure with the `struct CallList` of the caller
 * @param code type of the event issued by the caller
 */
static void
caller_event_handler (void *cls,
                      enum GNUNET_CONVERSATION_CallerEventCode code)
{
  struct CallList *cl = cls;

  if (NULL == cl)
  {
    GNUNET_break (0);
    return;
  }
  switch (code)
  {
  case GNUNET_CONVERSATION_EC_CALLER_SUSPEND:
    //TODO: should this be cls? not cl->caller
    set_incoming_call_state(cl->caller,CT_suspended);
    GCG_log (_("Call from `%s' suspended by other user\n"), cl->caller_id);
    break;
  case GNUNET_CONVERSATION_EC_CALLER_RESUME:
    set_incoming_call_state(cl->caller,CT_active);
    GCG_log (_("Call from `%s' resumed by other user\n"), cl->caller_id);
    break;
  }
  do_status();
}


/**
 * Start our phone.
 */
static void
start_phone ()
{
  struct GNUNET_GNSRECORD_Data rd;
  struct GNUNET_IDENTITY_Ego *caller_id;

  caller_id = GCG_EGOS_get_selected_ego ();
  if (NULL == caller_id)
  {
    GCG_log ("%s\n",
             _("No ego selected, phone is now down."));
    phone_state = PS_LOOKUP_EGO;
    do_status();
    return;
  }
  phone =
    GNUNET_CONVERSATION_phone_create (GCG_get_configuration (),
                                      caller_id,
                                      &phone_event_handler,
                                      NULL);
  if (NULL == phone)
  {
    GCG_log ("%s",
             _("Failed to setup phone (internal error)\n"));
    phone_state = PS_ERROR;
    do_status();
    return;
  }
  GNUNET_CONVERSATION_phone_get_record (phone,
                                        &rd);
  /* FIXME: publish record to GNS! */
  GCG_log ("%s\n",
           _("Phone active"));
  phone_state = PS_LISTEN;
  do_status();
}


/**
 * Function called with an event emitted by a call.
 *
 * @param cls closure, NULL
 * @param code type of the event on the call
 */
static void
call_event_handler (void *cls,
                    enum GNUNET_CONVERSATION_CallEventCode code)
{
  //struct OutgoingCallClosure *cl = cls;

  set_outgoing_call_state (NULL, code);
  switch (code)
  {
  case GNUNET_CONVERSATION_EC_CALL_RINGING:
    GNUNET_break (CS_RESOLVING == call_state);
    GCG_log (_("Resolved address of `%s'. Now ringing other party."),
             peer_name);
    //   set_outgoing_call_state(cls, CT_ringing);
    call_state = CS_RINGING;
    break;
  case GNUNET_CONVERSATION_EC_CALL_PICKED_UP:
    GNUNET_break (CS_RINGING == call_state);
    GCG_log (_("Connection established to `%s'."),
             peer_name);
    call_state = CS_CONNECTED;
    break;
  case GNUNET_CONVERSATION_EC_CALL_GNS_FAIL:
    GNUNET_break (CS_RESOLVING == call_state);
    GCG_log (_("Failed to resolve %s in current zone."),
             peer_name);
    call = NULL;
    break;
  case GNUNET_CONVERSATION_EC_CALL_HUNG_UP:
    GCG_log ("%s", _("Call terminated"));
    call = NULL;
    break;
  case GNUNET_CONVERSATION_EC_CALL_SUSPENDED:
    GNUNET_break (CS_CONNECTED == call_state);
    GCG_log (_("Connection to `%s' suspended (by other user)\n"),
             peer_name);
    break;
  case GNUNET_CONVERSATION_EC_CALL_RESUMED:
    GNUNET_break (CS_CONNECTED == call_state);
    GCG_log (_("Connection to `%s' resumed (by other user)\n"),
             peer_name);
    break;
  case GNUNET_CONVERSATION_EC_CALL_ERROR:
    GCG_log ("GNUNET_CONVERSATION_EC_CALL_ERROR %s",
             peer_name);
  }
}


/**
 * Initiating a new call
 *
 * @param arg arguments given to the command
 */
void
GSC_PHONE_make_call (const char *arg)
{
  GtkEntry *address_entry;
  struct GNUNET_IDENTITY_Ego *caller_id;
  GtkTreeIter gtkiter;

  address_entry = GTK_ENTRY (GCG_get_main_window_object ("GNUNET_GTK_conversation_address"));
  gtk_entry_set_text (address_entry,
                      address);
  caller_id = GCG_EGOS_get_selected_ego ();
  if (NULL == caller_id)
  {
    // should not be possible!
    GCG_log ("%s\n",
             _("Caller ID unavailable, cannot initiate call."));
    return;
  }
  if (NULL != call)
  {
    GCG_log (_("You are calling someone else already, hang up first!\n"));
    return;
  }
  switch (phone_state)
  {
  case PS_LOOKUP_EGO:
    GCG_log ("%s\n",
             _("Caller ID unavailable, cannot initiate call."));
    // should not be possible!
    return;
  case PS_LISTEN:
    /* ok to call! */
    break;
  case PS_ACCEPTED:
    GCG_log (_
         ("You are answering call from `%s', hang up or suspend that call first!\n"),
         peer_name);
    GNUNET_break(0);
    return;
  case PS_ERROR:
    /* ok to call */
    break;
  }
  //GNUNET_free_non_null (peer_name);
  peer_name = GNUNET_strdup (arg);
  GCG_log (_("now calling: %s"), peer_name);
  call_state = CS_RESOLVING;
  GNUNET_assert (NULL == call);

  call_counter++;
  call =
     GNUNET_CONVERSATION_call_start (GCG_get_configuration (),
                                     caller_id,
                                     arg,
                                     speaker, mic,
                                     &call_event_handler, NULL);
  //call = newcall;

  // add call to active call list

  gtk_list_store_append (active_liststore,
                         &gtkiter);
  gtk_list_store_set (active_liststore, &gtkiter,
                      AL_caller_id, peer_name,
                      AL_caller, NULL,
                      AL_caller_num, NULL,
                      AL_caller_state, CT_other,
                      AL_type, CALL_OUT,
                      AL_call, call,
                      AL_call_num, call_counter,
                      AL_call_state, CS_RESOLVING,
                      -1 );
  GCG_update_status_bar (_("We are calling `%s', his phone should be ringing."),
                         peer_name);
  GCG_HISTORY_add (GCG_HISTORY_TYPE_OUTGOING,
                   peer_name);
}


/**
 * Accepting an incoming call
 *
 * @param args arguments given to the command
 */
static void
do_accept (struct GNUNET_CONVERSATION_Caller *sel_caller)
{
  struct CallList *cl;

  if ( (NULL != call) &&
       (CS_SUSPENDED != call_state) )
  {
    GCG_log (_("You are calling someone else already, hang up first!\n"));
    GNUNET_break(0);
    return;
  }
  switch (phone_state)
  {
  case PS_LOOKUP_EGO:
    GNUNET_break (0);
    break;
  case PS_LISTEN:
    /* this is the expected state */
    break;
  case PS_ACCEPTED:
    GCG_log (_
         ("You are answering call from `%s', hang up or suspend that call first!\n"),
         peer_name);
    GNUNET_break(0);
    return;
  case PS_ERROR:
    GNUNET_break (0);
    break;
  }

  phone_state = PS_ACCEPTED;
  set_incoming_call_state(sel_caller,CT_active);

  for (cl = cl_head; cl; cl = cl->next)
  {
    /* FIXME: this may not be unique enough to identify the right item!
     * Why not store CallList items in treeview instead of just callers?
     */
    if (cl->caller == sel_caller)
      break;
  }
  GNUNET_CONVERSATION_caller_pick_up (sel_caller,
                                      &caller_event_handler, cl,
                                      speaker, mic);
  GCG_HISTORY_add (GCG_HISTORY_TYPE_ACCEPTED, peer_name);
}


/**
 * Suspending a call
 */
static void
do_suspend ()
{
  if ( (NULL != call_selected) &&
       (NULL != caller_selected) )
  {
    GNUNET_break(0);
    return;
  }
  if (NULL != call_selected)
  {
    /* outgoing */
    GNUNET_CONVERSATION_call_suspend (call_selected);
    set_outgoing_call_state(call_selected,CT_suspended);
    return;
  }
  if (NULL != caller_selected)
  {
    /* incoming */
    GNUNET_CONVERSATION_caller_suspend (caller_selected);
    set_incoming_call_state(caller_selected,CT_suspended);
    phone_state = PS_LISTEN;
    return;
  }
  GNUNET_break (0);
}


/**
 * Resuming a call
 *
 * @param args arguments given to the command
 */
static void
do_resume ()
{
  switch (phone_state)
  {
  case PS_LOOKUP_EGO:
  case PS_ERROR:
    GCG_log ("%s",
             _("There is no call that could be resumed right now.(PS_ERROR)"));
    return;
  case PS_LISTEN:
    break;
  case PS_ACCEPTED:
    GCG_log (_("Already talking with `%s', cannot resume a call right now."),
             peer_name);
    return;
  }
  if ( (NULL != call_selected) &&
       (NULL != caller_selected) )
  {
    GNUNET_break(0);
    return;
  }
  if (NULL != call_selected)
  {
    /* outgoing */
    GNUNET_CONVERSATION_call_resume (call_selected, speaker, mic);
    set_outgoing_call_state(call_selected,CT_active);
    return;
  }
  if (NULL != caller_selected)
  {
    /* incoming */
    GNUNET_CONVERSATION_caller_resume (caller_selected, speaker, mic);
    set_incoming_call_state(caller_selected,CT_active);
    phone_state = PS_ACCEPTED;
    return;
  }
  GNUNET_break(0);
}


/**
 / Rejecting a call
 *
 * @param args arguments given to the command
 */
static void
do_reject ()
{
  if ( (NULL == call_selected) &&
       (NULL == caller_selected) )
  {
    GNUNET_break(0);
    return;
  }
  if (NULL != call_selected)
  {
    /* if selected call is outgoing, stop it */
    set_outgoing_call_state (call_selected, CT_hangup);
    GNUNET_CONVERSATION_call_stop (call);
    call = NULL;
    call_selected = NULL;
    return;
  }
  if (NULL != caller_selected)
  {
    /* if selected call is incoming, hang it up */
    set_incoming_call_state (caller_selected,CT_hangup);
    GNUNET_CONVERSATION_caller_hang_up (caller_selected);
    phone_state = PS_LISTEN;
    caller_selected = NULL;
    return;
  }
  GNUNET_break (0);
}


/**
 *  hangup clicked
 */
void
GNUNET_CONVERSATION_GTK_on_hangup_clicked ()
{
  do_reject ();
  do_status ();
}


/**
 *  accept clicked
 */
void
GNUNET_CONVERSATION_GTK_on_accept_clicked ()
{
  if (NULL != caller_selected)
  {
    do_accept (caller_selected);
  }
  else
  {
    GNUNET_break(0);
  }
  do_status ();
}


/**
 *  reject clicked
 */
void
GNUNET_CONVERSATION_GTK_on_reject_clicked ()
{
  do_reject ();
  do_status ();
}


/**
 * User clicked the '> contact' button to move the selected
 * caller's information into our address book.
 */
void
GNUNET_CONVERSATION_GTK_use_current_button_clicked (GtkButton *button,
                                                    gpointer *user_data)
{
  // FIXME: implement, use "GSC_add_contact"
#if 0
  GtkEntry *addressEntry;

  addressEntry = GTK_ENTRY (GCG_get_main_window_object ("GNUNET_GTK_conversation_addressAdd"));
  gtk_entry_set_text (addressEntry,
                      "FIXME");
#endif
}


/**
 * pause clicked
 */
void
GNUNET_CONVERSATION_GTK_on_pause_clicked ()
{
  do_suspend ();
  do_status ();
}

/**
 *  resume clicked
 */
void
GNUNET_CONVERSATION_GTK_on_resume_clicked ()
{
  do_resume ();
  do_status ();
}


/**
 * call clicked
 */
void
GNUNET_CONVERSATION_GTK_on_call_clicked ()
{
  GtkEntry *address_entry;

  address_entry = GTK_ENTRY (GCG_get_main_window_object
                             ("GNUNET_GTK_conversation_address"));

  GSC_PHONE_make_call (gtk_entry_get_text (address_entry));
  do_status ();
}


/**
 * @brief outgoing ego selector changed, (re)start the phone.
 *
 * @param widget the combo box that changed
 * @param user_data builder (unused)
 */
void
gnunet_conversation_gtk_ego_combobox_changed_cb (GtkComboBox *widget,
                                                 gpointer user_data)
{
  if (NULL != phone)
  {
    GNUNET_CONVERSATION_phone_destroy (phone);
    phone = NULL;
  }
  start_phone();
}


/**
 * Initialize phone subsystem.
 */
void
GCG_PHONE_init ()
{
  const struct GNUNET_CONFIGURATION_Handle *cfg;

  cfg = GCG_get_configuration ();
  speaker = GNUNET_SPEAKER_create_from_hardware (cfg);
  mic = GNUNET_MICROPHONE_create_from_hardware (cfg);
  /* get gui objects */
  b_add_contact = GTK_WIDGET (GCG_get_main_window_object
                              ("gnunet_conversation_gtk_add_contact_button"));
  b_accept  = GTK_WIDGET (GCG_get_main_window_object
                          ("gnunet_conversation_gtk_accept_button"));
  b_refuse  = GTK_WIDGET (GCG_get_main_window_object
                          ("gnunet_conversation_gtk_hangup_button"));
  b_suspend = GTK_WIDGET (GCG_get_main_window_object
                          ("gnunet_conversation_gtk_suspend_button"));
  b_resume  = GTK_WIDGET (GCG_get_main_window_object
                          ("gnunet_conversation_gtk_resume_button"));
  b_call = GTK_WIDGET (GCG_get_main_window_object
                          ("gnunet_conversation_gtk_call_button"));
  b_hangup = GTK_WIDGET (GCG_get_main_window_object
                         ("gnunet_conversation_gtk_hangup_button"));

  active_liststore =
     GTK_LIST_STORE (GCG_get_main_window_object
                     ("gnunet_conversation_gtk_active_calls_liststore"));
  active_treeview =
      GTK_TREE_VIEW (GCG_get_main_window_object
                     ("gnunet_conversation_gtk_active_calls_treeview"));
}


/**
 * Shutdown phone subsystem.
 */
void
GCG_PHONE_shutdown ()
{
  struct CallList *cl;

  while (NULL != (cl = cl_head))
  {
    GNUNET_CONVERSATION_caller_hang_up (cl->caller);
    GNUNET_CONTAINER_DLL_remove (cl_head,
                                 cl_tail,
                                 cl);
    // FIXME: release other memory?
    GNUNET_free (cl);
  }
  if (NULL != call)
  {
    GNUNET_CONVERSATION_call_stop (call);
    call = NULL;
  }
  if (NULL != phone)
  {
    GNUNET_CONVERSATION_phone_destroy (phone);
    phone = NULL;
  }
  GNUNET_SPEAKER_destroy (speaker);
  speaker = NULL;
  GNUNET_MICROPHONE_destroy (mic);
  mic = NULL;
  GNUNET_free_non_null (peer_name);
  peer_name = NULL;
  phone_state = PS_ERROR;
}

/* end of gnunet-conversation-gtk_phone.c */