Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
91ca5d72
Commit
91ca5d72
authored
Sep 13, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reworked filters
parent
893e9256
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
833 additions
and
788 deletions
+833
-788
filter.js
ethereal/assets/ext/filter.js
+29
-11
wallet.qml
ethereal/assets/qml/views/wallet.qml
+2
-3
wallet.qml
ethereal/assets/qml/wallet.qml
+744
-743
gui.go
ethereal/gui.go
+36
-0
ui_lib.go
ethereal/ui_lib.go
+22
-31
No files found.
ethereal/assets/ext/filter.js
View file @
91ca5d72
var
ethx
=
{
prototype
:
Object
,
watch
:
function
(
options
)
{
return
new
Filter
(
options
);
},
note
:
function
()
{
var
args
=
Array
.
prototype
.
slice
.
call
(
arguments
,
0
);
var
o
=
[]
for
(
var
i
=
0
;
i
<
args
.
length
;
i
++
)
{
o
.
push
(
args
[
i
].
toString
())
}
eth
.
notef
(
o
);
},
};
var
Filter
=
function
(
options
)
{
this
.
callbacks
=
{};
this
.
seed
=
Math
.
floor
(
Math
.
random
()
*
1000000
);
this
.
callbacks
=
[];
this
.
options
=
options
;
if
(
options
===
"chain"
)
{
eth
.
registerFilterString
(
options
,
this
.
seed
);
this
.
id
=
eth
.
newFilterString
(
options
);
}
else
if
(
typeof
options
===
"object"
)
{
eth
.
registerFilter
(
options
,
this
.
seed
);
this
.
id
=
eth
.
newFilter
(
options
);
}
};
Filter
.
prototype
.
changed
=
function
(
callback
)
{
var
cbseed
=
Math
.
floor
(
Math
.
random
()
*
1000000
);
eth
.
registerFilterCallback
(
this
.
seed
,
cbseed
);
this
.
callbacks
.
push
(
callback
);
var
self
=
this
;
message
.
connect
(
function
(
messages
,
seed
,
callbackSeed
)
{
if
(
seed
==
self
.
seed
&&
callbackSeed
==
cbseed
)
{
callback
.
call
(
self
,
messages
);
message
.
connect
(
function
(
messages
,
id
)
{
if
(
id
==
self
.
id
)
{
for
(
var
i
=
0
;
i
<
self
.
callbacks
.
length
;
i
++
)
{
self
.
callbacks
[
i
].
call
(
self
,
messages
);
}
}
});
};
Filter
.
prototype
.
uninstall
=
function
()
{
eth
.
uninstallFilter
(
this
.
see
d
)
eth
.
uninstallFilter
(
this
.
i
d
)
}
Filter
.
prototype
.
messages
=
function
()
{
return
JSON
.
parse
(
eth
.
messages
(
this
.
options
)
)
return
eth
.
messages
(
this
.
id
)
}
ethereal/assets/qml/views/wallet.qml
View file @
91ca5d72
...
...
@@ -5,7 +5,6 @@ import QtQuick.Dialogs 1.0;
import
QtQuick
.
Window
2.1
;
import
QtQuick
.
Controls
.
Styles
1.1
import
Ethereum
1.0
import
"../../ext/filter.js"
as
Eth
Rectangle
{
id
:
root
...
...
@@ -152,7 +151,7 @@ Rectangle {
model
:
ListModel
{
id
:
txModel
Component.onCompleted
:
{
var
filter
=
new
Eth
.
Filter
({
latest
:
-
1
,
from
:
eth
.
key
().
address
})
var
filter
=
ethx
.
watch
({
latest
:
-
1
,
from
:
eth
.
key
().
address
});
filter
.
changed
(
addTxs
)
addTxs
(
filter
.
messages
())
...
...
@@ -160,7 +159,7 @@ Rectangle {
function
addTxs
(
messages
)
{
for
(
var
i
=
0
;
i
<
messages
.
length
;
i
++
)
{
var
message
=
messages
[
i
]
;
var
message
=
messages
.
get
(
i
)
;
txModel
.
insert
(
0
,
{
num
:
txModel
.
count
,
from
:
message
.
from
,
to
:
message
.
to
,
value
:
eth
.
numberToHuman
(
message
.
value
)})
}
}
...
...
ethereal/assets/qml/wallet.qml
View file @
91ca5d72
...
...
@@ -9,747 +9,748 @@ import Ethereum 1.0
import
"../ext/filter.js"
as
Eth
ApplicationWindow
{
id
:
root
property
alias
miningButtonText
:
miningButton
.
text
width
:
900
height
:
600
minimumHeight
:
300
title
:
"Ethegate"
// This signal is used by the filter API. The filter API connects using this signal handler from
// the different QML files and plugins.
signal
message
(
var
callback
,
int
seed
,
int
seedCallback
);
function
invokeFilterCallback
(
data
,
receiverSeed
,
callbackSeed
)
{
var
messages
=
JSON
.
parse
(
data
)
// Signal handler
message
(
messages
,
receiverSeed
,
callbackSeed
);
}
TextField
{
id
:
copyElementHax
visible
:
false
}
function
copyToClipboard
(
text
)
{
copyElementHax
.
text
=
text
copyElementHax
.
selectAll
()
copyElementHax
.
copy
()
}
// Takes care of loading all default plugins
Component.onCompleted
:
{
var
walletView
=
addPlugin
(
"./views/wallet.qml"
,
{
noAdd
:
true
,
section
:
"ethereum"
,
active
:
true
})
var
newTxView
=
addPlugin
(
"./views/transaction.qml"
,
{
noAdd
:
true
,
section
:
"legacy"
})
var
chainView
=
addPlugin
(
"./views/chain.qml"
,
{
noAdd
:
true
,
section
:
"legacy"
})
var
infoView
=
addPlugin
(
"./views/info.qml"
,
{
noAdd
:
true
,
section
:
"legacy"
})
var
pendingTxView
=
addPlugin
(
"./views/pending_tx.qml"
,
{
noAdd
:
true
,
section
:
"legacy"
})
var
pendingTxView
=
addPlugin
(
"./views/javascript.qml"
,
{
noAdd
:
true
,
section
:
"legacy"
})
// Call the ready handler
gui
.
done
()
}
function
addPlugin
(
path
,
options
)
{
try
{
var
component
=
Qt
.
createComponent
(
path
);
if
(
component
.
status
!=
Component
.
Ready
)
{
if
(
component
.
status
==
Component
.
Error
)
{
console
.
debug
(
"Error:"
+
component
.
errorString
());
}
return
}
var
views
=
mainSplit
.
addComponent
(
component
,
options
)
views
.
menuItem
.
path
=
path
mainSplit
.
views
.
push
(
views
);
if
(
!
options
.
noAdd
)
{
gui
.
addPlugin
(
path
)
}
return
views
.
view
}
catch
(
e
)
{
}
}
MenuBar
{
Menu
{
title
:
"File"
MenuItem
{
text
:
"Import App"
shortcut
:
"Ctrl+o"
onTriggered
:
{
generalFileDialog
.
show
(
true
,
importApp
)
}
}
MenuItem
{
text
:
"Browser"
onTriggered
:
eth
.
openBrowser
()
}
MenuItem
{
text
:
"Add plugin"
onTriggered
:
{
generalFileDialog
.
show
(
true
,
function
(
path
)
{
addPlugin
(
path
,
{
canClose
:
true
,
section
:
"apps"
})
})
}
}
MenuSeparator
{}
MenuItem
{
text
:
"Import key"
shortcut
:
"Ctrl+i"
onTriggered
:
{
generalFileDialog
.
show
(
true
,
function
(
path
)
{
gui
.
importKey
(
path
)
})
}
}
MenuItem
{
text
:
"Export keys"
shortcut
:
"Ctrl+e"
onTriggered
:
{
generalFileDialog
.
show
(
false
,
function
(
path
)
{
})
}
}
}
Menu
{
title
:
"Developer"
MenuItem
{
text
:
"Debugger"
shortcut
:
"Ctrl+d"
onTriggered
:
eth
.
startDebugger
()
}
MenuItem
{
text
:
"Import Tx"
onTriggered
:
{
txImportDialog
.
visible
=
true
}
}
MenuItem
{
text
:
"Run JS file"
onTriggered
:
{
generalFileDialog
.
show
(
true
,
function
(
path
)
{
eth
.
evalJavascriptFile
(
path
)
})
}
}
MenuItem
{
text
:
"Dump state"
onTriggered
:
{
generalFileDialog
.
show
(
false
,
function
(
path
)
{
// Empty hash for latest
gui
.
dumpState
(
""
,
path
)
})
}
}
MenuSeparator
{}
MenuItem
{
id
:
miningSpeed
text
:
"Mining: Turbo"
onTriggered
:
{
gui
.
toggleTurboMining
()
if
(
text
==
"Mining: Turbo"
)
{
text
=
"Mining: Normal"
;
}
else
{
text
=
"Mining: Turbo"
;
}
}
}
}
Menu
{
title
:
"Network"
MenuItem
{
text
:
"Add Peer"
shortcut
:
"Ctrl+p"
onTriggered
:
{
addPeerWin
.
visible
=
true
}
}
MenuItem
{
text
:
"Show Peers"
shortcut
:
"Ctrl+e"
onTriggered
:
{
peerWindow
.
visible
=
true
}
}
}
Menu
{
title
:
"Help"
MenuItem
{
text
:
"About"
onTriggered
:
{
aboutWin
.
visible
=
true
}
}
}
}
statusBar
:
StatusBar
{
height
:
32
RowLayout
{
Button
{
id
:
miningButton
text
:
"Start Mining"
onClicked
:
{
gui
.
toggleMining
()
}
}
Button
{
id
:
importAppButton
text
:
"Browser"
onClicked
:
{
eth
.
openBrowser
()
}
}
RowLayout
{
Label
{
id
:
walletValueLabel
font.pixelSize
:
10
styleColor
:
"#797979"
}
}
}
Label
{
y
:
6
objectName
:
"miningLabel"
visible
:
true
font.pixelSize
:
10
anchors.right
:
lastBlockLabel
.
left
anchors.rightMargin
:
5
}
Label
{
y
:
6
id
:
lastBlockLabel
objectName
:
"lastBlockLabel"
visible
:
true
text
:
""
font.pixelSize
:
10
anchors.right
:
peerGroup
.
left
anchors.rightMargin
:
5
}
ProgressBar
{
id
:
syncProgressIndicator
visible
:
false
objectName
:
"syncProgressIndicator"
y
:
3
width
:
140
indeterminate
:
true
anchors.right
:
peerGroup
.
left
anchors.rightMargin
:
5
}
RowLayout
{
id
:
peerGroup
y
:
7
anchors.right
:
parent
.
right
MouseArea
{
onDoubleClicked
:
peerWindow
.
visible
=
true
anchors.fill
:
parent
}
Label
{
id
:
peerLabel
font.pixelSize
:
8
text
:
"0 / 0"
}
Image
{
id
:
peerImage
width
:
10
;
height
:
10
source
:
"../network.png"
}
}
}
property
var
blockModel
:
ListModel
{
id
:
blockModel
}
SplitView
{
property
var
views
:
[];
id
:
mainSplit
anchors.fill
:
parent
resizing
:
false
function
setView
(
view
,
menu
)
{
for
(
var
i
=
0
;
i
<
views
.
length
;
i
++
)
{
views
[
i
].
view
.
visible
=
false
views
[
i
].
menuItem
.
border
.
color
=
"#00000000"
views
[
i
].
menuItem
.
color
=
"#00000000"
}
view
.
visible
=
true
menu
.
border
.
color
=
"#CCCCCC"
menu
.
color
=
"#FFFFFFFF"
}
function
addComponent
(
component
,
options
)
{
var
view
=
mainView
.
createView
(
component
,
options
)
view
.
visible
=
false
view
.
anchors
.
fill
=
mainView
if
(
!
view
.
hasOwnProperty
(
"iconSource"
)
)
{
console
.
log
(
"Could not load plugin. Property 'iconSourc' not found on view."
);
return
;
}
var
menuItem
=
menu
.
createMenuItem
(
view
.
iconSource
,
view
,
options
);
if
(
view
.
hasOwnProperty
(
"menuItem"
)
)
{
view
.
menuItem
=
menuItem
;
}
if
(
view
.
hasOwnProperty
(
"onReady"
)
)
{
view
.
onReady
.
call
(
view
)
}
if
(
options
.
active
)
{
setView
(
view
,
menuItem
)
}
return
{
view
:
view
,
menuItem
:
menuItem
}
}
/*********************
* Main menu.
********************/
Rectangle
{
id
:
menu
Layout.minimumWidth
:
180
Layout.maximumWidth
:
180
anchors.top
:
parent
.
top
color
:
"#ececec"
Component
{
id
:
menuItemTemplate
Rectangle
{
id
:
menuItem
property
var
view
;
property
var
path
;
property
alias
title
:
label
.
text
property
alias
icon
:
icon
.
source
property
alias
secondaryTitle
:
secondary
.
text
width
:
180
height
:
28
border.color
:
"#00000000"
border.width
:
1
radius
:
5
color
:
"#00000000"
anchors
{
left
:
parent
.
left
leftMargin
:
4
}
MouseArea
{
anchors.fill
:
parent
onClicked
:
{
mainSplit
.
setView
(
view
,
menuItem
)
}
}
Image
{
id
:
icon
height
:
20
width
:
20
anchors
{
left
:
parent
.
left
verticalCenter
:
parent
.
verticalCenter
leftMargin
:
3
}
MouseArea
{
anchors.fill
:
parent
onClicked
:
{
menuItem
.
closeApp
()
}
}
}
Text
{
id
:
label
anchors
{
left
:
icon
.
right
verticalCenter
:
parent
.
verticalCenter
leftMargin
:
3
}
color
:
"#0D0A01"
font.pixelSize
:
12
}
Text
{
id
:
secondary
anchors
{
right
:
parent
.
right
rightMargin
:
8
verticalCenter
:
parent
.
verticalCenter
}
color
:
"#AEADBE"
font.pixelSize
:
12
}
function
closeApp
()
{
if
(
this
.
view
.
hasOwnProperty
(
"onDestroy"
))
{
this
.
view
.
onDestroy
.
call
(
this
.
view
)
}
this
.
view
.
destroy
()
this
.
destroy
()
gui
.
removePlugin
(
this
.
path
)
}
}
}
function
createMenuItem
(
icon
,
view
,
options
)
{
if
(
options
===
undefined
)
{
options
=
{};
}
var
section
;
switch
(
options
.
section
)
{
case
"ethereum"
:
section
=
menuDefault
;
break
;
case
"legacy"
:
section
=
menuLegacy
;
break
;
default
:
section
=
menuApps
;
break
;
}
var
comp
=
menuItemTemplate
.
createObject
(
section
)
comp
.
view
=
view
comp
.
title
=
view
.
title
comp
.
icon
=
view
.
iconSource
/*
if(view.secondary !== undefined) {
comp.secondary = view.secondary
}
*/
return
comp
/*
if(options.canClose) {
//comp.closeButton.visible = options.canClose
}
*/
}
ColumnLayout
{
id
:
menuColumn
y
:
10
width
:
parent
.
width
anchors.left
:
parent
.
left
anchors.right
:
parent
.
right
spacing
:
3
Text
{
text
:
"ETHEREUM"
font.bold
:
true
anchors
{
left
:
parent
.
left
leftMargin
:
5
}
color
:
"#888888"
}
ColumnLayout
{
id
:
menuDefault
spacing
:
3
anchors
{
left
:
parent
.
left
right
:
parent
.
right
}
}
Text
{
text
:
"APPS"
font.bold
:
true
anchors
{
left
:
parent
.
left
leftMargin
:
5
}
color
:
"#888888"
}
ColumnLayout
{
id
:
menuApps
spacing
:
3
anchors
{
left
:
parent
.
left
right
:
parent
.
right
}
}
Text
{
text
:
"DEBUG"
font.bold
:
true
anchors
{
left
:
parent
.
left
leftMargin
:
5
}
color
:
"#888888"
}
ColumnLayout
{
id
:
menuLegacy
spacing
:
3
anchors
{
left
:
parent
.
left
right
:
parent
.
right
}
}
}
}
/*********************
* Main view
********************/
Rectangle
{
id
:
mainView
color
:
"#00000000"
anchors.right
:
parent
.
right
anchors.left
:
menu
.
right
anchors.bottom
:
parent
.
bottom
anchors.top
:
parent
.
top
function
createView
(
component
)
{
var
view
=
component
.
createObject
(
mainView
)
return
view
;
}
}
}
/******************
* Dialogs
*****************/
FileDialog
{
id
:
generalFileDialog
property
var
callback
;
onAccepted
:
{
var
path
=
this
.
fileUrl
.
toString
();
callback
.
call
(
this
,
path
);
}
function
show
(
selectExisting
,
callback
)
{
generalFileDialog
.
callback
=
callback
;
generalFileDialog
.
selectExisting
=
selectExisting
;
this
.
open
();
}
}
/******************
* Wallet functions
*****************/
function
importApp
(
path
)
{
var
ext
=
path
.
split
(
'.'
).
pop
()
if
(
ext
==
"html"
||
ext
==
"htm"
)
{
eth
.
openHtml
(
path
)
}
else
if
(
ext
==
"qml"
){
addPlugin
(
path
,
{
canClose
:
true
,
section
:
"apps"
})
}
}
function
setWalletValue
(
value
)
{
walletValueLabel
.
text
=
value
}
function
loadPlugin
(
name
)
{
console
.
log
(
"Loading plugin"
+
name
)
var
view
=
mainView
.
addPlugin
(
name
)
}
function
setPeers
(
text
)
{
peerLabel
.
text
=
text
}
function
addPeer
(
peer
)
{
// We could just append the whole peer object but it cries if you try to alter them
peerModel
.
append
({
ip
:
peer
.
ip
,
port
:
peer
.
port
,
lastResponse
:
timeAgo
(
peer
.
lastSend
),
latency
:
peer
.
latency
,
version
:
peer
.
version
})
}
function
resetPeers
(){
peerModel
.
clear
()
}
function
timeAgo
(
unixTs
){
var
lapsed
=
(
Date
.
now
()
-
new
Date
(
unixTs
*
1000
))
/
1000
return
(
lapsed
+
" seconds ago"
)
}
function
convertToPretty
(
unixTs
){
var
a
=
new
Date
(
unixTs
*
1000
);
var
months
=
[
'Jan'
,
'Feb'
,
'Mar'
,
'Apr'
,
'May'
,
'Jun'
,
'Jul'
,
'Aug'
,
'Sep'
,
'Oct'
,
'Nov'
,
'Dec'
];
var
year
=
a
.
getFullYear
();
var
month
=
months
[
a
.
getMonth
()];
var
date
=
a
.
getDate
();
var
hour
=
a
.
getHours
();
var
min
=
a
.
getMinutes
();
var
sec
=
a
.
getSeconds
();
var
time
=
date
+
' '
+
month
+
' '
+
year
+
' '
+
hour
+
':'
+
min
+
':'
+
sec
;
return
time
;
}
/**********************
* Windows
*********************/
Window
{
id
:
peerWindow
//flags: Qt.CustomizeWindowHint | Qt.Tool | Qt.WindowCloseButtonHint
height
:
200
width
:
700
Rectangle
{
anchors.fill
:
parent
property
var
peerModel
:
ListModel
{
id
:
peerModel
}
TableView
{
anchors.fill
:
parent
id
:
peerTable
model
:
peerModel
TableViewColumn
{
width
:
100
;
role
:
"ip"
;
title
:
"IP"
}
TableViewColumn
{
width
:
60
;
role
:
"port"
;
title
:
"Port"
}
TableViewColumn
{
width
:
140
;
role
:
"lastResponse"
;
title
:
"Last event"
}
TableViewColumn
{
width
:
100
;
role
:
"latency"
;
title
:
"Latency"
}
TableViewColumn
{
width
:
260
;
role
:
"version"
;
title
:
"Version"
}
}
}
}
Window
{
id
:
aboutWin
visible
:
false
title
:
"About"
minimumWidth
:
350
maximumWidth
:
350
maximumHeight
:
200
minimumHeight
:
200
Image
{
id
:
aboutIcon
height
:
150
width
:
150
fillMode
:
Image
.
PreserveAspectFit
smooth
:
true
source
:
"../facet.png"
x
:
10
y
:
10
}
Text
{
anchors.left
:
aboutIcon
.
right
anchors.leftMargin
:
10
font.pointSize
:
12
text
:
"<h2>Ethereal - Aitne</h2><br><h3>Development</h3>Jeffrey Wilcke<br>Maran Hidskes<br>Viktor Trón<br>"
}
}
Window
{
id
:
txImportDialog
minimumWidth
:
270
maximumWidth
:
270
maximumHeight
:
50
minimumHeight
:
50
TextField
{
id
:
txImportField
width
:
170
anchors.verticalCenter
:
parent
.
verticalCenter
anchors.left
:
parent
.
left
anchors.leftMargin
:
10
onAccepted
:
{
}
}
Button
{
anchors.left
:
txImportField
.
right
anchors.verticalCenter
:
parent
.
verticalCenter
anchors.leftMargin
:
5
text
:
"Import"
onClicked
:
{
eth
.
importTx
(
txImportField
.
text
)
txImportField
.
visible
=
false
}
}
Component.onCompleted
:
{
addrField
.
focus
=
true
}
}
Window
{
id
:
addPeerWin
visible
:
false
minimumWidth
:
230
maximumWidth
:
230
maximumHeight
:
50
minimumHeight
:
50
TextField
{
id
:
addrField
anchors.verticalCenter
:
parent
.
verticalCenter
anchors.left
:
parent
.
left
anchors.leftMargin
:
10
placeholderText
:
"address:port"
onAccepted
:
{
eth
.
connectToPeer
(
addrField
.
text
)
addPeerWin
.
visible
=
false
}
}
Button
{
anchors.left
:
addrField
.
right
anchors.verticalCenter
:
parent
.
verticalCenter
anchors.leftMargin
:
5
text
:
"Add"
onClicked
:
{
eth
.
connectToPeer
(
addrField
.
text
)
addPeerWin
.
visible
=
false
}
}
Component.onCompleted
:
{
addrField
.
focus
=
true
}
}
id
:
root
property
alias
miningButtonText
:
miningButton
.
text
property
var
ethx
:
Eth
.
ethx
width
:
900
height
:
600
minimumHeight
:
300
title
:
"Ether Browser"
// This signal is used by the filter API. The filter API connects using this signal handler from
// the different QML files and plugins.
signal
message
(
var
callback
,
int
seed
);
function
invokeFilterCallback
(
data
,
receiverSeed
)
{
//var messages = JSON.parse(data)
// Signal handler
message
(
data
,
receiverSeed
);
}
TextField
{
id
:
copyElementHax
visible
:
false
}
function
copyToClipboard
(
text
)
{
copyElementHax
.
text
=
text
copyElementHax
.
selectAll
()
copyElementHax
.
copy
()
}
// Takes care of loading all default plugins
Component.onCompleted
:
{
addPlugin
(
"./views/wallet.qml"
,
{
noAdd
:
true
,
section
:
"ethereum"
,
active
:
true
});
addPlugin
(
"./views/transaction.qml"
,
{
noAdd
:
true
,
section
:
"legacy"
});
addPlugin
(
"./views/chain.qml"
,
{
noAdd
:
true
,
section
:
"legacy"
});
addPlugin
(
"./views/info.qml"
,
{
noAdd
:
true
,
section
:
"legacy"
});
addPlugin
(
"./views/pending_tx.qml"
,
{
noAdd
:
true
,
section
:
"legacy"
});
addPlugin
(
"./views/javascript.qml"
,
{
noAdd
:
true
,
section
:
"legacy"
});
// Call the ready handler
gui
.
done
();
}
function
addPlugin
(
path
,
options
)
{
try
{
var
component
=
Qt
.
createComponent
(
path
);
if
(
component
.
status
!=
Component
.
Ready
)
{
if
(
component
.
status
==
Component
.
Error
)
{
ethx
.
note
(
"error: "
,
component
.
errorString
());
}
return
}
var
views
=
mainSplit
.
addComponent
(
component
,
options
)
views
.
menuItem
.
path
=
path
mainSplit
.
views
.
push
(
views
);
if
(
!
options
.
noAdd
)
{
gui
.
addPlugin
(
path
)
}
return
views
.
view
}
catch
(
e
)
{
eth
.
note
(
e
)
}
}
MenuBar
{
Menu
{
title
:
"File"
MenuItem
{
text
:
"Import App"
shortcut
:
"Ctrl+o"
onTriggered
:
{
generalFileDialog
.
show
(
true
,
importApp
)
}
}
MenuItem
{
text
:
"Browser"
onTriggered
:
eth
.
openBrowser
()
}
MenuItem
{
text
:
"Add plugin"
onTriggered
:
{
generalFileDialog
.
show
(
true
,
function
(
path
)
{
addPlugin
(
path
,
{
canClose
:
true
,
section
:
"apps"
})
})
}
}
MenuSeparator
{}
MenuItem
{
text
:
"Import key"
shortcut
:
"Ctrl+i"
onTriggered
:
{
generalFileDialog
.
show
(
true
,
function
(
path
)
{
gui
.
importKey
(
path
)
})
}
}
MenuItem
{
text
:
"Export keys"
shortcut
:
"Ctrl+e"
onTriggered
:
{
generalFileDialog
.
show
(
false
,
function
(
path
)
{
})
}
}
}
Menu
{
title
:
"Developer"
MenuItem
{
text
:
"Debugger"
shortcut
:
"Ctrl+d"
onTriggered
:
eth
.
startDebugger
()
}
MenuItem
{
text
:
"Import Tx"
onTriggered
:
{
txImportDialog
.
visible
=
true
}
}
MenuItem
{
text
:
"Run JS file"
onTriggered
:
{
generalFileDialog
.
show
(
true
,
function
(
path
)
{
eth
.
evalJavascriptFile
(
path
)
})
}
}
MenuItem
{
text
:
"Dump state"
onTriggered
:
{
generalFileDialog
.
show
(
false
,
function
(
path
)
{
// Empty hash for latest
gui
.
dumpState
(
""
,
path
)
})
}
}
MenuSeparator
{}
MenuItem
{
id
:
miningSpeed
text
:
"Mining: Turbo"
onTriggered
:
{
gui
.
toggleTurboMining
()
if
(
text
==
"Mining: Turbo"
)
{
text
=
"Mining: Normal"
;
}
else
{
text
=
"Mining: Turbo"
;
}
}
}
}
Menu
{
title
:
"Network"
MenuItem
{
text
:
"Add Peer"
shortcut
:
"Ctrl+p"
onTriggered
:
{
addPeerWin
.
visible
=
true
}
}
MenuItem
{
text
:
"Show Peers"
shortcut
:
"Ctrl+e"
onTriggered
:
{
peerWindow
.
visible
=
true
}
}
}
Menu
{
title
:
"Help"
MenuItem
{
text
:
"About"
onTriggered
:
{
aboutWin
.
visible
=
true
}
}
}
}
statusBar
:
StatusBar
{
height
:
32
RowLayout
{
Button
{
id
:
miningButton
text
:
"Start Mining"
onClicked
:
{
gui
.
toggleMining
()
}
}
Button
{
id
:
importAppButton
text
:
"Browser"
onClicked
:
{
eth
.
openBrowser
()
}
}
RowLayout
{
Label
{
id
:
walletValueLabel
font.pixelSize
:
10
styleColor
:
"#797979"
}
}
}
Label
{
y
:
6
objectName
:
"miningLabel"
visible
:
true
font.pixelSize
:
10
anchors.right
:
lastBlockLabel
.
left
anchors.rightMargin
:
5
}
Label
{
y
:
6
id
:
lastBlockLabel
objectName
:
"lastBlockLabel"
visible
:
true
text
:
""
font.pixelSize
:
10
anchors.right
:
peerGroup
.
left
anchors.rightMargin
:
5
}
ProgressBar
{
id
:
syncProgressIndicator
visible
:
false
objectName
:
"syncProgressIndicator"
y
:
3
width
:
140
indeterminate
:
true
anchors.right
:
peerGroup
.
left
anchors.rightMargin
:
5
}
RowLayout
{
id
:
peerGroup
y
:
7
anchors.right
:
parent
.
right
MouseArea
{
onDoubleClicked
:
peerWindow
.
visible
=
true
anchors.fill
:
parent
}
Label
{
id
:
peerLabel
font.pixelSize
:
8
text
:
"0 / 0"
}
Image
{
id
:
peerImage
width
:
10
;
height
:
10
source
:
"../network.png"
}
}
}
property
var
blockModel
:
ListModel
{
id
:
blockModel
}
SplitView
{
property
var
views
:
[];
id
:
mainSplit
anchors.fill
:
parent
resizing
:
false
function
setView
(
view
,
menu
)
{
for
(
var
i
=
0
;
i
<
views
.
length
;
i
++
)
{
views
[
i
].
view
.
visible
=
false
views
[
i
].
menuItem
.
border
.
color
=
"#00000000"
views
[
i
].
menuItem
.
color
=
"#00000000"
}
view
.
visible
=
true
menu
.
border
.
color
=
"#CCCCCC"
menu
.
color
=
"#FFFFFFFF"
}
function
addComponent
(
component
,
options
)
{
var
view
=
mainView
.
createView
(
component
,
options
)
view
.
visible
=
false
view
.
anchors
.
fill
=
mainView
if
(
!
view
.
hasOwnProperty
(
"iconSource"
)
)
{
console
.
log
(
"Could not load plugin. Property 'iconSourc' not found on view."
);
return
;
}
var
menuItem
=
menu
.
createMenuItem
(
view
.
iconSource
,
view
,
options
);
if
(
view
.
hasOwnProperty
(
"menuItem"
)
)
{
view
.
menuItem
=
menuItem
;
}
if
(
view
.
hasOwnProperty
(
"onReady"
)
)
{
view
.
onReady
.
call
(
view
)
}
if
(
options
.
active
)
{
setView
(
view
,
menuItem
)
}
return
{
view
:
view
,
menuItem
:
menuItem
}
}
/*********************
* Main menu.
********************/
Rectangle
{
id
:
menu
Layout.minimumWidth
:
180
Layout.maximumWidth
:
180
anchors.top
:
parent
.
top
color
:
"#ececec"
Component
{
id
:
menuItemTemplate
Rectangle
{
id
:
menuItem
property
var
view
;
property
var
path
;
property
alias
title
:
label
.
text
property
alias
icon
:
icon
.
source
property
alias
secondaryTitle
:
secondary
.
text
width
:
180
height
:
28
border.color
:
"#00000000"
border.width
:
1
radius
:
5
color
:
"#00000000"
anchors
{
left
:
parent
.
left
leftMargin
:
4
}
MouseArea
{
anchors.fill
:
parent
onClicked
:
{
mainSplit
.
setView
(
view
,
menuItem
)
}
}
Image
{
id
:
icon
height
:
20
width
:
20
anchors
{
left
:
parent
.
left
verticalCenter
:
parent
.
verticalCenter
leftMargin
:
3
}
MouseArea
{
anchors.fill
:
parent
onClicked
:
{
menuItem
.
closeApp
()
}
}
}
Text
{
id
:
label
anchors
{
left
:
icon
.
right
verticalCenter
:
parent
.
verticalCenter
leftMargin
:
3
}
color
:
"#0D0A01"
font.pixelSize
:
12
}
Text
{
id
:
secondary
anchors
{
right
:
parent
.
right
rightMargin
:
8
verticalCenter
:
parent
.
verticalCenter
}
color
:
"#AEADBE"
font.pixelSize
:
12
}
function
closeApp
()
{
if
(
this
.
view
.
hasOwnProperty
(
"onDestroy"
))
{
this
.
view
.
onDestroy
.
call
(
this
.
view
)
}
this
.
view
.
destroy
()
this
.
destroy
()
gui
.
removePlugin
(
this
.
path
)
}
}
}
function
createMenuItem
(
icon
,
view
,
options
)
{
if
(
options
===
undefined
)
{
options
=
{};
}
var
section
;
switch
(
options
.
section
)
{
case
"ethereum"
:
section
=
menuDefault
;
break
;
case
"legacy"
:
section
=
menuLegacy
;
break
;
default
:
section
=
menuApps
;
break
;
}
var
comp
=
menuItemTemplate
.
createObject
(
section
)
comp
.
view
=
view
comp
.
title
=
view
.
title
comp
.
icon
=
view
.
iconSource
/*
if(view.secondary !== undefined) {
comp.secondary = view.secondary
}
*/
return
comp
/*
if(options.canClose) {
//comp.closeButton.visible = options.canClose
}
*/
}
ColumnLayout
{
id
:
menuColumn
y
:
10
width
:
parent
.
width
anchors.left
:
parent
.
left
anchors.right
:
parent
.
right
spacing
:
3
Text
{
text
:
"ETHEREUM"
font.bold
:
true
anchors
{
left
:
parent
.
left
leftMargin
:
5
}
color
:
"#888888"
}
ColumnLayout
{
id
:
menuDefault
spacing
:
3
anchors
{
left
:
parent
.
left
right
:
parent
.
right
}
}
Text
{
text
:
"APPS"
font.bold
:
true
anchors
{
left
:
parent
.
left
leftMargin
:
5
}
color
:
"#888888"
}
ColumnLayout
{
id
:
menuApps
spacing
:
3
anchors
{
left
:
parent
.
left
right
:
parent
.
right
}
}
Text
{
text
:
"DEBUG"
font.bold
:
true
anchors
{
left
:
parent
.
left
leftMargin
:
5
}
color
:
"#888888"
}
ColumnLayout
{
id
:
menuLegacy
spacing
:
3
anchors
{
left
:
parent
.
left
right
:
parent
.
right
}
}
}
}
/*********************
* Main view
********************/
Rectangle
{
id
:
mainView
color
:
"#00000000"
anchors.right
:
parent
.
right
anchors.left
:
menu
.
right
anchors.bottom
:
parent
.
bottom
anchors.top
:
parent
.
top
function
createView
(
component
)
{
var
view
=
component
.
createObject
(
mainView
)
return
view
;
}
}
}
/******************
* Dialogs
*****************/
FileDialog
{
id
:
generalFileDialog
property
var
callback
;
onAccepted
:
{
var
path
=
this
.
fileUrl
.
toString
();
callback
.
call
(
this
,
path
);
}
function
show
(
selectExisting
,
callback
)
{
generalFileDialog
.
callback
=
callback
;
generalFileDialog
.
selectExisting
=
selectExisting
;
this
.
open
();
}
}
/******************
* Wallet functions
*****************/
function
importApp
(
path
)
{
var
ext
=
path
.
split
(
'.'
).
pop
()
if
(
ext
==
"html"
||
ext
==
"htm"
)
{
eth
.
openHtml
(
path
)
}
else
if
(
ext
==
"qml"
){
addPlugin
(
path
,
{
canClose
:
true
,
section
:
"apps"
})
}
}
function
setWalletValue
(
value
)
{
walletValueLabel
.
text
=
value
}
function
loadPlugin
(
name
)
{
console
.
log
(
"Loading plugin"
+
name
)
var
view
=
mainView
.
addPlugin
(
name
)
}
function
setPeers
(
text
)
{
peerLabel
.
text
=
text
}
function
addPeer
(
peer
)
{
// We could just append the whole peer object but it cries if you try to alter them
peerModel
.
append
({
ip
:
peer
.
ip
,
port
:
peer
.
port
,
lastResponse
:
timeAgo
(
peer
.
lastSend
),
latency
:
peer
.
latency
,
version
:
peer
.
version
})
}
function
resetPeers
(){
peerModel
.
clear
()
}
function
timeAgo
(
unixTs
){
var
lapsed
=
(
Date
.
now
()
-
new
Date
(
unixTs
*
1000
))
/
1000
return
(
lapsed
+
" seconds ago"
)
}
function
convertToPretty
(
unixTs
){
var
a
=
new
Date
(
unixTs
*
1000
);
var
months
=
[
'Jan'
,
'Feb'
,
'Mar'
,
'Apr'
,
'May'
,
'Jun'
,
'Jul'
,
'Aug'
,
'Sep'
,
'Oct'
,
'Nov'
,
'Dec'
];
var
year
=
a
.
getFullYear
();
var
month
=
months
[
a
.
getMonth
()];
var
date
=
a
.
getDate
();
var
hour
=
a
.
getHours
();
var
min
=
a
.
getMinutes
();
var
sec
=
a
.
getSeconds
();
var
time
=
date
+
' '
+
month
+
' '
+
year
+
' '
+
hour
+
':'
+
min
+
':'
+
sec
;
return
time
;
}
/**********************
* Windows
*********************/
Window
{
id
:
peerWindow
//flags: Qt.CustomizeWindowHint | Qt.Tool | Qt.WindowCloseButtonHint
height
:
200
width
:
700
Rectangle
{
anchors.fill
:
parent
property
var
peerModel
:
ListModel
{
id
:
peerModel
}
TableView
{
anchors.fill
:
parent
id
:
peerTable
model
:
peerModel
TableViewColumn
{
width
:
100
;
role
:
"ip"
;
title
:
"IP"
}
TableViewColumn
{
width
:
60
;
role
:
"port"
;
title
:
"Port"
}
TableViewColumn
{
width
:
140
;
role
:
"lastResponse"
;
title
:
"Last event"
}
TableViewColumn
{
width
:
100
;
role
:
"latency"
;
title
:
"Latency"
}
TableViewColumn
{
width
:
260
;
role
:
"version"
;
title
:
"Version"
}
}
}
}
Window
{
id
:
aboutWin
visible
:
false
title
:
"About"
minimumWidth
:
350
maximumWidth
:
350
maximumHeight
:
200
minimumHeight
:
200
Image
{
id
:
aboutIcon
height
:
150
width
:
150
fillMode
:
Image
.
PreserveAspectFit
smooth
:
true
source
:
"../facet.png"
x
:
10
y
:
10
}
Text
{
anchors.left
:
aboutIcon
.
right
anchors.leftMargin
:
10
font.pointSize
:
12
text
:
"<h2>Ethereal - Aitne</h2><br><h3>Development</h3>Jeffrey Wilcke<br>Maran Hidskes<br>Viktor Trón<br>"
}
}
Window
{
id
:
txImportDialog
minimumWidth
:
270
maximumWidth
:
270
maximumHeight
:
50
minimumHeight
:
50
TextField
{
id
:
txImportField
width
:
170
anchors.verticalCenter
:
parent
.
verticalCenter
anchors.left
:
parent
.
left
anchors.leftMargin
:
10
onAccepted
:
{
}
}
Button
{
anchors.left
:
txImportField
.
right
anchors.verticalCenter
:
parent
.
verticalCenter
anchors.leftMargin
:
5
text
:
"Import"
onClicked
:
{
eth
.
importTx
(
txImportField
.
text
)
txImportField
.
visible
=
false
}
}
Component.onCompleted
:
{
addrField
.
focus
=
true
}
}
Window
{
id
:
addPeerWin
visible
:
false
minimumWidth
:
230
maximumWidth
:
230
maximumHeight
:
50
minimumHeight
:
50
TextField
{
id
:
addrField
anchors.verticalCenter
:
parent
.
verticalCenter
anchors.left
:
parent
.
left
anchors.leftMargin
:
10
placeholderText
:
"address:port"
onAccepted
:
{
eth
.
connectToPeer
(
addrField
.
text
)
addPeerWin
.
visible
=
false
}
}
Button
{
anchors.left
:
addrField
.
right
anchors.verticalCenter
:
parent
.
verticalCenter
anchors.leftMargin
:
5
text
:
"Add"
onClicked
:
{
eth
.
connectToPeer
(
addrField
.
text
)
addPeerWin
.
visible
=
false
}
}
Component.onCompleted
:
{
addrField
.
focus
=
true
}
}
}
ethereal/gui.go
View file @
91ca5d72
package
main
// #include "/Users/jeffrey/go/src/github.com/go-qml/qml/cpp/capi.h"
import
"C"
import
(
"bytes"
"encoding/json"
...
...
@@ -10,7 +13,9 @@ import (
"strconv"
"strings"
"time"
"unsafe"
"bitbucket.org/binet/go-ffi/pkg/ffi"
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethdb"
...
...
@@ -23,6 +28,29 @@ import (
"gopkg.in/qml.v1"
)
func
LoadExtension
(
path
string
)
(
uintptr
,
error
)
{
lib
,
err
:=
ffi
.
NewLibrary
(
path
)
if
err
!=
nil
{
return
0
,
err
}
so
,
err
:=
lib
.
Fct
(
"sharedObject"
,
ffi
.
Pointer
,
nil
)
if
err
!=
nil
{
return
0
,
err
}
ptr
:=
so
()
/*
err = lib.Close()
if err != nil {
return 0, err
}
*/
return
ptr
.
Interface
()
.
(
uintptr
),
nil
}
var
logger
=
ethlog
.
NewLogger
(
"GUI"
)
type
Gui
struct
{
...
...
@@ -91,6 +119,14 @@ func (gui *Gui) Start(assetPath string) {
context
.
SetVar
(
"gui"
,
gui
)
context
.
SetVar
(
"eth"
,
gui
.
uiLib
)
vec
,
errr
:=
LoadExtension
(
"/Users/jeffrey/Desktop/build-libqmltest-Desktop_Qt_5_2_1_clang_64bit-Debug/liblibqmltest_debug.dylib"
)
fmt
.
Printf
(
"Fetched vec with addr: %#x
\n
"
,
vec
)
if
errr
!=
nil
{
fmt
.
Println
(
errr
)
}
else
{
context
.
SetVar
(
"vec"
,
(
unsafe
.
Pointer
)(
vec
))
}
// Load the main QML interface
data
,
_
:=
ethutil
.
Config
.
Db
.
Get
([]
byte
(
"KeyRing"
))
...
...
ethereal/ui_lib.go
View file @
91ca5d72
...
...
@@ -37,15 +37,15 @@ type UiLib struct {
jsEngine
*
javascript
.
JSRE
filterCallbacks
map
[
int
][]
int
filters
map
[
int
]
*
Gui
Filter
//filters map[int]*ethpipe.JS
Filter
}
func
NewUiLib
(
engine
*
qml
.
Engine
,
eth
*
eth
.
Ethereum
,
assetPath
string
)
*
UiLib
{
return
&
UiLib
{
JSPipe
:
ethpipe
.
NewJSPipe
(
eth
),
engine
:
engine
,
eth
:
eth
,
assetPath
:
assetPath
,
jsEngine
:
javascript
.
NewJSRE
(
eth
),
filterCallbacks
:
make
(
map
[
int
][]
int
)
,
filters
:
make
(
map
[
int
]
*
Gui
Filter
)}
return
&
UiLib
{
JSPipe
:
ethpipe
.
NewJSPipe
(
eth
),
engine
:
engine
,
eth
:
eth
,
assetPath
:
assetPath
,
jsEngine
:
javascript
.
NewJSRE
(
eth
),
filterCallbacks
:
make
(
map
[
int
][]
int
)
}
//, filters: make(map[int]*ethpipe.JS
Filter)}
}
func
(
self
*
UiLib
)
Note
(
msg
string
)
{
logger
.
Infoln
(
msg
)
func
(
self
*
UiLib
)
Note
f
(
args
[]
interface
{}
)
{
logger
.
Infoln
(
args
...
)
}
func
(
self
*
UiLib
)
LookupDomain
(
domain
string
)
string
{
...
...
@@ -164,46 +164,37 @@ func (self *UiLib) StartDebugger() {
dbWindow
.
Show
()
}
func
(
self
*
UiLib
)
RegisterFilter
(
object
map
[
string
]
interface
{},
seed
int
)
{
filter
:=
&
GuiFilter
{
ethpipe
.
NewJSFilterFromMap
(
object
,
self
.
eth
),
seed
}
self
.
filters
[
seed
]
=
filter
func
(
self
*
UiLib
)
NewFilter
(
object
map
[
string
]
interface
{})
int
{
filter
,
id
:=
self
.
eth
.
InstallFilter
(
object
)
filter
.
MessageCallback
=
func
(
messages
ethstate
.
Messages
)
{
for
_
,
callbackSeed
:=
range
self
.
filterCallbacks
[
seed
]
{
self
.
win
.
Root
()
.
Call
(
"invokeFilterCallback"
,
filter
.
MessagesToJson
(
messages
),
seed
,
callbackSeed
)
}
self
.
win
.
Root
()
.
Call
(
"invokeFilterCallback"
,
ethpipe
.
ToJSMessages
(
messages
),
id
)
}
return
id
}
func
(
self
*
UiLib
)
RegisterFilterString
(
typ
string
,
seed
int
)
{
filter
:=
&
GuiFilter
{
ethpipe
.
NewJSFilterFromMap
(
nil
,
self
.
eth
),
seed
}
self
.
filters
[
seed
]
=
filter
if
typ
==
"chain"
{
filter
.
BlockCallback
=
func
(
block
*
ethchain
.
Block
)
{
for
_
,
callbackSeed
:=
range
self
.
filterCallbacks
[
seed
]
{
self
.
win
.
Root
()
.
Call
(
"invokeFilterCallback"
,
"{}"
,
seed
,
callbackSeed
)
}
}
func
(
self
*
UiLib
)
NewFilterString
(
typ
string
)
int
{
filter
,
id
:=
self
.
eth
.
InstallFilter
(
nil
)
filter
.
BlockCallback
=
func
(
block
*
ethchain
.
Block
)
{
self
.
win
.
Root
()
.
Call
(
"invokeFilterCallback"
,
"{}"
,
id
)
}
}
func
(
self
*
UiLib
)
RegisterFilterCallback
(
seed
,
cbSeed
int
)
{
self
.
filterCallbacks
[
seed
]
=
append
(
self
.
filterCallbacks
[
seed
],
cbSeed
)
return
id
}
func
(
self
*
UiLib
)
UninstallFilter
(
seed
int
)
{
filter
:=
self
.
filters
[
seed
]
func
(
self
*
UiLib
)
Messages
(
id
int
)
*
ethutil
.
List
{
filter
:=
self
.
eth
.
GetFilter
(
id
)
if
filter
!=
nil
{
filter
.
Uninstall
()
delete
(
self
.
filters
,
seed
)
messages
:=
filter
.
Find
()
return
ethpipe
.
ToJSMessages
(
messages
)
}
return
ethutil
.
EmptyList
()
}
type
GuiFilter
struct
{
*
ethpipe
.
JSFilter
seed
int
func
(
self
*
UiLib
)
UninstallFilter
(
id
int
)
{
self
.
eth
.
UninstallFilter
(
id
)
}
func
(
self
*
UiLib
)
Transact
(
object
map
[
string
]
interface
{})
(
*
ethpipe
.
JSReceipt
,
error
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment