commit | 7940b65813c9c52438a56fd6f302669ae8ec86b6 | [log] [tgz] |
---|---|---|
author | Pavlin Radoslavov <pavlin@onlab.us> | Thu Feb 13 19:42:05 2014 -0800 |
committer | Gerrit Code Review <gerrit2@onos-services> | Fri Feb 14 11:54:00 2014 -0800 |
tree | e8610c3cce71ba8ad6d909165c3941970174284c | |
parent | 586d33e2ee78bc9451c30936408d96989e39604d [diff] |
Added new notification framework: * The listener has to implement the IEventChannelListener interface. * A listener subscribes to a notification channel by using IDatagridService.addListener(), and unsubscribes by using IDatagridService.removeListener() The channel is created and started automatically when the first listener is added. * A channel can be created by using IDatagridService.createChannel() e.g., by the publisher of events. Note that createChannel() automatically starts the event channel operation. * A publisher uses IEventChannel.addEntry() and removeEntry() to generate add/delete events. * The listener receives the add/remove events by implementing the IEventChannelListener.entryAdded() and entryRemoved() methods. Example of usage: Listener/Subscriber: private FooFlowPath fooFlowPath = new FooFlowPath(); datagridService.addListener("mapFooFlowPath", fooFlowPath, Long.class, FlowPath.class); ... class FooFlowPath implements IEventChannelListener<Long, FlowPath> { /** * Receive a notification that an entry is added. * * @param value the value for the entry. */ @Override public void entryAdded(FlowPath value) { // Process the event } /** * Receive a notification that an entry is removed. * * @param value the value for the entry. */ @Override public void entryRemoved(FlowPath value) { // Process the event } ... } Sender/Publisher: private IEventChannel<Long, FlowPath> fooFlowPathChannel = null; fooFlowPathChannel = datagridService.createChannel("mapFooFlowPath", Long.class, FlowPath.class); ... // Transmit an event fooFlowPathChannel.addEntry(flowPath.flowId().value(), flowPath); Change-Id: Ie3246a4e200d5b6293c1f175df3652cdf571be69
ONOS (Open Networking Operating System) is an experimental distributed SDN OS. Currently, it is under active development. ONOS was announced and demonstrated at ONS'13.
Apache 2.0
http://wiki.onlab.us/display/Eng/ONOS+Development+VM
Cleanly build ONOS
$ mvn clean $ mvn compile
NOTE: installing maven for the first time may switch java version from 1.7 to 1.6. This might prevent Cassandra to run.
Zookeeper
Download and install apache-zookeeper-3.4.5: http://zookeeper.apache.org/releases.html
Edit file (ONOS-INSTALL-DIR)/start-zk.sh
and set variable "ZK_DIR" to point to the Zookeeper directory.
Cassandra
Download and install apache-cassandra-1.2.4: http://cassandra.apache.org/download/
Edit file (ONOS-INSTALL-DIR)/start-cassandra.sh
and set variable "CASSANDRA_DIR" to point to the Cassandra directory.
[See below for information how to run ONOS with Embedded Cassandra]
Start Zookeeper
$ cd (ONOS-INSTALL-DIR)/ $ ./start-zk.sh start ## Confirm Zookeeper is running: $ ./start.zk.sh status
Start Cassandra
$ cd (ONOS-INSTALL-DIR)/ $ ./start-cassandra.sh start ## Confirm Cassandra is running: $ ./start-cassandra.sh status
Start ONOS
$ cd (ONOS-INSTALL-DIR)/ $ ./start-onos.sh start ## Confirm ONOS is running: $ ./start-onos.sh status
Start ONOS REST API server
$ cd (ONOS-INSTALL-DIR)/ $ ./start-rest.sh start ## Confirm the REST API server is running: $ ./start-rest.sh status
Start Zookeeper
$ cd (ONOS-INSTALL-DIR)/ $ ./start-zk.sh start ## Confirm Zookeeper is running: $ ./start.zk.sh status
Start ONOS and Cassandra embedded
$ cd (ONOS-INSTALL_DIR)/ $ ./start-onos-embedded.sh start ## Confirm ONOS is running: $ ./start-onos-embedded.sh status
Start ONOS REST API server
$ cd (ONOS-INSTALL-DIR)/ $ ./start-rest.sh start ## Confirm the REST API server is running: $ ./start-rest.sh status
Maven need the Internet connection to download required dependencies and plugins, when they're used for the first time.
If you need to develop ONOS in an Internet unreachable environment you may want to run the following helper script before you go offline, so that required dependencies and plugins for frequently used maven target will be downloaded to your local environment.
$ ./prep-for-offline.sh
Maven is used to build and run ONOS. By default, maven tries to reach the repositories. The '-o' option can be given to the 'mvn' command to suppress this behavior. The MVN
environmental variable can be used to set additional options to the 'mvn' command used in ONOS.
Example: Running in offline mode
$ env MVN="mvn -o" ./start-onos.sh start