Subversion Repositories navi

Rev

Rev 34 | Rev 36 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#!/usr/bin/python
# -*- coding: utf-8 -*-

import tornado.httpserver
import tornado.ioloop
import tornado.web
import tornado.autoreload
import tornado.database

import os
import re

from tsimapiak.parsenum import parse

class Index(tornado.web.RequestHandler):
    def get(self):
        self.redirect("/number")

class Number(tornado.web.RequestHandler):
    def get(self):
        self.render("templates/number.html", last="", numout=None)

    def post(self):
        try:
            num = self.get_argument("num").strip()
        except:
            self.redirect("/number")
        numout = parse(num.replace(" ",""))
        if numout == None:
            numout = -1
        self.render("templates/number.html", last=num, numout=numout)

class Restart(tornado.web.RequestHandler):
    def get(self):
        os.system("/usr/bin/restartnavi")

def getwords():
    ret = []
    current = u""
    db = tornado.database.Connection("127.0.0.1", "navi", user="navi", password="navi")
    for row in db.query("""
    SELECT *, CHAR_LENGTH(navi) AS NL
    FROM `metaWords`
    ORDER BY NL DESC"""
):
        if row["partOfSpeech"] in (u"v.", u"vin.", u"vtr."):
            current = unicode(row["ipa"])
            current = current.replace(ur"ɛ",ur"e").replace(ur".",ur"").replace(ur"ɾ",ur"r") \
           .replace(ur"ɪ",ur"ì").replace(ur"ˈ",ur"").replace(ur"'",ur"x") \
           .replace(ur"ŋ",ur"ng").replace(ur"j",ur"y").replace(ur"ʔ",ur"'") \
           .replace(ur"æ",ur"ä").replace(ur"ˌ",ur"").replace(ur"\t{ts}",ur"ts") \
           .replace(ur"ṛ",ur"rr").replace(ur"ḷ",ur"ll").replace(ur"k̚",ur"k ") \
           .replace(ur"p̚",ur"p ").replace(ur"t̚",ur"t ").replace(ur"'̚",ur"' ") \
           .replace(u"\\",ur"").replace(ur"(",ur"").replace(ur")",ur"") \
           .replace(ur"[",ur"").replace(ur"]",ur"").replace(ur"  "," ") \
           .strip()
            current = re.sub(ur" or.*","",current)
            current = re.sub(ur"z(.*)engk(.*)e",ur"z\1enk\2e",current)
            current = re.sub(ur"t(.*)ì(m|n)\ ",ur"t\1ìng ",current)
            current = current.split(ur"$cdot$")
            if len(current) == 3:
                current = current[0] + u"<0><1>" + current[1] + u"<2>" + current[2]
            elif len(current) == 2:
                current = current[0] + u"<0><1><2>" + current[1]
            else:
                current = u"<0><1><2>" + current[0]
        else:
            current = unicode(row["navi"])
        ret.append([row["id"], row["navi"], current, row["partOfSpeech"]])
    return ret

class TestDB(tornado.web.RequestHandler):
    def get(self):
        lis = getwords()
        text = u"<br />".join(u"\t".join(unicode(x)) for x in lis)
        self.write(text)

application = tornado.web.Application([
    ("/", Index),
    ("/number", Number),
    ("/restart", Restart),
    ("/testdb", TestDB)
])

if __name__ == "__main__":
    http_server = tornado.httpserver.HTTPServer(application)
    http_server.listen(1337)
    tornado.autoreload.start()
    tornado.ioloop.IOLoop.instance().start()