plugin.makemkvbluray/resources/lib/makemkv.py

125 lines
4.3 KiB
Python
Raw Normal View History

import subprocess, settings, tempfile, os, urllib, re
import xbmcgui, xbmc, xbmcplugin
import brlog
2011-12-26 12:45:54 +01:00
class MakeMkvInteraction:
def __init__(self):
self.settings = settings.BluRaySettings()
self.log = brlog.BrLog('makemkvinteraction')
2014-01-26 15:10:39 +01:00
2011-12-26 12:45:54 +01:00
def discList(self):
# First stop any old one
self.killMkv()
tmpf = tempfile.NamedTemporaryFile(delete=False)
self.log.info('temporary file with disc info: %s' % tmpf.name)
2014-01-26 15:10:39 +01:00
sp = os.system(r'%s -r --cache=1 --messages=%s info disc:10'
% (self.settings.mkvLocation, tmpf.name))
self.log.info('Return code for disc info generation: %s' % str(sp))
if not os.path.isfile(tmpf.name):
self.log.error('Is no file: %s' % tmpf.name)
2011-12-26 12:45:54 +01:00
tmpf = open(tmpf.name)
content = tmpf.read()
tmpf.close()
disclist = [x for x in content.splitlines() if x.startswith('DRV:')]
readableDiscs = list()
for item in disclist:
info = [x.replace('"','') for x in item[4:].split(',')]
if len(info[5]) > 0:
readableDiscs.append( (info[0],info[5]))
return readableDiscs
def startStream(self, disc):
self.log.info("Starting stream on disc %s with local url %s" %(disc, self.settings.rootURL))
# Then fork the makemkv process
return self.__runandregistershutdown('%s -r --cache=128 stream disc:%s' %(self.settings.mkvLocation, disc))
def startFileStream(self, choice):
type = ''
if re.search("BDMV.index.bdmv", choice) :
# Treat as file
type = 'file'
choice = choice[:-15]
elif re.search("BDMV.MovieObject.bdmv", choice) :
# Treat as file
type = 'file'
choice = choice[:-21]
else:
# Treat as iso
type = 'iso'
2014-01-26 15:10:39 +01:00
2011-12-26 12:45:54 +01:00
# Check if the file is reachable through the filesystem, to prevent errors with smb:// shares etc.
if not os.path.exists(choice) :
2011-12-26 21:13:33 +01:00
dialog = xbmcgui.Dialog()
2011-12-26 12:45:54 +01:00
dialog.ok("Info", _(50073))
return False
2014-01-26 15:10:39 +01:00
2011-12-26 12:45:54 +01:00
return self.__runandregistershutdown('"%s" -r --cache=128 stream \'%s:%s\'' %(self.settings.mkvLocation, type, choice))
2014-01-26 15:10:39 +01:00
2011-12-26 12:45:54 +01:00
def __runandregistershutdown(self, mkvStart):
result = self.__runmkvstream(mkvStart)
if result >= 0:
return True
else:
return False
2014-01-26 15:10:39 +01:00
2011-12-26 12:45:54 +01:00
def __runmkvstream(self, mkvStart):
self.log.info('Starting %s' %(mkvStart))
# First stop any old one
self.killMkv()
timeSlept = 0
proc = subprocess.Popen(mkvStart, shell=True)
# Then wait for the stream to come up
2014-01-26 15:10:39 +01:00
while True:
2012-10-06 12:21:30 +02:00
try:
urllib.urlretrieve(self.settings.rootURL)
return proc.pid
except IOError:
pass
if proc.poll() :
if proc.returncode != 0 :
self.log.error("makemkvcon error'd out! May require update. (Return Code: %s)" % proc.returncode)
return -1
2012-10-06 12:21:30 +02:00
xbmc.sleep(1000)
timeSlept = timeSlept + 1
if timeSlept > self.settings.waitTimeOut :
return -1
2014-01-26 15:10:39 +01:00
2011-12-26 12:45:54 +01:00
def killMkv(self):
2012-10-06 12:21:30 +02:00
# Linux
if os.name == 'posix':
try :
self.log.info('attempting linux kill of makemkvcon')
subprocess.call('killall -9 makemkvcon', shell=True)
self.log.info('Linux call successful')
except:
pass
2011-12-26 12:45:54 +01:00
2012-10-06 12:21:30 +02:00
#Windows.
if os.name == 'nt':
try :
self.log.info('attempting windows kill of makemkvcon')
subprocess.call('taskkill /F /IM makemkvcon.exe', shell=True)
self.log.info('Windows call successful')
except:
pass
2014-01-26 15:10:39 +01:00
def makeMkvExists(self):
(fin, fout) = os.popen4('%s -r' %(self.settings.mkvLocation))
result = fout.read()
self.log.info('Make mkv check returned %s' % (result.splitlines()[0]))
if result.splitlines()[0].startswith('Use: makemkvcon [switches] Command [Parameters]'):
self.log.info("MakeMkvCon found!")
return True
else:
2014-01-26 15:10:39 +01:00
self.log.info('MakeMkvcon seems not to be configured properly : %s'
2012-10-06 12:21:30 +02:00
% (self.settings.mkvLocation))
return False
2012-10-06 12:21:30 +02:00