~jtv/corpusfiltergraph/cross-python

« back to all changes in this revision

Viewing changes to trunk/lib/corpusfg/plugins/convert-subscript.py

  • Committer: tahoar
  • Date: 2012-05-02 15:46:23 UTC
  • Revision ID: svn-v4:bc069b21-dff4-4e29-a776-06a4e04bad4e::266
new layout. need to update code to use the new layout

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
2
# -*- coding: utf8 -*-
 
3
 
 
4
#===============================================================================
 
5
# Author: Anol Paisal
 
6
#===============================================================================
 
7
 
 
8
#version:
 
9
#4.0.264 - version update
 
10
 
 
11
import os
 
12
import sys
 
13
import re
 
14
import common as cf
 
15
import logging
 
16
 
 
17
logger = logging.getLogger('.'.join([os.path.splitext(os.path.basename(sys.argv[0]))[0],'manager','filtergraph',__name__]))
 
18
skipclose = True
 
19
 
 
20
class filter(object):
 
21
 
 
22
        cfg = {
 
23
                'encoding': 'utf8',
 
24
                'inputfile': '',
 
25
                'outputfile': '',
 
26
                'version': '4.0.264',
 
27
                }
 
28
        encoding = 'utf8'
 
29
        inputfile = ''
 
30
        outputfile = ''
 
31
        replace = {
 
32
                u'0': u'₀',
 
33
                u'1': u'₁',
 
34
                u'2': u'₂',
 
35
                u'3': u'₃',
 
36
                u'4': u'₄',
 
37
                u'5': u'₅',
 
38
                u'6': u'₆',
 
39
                u'7': u'₇',
 
40
                u'8': u'₈',
 
41
                u'9': u'₉',
 
42
                u'+': u'₊',
 
43
                u'-': u'₋',
 
44
                u'=': u'₌',
 
45
                u'(': u'₍',
 
46
                u')': u'₎',
 
47
                }
 
48
        isopen = False
 
49
        p = object
 
50
        errors = []
 
51
 
 
52
        def open(self,parent,cfg):
 
53
                self.encoding = 'utf8' if 'utf8' in cfg['encoding'].lower().replace('-','') else cfg['encoding']
 
54
                self.inputfile = cfg['inputfile'].replace('%(rootfolder)s',self.p.rootfolder) if cfg['inputfile'] else self.inputfile
 
55
                self.outputfile = cfg['outputfile'].replace('%(rootfolder)s',self.p.rootfolder) if cfg['outputfile'] else self.outputfile
 
56
                if (self.inputfile and not self.outputfile) or (not self.inputfile and self.outputfile):
 
57
                        self.errors.append([__name__,'invalid','[%s] inputfile=%s without outputfile= value'%(__name__,cfg['inputfile'])])
 
58
                        logger.warn('%s\t%s',*self.errors[-1][1:])
 
59
 
 
60
                self.regex = re.compile(r"<(sub)>([\d\(\)\+\=\-n− ]*)</\1>", re.IGNORECASE | re.DOTALL | re.UNICODE)
 
61
        def run(self,k):
 
62
                global skipclose
 
63
                skipclose = not self.inputfile
 
64
                if self.inputfile: return
 
65
 
 
66
                self.p.cfoutput[k]['tempbuff'] = [self.regex.sub(self.__filter,line) for line in self.p.cfoutput[k]['tempbuff']]
 
67
 
 
68
        def flush(self,k):
 
69
                return
 
70
 
 
71
        def close(self):
 
72
                if skipclose: return
 
73
 
 
74
                import codecs
 
75
 
 
76
                if not os.path.exists(self.inputfile):
 
77
                        self.errors.append([__name__,'missing','[%s] %s'%(__name__,self.inputfile)])
 
78
                        logger.error('%s\t%s',*self.errors[-1][1:])
 
79
                        return
 
80
 
 
81
                # make output folder
 
82
                try:
 
83
                        os.makedirs(os.path.dirname(self.outputfile))
 
84
                except OSError,e:
 
85
                        if not e.errno == 17:
 
86
                                logger.exception('%s\t%s, %s, %s',*['failed',e.errno,e.strerror,e.filename,])
 
87
                                raise OSError(e)
 
88
 
 
89
                # open input and output files
 
90
                out = self.outputfile
 
91
                if out == self.inputfile:
 
92
                        import tempfile
 
93
                        fd,out = tempfile.mkstemp(suffix='.tmp', prefix='~', dir=self.p.tempdir)
 
94
                        os.close(fd)
 
95
                try:
 
96
                        o = codecs.open(out,'w',self.encoding)
 
97
                        i = codecs.open(self.inputfile,'r',self.encoding)
 
98
                except:
 
99
                        raise RuntimeError('Failed to open [%s] input/output files'%(__name__))
 
100
 
 
101
                sys.stderr.write('[%s] %s\n   Please wait'%(__name__,self.outputfile))
 
102
                cnt = 0
 
103
                try:
 
104
                        # loop writes output line-by-line
 
105
                        for line in i:
 
106
                                o.write('%s\n'%(self.regex.sub(self.__filter,line.rstrip('\r\n'))))
 
107
                                cnt += 1
 
108
                                if not cnt%5000: sys.stderr.write('.')
 
109
                        sys.stderr.write('\n')
 
110
                        # close input and output files
 
111
                        i.close()
 
112
                        o.close()
 
113
 
 
114
                        if not out == self.outputfile:
 
115
                                import shutil
 
116
                                shutil.move(out,self.outputfile)
 
117
 
 
118
                except KeyboardInterrupt:
 
119
                        os.unlink(out)
 
120
                        raise KeyboardInterrupt()
 
121
 
 
122
                if not os.path.exists(self.outputfile):
 
123
                        self.errors.append([__name__,'missing','[%s] %s'%(__name__,self.outputfile)])
 
124
                        logger.error('%s\t%s',*self.errors[-1][1:])
 
125
 
 
126
        def __filter(self,match):
 
127
                text = match.group(2)
 
128
                for i, j in self.replace.items():
 
129
                        text = text.replace(i, j)
 
130
                return text
 
131
 
 
132
def usage():
 
133
        '''Command prompt help.'''
 
134
        return "\n%s\n\tUsage:\n\tfrom %s import filter\n"%(
 
135
        os.path.basename(sys.argv[0]),
 
136
        os.path.splitext(os.path.basename(sys.argv[0]))[0]
 
137
        )
 
138
 
 
139
licensetxt=u'''CorpusFiltergraph™ v4.0
 
140
Copyright © 2010-2012 Precision Translation Tools Co., Ltd.
 
141
 
 
142
This program is free software: you can redistribute it and/or modify
 
143
it under the terms of the GNU Lesser General Public License as published by
 
144
the Free Software Foundation, either version 3 of the License, or
 
145
(at your option) any later version.
 
146
 
 
147
This program is distributed in the hope that it will be useful,
 
148
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
149
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
150
GNU Lesser General Public License for more details.
 
151
 
 
152
You should have received a copy of the GNU Lesser General Public License
 
153
along with this program.  If not, see http://www.gnu.org/licenses/.
 
154
 
 
155
For more information, please contact Precision Translation Tools Co., Ltd.
 
156
at: http://www.precisiontranslationtools.com'''
 
157
 
 
158
if __name__ == "__main__":
 
159
        import os
 
160
        import sys
 
161
        sys.stdout.write(usage().encode('utf8')+'\n')