83 lines
3.7 KiB
Python
83 lines
3.7 KiB
Python
#-*- coding: utf-8 -*-
|
|
'''
|
|
python-libtorrent for Kodi (script.module.libtorrent)
|
|
Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
a copy of this software and associated documentation files (the
|
|
"Software"), to deal in the Software without restriction, including
|
|
without limitation the rights to use, copy, modify, merge, publish,
|
|
distribute, sublicense, and/or sell copies of the Software, and to
|
|
permit persons to whom the Software is furnished to do so, subject to
|
|
the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be
|
|
included in all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
'''
|
|
|
|
import os
|
|
|
|
from platform_pulsar import get_libname
|
|
|
|
class Public:
|
|
def __init__( self ):
|
|
self.platforms=[]
|
|
self.root=os.path.dirname(__file__)
|
|
for dir in os.listdir(self.root):
|
|
if os.path.isdir(os.path.join(self.root,dir)):
|
|
for subdir in os.listdir(os.path.join(self.root,dir)):
|
|
if os.path.isdir(os.path.join(self.root,dir,subdir)):
|
|
self.platforms.append({'system':dir, 'version':subdir})
|
|
self._generate_size_file()
|
|
|
|
def _generate_size_file( self ):
|
|
for platform in self.platforms:
|
|
for libname in get_libname(platform):
|
|
self.libname=libname
|
|
self.platform=platform
|
|
self.libdir = os.path.join(self.root, self.platform['system'], self.platform['version'])
|
|
self.libpath = os.path.join(self.libdir, self.libname)
|
|
self.sizepath=self.libpath+'.size.txt'
|
|
self.zipname=self.libname+'.zip'
|
|
zippath=os.path.join(self.libdir, self.zipname)
|
|
system=platform['system']+'/'+platform['version']+'/'
|
|
if os.path.exists(self.libpath):
|
|
if not os.path.exists(self.sizepath):
|
|
print system+self.libname+' NO SIZE'
|
|
self._makezip()
|
|
elif not os.path.exists(zippath):
|
|
print system+self.libname+' NO ZIP'
|
|
self._makezip()
|
|
else:
|
|
size=str(os.path.getsize(self.libpath))
|
|
size_old=open( self.sizepath, "r" ).read()
|
|
if size_old!=size:
|
|
print system+self.libname+' NOT EQUAL'
|
|
self._makezip()
|
|
else:
|
|
print system+self.libname+' NO ACTION'
|
|
else:
|
|
print system+self.libname+' NO LIB'
|
|
|
|
def _makezip(self):
|
|
open( self.sizepath, "w" ).write( str(os.path.getsize(self.libpath)) )
|
|
os.chdir(self.libdir)
|
|
os.system('del %s' % (self.zipname))
|
|
os.system('"C:\\Program Files\\7-Zip\\7z.exe" a %s.zip %s' %
|
|
(self.libname, self.libname))
|
|
os.chdir(self.root)
|
|
#os.system('"C:\\Program Files\\7-Zip\\7z.exe" a %s.zip %s' %
|
|
# (self.platform['system']+os.sep+self.libname, self.platform['system']+os.sep+self.libname))
|
|
|
|
if ( __name__ == "__main__" ):
|
|
# start
|
|
#TODO: publicate
|
|
Public() |