summaryrefslogtreecommitdiff
path: root/src/modules/filters/utf8latin1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/filters/utf8latin1.cpp')
-rw-r--r--src/modules/filters/utf8latin1.cpp75
1 files changed, 75 insertions, 0 deletions
diff --git a/src/modules/filters/utf8latin1.cpp b/src/modules/filters/utf8latin1.cpp
new file mode 100644
index 0000000..08b288d
--- /dev/null
+++ b/src/modules/filters/utf8latin1.cpp
@@ -0,0 +1,75 @@
+/******************************************************************************
+ *
+ * UTF8Latin1 - SWFilter descendant to convert UTF-8 to Latin-1
+ *
+ */
+
+#include <stdlib.h>
+#include <stdio.h>
+
+#include <utf8latin1.h>
+#include <swbuf.h>
+
+SWORD_NAMESPACE_START
+
+UTF8Latin1::UTF8Latin1(char rchar) : replacementChar(rchar) {
+}
+
+
+char UTF8Latin1::processText(SWBuf &text, const SWKey *key, const SWModule *module)
+{
+ unsigned char *from;
+
+ int len;
+ unsigned long uchar;
+ unsigned char significantFirstBits, subsequent;
+
+ if ((unsigned long)key < 2) {// hack, we're en(1)/de(0)ciphering
+ return (char)-1;
+ }
+ len = strlen(text.c_str()) + 1; // shift string to right of buffer
+
+ SWBuf orig = text;
+ from = (unsigned char*)orig.c_str();
+
+
+ // -------------------------------
+
+ for (text = ""; *from; from++) {
+ uchar = 0;
+ if ((*from & 128) != 128) {
+ // if (*from != ' ')
+ uchar = *from;
+ }
+ else if ((*from & 128) && ((*from & 64) != 64)) {
+ // error, do nothing
+ continue;
+ }
+ else {
+ *from <<= 1;
+ for (subsequent = 1; (*from & 128); subsequent++) {
+ *from <<= 1;
+ from[subsequent] &= 63;
+ uchar <<= 6;
+ uchar |= from[subsequent];
+ }
+ subsequent--;
+ *from <<=1;
+ significantFirstBits = 8 - (2+subsequent);
+
+ uchar |= (((short)*from) << (((6*subsequent)+significantFirstBits)-8));
+ from += subsequent;
+ }
+
+ if (uchar < 0xff) {
+ text += (unsigned char)uchar;
+ }
+ else {
+ text += replacementChar;
+ }
+ }
+ return 0;
+}
+
+SWORD_NAMESPACE_END
+