Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
floodlight
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
croft1
floodlight
Commits
923d0add
Commit
923d0add
authored
12 years ago
by
Srinivasan Ramasubramanian
Browse files
Options
Downloads
Patches
Plain Diff
Read topology configuration from storage and update when storage is modified.
parent
2dc6ea86
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/net/floodlightcontroller/linkdiscovery/internal/LinkDiscoveryManager.java
+38
-2
38 additions, 2 deletions
...ntroller/linkdiscovery/internal/LinkDiscoveryManager.java
with
38 additions
and
2 deletions
src/main/java/net/floodlightcontroller/linkdiscovery/internal/LinkDiscoveryManager.java
+
38
−
2
View file @
923d0add
...
...
@@ -127,6 +127,10 @@ IFloodlightModule, IInfoProvider, IHAListener {
protected
static
Logger
log
=
LoggerFactory
.
getLogger
(
LinkDiscoveryManager
.
class
);
// Names of table/fields for links in the storage API
private
static
final
String
TOPOLOGY_TABLE_NAME
=
"controller_topologyconfig"
;
private
static
final
String
TOPOLOGY_ID
=
"id"
;
private
static
final
String
TOPOLOGY_AUTOPORTFAST
=
"autoportfast"
;
private
static
final
String
LINK_TABLE_NAME
=
"controller_link"
;
private
static
final
String
LINK_ID
=
"id"
;
private
static
final
String
LINK_SRC_SWITCH
=
"src_switch_id"
;
...
...
@@ -194,7 +198,8 @@ IFloodlightModule, IInfoProvider, IHAListener {
* Flag to indicate if automatic port fast is enabled or not.
* Default is set to false -- Initialized in the init method as well.
*/
boolean
autoPortFastFeature
=
false
;
public
final
boolean
AUTOPORTFAST_DEFAULT
=
false
;
boolean
autoPortFastFeature
=
AUTOPORTFAST_DEFAULT
;
/**
* Map from link to the most recent time it was verified functioning
...
...
@@ -1723,6 +1728,12 @@ IFloodlightModule, IInfoProvider, IHAListener {
@Override
public
void
rowsModified
(
String
tableName
,
Set
<
Object
>
rowKeys
)
{
if
(
tableName
.
equals
(
TOPOLOGY_TABLE_NAME
))
{
readTopologyConfigFromStorage
();
return
;
}
Map
<
Long
,
IOFSwitch
>
switches
=
floodlightProvider
.
getSwitches
();
ArrayList
<
IOFSwitch
>
updated_switches
=
new
ArrayList
<
IOFSwitch
>();
for
(
Object
key:
rowKeys
)
{
...
...
@@ -1782,7 +1793,9 @@ IFloodlightModule, IInfoProvider, IHAListener {
@Override
public
void
rowsDeleted
(
String
tableName
,
Set
<
Object
>
rowKeys
)
{
// Ignore delete events, the switch delete will do the right thing on it's own
// Ignore delete events, the switch delete will do the
// right thing on it's own.
readTopologyConfigFromStorage
();
}
// IFloodlightModule classes
...
...
@@ -1882,12 +1895,17 @@ IFloodlightModule, IInfoProvider, IHAListener {
return
;
}
storageSource
.
createTable
(
TOPOLOGY_TABLE_NAME
,
null
);
storageSource
.
setTablePrimaryKeyName
(
TOPOLOGY_TABLE_NAME
,
TOPOLOGY_ID
);
readTopologyConfigFromStorage
();
storageSource
.
createTable
(
LINK_TABLE_NAME
,
null
);
storageSource
.
setTablePrimaryKeyName
(
LINK_TABLE_NAME
,
LINK_ID
);
storageSource
.
deleteMatchingRows
(
LINK_TABLE_NAME
,
null
);
// Register for storage updates for the switch table
try
{
storageSource
.
addListener
(
SWITCH_CONFIG_TABLE_NAME
,
this
);
storageSource
.
addListener
(
TOPOLOGY_TABLE_NAME
,
this
);
}
catch
(
StorageException
ex
)
{
log
.
error
(
"Error in installing listener for "
+
"switch table {}"
,
SWITCH_CONFIG_TABLE_NAME
);
...
...
@@ -2068,6 +2086,7 @@ IFloodlightModule, IInfoProvider, IHAListener {
"to HA change from SLAVE->MASTER"
);
}
clearAllLinks
();
readTopologyConfigFromStorage
();
log
.
debug
(
"Role Change to Master: Rescheduling discovery task."
);
discoveryTask
.
reschedule
(
1
,
TimeUnit
.
MICROSECONDS
);
}
...
...
@@ -2103,4 +2122,21 @@ IFloodlightModule, IInfoProvider, IHAListener {
public
void
setAutoPortFastFeature
(
boolean
autoPortFastFeature
)
{
this
.
autoPortFastFeature
=
autoPortFastFeature
;
}
public
void
readTopologyConfigFromStorage
()
{
IResultSet
topologyResult
=
storageSource
.
executeQuery
(
TOPOLOGY_TABLE_NAME
,
null
,
null
,
null
);
if
(
topologyResult
.
next
())
{
boolean
apf
=
topologyResult
.
getBoolean
(
TOPOLOGY_AUTOPORTFAST
);
autoPortFastFeature
=
apf
;
}
else
{
this
.
autoPortFastFeature
=
AUTOPORTFAST_DEFAULT
;
}
if
(
autoPortFastFeature
)
log
.
info
(
"Setting autoportfast feature to ON"
);
else
log
.
info
(
"Setting autoportfast feature to OFF"
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment