changeset 356:dbeb4a5628f5

uptools/libcoding: implemented 8859-1 -> GSM7 encoding function
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 06 Feb 2018 20:18:43 +0000
parents 8fee530f7850
children 15120d15cab5
files uptools/libcoding/Makefile uptools/libcoding/gsm7_encode.c
diffstat 2 files changed, 37 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/uptools/libcoding/Makefile	Tue Feb 06 19:27:19 2018 +0000
+++ b/uptools/libcoding/Makefile	Tue Feb 06 20:18:43 2018 +0000
@@ -1,8 +1,8 @@
 CC=	gcc
 CFLAGS=	-O2
 OBJS=	alpha_addr.o decode_helpers.o grokdcs.o gsm7_decode.o \
-	gsm7_decode_tables.o gsm7_encode_table.o gsm7_unpack.o gsmtime.o \
-	hexdecode.o hexdump.o number_decode.o scaddr.o ucs2_decode.o \
+	gsm7_decode_tables.o gsm7_encode.o gsm7_encode_table.o gsm7_unpack.o \
+	gsmtime.o hexdecode.o hexdump.o number_decode.o scaddr.o ucs2_decode.o \
 	utf8_decode.o
 LIB=	libcoding.a
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/uptools/libcoding/gsm7_encode.c	Tue Feb 06 20:18:43 2018 +0000
@@ -0,0 +1,35 @@
+/*
+ * This library module implements the function for encoding from ISO 8859-1
+ * into the GSM 7-bit default alphabet (03.38 or 23.038).
+ */
+
+#include <sys/types.h>
+
+extern u_char gsm7_encode_table[256];
+
+latin1_to_gsm7(inbuf, outbuf, outmax, outlenp)
+	u_char *inbuf, *outbuf;
+	unsigned outmax, *outlenp;
+{
+	u_char *ip = inbuf, *op = outbuf;
+	unsigned outcnt = 0, c, n;
+
+	while (c = *ip++) {
+		c = gsm7_encode_table[c];
+		if (c == 0xFF)
+			return(-1);
+		if (c & 0x80)
+			n = 2;
+		else
+			n = 1;
+		if (outcnt + n > outmax)
+			return(-2);
+		if (c & 0x80) {
+			*op++ = 0x1B;
+			*op++ = c & 0x7F;
+		} else
+			*op++ = c;
+	}
+	*outlenp = outcnt;
+	return(0);
+}