summaryrefslogtreecommitdiffstats
path: root/libkdepim/tests/testutf7encoder2.cpp
blob: 0661d63c1b9d4d031c88db64a3767b1d091b8e93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include "qutf7codec.h"
#include "qutf7codec.cpp"
#include <qtextstream.h>
#include <string.h>
#include <assert.h>
#include <iostream.h>

int main( int argc, char * argv[] ) {
  if ( argc == 1 ) {
    (void)new QUtf7Codec;

    QTextCodec * codec = QTextCodec::codecForName("utf-7");
    assert(codec);

    QTextIStream my_cin(stdin);

    QTextOStream my_cout(stdout);
    my_cout.setCodec(codec);
    
    QString buffer = my_cin.read();

    //    qDebug("buffer == " + buffer);

#ifdef USE_STREAM
    my_cout << buffer << endl;
#else
    QTextEncoder * enc = codec->makeEncoder();
#ifdef CHAR_WISE
    int len;
    for ( int i = 0 ; i < buffer.length() ; i++ ) {
      len = 1;
      cout << (enc->fromUnicode(QString(buffer[i]),len)).data();
    }
    cout << endl;
#else
    int len = buffer.length();
    cout << (enc->fromUnicode(buffer,len)).data() << endl;;
#endif // CHAR_WISE
    delete enc;
#endif // else USE_STREAM
  } else {
    qWarning("usage: testutf7encoder2 < infile > outfile\n");
  }
  QTextCodec::deleteAllCodecs();
}