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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
|
-- GIMP Toolkit (GTK) Binding for Haskell: binding to gstreamer -*-haskell-*-
--
-- Author : Peter Gavin
-- Created: 1-Apr-2007
--
-- Copyright (c) 2007 Peter Gavin
--
-- This library is free software: you can redistribute it and/or
-- modify it under the terms of the GNU Lesser General Public License
-- as published by the Free Software Foundation, either version 3 of
-- the License, or (at your option) any later version.
--
-- This library 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
-- Lesser General Public License for more details.
--
-- You should have received a copy of the GNU Lesser General Public
-- License along with this program. If not, see
-- <http://www.gnu.org/licenses/>.
--
-- GStreamer, the C library which this Haskell library depends on, is
-- available under LGPL Version 2. The documentation included with
-- this library is based on the original GStreamer documentation.
--
-- | Maintainer : gtk2hs-devel@lists.sourceforge.net
-- Stability : alpha
-- Portability : portable (depends on GHC)
module Media.Streaming.GStreamer.Core.Structure (
Structure,
structureEmpty,
structureToString,
structureFromString,
structureName,
structureHasName,
structureGetBool,
structureGetInt,
structureGetFourCC,
structureGetDouble,
structureGetString,
structureGetDate,
structureGetClockTime,
structureGetFraction,
StructureM,
structureCreate,
structureModify,
structureSetNameM,
structureRemoveFieldM,
structureSetBoolM,
structureSetIntM,
structureSetFourCCM,
structureSetDoubleM,
structureSetStringM,
structureSetDateM,
structureSetClockTimeM,
structureSetFractionM,
structureFixateFieldNearestIntM,
structureFixateFieldNearestDoubleM,
structureFixateFieldNearestFractionM,
structureFixateFieldBoolM
) where
import Data.Ratio ( (%)
, numerator
, denominator )
import Control.Monad (liftM)
{#import Media.Streaming.GStreamer.Core.Types#}
import System.Glib.UTFString
import System.Glib.FFI
import System.Glib.GTypeConstants
{#import System.Glib.GDateTime#}
{#import System.Glib.GType#}
{#import System.Glib.GValue#}
{#import System.Glib.GValueTypes#}
{# context lib = "gstreamer" prefix = "gst" #}
structureEmpty :: String
-> Structure
structureEmpty name =
unsafePerformIO $
withUTFString name {# call structure_empty_new #} >>=
takeStructure
structureToString :: Structure
-> String
structureToString structure =
unsafePerformIO $
{# call structure_to_string #} structure >>=
readUTFString
structureFromString :: String
-> (Maybe Structure, Int)
structureFromString string =
unsafePerformIO $
withUTFString string $ \cString ->
alloca $ \endPtr ->
do structure <- {# call structure_from_string #} cString endPtr >>=
maybePeek takeStructure
end <- peek endPtr
offset <- {# call g_utf8_pointer_to_offset #} cString end
return (structure, fromIntegral offset)
structureName :: Structure
-> String
structureName structure =
unsafePerformIO $
{# call structure_get_name #} structure >>=
peekUTFString
structureHasName :: Structure
-> String
-> Bool
structureHasName structure name =
toBool $ unsafePerformIO $
withUTFString name $
{# call structure_has_name #} structure
marshalStructureGet :: Storable a
=> (Structure -> CString -> Ptr a -> IO {# type gboolean #})
-> (a -> IO b)
-> Structure
-> String
-> Maybe b
marshalStructureGet getAction convert structure fieldname =
unsafePerformIO $
alloca $ \ptr ->
withUTFString fieldname $ \cFieldname ->
do result <- getAction structure cFieldname ptr
if toBool result
then liftM Just $ peek (castPtr ptr) >>= convert
else return Nothing
structureGetBool :: Structure
-> String
-> Maybe Bool
structureGetBool =
marshalStructureGet {# call structure_get_boolean #} $
return . toBool
structureGetInt :: Structure
-> String
-> Maybe Int
structureGetInt =
marshalStructureGet {# call structure_get_int #} $
return . fromIntegral
structureGetFourCC :: Structure
-> String
-> Maybe FourCC
structureGetFourCC =
marshalStructureGet {# call structure_get_fourcc #} $
return . fromIntegral
structureGetDouble :: Structure
-> String
-> Maybe Double
structureGetDouble =
marshalStructureGet {# call structure_get_double #} $
return . realToFrac
structureGetString :: Structure
-> String
-> Maybe String
structureGetString structure fieldname =
unsafePerformIO $
(withUTFString fieldname $ {# call structure_get_string #} structure) >>=
maybePeek peekUTFString
structureGetDate :: Structure
-> String
-> Maybe GDate
structureGetDate =
marshalStructureGet {# call structure_get_date #} $
peek . castPtr
structureGetClockTime :: Structure
-> String
-> Maybe ClockTime
structureGetClockTime =
marshalStructureGet {# call structure_get_clock_time #} $
return . fromIntegral
structureGetFraction :: Structure
-> String
-> Maybe Fraction
structureGetFraction structure fieldname =
unsafePerformIO $
alloca $ \numPtr -> alloca $ \denPtr ->
withUTFString fieldname $ \cFieldname ->
do result <- {# call structure_get_fraction #} structure cFieldname numPtr denPtr
if toBool result
then do num <- peek numPtr
den <- peek denPtr
return $ Just $ (fromIntegral num) % (fromIntegral den)
else return Nothing
marshalStructureModify :: IO (Ptr Structure)
-> StructureM a
-> (Structure, a)
marshalStructureModify mkStructure (StructureM action) =
unsafePerformIO $
do ptr <- mkStructure
structure <- liftM Structure $ newForeignPtr_ ptr
result <- action structure
structure' <- takeStructure ptr
return (structure', result)
structureCreate :: String
-> StructureM a
-> (Structure, a)
structureCreate name action =
marshalStructureModify
(withUTFString name {# call structure_empty_new #})
action
structureModify :: Structure
-> StructureM a
-> (Structure, a)
structureModify structure action =
marshalStructureModify
({# call structure_copy #} structure)
action
structureSetNameM :: String
-> StructureM ()
structureSetNameM name =
StructureM $ \structure ->
withUTFString name $ {# call structure_set_name #} structure
structureRemoveFieldM :: String
-> StructureM ()
structureRemoveFieldM name =
StructureM $ \structure ->
withUTFString name $ {# call structure_remove_field #} structure
marshalStructureSetM :: GType
-> (GValue -> a -> IO ())
-> String
-> a
-> StructureM ()
marshalStructureSetM valueType setGValue fieldname value =
StructureM $ \structure ->
withUTFString fieldname $ \cFieldname ->
allocaGValue $ \gValue ->
do valueInit gValue valueType
setGValue gValue value
{# call structure_set_value #} structure cFieldname gValue
structureSetBoolM :: String
-> Bool
-> StructureM ()
structureSetBoolM =
marshalStructureSetM bool valueSetBool
structureSetIntM :: String
-> Int
-> StructureM ()
structureSetIntM =
marshalStructureSetM int valueSetInt
structureSetFourCCM :: String
-> FourCC
-> StructureM ()
structureSetFourCCM =
marshalStructureSetM fourcc $ \gValue fourcc ->
{# call value_set_fourcc #} gValue $ fromIntegral fourcc
structureSetDoubleM :: String
-> Double
-> StructureM ()
structureSetDoubleM =
marshalStructureSetM double valueSetDouble
structureSetStringM :: String
-> String
-> StructureM ()
structureSetStringM =
marshalStructureSetM string valueSetString
structureSetDateM :: String
-> GDate
-> StructureM ()
structureSetDateM =
marshalStructureSetM date $ \gValue date ->
with date $ ({# call value_set_date #} gValue) . castPtr
structureSetClockTimeM :: String
-> ClockTime
-> StructureM ()
structureSetClockTimeM =
marshalStructureSetM uint64 $ \gValue clockTime ->
{# call g_value_set_uint64 #} gValue $ fromIntegral clockTime
structureSetFractionM :: String
-> Fraction
-> StructureM ()
structureSetFractionM =
marshalStructureSetM fraction $ \gValue fraction ->
{# call value_set_fraction #} gValue
(fromIntegral $ numerator fraction)
(fromIntegral $ denominator fraction)
marshalStructureFixateM :: (Structure -> CString -> a -> IO {# type gboolean #})
-> String
-> a
-> StructureM Bool
marshalStructureFixateM fixate fieldname target =
StructureM $ \structure ->
withUTFString fieldname $ \cFieldname ->
liftM toBool $
fixate structure cFieldname target
structureFixateFieldNearestIntM :: String
-> Int
-> StructureM Bool
structureFixateFieldNearestIntM =
marshalStructureFixateM $ \structure cFieldname target ->
{# call structure_fixate_field_nearest_int #}
structure
cFieldname
(fromIntegral target)
structureFixateFieldNearestDoubleM :: String
-> Double
-> StructureM Bool
structureFixateFieldNearestDoubleM =
marshalStructureFixateM $ \structure cFieldname target ->
{# call structure_fixate_field_nearest_double #}
structure
cFieldname
(realToFrac target)
structureFixateFieldNearestFractionM :: String
-> Fraction
-> StructureM Bool
structureFixateFieldNearestFractionM =
marshalStructureFixateM $ \structure cFieldname target ->
{# call structure_fixate_field_nearest_fraction #}
structure
cFieldname
(fromIntegral $ numerator target)
(fromIntegral $ denominator target)
structureFixateFieldBoolM :: String
-> Bool
-> StructureM Bool
structureFixateFieldBoolM =
marshalStructureFixateM $ \structure cFieldname target ->
{# call structure_fixate_field_boolean #}
structure
cFieldname
(fromBool target)
fourcc = {# call fun fourcc_get_type #}
date = {# call fun date_get_type #}
fraction = {# call fun fraction_get_type #}
|