toxygen/src/profile.py

58 lines
1.9 KiB
Python
Raw Normal View History

2016-02-18 16:15:38 +00:00
from settings import Settings
import os
2016-02-20 18:21:56 +00:00
from tox import Tox
from toxcore_enums_and_consts import *
from ctypes import *
2016-02-18 16:15:38 +00:00
class Profile(object):
@staticmethod
def find_profiles():
path = Settings.get_default_path()
result = []
# check default path
for fl in os.listdir(path):
if fl.endswith('.tox'):
2016-02-18 16:15:38 +00:00
name = fl[:-4]
result.append((path, name))
path = os.path.dirname(os.path.abspath(__file__))
# check current directory
for fl in os.listdir(path):
if fl.endswith('.tox'):
2016-02-18 16:15:38 +00:00
name = fl[:-4]
result.append((path, name))
return result
@staticmethod
def open_profile(path, name):
Profile._path = path + name + '.tox'
with open(Profile._path, 'rb') as fl:
data = fl.read()
if data:
print 'Data loaded from: {}'.format(Profile._path)
return data
else:
raise IOError('Save file not found. Path: {}'.format(Profile._path))
@staticmethod
def save_profile(data):
with open(Profile._path, 'wb') as fl:
fl.write(data)
print 'Data saved to: {}'.format(Profile._path)
2016-02-20 18:21:56 +00:00
def tox_factory(data, settings):
tox_options = Tox.options_new()
tox_options.contents.udp_enabled = settings['udp_enabled']
tox_options.contents.proxy_type = settings['proxy_type']
tox_options.contents.proxy_host = settings['proxy_host']
tox_options.contents.proxy_port = settings['proxy_port']
tox_options.contents.start_port = settings['start_port']
tox_options.contents.end_port = settings['end_port']
tox_options.contents.tcp_port = settings['tcp_port']
2016-02-22 21:18:58 +00:00
tox_options.contents.savedata_type = TOX_SAVEDATA_TYPE['TOX_SAVE']
2016-02-20 18:21:56 +00:00
tox_options.contents.savedata_data = c_char_p(data)
tox_options.contents.savedata_length = len(data)
return Tox(tox_options)