-
Notifications
You must be signed in to change notification settings - Fork 6
/
wordpress-tamil-words-parser.go
189 lines (155 loc) · 4.46 KB
/
wordpress-tamil-words-parser.go
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
/*
* A parser to identify the list of tamil words from a wordpress
* archive sorted both alphabetically and usage count wise
*
* Author: Sankar சங்கர் <[email protected]>
*/
package main
import (
"encoding/xml"
"fmt"
"io"
"io/ioutil"
"os"
"sort"
"strings"
"unicode"
"unicode/utf8"
)
type Rss struct {
Channel Channel `xml:"channel"`
}
type Channel struct {
Item []Item `xml:"item"`
}
type Item struct {
Title string `xml:"title"`
Content string `xml:"contentencoded"`
}
type Content struct {
Data string `xml:",chardata"`
}
func delim(r rune) bool {
return r == '<' || r == '>' || r == '/' || r == ' ' || r == '.' || r == '!' || r == '"' || r == ',' || r == ';' || r == '(' || r == ')' || r == '=' || r == ':' || r == '&' || r == '\'' || r == '?' || r == '’' || r == '#' || r == '-' || r == '”' || r == '‘' || r == '“' || r == ' ' || r == '[' || r == ']' || r == '{' || r == '}' || r == '' || r == '\n' || r == '|' || r == ':' || r == '`'
}
func main() {
for _, fname := range os.Args[1:] {
fmt.Println("\nReading " + fname + "\n")
b, err := ioutil.ReadFile(fname)
if err != nil {
fmt.Println("Read failed")
return
}
v := Rss{}
/*
x := `<rss>
<channel>
<item>
<title>எழுத ஆசை</title>
<link>http://nchokkan.wordpress.com/2008/11/23/%e0%ae%8e%e0%ae%b4%e0%af%81%e0%ae%a4-%e0%ae%86%e0%ae%9a%e0%af%88/</link>
<pubDate>Sun, 23 Nov 2008 07:07:33 +0000</pubDate>
<dc:creator>nchokkan</dc:creator>
<guid isPermaLink="false">http://nchokkan.wordpress.com/?p=3</guid>
<description></description>
<content:encoded><![CDATA[கழுத்தில் யாரேனும் டெட்லைன் கத்தி வைத்தால்மட்டுமே எழுத வரும் என்கிற அளவு கெட்டுப்போய்விட்ட முழுச் சோம்பேறி நான்.
என். சொக்கன் ...
]]></content:encoded>
</item>
</channel>
</rss>`
err = xml.Unmarshal([]byte(x), &v)
*/
err = xml.Unmarshal(b, &v)
if err != nil {
fmt.Println("Parsing error : ")
fmt.Println(err)
return
}
//fmt.Println(v)
m := make(map[string]int)
for _, i := range v.Channel.Item {
fmt.Printf("Parsing %s\n", i.Title)
//fmt.Printf("Content is : [[[[%s]]]\n", i.Content)
/* Extract the plain text content out of the HTML mess */
tokens := strings.FieldsFunc(i.Content, delim)
for _, token := range tokens {
r, l := utf8.DecodeRuneInString(token)
if l != 1 {
if unicode.Is(unicode.Tamil, r) {
/* Count only tamil words */
m[token] = m[token] + 1
}
}
}
}
fmt.Println("========")
fmt.Println("Parsing complete. Now onto tokenizing and ranking.")
fmt.Println("========")
kvs := NewValueSorter(m)
kvs.Sort()
statsFileName := fname + ".stats"
var statsFile *os.File
statsFile, err = os.Create(statsFileName)
if err != nil {
fmt.Println("File creation error:")
fmt.Println(err)
return
}
var tokens []string
tokens = make([]string, 0, len(kvs.Keys))
for k, v := range kvs.Keys {
tokens = append(tokens, v)
io.WriteString(statsFile, fmt.Sprintf("%d,%s\n", kvs.Vals[k], v))
}
statsFile.Close()
fmt.Println("Statistics for " + fname + " saved to " + statsFileName)
sort.Strings(tokens)
tokensFileName := fname + ".tokens"
var tokensFile *os.File
tokensFile, err = os.Create(tokensFileName)
if err != nil {
fmt.Println("File creation error:")
fmt.Println(err)
return
}
for _, str := range tokens {
_, err = io.WriteString(tokensFile, str+"\n")
if err != nil {
fmt.Println("File write error:")
fmt.Println(err)
return
}
}
tokensFile.Close()
fmt.Println("Statistics for " + fname + " saved to " + tokensFileName)
}
}
type ValueSorter struct {
Keys []string
Vals []int
}
func NewValueSorter(m map[string]int) *ValueSorter {
kvs := &ValueSorter{
Keys: make([]string, 0, len(m)),
Vals: make([]int, 0, len(m)),
}
for k, v := range m {
kvs.Keys = append(kvs.Keys, k)
kvs.Vals = append(kvs.Vals, v)
}
return kvs
}
func (kvs *ValueSorter) Sort() {
sort.Sort(kvs)
}
func (kvs *ValueSorter) Len() int {
return len(kvs.Vals)
}
func (kvs *ValueSorter) Less(i, j int) bool {
return kvs.Vals[i] > kvs.Vals[j]
}
func (kvs *ValueSorter) Swap(i, j int) {
kvs.Vals[i], kvs.Vals[j] = kvs.Vals[j], kvs.Vals[i]
kvs.Keys[i], kvs.Keys[j] = kvs.Keys[j], kvs.Keys[i]
}