Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Madan Jampani
2014-11-04 23:01:13 -0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
0a7a815f6bdc2bc12787178b4debd3d76bd86d85
0a7a815f
2 parents
69aecfcc
0df1b1d8
Merge branch 'master' of
ssh://gerrit.onlab.us:29418/onos-next
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
210 additions
and
23 deletions
core/store/dist/src/main/java/org/onlab/onos/store/service/ReadRequest.java
core/store/dist/src/main/java/org/onlab/onos/store/service/ReadResult.java
core/store/dist/src/main/java/org/onlab/onos/store/service/VersionedValue.java
core/store/dist/src/main/java/org/onlab/onos/store/service/WriteRequest.java
core/store/dist/src/main/java/org/onlab/onos/store/service/WriteResult.java
core/store/dist/src/main/java/org/onlab/onos/store/service/impl/ClusterMessagingProtocol.java
core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseManager.java
providers/lldp/src/main/java/org/onlab/onos/provider/lldp/impl/LinkDiscovery.java
web/gui/src/main/webapp/index2.html
web/gui/src/main/webapp/network.js
web/gui/src/main/webapp/onos2.js
web/gui/src/main/webapp/sampleKeys.js
core/store/dist/src/main/java/org/onlab/onos/store/service/ReadRequest.java
View file @
0a7a815
package
org
.
onlab
.
onos
.
store
.
service
;
import
com.google.common.base.MoreObjects
;
/**
* Database read request.
*/
...
...
@@ -31,6 +33,9 @@ public class ReadRequest {
@Override
public
String
toString
()
{
return
"ReadRequest [tableName="
+
tableName
+
", key="
+
key
+
"]"
;
return
MoreObjects
.
toStringHelper
(
getClass
())
.
add
(
"tableName"
,
tableName
)
.
add
(
"key"
,
key
)
.
toString
();
}
}
\ No newline at end of file
...
...
core/store/dist/src/main/java/org/onlab/onos/store/service/ReadResult.java
View file @
0a7a815
package
org
.
onlab
.
onos
.
store
.
service
;
import
com.google.common.base.MoreObjects
;
/**
* Database read result.
...
...
@@ -18,7 +20,7 @@ public class ReadResult {
/**
* Returns database table name.
* @return table name
.
* @return table name
*/
public
String
tableName
()
{
return
tableName
;
...
...
@@ -26,7 +28,7 @@ public class ReadResult {
/**
* Returns database table key.
* @return key
.
* @return key
*/
public
String
key
()
{
return
key
;
...
...
@@ -39,4 +41,13 @@ public class ReadResult {
public
VersionedValue
value
()
{
return
value
;
}
@Override
public
String
toString
()
{
return
MoreObjects
.
toStringHelper
(
getClass
())
.
add
(
"tableName"
,
tableName
)
.
add
(
"key"
,
key
)
.
add
(
"value"
,
value
)
.
toString
();
}
}
...
...
core/store/dist/src/main/java/org/onlab/onos/store/service/VersionedValue.java
View file @
0a7a815
...
...
@@ -2,6 +2,8 @@ package org.onlab.onos.store.service;
import
java.util.Arrays
;
import
com.google.common.base.MoreObjects
;
/**
* Wrapper object that holds the object (as byte array) and its version.
*/
...
...
@@ -38,7 +40,9 @@ public class VersionedValue {
@Override
public
String
toString
()
{
return
"VersionedValue [value="
+
Arrays
.
toString
(
value
)
+
", version="
+
version
+
"]"
;
return
MoreObjects
.
toStringHelper
(
getClass
())
.
add
(
"version"
,
version
)
.
add
(
"value"
,
Arrays
.
toString
(
value
))
.
toString
();
}
}
...
...
core/store/dist/src/main/java/org/onlab/onos/store/service/WriteRequest.java
View file @
0a7a815
...
...
@@ -4,6 +4,8 @@ import static com.google.common.base.Preconditions.checkArgument;
import
java.util.Objects
;
import
com.google.common.base.MoreObjects
;
/**
* Database write request.
*/
...
...
@@ -67,10 +69,13 @@ public class WriteRequest {
@Override
public
String
toString
()
{
return
"WriteRequest [tableName="
+
tableName
+
", key="
+
key
+
", newValue="
+
newValue
+
", previousVersion="
+
previousVersion
+
", oldValue="
+
oldValue
;
return
MoreObjects
.
toStringHelper
(
getClass
())
.
add
(
"tableName"
,
tableName
)
.
add
(
"key"
,
key
)
.
add
(
"newValue"
,
newValue
)
.
add
(
"previousVersion"
,
previousVersion
)
.
add
(
"oldValue"
,
oldValue
)
.
toString
();
}
@Override
...
...
core/store/dist/src/main/java/org/onlab/onos/store/service/WriteResult.java
View file @
0a7a815
package
org
.
onlab
.
onos
.
store
.
service
;
import
com.google.common.base.MoreObjects
;
/**
* Database write result.
...
...
@@ -27,4 +29,13 @@ public class WriteResult {
public
VersionedValue
previousValue
()
{
return
previousValue
;
}
@Override
public
String
toString
()
{
return
MoreObjects
.
toStringHelper
(
getClass
())
.
add
(
"tableName"
,
tableName
)
.
add
(
"key"
,
key
)
.
add
(
"previousValue"
,
previousValue
)
.
toString
();
}
}
...
...
core/store/dist/src/main/java/org/onlab/onos/store/service/impl/ClusterMessagingProtocol.java
View file @
0a7a815
...
...
@@ -69,10 +69,10 @@ public class ClusterMessagingProtocol implements Protocol<TcpMember> {
private
final
Logger
log
=
getLogger
(
getClass
());
@Reference
(
cardinality
=
ReferenceCardinality
.
MANDATORY_UNARY
)
ClusterService
clusterService
;
protected
ClusterService
clusterService
;
@Reference
(
cardinality
=
ReferenceCardinality
.
MANDATORY_UNARY
)
ClusterCommunicationService
clusterCommunicator
;
protected
ClusterCommunicationService
clusterCommunicator
;
public
static
final
MessageSubject
COPYCAT_PING
=
new
MessageSubject
(
"copycat-raft-consensus-ping"
);
...
...
core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseManager.java
View file @
0a7a815
...
...
@@ -49,10 +49,10 @@ public class DatabaseManager implements DatabaseService, DatabaseAdminService {
private
final
Logger
log
=
getLogger
(
getClass
());
@Reference
(
cardinality
=
ReferenceCardinality
.
MANDATORY_UNARY
)
ClusterService
clusterService
;
protected
ClusterService
clusterService
;
@Reference
(
cardinality
=
ReferenceCardinality
.
MANDATORY_UNARY
)
ClusterMessagingProtocol
copycatMessagingProtocol
;
protected
ClusterMessagingProtocol
copycatMessagingProtocol
;
public
static
final
String
LOG_FILE_PREFIX
=
"onos-copy-cat-log"
;
...
...
providers/lldp/src/main/java/org/onlab/onos/provider/lldp/impl/LinkDiscovery.java
View file @
0a7a815
...
...
@@ -82,7 +82,7 @@ public class LinkDiscovery implements TimerTask {
private
final
PacketService
pktService
;
private
final
MastershipService
mastershipService
;
private
Timeout
timeout
;
private
boolean
isStopped
;
private
volatile
boolean
isStopped
;
/**
* Instantiates discovery manager for the given physical switch. Creates a
...
...
@@ -243,8 +243,10 @@ public class LinkDiscovery implements TimerTask {
public
void
run
(
final
Timeout
t
)
{
boolean
isMaster
=
mastershipService
.
getLocalRole
(
device
.
id
())
==
MASTER
;
if
(!
isMaster
)
{
if
(!
isStopped
())
{
// reschedule timer
timeout
=
Timer
.
getTimer
().
newTimeout
(
this
,
this
.
probeRate
,
MILLISECONDS
);
}
return
;
}
...
...
@@ -280,16 +282,18 @@ public class LinkDiscovery implements TimerTask {
}
}
if
(!
isStopped
())
{
// reschedule timer
timeout
=
Timer
.
getTimer
().
newTimeout
(
this
,
this
.
probeRate
,
MILLISECONDS
);
}
}
public
void
stop
()
{
public
synchronized
void
stop
()
{
timeout
.
cancel
();
isStopped
=
true
;
}
public
void
start
()
{
public
synchronized
void
start
()
{
if
(
isStopped
)
{
timeout
=
Timer
.
getTimer
().
newTimeout
(
this
,
0
,
MILLISECONDS
);
isStopped
=
false
;
...
...
web/gui/src/main/webapp/index2.html
View file @
0a7a815
...
...
@@ -71,6 +71,7 @@
var
ONOS
=
$
.
onos
({
comment
:
"configuration options"
,
startVid
:
'topo'
,
// startVid: 'sampleKeys',
trace
:
false
});
</script>
...
...
@@ -82,6 +83,7 @@
<script
src=
"sample2.js"
></script>
<script
src=
"sampleAlt2.js"
></script>
<script
src=
"sampleRadio.js"
></script>
<script
src=
"sampleKeys.js"
></script>
<!-- Contributed (application) views injected here -->
<!-- TODO: replace with template marker and inject refs server-side -->
...
...
web/gui/src/main/webapp/network.js
View file @
0a7a815
...
...
@@ -28,7 +28,7 @@
// configuration data
var
config
=
{
useLiveData
:
tru
e
,
useLiveData
:
fals
e
,
debugOn
:
false
,
debug
:
{
showNodeXY
:
false
,
...
...
web/gui/src/main/webapp/onos2.js
View file @
0a7a815
...
...
@@ -49,13 +49,40 @@
ctx
:
''
},
built
=
false
,
errorCount
=
0
;
errorCount
=
0
,
keyHandler
=
{};
// DOM elements etc.
var
$view
,
$mastRadio
;
function
whatKey
(
code
)
{
switch
(
code
)
{
case
13
:
return
'enter'
;
case
16
:
return
'shift'
;
case
17
:
return
'ctrl'
;
case
18
:
return
'alt'
;
case
27
:
return
'esc'
;
case
32
:
return
'space'
;
case
37
:
return
'leftArrow'
;
case
38
:
return
'upArrow'
;
case
39
:
return
'rightArrow'
;
case
40
:
return
'downArrow'
;
case
91
:
return
'cmdLeft'
;
case
93
:
return
'cmdRight'
;
default
:
if
((
code
>=
48
&&
code
<=
57
)
||
(
code
>=
65
&&
code
<=
90
))
{
return
String
.
fromCharCode
(
code
);
}
else
if
(
code
>=
112
&&
code
<=
123
)
{
return
'F'
+
(
code
-
111
);
}
return
'.'
;
}
}
// ..........................................................
// Internal functions
...
...
@@ -206,9 +233,11 @@
// the incoming view, then unload it...
if
(
current
.
view
&&
(
current
.
view
.
vid
!==
view
.
vid
))
{
current
.
view
.
unload
();
// detach radio buttons, if they were there..
$
(
'#mastRadio'
).
children
().
detach
();
// detach radio buttons, key handlers, etc.
$
(
'#mastRadio'
).
children
().
detach
();
keyHandler
.
fn
=
null
;
keyHandler
.
map
=
{};
}
// cache new view and context
...
...
@@ -283,6 +312,27 @@
$mastRadio
.
node
().
appendChild
(
btnG
.
node
());
}
function
setKeyBindings
(
keyArg
)
{
if
(
$
.
isFunction
(
keyArg
))
{
// set general key handler callback
keyHandler
.
fn
=
keyArg
;
}
else
{
// set specific key filter map
keyHandler
.
map
=
keyArg
;
}
}
function
keyIn
()
{
var
event
=
d3
.
event
,
keyCode
=
event
.
keyCode
,
key
=
whatKey
(
keyCode
),
cb
=
isF
(
keyHandler
.
map
[
key
])
||
isF
(
keyHandler
.
fn
);
if
(
cb
)
{
cb
(
current
.
view
.
token
(),
key
,
keyCode
,
event
);
}
}
function
resize
(
e
)
{
d3
.
selectAll
(
'.onosView'
).
call
(
setViewDimensions
);
// allow current view to react to resize event...
...
...
@@ -320,7 +370,6 @@
this
.
radioButtons
=
null
;
// no radio buttons yet
this
.
ok
=
true
;
// valid view
}
}
function
validateViewArgs
(
vid
)
{
...
...
@@ -348,7 +397,8 @@
width
:
this
.
width
,
height
:
this
.
height
,
uid
:
this
.
uid
,
setRadio
:
this
.
setRadio
setRadio
:
this
.
setRadio
,
setKeys
:
this
.
setKeys
}
},
...
...
@@ -433,6 +483,10 @@
setRadioButtons
(
this
.
vid
,
btnSet
,
cb
);
},
setKeys
:
function
(
keyArg
)
{
setKeyBindings
(
keyArg
);
},
uid
:
function
(
id
)
{
return
uid
(
this
,
id
);
}
...
...
@@ -536,6 +590,8 @@
$
(
window
).
on
(
'hashchange'
,
hash
);
$
(
window
).
on
(
'resize'
,
resize
);
d3
.
select
(
'body'
).
on
(
'keydown'
,
keyIn
);
// Invoke hashchange callback to navigate to content
// indicated by the window location hash.
hash
();
...
...
@@ -544,7 +600,6 @@
reportBuildErrors
();
}
// export the api and build-UI function
return
{
ui
:
uiApi
,
...
...
web/gui/src/main/webapp/sampleKeys.js
0 → 100644
View file @
0a7a815
/*
* Copyright 2014 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
Sample view to illustrate key bindings.
@author Simon Hunt
*/
(
function
(
onos
)
{
'use strict'
;
var
keyDispatch
=
{
Z
:
keyUndo
,
X
:
keyCut
,
C
:
keyCopy
,
V
:
keyPaste
,
space
:
keySpace
};
function
keyUndo
(
view
)
{
note
(
view
,
'Z = UNDO'
);
}
function
keyCut
(
view
)
{
note
(
view
,
'X = CUT'
);
}
function
keyCopy
(
view
)
{
note
(
view
,
'C = COPY'
);
}
function
keyPaste
(
view
)
{
note
(
view
,
'V = PASTE'
);
}
function
keySpace
(
view
)
{
note
(
view
,
'The SpaceBar'
);
}
function
note
(
view
,
msg
)
{
view
.
$div
.
append
(
'p'
)
.
text
(
msg
)
.
style
({
'font-size'
:
'10pt'
,
color
:
'darkorange'
,
padding
:
'0 20px'
,
margin
:
0
});
}
function
keyCallback
(
view
,
key
,
keyCode
,
event
)
{
note
(
view
,
'Key = '
+
key
+
' KeyCode = '
+
keyCode
);
}
// Keys using a keyset to target specific keys only
function
load
(
view
,
ctx
)
{
// this maps specific keys to specific functions (1)
view
.
setKeys
(
keyDispatch
);
// whereas, this installs a general key handler function (2)
view
.
setKeys
(
keyCallback
);
// Note that (1) takes precedence over (2)
view
.
$div
.
append
(
'p'
)
.
text
(
'Press a key or two (try Z,X,C,V and others) ...'
)
.
style
(
'padding'
,
'2px 8px'
);
}
// == register the view here, with links to lifecycle callbacks
onos
.
ui
.
addView
(
'sampleKeys'
,
{
reset
:
true
,
// empty the div on reset
load
:
load
});
}(
ONOS
));
Please
register
or
login
to post a comment