-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.py
129 lines (109 loc) · 4.4 KB
/
app.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# -*- coding: utf-8 -*-
#Application Main
# Copyright (C) 2020 Hiroki Fujii <hfujii@hisystron.com>
import threading
import sys, os, wx, time, _datetime
import win32event, win32api, winerror
import proxyUtil
import AppBase
import constants, errorCodes
from simpleDialog import *
from soundPlayer import player, bassController
from soundPlayer.constants import *
import shuffle_ctrl
def _import():
global event_processor, listManager, lampPipe, ConfigManager, globalVars, m3uManager, sleep_timer, DefaultSettings, update, main, netRemote,filterManager
import event_processor, listManager, lampPipe, ConfigManager, globalVars, m3uManager, sleep_timer, DefaultSettings, netRemote,filterManager
import update
from views import main
class Main(AppBase.MainBase):
def __init__(self):
super().__init__()
self.mutex = 0
def initialize(self):
_import()
self.log.debug(str(sys.argv))
# 多重起動処理
try: self.mutex = win32event.CreateMutex(None, 1, constants.PIPE_NAME)
except: pass
if win32api.GetLastError() == winerror.ERROR_ALREADY_EXISTS:
try: lampPipe.sendPipe()
except: pass
self.mutex = 0
sys.exit()
else:
lampPipe.startPipeServer()
# プロキシの設定を適用
self.proxyEnviron = proxyUtil.virtualProxyEnviron()
if self.config.getboolean("network", "manual_proxy", False):
sv = self.config.getstring("network", "proxy_server", "")
pr = self.config.getint("network", "proxy_port", 8080, 0, 65535)
self.proxyEnviron.set_environ(sv, pr)
else: self.proxyEnviron.set_environ()
#設定ファイル更新処理
if self.config.getint("general","fileversion",100,100,999)==100:
# 初期値のフィルタ設定を適用
self.config.read_dict(DefaultSettings.initialValues)
self.config["general"]["fileversion"]=101
self.SetGlobalVars()
# メインビューを表示
self.hMainView=main.MainView()
if self.config.getboolean(self.hMainView.identifier,"maximized",False):
self.hMainView.hFrame.Maximize()
self.hMainView.Show()
# update関係を準備
if self.config.getboolean("general", "update"):
globalVars.update.update(True)
m3uloaded = False #条件に基づいてファイルの読み込み
if len(sys.argv) == 2 and os.path.isfile(sys.argv[1]):
if os.path.splitext(sys.argv[1])[1].lower() in globalVars.fileExpansions:
globalVars.eventProcess.forcePlay(sys.argv[1])
elif os.path.splitext(sys.argv[1])[1] == ".m3u" or os.path.splitext(sys.argv[1])[1] == ".m3u8":
m3uManager.loadM3u(sys.argv[1])
m3uloaded = True
startupList = globalVars.app.config.getstring("player", "startupPlaylist", "")
if startupList != "" and m3uloaded == False: m3uManager.loadM3u(startupList, 2)
# シャッフル適用
if globalVars.eventProcess.shuffleCtrl == []:
globalVars.eventProcess.shuffleCtrl = shuffle_ctrl.shuffle(listManager.getLCObject(constants.PLAYLIST))
return True
def OnExit(self):
#設定の保存やリソースの開放など、終了前に行いたい処理があれば記述できる
#ビューへのアクセスや終了の抑制はできないので注意。
m3uManager.dumpHistory()
globalVars.app.config.write()
try: lampPipe.stopPipeServer()
except: pass
if self.mutex != 0:
try: win32event.ReleaseMutex(self.mutex)
except: pass
self.mutex = 0
# アップデート
globalVars.update.runUpdate()
#戻り値は無視される
return 0
def SetGlobalVars(self):
globalVars.update = update.update()
dl = player.getDeviceList()
dl[0] = "default"
dc = globalVars.app.config.getstring("player", "outputDevice", "default", dl)
if dc == "default": device = PLAYER_DEFAULT_SPEAKER
elif dc != None: device = dc
else: device = PLAYER_DEFAULT_SPEAKER
globalVars.play = player.player(PLAYER_DEFAULT_SPEAKER)
if device != PLAYER_DEFAULT_SPEAKER: globalVars.play.setDeviceByName(device)
globalVars.play.setVolume(globalVars.app.config.getint("volume","default",default=100, min=0, max=100))
globalVars.eventProcess = event_processor.eventProcessor()
globalVars.sleepTimer = sleep_timer.sleepTimer()
globalVars.m3uHistory = m3uManager.loadHistory()
globalVars.listInfo = listManager.listInfo()
globalVars.lampController = netRemote.lampController()
globalVars.lampController.start()
globalVars.filter = filterManager.FilterManager()
def __del__(self):
try: lampPipe.stopPipeServer()
except: pass
if self.mutex != 0:
try: win32event.ReleaseMutex(self.mutex)
except: pass
self.mutex = 0