forked from psankar/korkai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogger-tamil-words-parser.go
178 lines (146 loc) · 3.79 KB
/
blogger-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
/*
* A parser to identify the list of tamil words from a blogger 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 Category struct {
Term string `xml:"term,attr"`
}
type Entry struct {
Title string `xml:"title"`
Content string `xml:"content"`
Category []Category `xml:"category"`
}
type Feed struct {
Entry []Entry `xml:"entry"`
}
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 := Feed{}
err = xml.Unmarshal(b, &v)
if err != nil {
fmt.Println("Parsing error : ")
fmt.Println(err)
return
}
m := make(map[string]int)
for _, i := range v.Entry {
isPost := false
/* proceed only if the entry is a post
* ignore comments, settings etc. */
for _, cat := range i.Category {
if cat.Term == "http://schemas.google.com/blogger/2008/kind#post" {
isPost = true
break
}
}
if isPost == true {
fmt.Printf("Parsing %s\n", i.Title)
/* 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)
fmt.Println("========")
}
return
}
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]
}