Class: Maven::Tools::Artifact

Inherits:
Hash
  • Object
show all
Defined in:
lib/maven/tools/artifact.rb

Defined Under Namespace

Classes: Helper

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(group_id, artifact_id, type, version = nil, classifier = nil, exclusions = nil, options = {}) ⇒ Artifact

Returns a new instance of Artifact.



109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/maven/tools/artifact.rb', line 109

def initialize( group_id, artifact_id, type,  
                version = nil, classifier = nil, exclusions = nil,
                options = {} )
  if exclusions.nil?
    if version.nil? and !classifier.nil?
      version = classifier
      classifier = nil
    elsif classifier.is_a?( Array )
      exclusions = classifier#version
      #version = classifier
      classifier = nil
    end
  end
  self[ :type ] = type
  self[ :group_id ] = group_id
  self[ :artifact_id ] = artifact_id
  self[ :version ] = version
  self[ :classifier ] = classifier if classifier
  self[ :exclusions ] = exclusions if exclusions
  if options
    self[ :group_id ] ||= options[ :group_id ]
    self[ :artifact_id ] ||= options[ :artifact_id ]
    self[ :version ] ||= options[ :version ]
    self[ :classifier ] ||= options[ :classifier ] if options[ :classifier ] 
    self[ :exclusions ] ||= options[ :exclusions ] if options[ :exclusions ]
    options.delete( :group_id )
    options.delete( :artifact_id )
    options.delete( :version )
    options.delete( :classifier )
    options.delete( :exclusions )
    self.merge!( options )
  end
end

Class Method Details

.from(type, *args) ⇒ Object



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/maven/tools/artifact.rb', line 48

def self.from( type, *args )
  if args.last.is_a? Hash
    options = args.last.dup
    args = args[0..-2]
  end
  helper = Helper.new
  case args.size
  when 1
    # jar "asd:Asd:123
    # jar "asd:Asd:123:test"
    # jar "asd:Asd:123:[dsa:rew,fe:fer]"
    # jar "asd:Asd:123:test:[dsa:rew,fe:fer]"
    group_id, artifact_id, version, classifier, exclusions = args[0].split( /:/ )
    self.new( group_id, artifact_id, type,
              version, classifier, exclusions,
              options )
  when 2
    # jar "asd:Asd", 123
    # jar "asd:Asd:test", 123
    # jar "asd:Asd:[dsa:rew,fe:fer]", 123
    # jar "asd:Asd:test:[dsa:rew,fe:fer]", 123
    group_id, artifact_id, classifier, exclusions = args[0].split( /:/ )
    self.new( group_id, artifact_id, type,
              helper.to_version( args[ 1 ] ),
              classifier, exclusions,
              options )
  when 3
    # jar "asd:Asd",'>123', '<345'
    # jar "asd:Asd:test",'>123', '<345'
    # jar "asd:Asd:[dsa:rew,fe:fer]",'>123', '<345'
    # jar "asd:Asd:test:[dsa:rew,fe:fer]",'>123', '<345'
    # jar "asd:Asd:test:[dsa:rew,fe:fer]", '123', 'source'
    v = helper.to_version( *args[1..-1] )
    case v
    when String
      group_id, artifact_id, classifier, exclusions = args[0].split( /:/ )
      self.new( group_id, artifact_id, type,
                v, classifier, exclusions,
                options )
    else
      group_id, artifact_id = args[0].split( /:/ )
      self.new( group_id, artifact_id, type,
                args[1], args[2], nil,
                options )
    end
  else
    nil
  end
end

.from_coordinate(coord) ⇒ Object



98
99
100
101
102
103
104
105
106
107
# File 'lib/maven/tools/artifact.rb', line 98

def self.from_coordinate( coord )
  args = coord.split( /:/ )
  # maven coordinates differ :(
  if args.size == 5
    classifier = args[ 4 ]
    args[ 4 ] = args[ 3 ]
    args[ 3 ] = classifier
  end
  new( *args )
end

.new_local(path, type, options = {}) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/maven/tools/artifact.rb', line 34

def self.new_local( path, type, options = {} )
  name = File.basename( path ).sub( /.#{type}$/, '' )
  if ind = name.rindex( '-' )
    version = name[ind + 1..-1]
    name = name[0..ind - 1]
  else
    version = '0'
  end
  self.new( "ruby.maven-tools.#{type}", name, type,
            nil, version, nil,
            options.merge( { :system_path => path,
                             :scope => :system } ) )
end

Instance Method Details

#exclusionsObject



147
148
149
150
151
# File 'lib/maven/tools/artifact.rb', line 147

def exclusions
  if key?( :exclusions )
    self[:exclusions].inspect.gsub( /[\[\]" ]/, '' ).split /,/
  end
end

#gavObject



143
144
145
# File 'lib/maven/tools/artifact.rb', line 143

def gav
  [ self[:group_id], self[:artifact_id], self[:version], self[:classifier] ].select { |o| o }.join( ':' )
end

#to_coordinateObject



153
154
155
# File 'lib/maven/tools/artifact.rb', line 153

def to_coordinate
  [ self[:group_id], self[:artifact_id], self[:type], self[:classifier], self[:version] ].select { |o| o }.join( ':' )
end

#to_sObject



157
158
159
# File 'lib/maven/tools/artifact.rb', line 157

def to_s
  [ self[:group_id], self[:artifact_id], self[:type], self[:classifier], self[:version], key?( :exclusions )? self[:exclusions].inspect.gsub( /[" ]/, '' ) : nil ].select { |o| o }.join( ':' )
end