mmcli,sim: add preferred networks list to SIM properties

This commit is contained in:
Teijo Kinnunen
2021-02-25 16:57:16 +02:00
committed by Aleksander Morgado
parent 816beeffcb
commit a4aba0a6b2
3 changed files with 56 additions and 10 deletions

View File

@@ -273,6 +273,7 @@ static FieldInfo field_infos[] = {
[MMC_F_SIM_PROPERTIES_OPERATOR_ID] = { "sim.properties.operator-code", "operator id", MMC_S_SIM_PROPERTIES, },
[MMC_F_SIM_PROPERTIES_OPERATOR_NAME] = { "sim.properties.operator-name", "operator name", MMC_S_SIM_PROPERTIES, },
[MMC_F_SIM_PROPERTIES_EMERGENCY_NUMBERS] = { "sim.properties.emergency-numbers", "emergency numbers", MMC_S_SIM_PROPERTIES, },
[MMC_F_SIM_PROPERTIES_PREFERRED_NETWORKS] = { "sim.properties.preferred-networks", "preferred networks", MMC_S_SIM_PROPERTIES, },
[MMC_F_MODEM_LIST_DBUS_PATH] = { "modem-list", "modems", MMC_S_UNKNOWN, },
[MMC_F_SMS_LIST_DBUS_PATH] = { "modem.messaging.sms", "sms messages", MMC_S_UNKNOWN, },
[MMC_F_CALL_LIST_DBUS_PATH] = { "modem.voice.call", "calls", MMC_S_UNKNOWN, },
@@ -797,6 +798,44 @@ mmcli_output_pco_list (GList *pco_list)
output_item_new_take_multiple (MMC_F_3GPP_PCO, (gchar **) g_ptr_array_free (aux, FALSE), TRUE);
}
/******************************************************************************/
/* (Custom) Preferred networks output */
void
mmcli_output_preferred_networks (GList *preferred_nets_list)
{
if (preferred_nets_list) {
GPtrArray *aux;
aux = g_ptr_array_new ();
for (;preferred_nets_list; preferred_nets_list = g_list_next (preferred_nets_list)) {
const MMSimPreferredNetwork *preferred_net;
gchar *access_technologies;
gchar *out;
const gchar *operator_code;
preferred_net = (const MMSimPreferredNetwork *)preferred_nets_list->data;
operator_code = mm_sim_preferred_network_get_operator_code (preferred_net);
access_technologies = mm_modem_access_technology_build_string_from_mask (mm_sim_preferred_network_get_access_technology (preferred_net));
if (selected_type == MMC_OUTPUT_TYPE_HUMAN)
out = g_strdup_printf ("%s (%s)",
operator_code,
access_technologies);
else
out = g_strdup_printf ("operator-code: %s, access-technologies: %s",
operator_code,
access_technologies);
g_ptr_array_add (aux, out);
g_free (access_technologies);
}
g_ptr_array_add (aux, NULL);
mmcli_output_string_array_take (MMC_F_SIM_PROPERTIES_PREFERRED_NETWORKS, (gchar **) g_ptr_array_free (aux, FALSE), TRUE);
}
}
/******************************************************************************/
/* Human-friendly output */

View File

@@ -290,6 +290,7 @@ typedef enum {
MMC_F_SIM_PROPERTIES_OPERATOR_ID,
MMC_F_SIM_PROPERTIES_OPERATOR_NAME,
MMC_F_SIM_PROPERTIES_EMERGENCY_NUMBERS,
MMC_F_SIM_PROPERTIES_PREFERRED_NETWORKS,
/* Lists */
MMC_F_MODEM_LIST_DBUS_PATH,
MMC_F_SMS_LIST_DBUS_PATH,
@@ -351,6 +352,7 @@ void mmcli_output_scan_networks (GList *network_list);
void mmcli_output_firmware_list (GList *firmware_list,
MMFirmwareProperties *selected);
void mmcli_output_pco_list (GList *pco_list);
void mmcli_output_preferred_networks (GList *preferred_nets_list);
/******************************************************************************/
/* Dump output */

View File

@@ -158,6 +158,8 @@ mmcli_sim_shutdown (void)
static void
print_sim_info (MMSim *sim)
{
GList *preferred_nets_list;
mmcli_output_string (MMC_F_SIM_GENERAL_DBUS_PATH, mm_sim_get_path (sim));
mmcli_output_string (MMC_F_SIM_PROPERTIES_ACTIVE, mm_sim_get_active (sim) ? "yes" : "no");
mmcli_output_string (MMC_F_SIM_PROPERTIES_IMSI, mm_sim_get_imsi (sim));
@@ -166,6 +168,9 @@ print_sim_info (MMSim *sim)
mmcli_output_string (MMC_F_SIM_PROPERTIES_OPERATOR_ID, mm_sim_get_operator_identifier (sim));
mmcli_output_string (MMC_F_SIM_PROPERTIES_OPERATOR_NAME, mm_sim_get_operator_name (sim));
mmcli_output_string_array (MMC_F_SIM_PROPERTIES_EMERGENCY_NUMBERS, (const gchar **) mm_sim_get_emergency_numbers (sim), FALSE);
preferred_nets_list = mm_sim_get_preferred_networks (sim);
mmcli_output_preferred_networks (preferred_nets_list);
g_list_free_full (preferred_nets_list, (GDestroyNotify) mm_sim_preferred_network_free);
mmcli_output_dump ();
}