OpenCores
URL https://opencores.org/ocsvn/soc_maker/soc_maker/trunk

Subversion Repositories soc_maker

[/] [soc_maker/] [trunk/] [lib/] [soc_maker/] [lib_inc.rb] - Diff between revs 3 and 7

Only display areas with differences | Details | Blame | View Log

Rev 3 Rev 7
###############################################################
###############################################################
#
#
#  File:      lib_inc.rb
#  File:      lib_inc.rb
#
#
#  Author:    Christian Hättich
#  Author:    Christian Hättich
#
#
#  Project:   System-On-Chip Maker
#  Project:   System-On-Chip Maker
#
#
#  Target:    Linux / Windows / Mac
#  Target:    Linux / Windows / Mac
#
#
#  Language:  ruby
#  Language:  ruby
#
#
#
#
###############################################################
###############################################################
#
#
#
#
#   Copyright (C) 2014  Christian Hättich  - feddischson [ at ] opencores.org
#   Copyright (C) 2014  Christian Hättich  - feddischson [ at ] opencores.org
#
#
#   This program is free software: you can redistribute it and/or modify
#   This program is free software: you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation, either version 3 of the License, or
#   the Free Software Foundation, either version 3 of the License, or
#   (at your option) any later version.
#   (at your option) any later version.
#
#
#   This program is distributed in the hope that it will be useful,
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#   GNU General Public License for more details.
#
#
#   You should have received a copy of the GNU General Public License
#   You should have received a copy of the GNU General Public License
#   along with this program.  If not, see .
#   along with this program.  If not, see .
#
#
#
#
###############################################################
###############################################################
#
#
#   Description:
#   Description:
#
#
#
#
#     A small class, which represents a library-include information.
#     A small class, which represents a library-include information.
#     The influde directories are stored in @dirs
#     The influde directories are stored in @dirs
#
#
#
#
###############################################################
###############################################################
module SOCMaker
module SOCMaker
class LibInc
class LibInc
  include ERR
  include ERR
  include YAML_EXT
  include YAML_EXT
  attr_accessor :dirs
  attr_accessor :dirs
  def initialize( opts = {} )
  def initialize( opts = {} )
    init_with( opts )
    init_with( opts )
  end
  end
  def encode_with( coder )
  def encode_with( coder )
    %w[ dirs ].
    %w[ dirs ].
      each { |v| coder[ v ] = instance_variable_get "@#{v}" }
      each { |v| coder[ v ] = instance_variable_get "@#{v}" }
  end
  end
  def init_with( coder )
  def init_with( coder )
    serr_if( !( coder.is_a?( Hash         ) ||
    serr_if( !( coder.is_a?( Hash         ) ||
                coder.is_a?( Psych::Coder ) ),
                coder.is_a?( Psych::Coder ) ),
      'coder is not given as Hash neither as Psych::Coder' )
      'coder is not given as Hash neither as Psych::Coder' )
    serr_if( coder[ 'dirs' ] == nil,
    serr_if( coder[ 'dirs' ] == nil,
      'no dirs are given' )
      'no dirs are given' )
    @dirs = coder[ 'dirs' ]
    @dirs = coder[ 'dirs' ]
    verr_if( !@dirs.is_a?( Array ),
    verr_if( !@dirs.is_a?( Array ),
      'dirs must be of type array' )
      'dirs must be of type array' )
    verr_if( @dirs.size == 0,
    verr_if( @dirs.size == 0,
      'there must be at least one dir-entry')
      'there must be at least one dir-entry')
    @dirs.each do |f|
    @dirs.each do |f|
      verr_if( !f.is_a?( String ),
      verr_if( !f.is_a?( String ),
        "The dir must be defined as string",
        "The dir must be defined as string",
        field:    'dirs' )
        field:    'dirs' )
      verr_if( f.size == 0,
      verr_if( f.size == 0,
        "The path string has zero length",
        "The path string has zero length",
        field: 'dirs' )
        field: 'dirs' )
    end
    end
  end
  end
 
 
  def verify
 
  end
 
 
 
  def ==(o)
  def ==(o)
    o.class == self.class && o.dirs == self.dirs
    o.class == self.class && o.dirs == self.dirs
  end
  end
end
end
end
end
# vim: noai:ts=2:sw=2
# vim: noai:ts=2:sw=2
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.