1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
{-
DpkgVersion.hs: Haskell bindings to libdpkg
Copyright (C) 2011-2012 Clint Adams
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-}
module Debian.Dpkg.DpkgVersion (
peekDpkgVersion
, getConfigVersion
, DpkgVersion(DpkgVersion,vr_epoch,vr_version,vr_revision)
) where
import Data.ByteString.Char8 (unpack)
import Foreign.Ptr (Ptr)
import Foreign.Marshal.Utils (with)
import System.IO.Unsafe (unsafePerformIO)
import Debian.Dpkg.Types
import Debian.Dpkg.DB (c'parseversion, c'dpkg_version_compare)
import qualified Data.ByteString as BS
-- #starttype struct dpkg_version
-- #field epoch , CInt
-- #field version , CString
-- #field revision , CString
-- #stoptype
peekDpkgVersion :: C'dpkg_version -> IO DpkgVersion
peekDpkgVersion vr = do
v <- BS.packCString (c'dpkg_version'version vr)
r <- BS.packCString (c'dpkg_version'revision vr)
return $ DpkgVersion (fromIntegral (c'dpkg_version'epoch vr)) v r
getConfigVersion :: C'pkginfo -> IO String
getConfigVersion p = do
vr <- peekDpkgVersion (c'pkginfo'configversion p)
let e = fromIntegral (vr_epoch vr)
let v = vr_version vr
let r = vr_revision vr
return $ nonZeroEpoch e ++ (unpack v) ++ nonNativeRevision r
where
nonZeroEpoch e = if e == 0 then "" else (show e) ++ ":"
nonNativeRevision r = if r == BS.empty then (unpack r) else "-" ++ (unpack r)
data DpkgVersion = DpkgVersion {
vr_epoch :: Int,
vr_version :: BS.ByteString,
vr_revision :: BS.ByteString
} deriving (Eq,Show)
cvrpCompare :: Ptr C'dpkg_version -> Ptr C'dpkg_version -> IO Ordering
cvrpCompare x y = do
r <- c'dpkg_version_compare x y
case r of
-1 -> return LT
0 -> return EQ
1 -> return GT
cvrCompare :: C'dpkg_version -> C'dpkg_version -> Ordering
cvrCompare = (unsafePerformIO .) . (. ((. cvrpCompare) . with)) . with
instance Ord C'dpkg_version where
compare = cvrCompare
|