Statistics
| Branch: | Tag: | Revision:

root / src / Ganeti / PyValueInstances.hs @ 3a933ed8

History | View | Annotate | Download (2 kB)

1
{-| PyValueInstances contains instances for the 'PyValue' typeclass.
2

    
3
The typeclass 'PyValue' converts Haskell values to Python values.
4
This module contains instances of this typeclass for several generic
5
types.  These instances are used in the Haskell to Python generation
6
of opcodes and constants, for example.
7

    
8
-}
9

    
10
{-
11

    
12
Copyright (C) 2013 Google Inc.
13

    
14
This program is free software; you can redistribute it and/or modify
15
it under the terms of the GNU General Public License as published by
16
the Free Software Foundation; either version 2 of the License, or
17
(at your option) any later version.
18

    
19
This program is distributed in the hope that it will be useful, but
20
WITHOUT ANY WARRANTY; without even the implied warranty of
21
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22
General Public License for more details.
23

    
24
You should have received a copy of the GNU General Public License
25
along with this program; if not, write to the Free Software
26
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
27
02110-1301, USA.
28

    
29
-}
30
{-# LANGUAGE FlexibleInstances, OverlappingInstances,
31
             TypeSynonymInstances, IncoherentInstances #-}
32
{-# OPTIONS_GHC -fno-warn-orphans #-}
33
module Ganeti.PyValueInstances where
34

    
35
import Data.List (intercalate)
36
import Data.Map (Map)
37
import qualified Data.Map as Map
38
import Data.Set (Set)
39
import qualified Data.Set as Set
40

    
41
import Ganeti.THH
42

    
43
instance PyValue Bool
44
instance PyValue Int
45
instance PyValue Double
46
instance PyValue Char
47

    
48
instance (PyValue a, PyValue b) => PyValue (a, b) where
49
  showValue (x, y) = show (showValue x, showValue y)
50

    
51
instance PyValue String where
52
  showValue = show
53

    
54
instance PyValue a => PyValue [a] where
55
  showValue xs = "[" ++ intercalate "," (map showValue xs) ++ "]"
56

    
57
instance (PyValue k, PyValue a) => PyValue (Map k a) where
58
  showValue mp =
59
    "{" ++ intercalate ", " (map showPair (Map.assocs mp)) ++ "}"
60
    where showPair (k, x) = show k ++ ":" ++ show x
61

    
62
instance PyValue a => PyValue (Set a) where
63
  showValue s = showValue (Set.toList s)