You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
5.8 KiB
149 lines
5.8 KiB
10 years ago
|
#!/usr/bin/python
|
||
|
# -*- coding: UTF-8 -*-
|
||
|
|
||
|
import logging
|
||
|
import cymysql
|
||
|
import time
|
||
|
import sys
|
||
|
from server_pool import ServerPool
|
||
|
import Config
|
||
|
|
||
|
class DbTransfer(object):
|
||
|
|
||
|
instance = None
|
||
|
|
||
|
def __init__(self):
|
||
|
self.last_get_transfer = {}
|
||
|
|
||
|
@staticmethod
|
||
|
def get_instance():
|
||
|
if DbTransfer.instance is None:
|
||
|
DbTransfer.instance = DbTransfer()
|
||
|
return DbTransfer.instance
|
||
|
|
||
|
def push_db_all_user(self):
|
||
|
#更新用户流量到数据库
|
||
|
last_transfer = self.last_get_transfer
|
||
|
curr_transfer = ServerPool.get_instance().get_servers_transfer()
|
||
|
#上次和本次的增量
|
||
|
dt_transfer = {}
|
||
|
for id in curr_transfer.keys():
|
||
|
if id in last_transfer:
|
||
|
if last_transfer[id][0] == curr_transfer[id][0] and last_transfer[id][1] == curr_transfer[id][1]:
|
||
|
continue
|
||
|
elif curr_transfer[id][0] == 0 and curr_transfer[id][1] == 0:
|
||
|
continue
|
||
|
elif last_transfer[id][0] <= curr_transfer[id][0] and \
|
||
|
last_transfer[id][1] <= curr_transfer[id][1]:
|
||
|
dt_transfer[id] = [curr_transfer[id][0] - last_transfer[id][0],
|
||
|
curr_transfer[id][1] - last_transfer[id][1]]
|
||
|
else:
|
||
|
dt_transfer[id] = [curr_transfer[id][0], curr_transfer[id][1]]
|
||
|
else:
|
||
|
if curr_transfer[id][0] == 0 and curr_transfer[id][1] == 0:
|
||
|
continue
|
||
|
dt_transfer[id] = [curr_transfer[id][0], curr_transfer[id][1]]
|
||
|
|
||
|
self.last_get_transfer = curr_transfer
|
||
|
query_head = 'UPDATE user'
|
||
|
query_sub_when = ''
|
||
|
query_sub_when2 = ''
|
||
|
query_sub_in = None
|
||
|
last_time = time.time()
|
||
|
for id in dt_transfer.keys():
|
||
|
query_sub_when += ' WHEN %s THEN u+%s' % (id, dt_transfer[id][0])
|
||
|
query_sub_when2 += ' WHEN %s THEN d+%s' % (id, dt_transfer[id][1])
|
||
|
if query_sub_in is not None:
|
||
|
query_sub_in += ',%s' % id
|
||
|
else:
|
||
|
query_sub_in = '%s' % id
|
||
|
if query_sub_when == '':
|
||
|
return
|
||
|
query_sql = query_head + ' SET u = CASE port' + query_sub_when + \
|
||
|
' END, d = CASE port' + query_sub_when2 + \
|
||
|
' END, t = ' + str(int(last_time)) + \
|
||
|
' WHERE port IN (%s)' % query_sub_in
|
||
|
#print query_sql
|
||
|
conn = cymysql.connect(host=Config.MYSQL_HOST, port=Config.MYSQL_PORT, user=Config.MYSQL_USER,
|
||
|
passwd=Config.MYSQL_PASS, db=Config.MYSQL_DB, charset='utf8')
|
||
|
cur = conn.cursor()
|
||
|
cur.execute(query_sql)
|
||
|
cur.close()
|
||
|
conn.commit()
|
||
|
conn.close()
|
||
|
|
||
|
@staticmethod
|
||
|
def pull_db_all_user():
|
||
|
#数据库所有用户信息
|
||
|
conn = cymysql.connect(host=Config.MYSQL_HOST, port=Config.MYSQL_PORT, user=Config.MYSQL_USER,
|
||
|
passwd=Config.MYSQL_PASS, db=Config.MYSQL_DB, charset='utf8')
|
||
|
cur = conn.cursor()
|
||
|
cur.execute("SELECT port, u, d, transfer_enable, passwd, switch, enable, plan FROM user")
|
||
|
rows = []
|
||
|
for r in cur.fetchall():
|
||
|
rows.append(list(r))
|
||
|
cur.close()
|
||
|
conn.close()
|
||
|
return rows
|
||
|
|
||
|
@staticmethod
|
||
|
def del_server_out_of_bound_safe(last_rows, rows):
|
||
|
#停止超流量的服务
|
||
|
#启动没超流量的服务
|
||
|
#需要动态载入switchrule,以便实时修改规则
|
||
|
cur_servers = {}
|
||
|
for row in rows:
|
||
|
try:
|
||
|
import switchrule
|
||
|
allow = switchrule.isTurnOn(row[7], row[5]) and row[6] == 1 and row[1] + row[2] < row[3]
|
||
|
except Exception, e:
|
||
|
allow = False
|
||
|
|
||
|
cur_servers[row[0]] = row[4]
|
||
|
|
||
|
if ServerPool.get_instance().server_is_run(row[0]) > 0:
|
||
|
if not allow:
|
||
|
logging.info('db stop server at port [%s]' % (row[0]))
|
||
|
ServerPool.get_instance().del_server(row[0])
|
||
|
elif (row[0] in ServerPool.get_instance().tcp_servers_pool and ServerPool.get_instance().tcp_servers_pool[row[0]]._config['password'] != row[4]) \
|
||
|
or (row[0] in ServerPool.get_instance().tcp_ipv6_servers_pool and ServerPool.get_instance().tcp_ipv6_servers_pool[row[0]]._config['password'] != row[4]):
|
||
|
#password changed
|
||
|
logging.info('db stop server at port [%s] reason: password changed' % (row[0]))
|
||
|
ServerPool.get_instance().del_server(row[0])
|
||
|
elif ServerPool.get_instance().server_run_status(row[0]) is False:
|
||
|
if allow:
|
||
|
logging.info('db start server at port [%s] pass [%s]' % (row[0], row[4]))
|
||
|
ServerPool.get_instance().new_server(row[0], row[4])
|
||
|
|
||
|
for row in last_rows:
|
||
|
if row[0] in cur_servers:
|
||
|
if row[4] == cur_servers[row[0]]:
|
||
|
pass
|
||
|
else:
|
||
|
logging.info('db stop server at port [%s] reason: port not exist' % (row[0]))
|
||
|
ServerPool.get_instance().del_server(row[0])
|
||
|
|
||
|
@staticmethod
|
||
|
def thread_db():
|
||
|
import socket
|
||
|
import time
|
||
|
timeout = 60
|
||
|
socket.setdefaulttimeout(timeout)
|
||
|
last_rows = []
|
||
|
while True:
|
||
|
#logging.warn('db loop')
|
||
|
|
||
|
try:
|
||
|
DbTransfer.get_instance().push_db_all_user()
|
||
|
rows = DbTransfer.get_instance().pull_db_all_user()
|
||
|
DbTransfer.del_server_out_of_bound_safe(last_rows, rows)
|
||
|
last_rows = rows
|
||
|
except Exception as e:
|
||
|
logging.warn('db thread except:%s' % e)
|
||
|
finally:
|
||
|
time.sleep(15)
|
||
|
|
||
|
|
||
|
#SQLData.pull_db_all_user()
|
||
|
#print DbTransfer.get_instance().test()
|