Sha256: 6d6db06fe32f173f9cb3dcec3ac4a8f96091ddb0aa34180cdb6a4c9e873b5f26

Contents?: true

Size: 1.82 KB

Versions: 7

Compression:

Stored size: 1.82 KB

Contents

#
# Author: Yasuhito Takamiya <yasuhito@gmail.com>
#
# Copyright (C) 2008-2012 NEC Corporation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2, as
# published by the Free Software Foundation.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#


require "trema/switch"


module Trema
  #
  # Hardware switch that supports OpenFlow protocol.
  #
  class OpenflowSwitch
    #
    # The name of this switch
    #
    # @example
    #   switch.name #=> "My expensive OpenFlow switch"
    #
    # @return [String]
    #
    attr_reader :name


    #
    # Creates a new OpenflowSwitch from {DSL::Switch}
    #
    # @example
    #   switch = Trema::OpenflowSwitch.new( stanza )
    #
    # @return [OpenflowSwitch]
    #
    def initialize stanza
      stanza.validate
      @name = stanza.name
      @stanza = stanza
      Switch.add self
    end


    #
    # Returns datapath id in long format
    #
    # @example
    #   switch.dpid_long #=> "0000000000000abc"
    #
    # @return [String]
    #
    def dpid_long
      @stanza.fetch :dpid_long
    end


    #
    # Returns datapath id prefixed with "0x"
    #
    # @example
    #   switch.dpid_short #=> "0xabc"
    #
    # @return [String]
    #
    def dpid_short
      @stanza.fetch :dpid_short
    end
  end
end


### Local variables:
### mode: Ruby
### coding: utf-8-unix
### indent-tabs-mode: nil
### End:

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
trema-0.2.2.1 ruby/trema/openflow-switch.rb
trema-0.2.2 ruby/trema/openflow-switch.rb
trema-0.2.1 ruby/trema/openflow-switch.rb
trema-0.2.0 ruby/trema/openflow-switch.rb
trema-0.1.3.2 ruby/trema/openflow-switch.rb
trema-0.1.3.1 ruby/trema/openflow-switch.rb
trema-0.1.3 ruby/trema/openflow-switch.rb