From 5ac640563c7dd8a61949f086fd2b4f2d9ca4837a Mon Sep 17 00:00:00 2001 From: Hakjun Choi Date: Wed, 12 Mar 2025 11:25:18 +0000 Subject: Add new fields for counting sms sms message for Satellite Added counter for successful/failed incoming/outgoing messages Related atom : SatelliteController atom Fields definition 1. count_of_incoming_datagram_type_sos_sms_success : count haw many times sos or sms message have received successfully, this is similar with count_of_datagram_type_sos_sms_success, but it is for outgoing sos or sms message type. 2. count_of_incoming_datagram_type_sos_sms_fail : count how many times sos or sms message receive attempt have failed, this is similar with count_of_datagram_type_sos_sms_fail, but it is for outgoing sos or sms message type. 3. count_of_outgoing_sdatagram_type_sms_success : count how many times sms message have received successfully, this is needed because existing field count_of_datagram_type_sos_sms_success count merged value for sos and sms, we don't have way to distinguish sms or sos, so this field is added. 4. count_of_outgoing_datagram_type_sms_fail : similar with above 5. count_of_incoming_datagram_type_sms_success : similar with above, but it is for incoming sms case 6. count_of_incoming_datagram_type_sms_fail : similar with above Flag: EXEMPT bug fix Bug: 402622532 Test: atest atest PersistAtomsStorageTest SatelliteStatsTest SatelliteControllerTest Test: manually test and check DB whether it is reported or not Change-Id: Ideacbf2a9c56a67cb37b244067a6f6826fe5c354 --- proto/src/persist_atoms.proto | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'proto/src') diff --git a/proto/src/persist_atoms.proto b/proto/src/persist_atoms.proto index cca2435254..445664d035 100644 --- a/proto/src/persist_atoms.proto +++ b/proto/src/persist_atoms.proto @@ -728,6 +728,12 @@ message SatelliteController { optional int32 count_of_p2p_sms_available_notification_removed = 35; optional bool is_ntn_only_carrier = 36; optional int32 version_of_satellite_access_config = 37; + optional int32 count_of_incoming_datagram_type_sos_sms_success = 38; + optional int32 count_of_incoming_datagram_type_sos_sms_fail = 39; + optional int32 count_of_outgoing_datagram_type_sms_success = 40; + optional int32 count_of_outgoing_datagram_type_sms_fail = 41; + optional int32 count_of_incoming_datagram_type_sms_success = 42; + optional int32 count_of_incoming_datagram_type_sms_fail = 43; } message SatelliteSession { -- cgit v1.2.3-59-g8ed1b