1 | |
package org.apache.maven.plugins.shade.mojo; |
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | |
|
19 | |
|
20 | |
|
21 | |
|
22 | |
import java.util.Collection; |
23 | |
import java.util.HashSet; |
24 | |
import java.util.Iterator; |
25 | |
|
26 | |
import org.apache.maven.artifact.Artifact; |
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
class ArtifactSelector |
32 | |
{ |
33 | |
|
34 | |
private Collection includes; |
35 | |
|
36 | |
private Collection excludes; |
37 | |
|
38 | |
public ArtifactSelector( Artifact projectArtifact, ArtifactSet artifactSet, String groupPrefix ) |
39 | |
{ |
40 | 0 | this( ( artifactSet != null ) ? artifactSet.getIncludes() : null, |
41 | |
( artifactSet != null ) ? artifactSet.getExcludes() : null, groupPrefix ); |
42 | |
|
43 | 0 | if ( projectArtifact != null && !this.includes.isEmpty() ) |
44 | |
{ |
45 | 0 | this.includes.add( new ArtifactId( projectArtifact ) ); |
46 | |
} |
47 | 0 | } |
48 | |
|
49 | |
public ArtifactSelector( Collection includes, Collection excludes, String groupPrefix ) |
50 | 7 | { |
51 | 7 | this.includes = toIds( includes ); |
52 | 7 | this.excludes = toIds( excludes ); |
53 | |
|
54 | 7 | if ( groupPrefix != null && groupPrefix.length() > 0 ) |
55 | |
{ |
56 | 1 | this.includes.add( new ArtifactId( groupPrefix + "*", "*", "*", "*" ) ); |
57 | |
} |
58 | 7 | } |
59 | |
|
60 | |
private static Collection toIds( Collection patterns ) |
61 | |
{ |
62 | 14 | Collection result = new HashSet(); |
63 | |
|
64 | 14 | if ( patterns != null ) |
65 | |
{ |
66 | 8 | for ( Iterator it = patterns.iterator(); it.hasNext(); ) |
67 | |
{ |
68 | 4 | String pattern = (String) it.next(); |
69 | 4 | result.add( new ArtifactId( pattern ) ); |
70 | 4 | } |
71 | |
} |
72 | |
|
73 | 14 | return result; |
74 | |
} |
75 | |
|
76 | |
public boolean isSelected( Artifact artifact ) |
77 | |
{ |
78 | 0 | return ( artifact != null ) ? isSelected( new ArtifactId( artifact ) ) : false; |
79 | |
} |
80 | |
|
81 | |
boolean isSelected( ArtifactId id ) |
82 | |
{ |
83 | 13 | return ( includes.isEmpty() || matches( includes, id ) ) && !matches( excludes, id ); |
84 | |
} |
85 | |
|
86 | |
private boolean matches( Collection patterns, ArtifactId id ) |
87 | |
{ |
88 | 18 | for ( Iterator it = patterns.iterator(); it.hasNext(); ) |
89 | |
{ |
90 | 12 | ArtifactId pattern = (ArtifactId) it.next(); |
91 | 12 | if ( id.matches( pattern ) ) |
92 | |
{ |
93 | 7 | return true; |
94 | |
} |
95 | 5 | } |
96 | 11 | return false; |
97 | |
} |
98 | |
|
99 | |
} |