2012-07-11 20:39:39 +00:00
|
|
|
// filebot -script "fn:sysinfo"
|
2012-05-14 19:15:22 +00:00
|
|
|
|
|
|
|
// FileBot 2.62 (r993)
|
|
|
|
println net.sourceforge.filebot.Settings.applicationIdentifier
|
|
|
|
|
2012-11-25 05:36:06 +00:00
|
|
|
// JNA Native: 3.5.0
|
|
|
|
try {
|
|
|
|
print 'JNA Native: '
|
|
|
|
println com.sun.jna.Native.nativeVersion
|
|
|
|
} catch(error) {
|
|
|
|
println error.cause
|
|
|
|
}
|
|
|
|
|
2012-05-14 19:15:22 +00:00
|
|
|
// MediaInfo: MediaInfoLib - v0.7.48
|
|
|
|
try {
|
|
|
|
print 'MediaInfo: '
|
|
|
|
println net.sourceforge.filebot.mediainfo.MediaInfo.version()
|
|
|
|
} catch(error) {
|
|
|
|
println error.cause
|
|
|
|
}
|
|
|
|
|
|
|
|
// 7-Zip-JBinding: OK
|
|
|
|
try {
|
|
|
|
print '7-Zip-JBinding: '
|
2012-08-13 08:03:11 +00:00
|
|
|
net.sourceforge.filebot.archive.SevenZipLoader.requireNativeLibraries() // load 7-Zip-JBinding native libs
|
2012-11-25 05:36:06 +00:00
|
|
|
println 'OK'
|
2012-05-14 19:15:22 +00:00
|
|
|
} catch(Throwable error) {
|
|
|
|
println error
|
|
|
|
}
|
|
|
|
|
2012-10-27 12:39:52 +00:00
|
|
|
// Extended File Attributes
|
|
|
|
try {
|
|
|
|
print 'Extended Attributes: '
|
|
|
|
if (net.sourceforge.filebot.Settings.useExtendedFileAttributes()){
|
|
|
|
// create new temp file
|
|
|
|
def f = new File('.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.setMetaData(payload)
|
|
|
|
assert xattr.getMetaData() == payload
|
2012-11-25 05:36:06 +00:00
|
|
|
println 'OK'
|
2012-10-27 12:39:52 +00:00
|
|
|
} else {
|
2012-11-25 05:36:06 +00:00
|
|
|
println 'DISABLED'
|
|
|
|
}
|
|
|
|
} catch(Throwable error) {
|
|
|
|
println error
|
|
|
|
}
|
|
|
|
|
|
|
|
// GIO and GVFS
|
|
|
|
try {
|
|
|
|
if (net.sourceforge.filebot.gio.GVFS.supported) {
|
|
|
|
print 'GVFS: '
|
|
|
|
assert net.sourceforge.filebot.gio.GVFS.defaultVFS != null
|
|
|
|
println 'OK'
|
2012-10-27 12:39:52 +00:00
|
|
|
}
|
|
|
|
} catch(Throwable error) {
|
|
|
|
println error
|
|
|
|
}
|
|
|
|
|
2012-05-14 19:15:22 +00:00
|
|
|
// 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'])
|