diff options
author | Ken Moore <moorekou@gmail.com> | 2015-03-13 17:21:34 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-03-13 17:21:34 -0400 |
commit | bcd1519a52682bc3cd124b0d64e6e26d19611875 (patch) | |
tree | 33be7fc81375776e08a70626c5413a4a2009b263 | |
parent | Add a couple more checks to the notepad plugin so that it does not update/cha... (diff) | |
parent | add checksum for OpenBSD (this is in fact a copy of the code from freeBSD) (diff) | |
download | lumina-bcd1519a52682bc3cd124b0d64e6e26d19611875.tar.gz lumina-bcd1519a52682bc3cd124b0d64e6e26d19611875.tar.bz2 lumina-bcd1519a52682bc3cd124b0d64e6e26d19611875.zip |
Merge pull request #67 from william-os4y/checksum
add checksum for OpenBSD (this is in fact a copy of the code from freeBSD)
-rw-r--r-- | libLumina/LuminaOS-OpenBSD.cpp | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/libLumina/LuminaOS-OpenBSD.cpp b/libLumina/LuminaOS-OpenBSD.cpp index 7cf6c571..b6996795 100644 --- a/libLumina/LuminaOS-OpenBSD.cpp +++ b/libLumina/LuminaOS-OpenBSD.cpp @@ -192,6 +192,19 @@ int LOS::batterySecondsLeft(){ //Returns: estimated number of seconds remaining //File Checksums QStringList LOS::Checksums(QStringList filepaths){ //Return: checksum of the input file - return QStringList(); + //on OpenBSD md5 has the following layout + //>md5 LuminaThemes.o LuminaUtils.o + //MD5 (LuminaThemes.o) = 50006505d9d7e54e5154eeb095555055 + //MD5 (LuminaUtils.o) = d490878ee8866e55e5af571b98b4d448 + + QStringList info = LUtils::getCmdOutput("md5 \""+filepaths.join("\" \"")+"\""); + for(int i=0; i<info.length(); i++){ + if( !info[i].contains(" = ") ){ info.removeAt(i); i--; } + else{ + //Strip out the extra information + info[i] = info[i].section(" = ",1,1); + } + } + return info; } #endif |