Initial commit from cwc-1.0.1
[cwc.git] / src / wordlist.cc
blobe56bf015cd098eca0c40bd93cf49a67c594a5e12
1 /**
2 * cwc - a crossword compiler. Copyright 1999 Lars Christensen
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
17 * 02111-1307, USA.
18 **/
20 #include <fstream>
21 #include "wordlist.hh"
23 wordlist::wordlist() {
24 allalpha = 0;
27 #define chunksize 8192
29 bool wordlist::wordok(const string &fn) {
30 int n = fn.length();
31 for (int i=0;i<n;i++)
32 if (!isalpha(fn[i]))
33 return false;
34 return true;
37 void wordlist::load(const string &fn) {
38 ifstream f(fn.c_str());
39 if (!f.is_open()) throw error("Failed to open file");
41 widx.clear();
43 symbol *chunk = new symbol[chunksize];
44 int chunkused = 0;
46 string ln;
47 while (!f.eof()) {
48 getline(f, ln);
49 int wlen = ln.length();
50 if (wlen == 0)
51 continue;
52 if (!wordok(ln))
53 continue;
55 if (chunksize - chunkused < wlen+1) {
56 chunk = new symbol[chunksize];
57 chunkused = 0;
60 symbol *addr = chunk + chunkused;
61 for (int i=0; i<wlen; i++) {
62 symbol s = symbol(tolower(ln[i]));
63 chunk[chunkused++] = s;
64 allalpha |= s.getsymbolset();
66 chunk[chunkused++] = symbol::outside;
68 widx.push_back(addr);