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
|
{-
Bustle.UI.DetailsView: displays the bodies of D-Bus messages
Copyright © 2011–2012 Collabora Ltd.
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 2.1 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 library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-}
module Bustle.UI.DetailsView
( DetailsView
, detailsViewNew
, detailsViewGetTop
, detailsViewUpdate
)
where
import Data.List (intercalate)
import Data.Maybe (maybe, fromJust)
import Control.Applicative ((<$>))
import Graphics.UI.Gtk hiding (Signal, Markup)
import qualified Data.Text as T
import qualified DBus as D
import Bustle.Types
import Bustle.Markup
import Bustle.VariantFormatter
data DetailsView =
DetailsView { detailsTable :: Table
, detailsTitle :: Label
, detailsPath :: Label
, detailsMember :: Label
, detailsBodyView :: TextView
}
addTitle :: Table
-> String
-> Int
-> IO ()
addTitle table title row = do
label <- labelNew $ Just title
miscSetAlignment label 0 0
tableAttach table label 0 1 row (row + 1) [Fill] [Fill] 0 0
addValue :: Table
-> Int
-> IO Label
addValue table row = do
label <- labelNew Nothing
miscSetAlignment label 0 0
labelSetEllipsize label EllipsizeStart
labelSetSelectable label True
tableAttach table label 1 2 row (row + 1) [Expand, Fill] [Fill] 0 0
return label
addField :: Table
-> String
-> Int
-> IO Label
addField table title row = do
addTitle table title row
addValue table row
detailsViewNew :: IO DetailsView
detailsViewNew = do
table <- tableNew 2 3 False
table `set` [ tableRowSpacing := 6
, tableColumnSpacing := 6
]
title <- labelNew Nothing
miscSetAlignment title 0 0
tableAttach table title 0 2 0 1 [Fill] [Fill] 0 0
pathLabel <- addField table "Path:" 1
memberLabel <- addField table "Member:" 2
addTitle table "Arguments:" 3
view <- textViewNew
textViewSetWrapMode view WrapWordChar
textViewSetEditable view False
sw <- scrolledWindowNew Nothing Nothing
scrolledWindowSetPolicy sw PolicyAutomatic PolicyAutomatic
containerAdd sw view
tableAttachDefaults table sw 1 2 3 4
widgetShowAll table
return $ DetailsView table title pathLabel memberLabel view
pickTitle :: Detailed Message -> Markup
pickTitle (Detailed _ m _) = case m of
MethodCall {} -> b (escape "Method call")
MethodReturn {} -> b (escape "Method return")
Error {} -> b (escape "Error")
Signal { signalDestination = d } ->
b . escape $ case d of
Nothing -> "Signal"
Just _ -> "Directed signal"
getMemberMarkup :: Member -> String
getMemberMarkup m =
unMarkup $ formatMember (iface m) (membername m)
getMember :: Detailed Message -> Maybe Member
getMember (Detailed _ m _) = case m of
MethodCall {} -> Just $ member m
Signal {} -> Just $ member m
MethodReturn {} -> callMember
Error {} -> callMember
where
callMember = fmap (member . deEvent) $ inReplyTo m
formatMessage :: Detailed Message -> String
formatMessage (Detailed _ _ Nothing) =
"# No message body information is available. Please capture a fresh log\n\
\# using bustle-pcap if you need it!"
formatMessage (Detailed _ _ (Just (_size, rm))) =
formatArgs $ D.receivedMessageBody rm
where
formatArgs = intercalate "\n" . map (format_Variant VariantStyleSignature)
detailsViewGetTop :: DetailsView -> Widget
detailsViewGetTop = toWidget . detailsTable
detailsViewUpdate :: DetailsView
-> Detailed Message
-> IO ()
detailsViewUpdate d m = do
buf <- textViewGetBuffer $ detailsBodyView d
let member_ = getMember m
labelSetMarkup (detailsTitle d) (unMarkup $ pickTitle m)
labelSetText (detailsPath d) (maybe "Unknown" (D.formatObjectPath . path) member_)
labelSetMarkup (detailsMember d) (maybe "Unknown" getMemberMarkup member_)
textBufferSetText buf $ formatMessage m
|