This repository was archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathCoreTelephonyDemoViewController.cs
193 lines (171 loc) · 5.15 KB
/
CoreTelephonyDemoViewController.cs
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
using UIKit;
using CoreGraphics;
using System;
using System.Collections.Generic;
using Foundation;
using CoreTelephony;
namespace CoreTelephonyDemo {
public partial class CoreTelephonyDemoViewController : UITableViewController {
CTTelephonyNetworkInfo networkInfo;
CTCallCenter callCenter;
string carrierName;
CTCall [] calls = new CTCall [0];
public CoreTelephonyDemoViewController ()
: base ("CoreTelephonyDemoViewController", null)
{
}
public override void ViewDidLoad ()
{
base.ViewDidLoad ();
this.Title = "Core Telephony Info";
this.TableView.AllowsSelection = false;
this.TableView.DataSource = new TableViewDataSource (this);
networkInfo = new CTTelephonyNetworkInfo ();
callCenter = new CTCallCenter ();
callCenter.CallEventHandler += CallEvent;
carrierName = networkInfo.SubscriberCellularProvider == null ? null : networkInfo.SubscriberCellularProvider.CarrierName;
networkInfo.CellularProviderUpdatedEventHandler += ProviderUpdatedEvent;
}
private void ProviderUpdatedEvent (CTCarrier carrier)
{
CoreFoundation.DispatchQueue.MainQueue.DispatchSync (() => {
carrierName = carrier == null ? null : carrier.CarrierName;
TableView.ReloadData ();
});
}
private void CallEvent (CTCall inCTCall)
{
CoreFoundation.DispatchQueue.MainQueue.DispatchSync (() => {
NSSet calls = callCenter.CurrentCalls;
calls = callCenter.CurrentCalls;
if (calls == null) {
this.calls = new CTCall [0];
} else {
this.calls = calls.ToArray<CTCall> ();
}
Array.Sort (this.calls, (CTCall a, CTCall b) => {
return string.Compare (a.CallID, b.CallID);
});
TableView.ReloadData ();
});
}
public override void ViewDidUnload ()
{
base.ViewDidUnload ();
// Release any retained subviews of the main view.
// e.g. myOutlet = null;
networkInfo.CellularProviderUpdatedEventHandler -= ProviderUpdatedEvent;
callCenter.CallEventHandler -= CallEvent;
}
public override bool ShouldAutorotateToInterfaceOrientation (UIInterfaceOrientation toInterfaceOrientation)
{
return true;
}
enum SectionIndex {
CurrentCall = 0,
CallCenter,
Carrier,
Count,
}
enum SectionRow {
CurrentCall = 1,
CallCenter = 1,
Carrier = 1,
Count,
}
class TableViewDataSource : UITableViewDataSource {
WeakReference wcontroller;
List<UITableViewCell> table_cells = new List<UITableViewCell> ();
public TableViewDataSource (CoreTelephonyDemoViewController controller)
{
wcontroller = new WeakReference (controller);
}
#region implemented abstract members of MonoTouch.UIKit.UITableViewDataSource
public override nint RowsInSection (UITableView tableView, nint section)
{
switch ((SectionIndex) (int) section) {
case SectionIndex.CurrentCall:
var controller = wcontroller.Target as CoreTelephonyDemoViewController;
return Math.Max (controller.calls.Length, 1);
case SectionIndex.CallCenter:
return (int) SectionRow.CallCenter;
case SectionIndex.Carrier:
return (int) SectionRow.Carrier;
default:
return 1;
}
}
string GetCallState (string callState)
{
switch (callState) {
case "CTCallStateDialing":
return "Dialing";
case "CTCallStateIncoming":
return "Incoming";
case "CTCallStateConnected":
return "Connected";
case "CTCallStateDisconnected":
return "Disconnected";
default:
return callState;
}
}
public override UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath)
{
UITableViewCell cell;
string cellText = string.Empty;
var controller = wcontroller.Target as CoreTelephonyDemoViewController;
cell = tableView.DequeueReusableCell ("Cell");
if (cell == null) {
cell = new UITableViewCell (UITableViewCellStyle.Default, "Cell");
table_cells.Add (cell);
}
switch ((SectionIndex) indexPath.Section) {
case SectionIndex.CurrentCall:
if (controller.calls.Length > 0) {
cellText = string.Format ("Call {0}: {1}", indexPath.Row + 1, GetCallState (controller.calls [indexPath.Row].CallState));
} else {
cellText = "No calls";
}
break;
case SectionIndex.CallCenter:
if (controller.calls.Length == 0) {
cellText = "No calls";
} else if (controller.calls.Length == 1) {
cellText = "1 call at Call Center";
} else {
cellText = string.Format ("{0} calls at Call Center", controller.calls.Length);
}
break;
case SectionIndex.Carrier:
if (!string.IsNullOrEmpty (controller.carrierName)) {
cellText = controller.carrierName;
} else {
cellText = "Unknown";
}
break;
}
cell.TextLabel.Text = cellText;
return cell;
}
#endregion
public override nint NumberOfSections (UITableView tableView)
{
return (int) SectionIndex.Count;
}
public override string TitleForHeader (UITableView tableView, nint section)
{
switch ((SectionIndex) (int) section) {
case SectionIndex.CurrentCall:
return "Current call";
case SectionIndex.CallCenter:
return "Call center";
case SectionIndex.Carrier:
return "Carrier";
default:
return null;
}
}
}
}
}