96 lines
2.4 KiB
Groovy
96 lines
2.4 KiB
Groovy
// filebot -script fn:sysinfo
|
|
|
|
// FileBot 2.62 (r993)
|
|
println net.sourceforge.filebot.Settings.applicationIdentifier
|
|
|
|
// chromaprint-tools
|
|
try {
|
|
print 'chromaprint-tools: '
|
|
def fpcalc = System.getProperty('net.sourceforge.filebot.AcoustID.fpcalc', 'fpcalc')
|
|
def version = [fpcalc, '-version'].execute().text.trim() ?: 'fpcalc -version failed'
|
|
println "$version ($fpcalc)"
|
|
} catch(Throwable error) {
|
|
println error
|
|
}
|
|
|
|
// JNA Native: 3.5.0
|
|
try {
|
|
print 'JNA Native: '
|
|
println com.sun.jna.Native.nativeVersion
|
|
} catch(Throwable error) {
|
|
println error.cause
|
|
}
|
|
|
|
// MediaInfo: MediaInfoLib - v0.7.48
|
|
try {
|
|
print 'MediaInfo: '
|
|
println net.sourceforge.filebot.mediainfo.MediaInfo.version()
|
|
} catch(Throwable error) {
|
|
println error.cause
|
|
}
|
|
|
|
// 7-Zip-JBinding: OK
|
|
try {
|
|
print '7-Zip-JBinding: '
|
|
net.sourceforge.filebot.archive.SevenZipLoader.requireNativeLibraries() // load 7-Zip-JBinding native libs
|
|
println 'OK'
|
|
} catch(Throwable error) {
|
|
println error
|
|
}
|
|
|
|
// Extended File Attributes
|
|
try {
|
|
print 'Extended Attributes: '
|
|
if (net.sourceforge.filebot.Settings.useExtendedFileAttributes()){
|
|
// create new temp file
|
|
def f = new File(net.sourceforge.filebot.Settings.applicationFolder, '.xattr-test')
|
|
f.createNewFile() && f.deleteOnExit()
|
|
|
|
// xattr write, read and verify
|
|
def xattr = new net.sourceforge.filebot.media.MetaAttributes(f)
|
|
def payload = new Date()
|
|
xattr.setObject(payload)
|
|
assert xattr.getObject() == payload
|
|
println 'OK'
|
|
} else {
|
|
println 'DISABLED'
|
|
}
|
|
} catch(Throwable error) {
|
|
println error
|
|
}
|
|
|
|
// GIO and GVFS
|
|
try {
|
|
if (net.sourceforge.filebot.Settings.useGVFS()) {
|
|
print 'GVFS: '
|
|
assert net.sourceforge.filebot.gio.GVFS.defaultVFS != null
|
|
println 'OK'
|
|
}
|
|
} catch(Throwable error) {
|
|
println error
|
|
}
|
|
|
|
// Java(TM) SE Runtime Environment 1.6.0_30 (headless)
|
|
println net.sourceforge.filebot.Settings.javaRuntimeIdentifier
|
|
|
|
// 32-bit Java HotSpot(TM) Client VM
|
|
println String.format('%d-bit %s', com.sun.jna.Platform.is64Bit() ? 64 : 32, _system['java.vm.name'])
|
|
|
|
// Windows 7 (x86)
|
|
println String.format('%s (%s)', _system['os.name'], _system['os.arch'])
|
|
|
|
|
|
|
|
// check for updates
|
|
try {
|
|
def update = new XmlSlurper().parse('http://filebot.net/update.xml')
|
|
def latestRev = update.revision.text() as int
|
|
def latestApp = update.name.text()
|
|
|
|
if (latestRev > net.sourceforge.filebot.Settings.applicationRevisionNumber) {
|
|
println "\n--- UPDATE AVAILABLE: $latestApp (r$latestRev) ---\n"
|
|
}
|
|
} catch(Throwable error) {
|
|
// ignore
|
|
}
|