@@ -759,6 +759,63 @@ int encode_object (char *name, int compressed, time_t thyme, double lat, double
759
759
} /* end encode_object */
760
760
761
761
762
+
763
+ /*------------------------------------------------------------------
764
+ *
765
+ * Name: encode_message
766
+ *
767
+ * Purpose: Construct info part for APRS "message" format.
768
+ *
769
+ * Inputs: addressee - Addressed to, up to 9 characters.
770
+ * text - Text part of the message.
771
+ * id - Identifier, 0 to 5 characters.
772
+ * result_size - Ammount of space for result, provided by
773
+ * caller, to avoid buffer overflow.
774
+ *
775
+ * Outputs: presult - Stored here.
776
+ *
777
+ * Returns: Number of characters in result.
778
+ *
779
+ * Description:
780
+ *
781
+ *----------------------------------------------------------------*/
782
+
783
+
784
+ typedef struct aprs_message_s {
785
+ char dti ; /* : Data Type Indicator */
786
+ char addressee [9 ]; /* Fixed width 9 characters. */
787
+ char sep ; /* : separator */
788
+ char text ;
789
+ } aprs_message_t ;
790
+
791
+ int encode_message (char * addressee , char * text , char * id , char * presult , size_t result_size )
792
+ {
793
+ aprs_message_t * p = (aprs_object_t * ) presult ;
794
+ int n ;
795
+
796
+ p -> dti = ':' ;
797
+
798
+ memset (p -> addressee , ' ' , sizeof (p -> addressee ));
799
+ n = strlen (addressee );
800
+ if (n > (int )(sizeof (p -> addressee ))) n = sizeof (p -> addressee );
801
+ memcpy (p -> addressee , addressee , n );
802
+
803
+ p -> sep = ':' ;
804
+ p -> text = '\0' ;
805
+
806
+ strlcat (presult , text , result_size );
807
+ if (strlen (id ) > 0 ) {
808
+ strlcat (presult , "{" , result_size );
809
+ strlcat (presult , id , result_size );
810
+ }
811
+
812
+ return (strlen (presult ));
813
+
814
+ } /* end encode_message */
815
+
816
+
817
+
818
+
762
819
/*------------------------------------------------------------------
763
820
*
764
821
* Name: main
@@ -767,7 +824,7 @@ int encode_object (char *name, int compressed, time_t thyme, double lat, double
767
824
*
768
825
* Description: Just a smattering, not an organized test.
769
826
*
770
- * $ rm a.exe ; gcc -DEN_MAIN encode_aprs.c latlong.c textcolor.c ; ./a.exe
827
+ * $ rm a.exe ; gcc -DEN_MAIN encode_aprs.c latlong.c textcolor.c misc.a ; ./a.exe
771
828
*
772
829
*----------------------------------------------------------------*/
773
830
@@ -881,9 +938,35 @@ int main (int argc, char *argv[])
881
938
exit (EXIT_FAILURE );
882
939
}
883
940
941
+
942
+ /*********** Message. ***********/
943
+
944
+
945
+ encode_message ("N2GH" , "some stuff" , "" , result , sizeof (result ));
946
+ dw_printf ("%s\n" , result );
947
+ if (strcmp (result , ":N2GH :some stuff" ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
948
+
949
+
950
+ encode_message ("N2GH" , "other stuff" , "12345" , result , sizeof (result ));
951
+ dw_printf ("%s\n" , result );
952
+ if (strcmp (result , ":N2GH :other stuff{12345" ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
953
+
954
+
955
+ encode_message ("WB2OSZ-123" , "other stuff" , "12345" , result , sizeof (result ));
956
+ dw_printf ("%s\n" , result );
957
+ if (strcmp (result , ":WB2OSZ-12:other stuff{12345" ) != 0 ) { dw_printf ("ERROR! line %d\n" , __LINE__ ); errors ++ ; }
958
+
959
+
960
+ if (errors != 0 ) {
961
+ text_color_set (DW_COLOR_ERROR );
962
+ dw_printf ("Encode APRS test FAILED with %d errors.\n" , errors );
963
+ exit (EXIT_FAILURE );
964
+ }
965
+
884
966
text_color_set (DW_COLOR_REC );
885
967
dw_printf ("Encode APRS test PASSED with no errors.\n" );
886
968
exit (EXIT_SUCCESS );
969
+
887
970
888
971
} /* end main */
889
972
0 commit comments