@@ -115,14 +115,17 @@ static int find_ttloc_match (char *e, char *xstr, char *ystr, char *zstr, char *
115
115
static void check_result (void );
116
116
#endif
117
117
118
+ static int tt_debug = 0 ;
119
+
118
120
119
121
/*------------------------------------------------------------------
120
122
*
121
123
* Name: aprs_tt_init
122
124
*
123
125
* Purpose: Initialize the APRStt gateway at system startup time.
124
126
*
125
- * Inputs: Configuration options gathered by config.c.
127
+ * Inputs: P - Pointer to configuration options gathered by config.c.
128
+ * debug - Debug printing control.
126
129
*
127
130
* Global out: Make our own local copy of the structure here.
128
131
*
@@ -164,9 +167,10 @@ static struct ttloc_s test_config[] = {
164
167
#endif
165
168
166
169
167
- void aprs_tt_init (struct tt_config_s * p )
170
+ void aprs_tt_init (struct tt_config_s * p , int debug )
168
171
{
169
172
int c ;
173
+ tt_debug = debug ;
170
174
171
175
#if TT_MAIN
172
176
/* For unit testing. */
@@ -483,7 +487,19 @@ static int parse_fields (char *msg)
483
487
//text_color_set(DW_COLOR_DEBUG);
484
488
//dw_printf ("parse_fields (%s).\n", msg);
485
489
486
- strlcpy (stemp , msg , sizeof (stemp ));
490
+ // Make a copy of msg because strtok corrupts the original.
491
+ // While we are at it, remove any blanks.
492
+ // This should not happen with DTMF reception but could happen
493
+ // in manually crafted strings for testing.
494
+
495
+ int n = 0 ;
496
+ for (char * m = msg ; * m != '\0' && n < sizeof (stemp )- 1 ; m ++ ) {
497
+ if (* m != ' ' ) {
498
+ stemp [n ++ ] = * m ;
499
+ }
500
+ }
501
+ stemp [n ] = '\0' ;
502
+
487
503
e = strtok_r (stemp , "*#" , & save );
488
504
while (e != NULL ) {
489
505
@@ -551,7 +567,7 @@ static int parse_fields (char *msg)
551
567
default :
552
568
553
569
text_color_set (DW_COLOR_ERROR );
554
- dw_printf ("Field does not start with A, B, C, or digit: \"%s\"\n" , msg );
570
+ dw_printf ("Field does not start with A, B, C, or digit: \"%s\"\n" , e );
555
571
return (TT_ERROR_D_MSG );
556
572
557
573
}
@@ -690,17 +706,15 @@ static int expand_macro (char *e)
690
706
*
691
707
* Inputs: e - An "entry" extracted from a complete
692
708
* APRStt messsage.
693
- * In this case, it should start with "A".
709
+ * In this case, it should start with "A" then a digit .
694
710
*
695
711
* Outputs: m_callsign
696
712
*
697
713
* m_symtab_or_overlay - Set to 0-9 or A-Z if specified.
698
714
*
699
- * m_symbol_code - Always set to 'A'.
700
- * NO! This should be applied only if we
701
- * have the default value at this point.
702
- * The symbol might have been explicitly
703
- * set already and we don't want to overwrite that.
715
+ * m_symbol_code - Always set to 'A' (Box, DTMF or RFID)
716
+ * If you want a different symbol, use the new
717
+ * object name format and separate symbol specification.
704
718
*
705
719
* Returns: 0 for success or one of the TT_ERROR_... codes.
706
720
*
@@ -752,6 +766,11 @@ static int parse_callsign (char *e)
752
766
int len ;
753
767
char tttemp [40 ], stemp [30 ];
754
768
769
+ if (tt_debug ) {
770
+ text_color_set (DW_COLOR_DEBUG );
771
+ dw_printf ("APRStt parse callsign (starts with A then digit): \"%s\"\n" , e );
772
+ }
773
+
755
774
assert (* e == 'A' );
756
775
757
776
len = strlen (e );
@@ -762,6 +781,10 @@ static int parse_callsign (char *e)
762
781
763
782
if (len == 4 && isdigit (e [1 ]) && isdigit (e [2 ]) && isdigit (e [3 ])) {
764
783
strlcpy (m_callsign , e + 1 , sizeof (m_callsign ));
784
+ if (tt_debug ) {
785
+ text_color_set (DW_COLOR_DEBUG );
786
+ dw_printf ("Special case, 3 digit tactical call: \"%s\"\n" , m_callsign );
787
+ }
765
788
return (0 );
766
789
}
767
790
@@ -779,7 +802,7 @@ static int parse_callsign (char *e)
779
802
return (cs_err );
780
803
}
781
804
782
- strncpy (m_callsign , e + 1 , 3 );
805
+ memcpy (m_callsign , e + 1 , 3 );
783
806
m_callsign [3 ] = '\0' ;
784
807
785
808
if (len == 7 ) {
@@ -789,10 +812,20 @@ static int parse_callsign (char *e)
789
812
tt_two_key_to_text (tttemp , 0 , stemp );
790
813
m_symbol_code = APRSTT_DEFAULT_SYMBOL ;
791
814
m_symtab_or_overlay = stemp [0 ];
815
+ if (tt_debug ) {
816
+ text_color_set (DW_COLOR_DEBUG );
817
+ dw_printf ("Three digit abbreviation1: callsign \"%s\", symbol code '%c (Box DTMF)', overlay '%c', checksum %c\n" ,
818
+ m_callsign , m_symbol_code , m_symtab_or_overlay , e [len - 1 ]);
819
+ }
792
820
}
793
821
else {
794
822
m_symbol_code = APRSTT_DEFAULT_SYMBOL ;
795
823
m_symtab_or_overlay = e [len - 2 ];
824
+ if (tt_debug ) {
825
+ text_color_set (DW_COLOR_DEBUG );
826
+ dw_printf ("Three digit abbreviation2: callsign \"%s\", symbol code '%c' (Box DTMF), overlay '%c', checksum %c\n" ,
827
+ m_callsign , m_symbol_code , m_symtab_or_overlay , e [len - 1 ]);
828
+ }
796
829
}
797
830
return (0 );
798
831
}
@@ -810,7 +843,7 @@ static int parse_callsign (char *e)
810
843
}
811
844
812
845
if (isupper (e [len - 2 ])) {
813
- strncpy (tttemp , e + 1 , len - 4 );
846
+ memcpy (tttemp , e + 1 , len - 4 );
814
847
tttemp [len - 4 ] = '\0' ;
815
848
tt_two_key_to_text (tttemp , 0 , m_callsign );
816
849
@@ -820,14 +853,24 @@ static int parse_callsign (char *e)
820
853
tt_two_key_to_text (tttemp , 0 , stemp );
821
854
m_symbol_code = APRSTT_DEFAULT_SYMBOL ;
822
855
m_symtab_or_overlay = stemp [0 ];
856
+ if (tt_debug ) {
857
+ text_color_set (DW_COLOR_DEBUG );
858
+ dw_printf ("Callsign in two key format1: callsign \"%s\", symbol code '%c' (Box DTMF), overlay '%c', checksum %c\n" ,
859
+ m_callsign , m_symbol_code , m_symtab_or_overlay , e [len - 1 ]);
860
+ }
823
861
}
824
862
else {
825
- strncpy (tttemp , e + 1 , len - 3 );
863
+ memcpy (tttemp , e + 1 , len - 3 );
826
864
tttemp [len - 3 ] = '\0' ;
827
865
tt_two_key_to_text (tttemp , 0 , m_callsign );
828
866
829
867
m_symbol_code = APRSTT_DEFAULT_SYMBOL ;
830
868
m_symtab_or_overlay = e [len - 2 ];
869
+ if (tt_debug ) {
870
+ text_color_set (DW_COLOR_DEBUG );
871
+ dw_printf ("Callsign in two key format2: callsign \"%s\", symbol code '%c' (Box DTMF), overlay '%c', checksum %c\n" ,
872
+ m_callsign , m_symbol_code , m_symtab_or_overlay , e [len - 1 ]);
873
+ }
831
874
}
832
875
return (0 );
833
876
}
@@ -864,9 +907,11 @@ static int parse_callsign (char *e)
864
907
static int parse_object_name (char * e )
865
908
{
866
909
int len ;
867
- //int c_length;
868
- //char tttemp[40];
869
- //char stemp[30];
910
+
911
+ if (tt_debug ) {
912
+ text_color_set (DW_COLOR_DEBUG );
913
+ dw_printf ("APRStt parse object name (starts with AA): \"%s\"\n" , e );
914
+ }
870
915
871
916
assert (e [0 ] == 'A' );
872
917
assert (e [1 ] == 'A' );
@@ -882,6 +927,10 @@ static int parse_object_name (char *e)
882
927
if (tt_two_key_to_text (e + 2 , 0 , m_callsign ) == 0 ) {
883
928
m_callsign [9 ] = '\0' ; /* truncate to 9 */
884
929
m_ssid = 0 ; /* No ssid for object name */
930
+ if (tt_debug ) {
931
+ text_color_set (DW_COLOR_DEBUG );
932
+ dw_printf ("Object name in two key format: \"%s\"\n" , m_callsign );
933
+ }
885
934
return (0 );
886
935
}
887
936
}
@@ -935,6 +984,11 @@ static int parse_symbol (char *e)
935
984
int nn ;
936
985
char stemp [10 ];
937
986
987
+ if (tt_debug ) {
988
+ text_color_set (DW_COLOR_DEBUG );
989
+ dw_printf ("APRStt parse symbol (starts with AB): \"%s\"\n" , e );
990
+ }
991
+
938
992
assert (e [0 ] == 'A' );
939
993
assert (e [1 ] == 'B' );
940
994
@@ -959,12 +1013,22 @@ static int parse_symbol (char *e)
959
1013
case '1' :
960
1014
m_symtab_or_overlay = '/' ;
961
1015
m_symbol_code = 32 + nn ;
1016
+ if (tt_debug ) {
1017
+ text_color_set (DW_COLOR_DEBUG );
1018
+ dw_printf ("symbol code '%c', primary symbol table '%c'\n" ,
1019
+ m_symbol_code , m_symtab_or_overlay );
1020
+ }
962
1021
return (0 );
963
1022
break ;
964
1023
965
1024
case '2' :
966
1025
m_symtab_or_overlay = '\\' ;
967
1026
m_symbol_code = 32 + nn ;
1027
+ if (tt_debug ) {
1028
+ text_color_set (DW_COLOR_DEBUG );
1029
+ dw_printf ("symbol code '%c', alternate symbol table '%c'\n" ,
1030
+ m_symbol_code , m_symtab_or_overlay );
1031
+ }
968
1032
return (0 );
969
1033
break ;
970
1034
@@ -973,6 +1037,11 @@ static int parse_symbol (char *e)
973
1037
if (tt_two_key_to_text (e + 5 , 0 , stemp ) == 0 ) {
974
1038
m_symbol_code = 32 + nn ;
975
1039
m_symtab_or_overlay = stemp [0 ];
1040
+ if (tt_debug ) {
1041
+ text_color_set (DW_COLOR_DEBUG );
1042
+ dw_printf ("symbol code '%c', alternate symbol table with overlay '%c'\n" ,
1043
+ m_symbol_code , m_symtab_or_overlay );
1044
+ }
976
1045
return (0 );
977
1046
}
978
1047
}
@@ -1018,6 +1087,11 @@ static int parse_aprstt3_call (char *e)
1018
1087
assert (e [0 ] == 'A' );
1019
1088
assert (e [1 ] == 'C' );
1020
1089
1090
+ if (tt_debug ) {
1091
+ text_color_set (DW_COLOR_DEBUG );
1092
+ dw_printf ("APRStt parse QIKcom-2 / APRStt 3 ten digit call or five digit suffix (starts with AC): \"%s\"\n" , e );
1093
+ }
1094
+
1021
1095
if (strlen (e ) == 2 + 10 ) {
1022
1096
char call [12 ];
1023
1097
@@ -1125,6 +1199,11 @@ static int parse_location (char *e)
1125
1199
char mh [20 ];
1126
1200
char stemp [32 ];
1127
1201
1202
+ if (tt_debug ) {
1203
+ text_color_set (DW_COLOR_DEBUG );
1204
+ dw_printf ("APRStt parse location (starts with B): \"%s\"\n" , e );
1205
+ // TODO: more detail later...
1206
+ }
1128
1207
1129
1208
assert (* e == 'B' );
1130
1209
@@ -1985,7 +2064,7 @@ static void check_result (void)
1985
2064
1986
2065
int main (int argc , char * argv [])
1987
2066
{
1988
- aprs_tt_init (NULL );
2067
+ aprs_tt_init (NULL , 0 );
1989
2068
1990
2069
error_count = 0 ;
1991
2070
0 commit comments