blob: b69910f5e545c7aed7b6254600d634abd11ddb25 (
plain) (
blame)
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
|
# -*- coding: utf8 -*-
#
# Copyright (C) 2014 Evol Online
# Author: Andrei Karas (4144)
import re
from code.fileutils import readFile
from code.stringutils import stripNewLine
def convertAccReg():
srcFile = "olddb/accreg.txt"
dstFile = "newdb/acc_reg_num_db.sql"
fieldsSplit = re.compile("\t")
comaSplit = re.compile(",")
spaceSplit = re.compile(" ")
tpl = readFile("templates/acc_reg_num_db.sql")
firstLine = True
with open(dstFile, "w") as w:
w.write(tpl)
w.write("INSERT INTO `acc_reg_num_db` VALUES ")
with open(srcFile, "r") as r:
for line in r:
if line[:2] == "//":
continue
line = stripNewLine(line)
rows = fieldsSplit.split(line)
if len(rows) != 2:
print "wrong accreg.txt line: " + line
continue
accountId = rows[0]
data = spaceSplit.split(rows[1])
for varStr in data:
if varStr == "":
continue
tmp = comaSplit.split(varStr)
if firstLine == False:
w.write(",\n")
else:
firstLine = False
w.write(("({account_id},'{key}',{index},{value})").format(
account_id = accountId,
key = tmp[0],
index = "0",
value = tmp[1]
))
w.write("\n")
|