Skip to content

Commit cddbde4

Browse files
committed
Update TM reference in Dataprovider instat of creating a new instance, add and use parameter less constructors for initialization before data is avaialble
1 parent 4c3ccb8 commit cddbde4

File tree

4 files changed

+33
-14
lines changed

4 files changed

+33
-14
lines changed

app/src/main/java/de/fraunhofer/fokus/OpenMobileNetworkToolkit/DataProvider/DataProvider.java

+13-4
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public class DataProvider extends TelephonyCallback implements LocationListener,
9898
// internal data caches
9999
private List<CellInformation> ci = new ArrayList<>();
100100
private LocationInformation li = new LocationInformation();
101-
private NetworkInformation ni;// = new NetworkInformation();
101+
private NetworkInformation ni = new NetworkInformation();
102102
private List<NetworkInterfaceInformation> nii = new ArrayList<>();
103103
private ArrayList<CellInformation> ssi = new ArrayList<>();
104104
private WifiInformation wi = null;
@@ -160,6 +160,14 @@ public void onLocationResult(@NonNull LocationResult locationResult) {
160160
refreshAll();
161161
}
162162

163+
/**
164+
* Update the current Telephony Manager reference e.g. after subscription change
165+
* @param tm new Telephony Manager reference
166+
*/
167+
public void setTm(TelephonyManager tm) {
168+
this.tm = tm;
169+
}
170+
163171
/**
164172
* Refresh Network Information
165173
*/
@@ -888,11 +896,12 @@ public void onUnavailable() {
888896
wi = null;
889897
}
890898
};
891-
cm.registerNetworkCallback(request, networkCallback);
892-
cm.requestNetwork(request, networkCallback);
899+
cm.registerNetworkCallback(request, networkCallback); //todo this call back is already registered
900+
//cm.requestNetwork(request, networkCallback);
893901
}
894902
} catch (Exception e) {
895-
Log.d("Network Callback: Exception in registerNetworkCallback", "Catch exception");
903+
Log.d(TAG, "Network Callback: Exception in registerNetworkCallback");
904+
Log.d(TAG,e.toString());
896905
}
897906
}
898907

app/src/main/java/de/fraunhofer/fokus/OpenMobileNetworkToolkit/DataProvider/LocationInformation.java

+6-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88

99
package de.fraunhofer.fokus.OpenMobileNetworkToolkit.DataProvider;
1010

11-
import android.content.Context;
12-
import android.widget.TableLayout;
13-
1411
import java.util.List;
1512

1613
public class LocationInformation extends Information {
@@ -33,6 +30,12 @@ public LocationInformation(double longitude, double latitude, double altitude, S
3330
}
3431

3532
public LocationInformation() {
33+
this.longitude = -1;
34+
this.latitude = -1;
35+
this.altitude = -1;
36+
this.provider = "N/A";
37+
this.accuracy = -1;
38+
this.speed = -1;
3639
}
3740

3841
public List<String> getProviderList() {

app/src/main/java/de/fraunhofer/fokus/OpenMobileNetworkToolkit/DataProvider/NetworkInformation.java

+11-6
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,10 @@
99
package de.fraunhofer.fokus.OpenMobileNetworkToolkit.DataProvider;
1010

1111
import android.annotation.SuppressLint;
12-
import android.content.Context;
1312
import android.os.Build;
1413
import android.telephony.AccessNetworkConstants;
14+
import android.telephony.SubscriptionManager;
1515
import android.telephony.TelephonyManager;
16-
import android.widget.TableLayout;
17-
18-
import java.util.Arrays;
19-
20-
import de.fraunhofer.fokus.OpenMobileNetworkToolkit.GlobalVars;
2116

2217
public class NetworkInformation extends Information {
2318
private final String networkOperatorName;
@@ -39,6 +34,16 @@ public NetworkInformation(String networkOperatorName, String simOperatorName, St
3934
this.preferredOpportunisticDataSubscriptionId = preferredOpportunisitcDataSubscitptionId;
4035
}
4136

37+
public NetworkInformation() {
38+
this.networkOperatorName = "N/A";
39+
this.simOperatorName = "N/A";
40+
this.networkSpecifier = "N/A";
41+
this.dataState = TelephonyManager.DATA_UNKNOWN;
42+
this.dataNetworkType = TelephonyManager.NETWORK_TYPE_UNKNOWN;
43+
this.phoneType = TelephonyManager.NETWORK_TYPE_UNKNOWN;
44+
this.preferredOpportunisticDataSubscriptionId = SubscriptionManager.DEFAULT_SUBSCRIPTION_ID;
45+
}
46+
4247
/**
4348
* Get the Network Operator Name
4449
* @return Operator Name string

app/src/main/java/de/fraunhofer/fokus/OpenMobileNetworkToolkit/MainActivity.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,10 @@ protected void onCreate(Bundle savedInstanceState) {
160160
}
161161
// switch the telephony manager to a new one according to the app settings
162162
tm = tm.createForSubscriptionId(Integer.parseInt(spg.getSharedPreference(SPType.default_sp).getString("select_subscription", "0")));
163+
164+
// update reference to tm
163165
gv.setTm(tm);
164-
dp = new DataProvider(this);
166+
dp.setTm(tm);
165167
}
166168

167169
gv.setSm((SubscriptionManager) getSystemService(Context.TELEPHONY_SUBSCRIPTION_SERVICE));

0 commit comments

Comments
 (0)