changeset 6:b831ee7d512c

libcoding: add absolute time encoding function
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 05 Aug 2023 05:45:15 +0000
parents c79d09284c5f
children cd2d82ec5144
files libcoding/Makefile libcoding/timestamp.c
diffstat 2 files changed, 62 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libcoding/Makefile	Sat Aug 05 03:20:11 2023 +0000
+++ b/libcoding/Makefile	Sat Aug 05 05:45:15 2023 +0000
@@ -1,7 +1,7 @@
 CC=	gcc
 CFLAGS=	-O2
 OBJS=	gsm7_encode.o gsm7_encode_table.o gsm7_pack.o hexout.o number_encode.o \
-	ucs2_bigend.o utf8_decode.o utf8_decode2.o
+	timestamp.o ucs2_bigend.o utf8_decode.o utf8_decode2.o
 LIB=	libcoding.a
 
 all:	${LIB}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libcoding/timestamp.c	Sat Aug 05 05:45:15 2023 +0000
@@ -0,0 +1,61 @@
+/*
+ * The function implemented in this module encodes a GSM SMS absolute timestamp
+ * from ASCII representation into PDU octets.
+ */
+
+#include <sys/types.h>
+#include <ctype.h>
+
+encode_gsm_sms_abstime(str, bin)
+	char *str;
+	u_char *bin;
+{
+	u_char digits[14];
+
+	if (!isdigit(str[0]) || !isdigit(str[1]))
+		return(-1);
+	digits[0] = str[0] - '0';
+	digits[1] = str[1] - '0';
+	if (str[2] != '/')
+		return(-1);
+	if (!isdigit(str[3]) || !isdigit(str[4]))
+		return(-1);
+	digits[2] = str[3] - '0';
+	digits[3] = str[4] - '0';
+	if (str[5] != '/')
+		return(-1);
+	if (!isdigit(str[6]) || !isdigit(str[7]))
+		return(-1);
+	digits[4] = str[6] - '0';
+	digits[5] = str[7] - '0';
+	if (str[8] != ',')
+		return(-1);
+	if (!isdigit(str[9]) || !isdigit(str[10]))
+		return(-1);
+	digits[6] = str[9] - '0';
+	digits[7] = str[10] - '0';
+	if (str[11] != ':')
+		return(-1);
+	if (!isdigit(str[12]) || !isdigit(str[13]))
+		return(-1);
+	digits[8] = str[12] - '0';
+	digits[9] = str[13] - '0';
+	if (str[14] != ':')
+		return(-1);
+	if (!isdigit(str[15]) || !isdigit(str[16]))
+		return(-1);
+	digits[10] = str[15] - '0';
+	digits[11] = str[16] - '0';
+	if (str[17] != '+' && str[17] != '-')
+		return(-1);
+	if (!isdigit(str[18]) || !isdigit(str[19]))
+		return(-1);
+	digits[12] = str[18] - '0';
+	digits[13] = str[19] - '0';
+	if (str[20])
+		return(-1);
+	if (str[17] == '-')
+		digits[12] |= 8;
+	pack_digit_bytes(digits, bin, 7);
+	return(0);
+}