-
Notifications
You must be signed in to change notification settings - Fork 50
/
server.py
91 lines (74 loc) · 2.34 KB
/
server.py
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright 2015 breakwall
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import time
import sys
import threading
import os
import logging
if __name__ == '__main__':
import inspect
os.chdir(
os.path.dirname(
os.path.realpath(
inspect.getfile(
inspect.currentframe()))))
import server_pool
import db_transfer
import web_transfer
import speedtest_thread
import auto_thread
import auto_block
from shadowsocks import shell
from configloader import load_config, get_config
class MainThread(threading.Thread):
def __init__(self, obj):
threading.Thread.__init__(self)
self.obj = obj
def run(self):
self.obj.thread_db(self.obj)
def stop(self):
self.obj.thread_db_stop()
def main():
logging.basicConfig(level=logging.INFO,
format='%(levelname)-s: %(message)s')
shell.check_python()
if get_config().API_INTERFACE == 'modwebapi':
threadMain = MainThread(web_transfer.WebTransfer)
else:
threadMain = MainThread(db_transfer.DbTransfer)
threadMain.start()
threadSpeedtest = MainThread(speedtest_thread.Speedtest)
threadSpeedtest.start()
threadAutoexec = MainThread(auto_thread.AutoExec)
threadAutoexec.start()
threadAutoblock = MainThread(auto_block.AutoBlock)
threadAutoblock.start()
try:
while threadMain.is_alive():
threadMain.join(10.0)
except (KeyboardInterrupt, IOError, OSError) as e:
import traceback
traceback.print_exc()
threadMain.stop()
if threadSpeedtest.is_alive():
threadSpeedtest.stop()
if threadAutoexec.is_alive():
threadAutoexec.stop()
if threadAutoblock.is_alive():
threadAutoblock.stop()
if __name__ == '__main__':
main()