File: Scanner.cpp

package info (click to toggle)
fotowall 0.9-8
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 4,280 kB
  • sloc: cpp: 23,275; makefile: 51; sh: 25
file content (238 lines) | stat: -rw-r--r-- 7,332 bytes parent folder | download | duplicates (3)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
/***************************************************************************
 *                                                                         *
 *   This file is part of the Wordcloud project,                           *
 *       http://www.enricoros.com/opensource/wordcloud                     *
 *                                                                         *
 *   Copyright (C) 2009 by Enrico Ros <enrico.ros@gmail.com>               *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include "Scanner.h"

#include <QDebug>
#include <QFile>
#include <QHeaderView>
#include <QRegExp>
#include <QStringList>
#include <QTableWidget>
#include <QTextStream>

using namespace Wordcloud;

bool Scanner::addFromFile(const QString & txtFilePath)
{
    QFile file(txtFilePath);
    if (!file.open(QIODevice::ReadOnly))
        return false;

    // read all the words from file
    QRegExp splitNonWords("\\W");
    QTextStream ts(&file);
    while (!ts.atEnd()) {
        QStringList words = ts.readLine().split(splitNonWords, QString::SkipEmptyParts);
        foreach (const QString & word, words)
            addWord(word);
    }
    return true;
}

bool Scanner::addFromString(const QString & string)
{
    QRegExp splitNonWords("\\W");
    QStringList words = string.split(splitNonWords, QString::SkipEmptyParts);
    foreach (const QString & word, words)
        addWord(word);
    return true;
}

bool Scanner::addFromUrl(const QUrl & url)
{
    qWarning() << "Scanner::addFromUrl(" << url.toString() << ") not implemented";
    return false;
}

bool Scanner::addFromRss(const QUrl & rss)
{
    qWarning() << "Scanner::addFromRss(" << rss.toString() << ") not implemented";
    return false;
}

void Scanner::clear()
{
    m_words.clear();
}

static bool wordFrequencySorter(const Word &w1, const Word &w2)
{
    return w1.count > w2.count;
}

WordList Scanner::takeWords(bool cleanList)
{
    // remove common words, single ones, and sort by frequency
    if (cleanList) {
        removeWordsByLanguage(QLocale::Italian);
        removeWordsByLanguage(QLocale::English);
        removeWordsByLanguage(QLocale::French);
        int count = 2;
        while (m_words.size() >= 40) {
            removeWordsBelowCount(count);
            ++count;
        }
        qSort(m_words.begin(), m_words.end(), wordFrequencySorter);
    }

    // FIXME find out common words (FAKE: use the first..)
    WordList::iterator wIt = m_words.begin();
    for (; wIt != m_words.end(); ++wIt)
        wIt->commonString = wIt->variants.begin().key();

    // clear private list and return
    WordList wl = m_words;
    m_words.clear();
    return wl;
}

int Scanner::wordCount() const
{
    return m_words.count();
}

bool Scanner::isEmpty() const
{
    return m_words.isEmpty();
}

void Scanner::dumpOnTable(QTableWidget * table)
{
    // setup the table
    table->clear();
    table->setColumnCount(2);
    table->setRowCount(m_words.size());
    table->horizontalHeader()->setVisible(true);
    table->setHorizontalHeaderItem(0, new QTableWidgetItem(tr("Word")));
    table->setHorizontalHeaderItem(1, new QTableWidgetItem(tr("#")));
    table->verticalHeader()->setVisible(false);
    // populate the table
    int row = 0;
    WordList::iterator i = m_words.begin();
    for (; i != m_words.end(); ++i) {
        table->setItem(row, 0, new QTableWidgetItem(i->variants.begin().key()));
        table->setItem(row++, 1, new QTableWidgetItem(QString::number(i->count)));
    }
}

void Scanner::dumpWords() const
{
    QString dumpString;
    bool first = true;
    foreach (const Word & word, m_words) {
        if (first)
            first = false;
        else
            dumpString += ", ";
        dumpString += QString("\"%1\"").arg(word.lowerString);
    }
    qWarning("WordList: %s", qPrintable(dumpString));
}

void Scanner::addWord(const QString & word)
{
    QString lowerWord = word.toLower();

    // update existing entries
    WordList::iterator i = m_words.begin();
    for (; i != m_words.end(); ++i) {
        if (i->lowerString == lowerWord) {
            i->count++;
            if (i->variants.contains(word))
                i->variants[word]++;
            else
                i->variants[word] = 1;
            return;
        }
    }

    // add a new entry
    Word w;
    w.lowerString = lowerWord;
    w.count = 1;
    w.variants[word] = 1;
    m_words.append(w);
}

void Scanner::removeWordsByLanguage(QLocale::Language language)
{
    const char ** regExps;
    int regExpCount = 0;

    switch (language) {
        case QLocale::English: {
            static const char * er[] = {
                "and", "are", "has", "to", "by", "for", "or", "the", "I", "you",
                "on", "off", "of", "with"
            };
            regExps = er;
            regExpCount = sizeof(er) / sizeof(const char *);
            } break;

        case QLocale::French: {
            static const char * er[] = {
                "le", "d[ue]", "un", "être", "et", "a", "je", "tu", "il.", "nous", "vous",
                "me", "te", "[mts]on", "lui", "nous", "ne", "sont", "que", "[sc]e", "qui", "dans",
                "elle", "au", "le", "pour", "par", "y", "avec",  "si", "là", "ça"
            };
            regExps = er;
            regExpCount = sizeof(er) / sizeof(const char *);
            } break;

        case QLocale::Italian: {
            static const char * r[] = {
                ".", "a.", "all", "alla", "anche", "anzich.", "che", "ci", "cio.",
                "come", "con", "cos.", "cui", "da", "da.", "dall.", "degli", "de.",
                "dell", "della", "delle", "di", "dove", "due", "ed", "far.", "fino",
                "fra", "gli", "i.", "l.", "loro", "nel", "nell", "nella", "nelle",
                "non", "per", "pi.", "poi", "pu.", "quale", "quell.", "quest.", "sar.",
                "s.", "senza", "su.", "sull", "sull.", "tali", "tra", "un", "un.", "uso"
            };
            regExps = r;
            regExpCount = sizeof(r) / sizeof(const char *);
            } break;

        default:
            qWarning("Scanner::removeWordsByLanguage: language unsupported");
            return;
    }

    // erase all words matching regexps
    WordList::iterator wIt = m_words.begin();
    while (wIt != m_words.end()) {
        bool found = false;
        for (int i = 0; i < regExpCount; i++) {
            if (QRegExp(regExps[i]).exactMatch(wIt->lowerString)) {
                found = true;
                break;
            }
        }
        if (found)
            wIt = m_words.erase(wIt);
        else
            ++wIt;
    }
}

void Scanner::removeWordsBelowCount(int count)
{
    WordList::iterator i = m_words.begin();
    while (i != m_words.end()) {
        if (i->count < count)
            i = m_words.erase(i);
        else
            ++i;
    }
}