Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools2/pages_parser.py
blob: e8b11ec23654d9da4d2686e1a6316b64a9f60976 (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
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Test to use sax to parse wikimedia xml files

from xml.sax import make_parser, handler
import codecs
import re
import os
import sys

import config


def normalize_title(title):
    return title.strip().replace(' ', '_').capitalize()


class WikimediaXmlPagesProcessor(handler.ContentHandler):

    def __init__(self, file_name, debug):
        handler.ContentHandler.__init__(self)
        self._page_counter = 0
        self._page = None
        self._debug = debug
        if self._debug:
            self._output = codecs.open('%s.all_pages' % file_name,
                    encoding='utf-8', mode='w')
        if self._debug:
            self._output_titles = codecs.open('%s.titles' % file_name,
                    encoding='utf-8', mode='w')
        self._output_redirects = codecs.open('%s.redirects' % file_name,
                encoding='utf-8', mode='w')
        self._output_templates = codecs.open('%s.templates' % file_name,
                encoding='utf-8', mode='w')
        if self._debug:
            self._output_blacklisted = codecs.open('%s.blacklisted' %
                    file_name, encoding='utf-8', mode='w')
        self._output_links = codecs.open('%s.links' % file_name,
                encoding='utf-8', mode='w')
        self._output_page_templates = codecs.open('%s.page_templates' %
                file_name, encoding='utf-8', mode='w')

        self.link_re = re.compile('\[\[.*?\]\]')
        self.template_re = re.compile('{{.*?}}')

    def startElement(self, name, attrs):
        if name == "page":
            self._page = {}
            self._page_counter += 1
        self._text = ""

    def characters(self, content):
        if self._text == '':
            self._first_line = content.lstrip().upper()
        self._text = self._text + content

    def _register_page(self, register):
        register.write('\01\n')
        register.write('%s\n' % normalize_title(self._title))
        register.write('%d\n' % len(self._page))
        register.write('\02\n')
        register.write('%s\n' % self._page)
        register.write('\03\n')

    def endElement(self, name):
        if name == "title":
            self._title = self._text
        elif name == "text":
            self._page = self._text
        elif name == "page":

            title = normalize_title(self._title)
            print "Page %d '%s', length %d                   \r" % \
                    (self._page_counter, title, len(self._page)),

            for namespace in config.BLACKLISTED_NAMESPACES:
                if unicode(self._title.upper()).startswith(namespace):
                    if self._debug:
                        self._register_page(self._output_blacklisted)
                    return

            is_redirect = False

            for tag in config.REDIRECT_TAGS:
                if unicode(self._first_line).startswith(tag):
                    is_redirect = True
                    break

            if is_redirect:
                # redirected pages

                page_destination = "ERROR"
                search = self.link_re.search(self._page)
                if search is not None:
                    # keep out the [[]]
                    page_destination = search.group()[2:-2]
                    page_destination = normalize_title(page_destination)
                if page_destination.find('|') > -1:
                    page_destination = \
                            page_destination[:page_destination.find('|')]

                if title != page_destination:
                    self._output_redirects.write('[[%s]]\t[[%s]]\n' %
                            (title, page_destination))
            else:

                for namespace in config.TEMPLATE_NAMESPACES:
                    if unicode(self._title).startswith(namespace):
                        # templates
                        self._register_page(self._output_templates)
                        return

                # titles
                if self._debug:
                    self._output_titles.write('%s\n' % title)

                # processed
                if self._debug:
                    self._register_page(self._output)

                # links
                links = self.link_re.findall(unicode(self._page))
                self._output_links.write('%s ' % title)
                for link in links:
                    # remove '[[' and ']]'
                    link = link[2:-2]
                    # Check if have a valid namespace
                    colon_position = link.find(':')
                    valid = True
                    if colon_position > -1:
                        namespace = link[:colon_position]
                        valid = namespace in config.LINKS_NAMESPACES
                    if valid:
                        # if there are a pipe remove the right side
                        pipe_position = link.find('|')
                        if pipe_position > -1:
                            link = link[:pipe_position]
                        link = normalize_title(link)
                        self._output_links.write('%s ' % link)
                self._output_links.write('\n')

                # find templates used in the pages
                templates = self.template_re.findall(unicode(self._page))
                templates_list = []
                for template in templates:
                    # remove '{{' and '}}'
                    template = template[2:-2]
                    # if there are a pipe remove the right side
                    pipe_position = template.find('|')
                    if pipe_position > -1:
                        template = template[:pipe_position]
                    # if there are a : remove the right side
                    colon_position = template.find(':')
                    if colon_position > -1:
                        template = template[:colon_position]
                    if len(template) == 0:
                        break
                    # ignore templates starting with # or {
                    if template[0] == '#' or template[0] == '{':
                        break
                    template = normalize_title(template)
                    # only add one time by page
                    if not template in templates_list:
                        templates_list.append(template)

                if len(templates_list) > 0:
                    self._output_page_templates.write('%s ' % title)
                    for template in templates_list:
                        self._output_page_templates.write('%s ' % template)
                    self._output_page_templates.write('\n')

        elif name == "mediawiki":
            if self._debug:
                self._output.close()
                self._output_titles.close()
                self._output_blacklisted.close()
            self._output_redirects.close()
            self._output_templates.close()
            self._output_links.close()
            self._output_page_templates.close()
            print "Processed %d pages." % self._page_counter

debug = False
if len(sys.argv) > 1:
    debug = (sys.argv[1] == '--debug')

parser = make_parser()
parser.setContentHandler(
    WikimediaXmlPagesProcessor(config.input_xml_file_name, debug))
parser.parse(config.input_xml_file_name)