1 package org.apache.maven.model.building;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import java.io.File;
23
24 import org.apache.maven.model.Model;
25
26
27
28
29
30
31 public class ModelProblemUtils
32 {
33
34
35
36
37
38
39
40 static String toSourceHint( Model model )
41 {
42 if ( model == null )
43 {
44 return "";
45 }
46
47 StringBuilder buffer = new StringBuilder( 128 );
48
49 buffer.append( toId( model ) );
50
51 File pomFile = model.getPomFile();
52 if ( pomFile != null )
53 {
54 buffer.append( " (" ).append( pomFile ).append( ')' );
55 }
56
57 return buffer.toString();
58 }
59
60 static String toPath( Model model )
61 {
62 String path = "";
63
64 if ( model != null )
65 {
66 File pomFile = model.getPomFile();
67
68 if ( pomFile != null )
69 {
70 path = pomFile.getAbsolutePath();
71 }
72 }
73
74 return path;
75 }
76
77 static String toId( Model model )
78 {
79 if ( model == null )
80 {
81 return "";
82 }
83 return toId( model.getDelegate() );
84 }
85
86 static String toId( org.apache.maven.api.model.Model model )
87 {
88 String groupId = model.getGroupId();
89 if ( groupId == null && model.getParent() != null )
90 {
91 groupId = model.getParent().getGroupId();
92 }
93
94 String artifactId = model.getArtifactId();
95
96 String version = model.getVersion();
97 if ( version == null && model.getParent() != null )
98 {
99 version = model.getParent().getVersion();
100 }
101 if ( version == null )
102 {
103 version = "[unknown-version]";
104 }
105
106 return toId( groupId, artifactId, version );
107 }
108
109
110
111
112
113
114
115
116
117 static String toId( String groupId, String artifactId, String version )
118 {
119 StringBuilder buffer = new StringBuilder( 128 );
120
121 buffer.append( ( groupId != null && groupId.length() > 0 ) ? groupId : "[unknown-group-id]" );
122 buffer.append( ':' );
123 buffer.append( ( artifactId != null && artifactId.length() > 0 ) ? artifactId : "[unknown-artifact-id]" );
124 buffer.append( ':' );
125 buffer.append( ( version != null && version.length() > 0 ) ? version : "[unknown-version]" );
126
127 return buffer.toString();
128 }
129
130
131
132
133
134
135
136
137
138
139
140 public static String formatLocation( ModelProblem problem, String projectId )
141 {
142 StringBuilder buffer = new StringBuilder( 256 );
143
144 if ( !problem.getModelId().equals( projectId ) )
145 {
146 buffer.append( problem.getModelId() );
147
148 if ( problem.getSource().length() > 0 )
149 {
150 if ( buffer.length() > 0 )
151 {
152 buffer.append( ", " );
153 }
154 buffer.append( problem.getSource() );
155 }
156 }
157
158 if ( problem.getLineNumber() > 0 )
159 {
160 if ( buffer.length() > 0 )
161 {
162 buffer.append( ", " );
163 }
164 buffer.append( "line " ).append( problem.getLineNumber() );
165 }
166
167 if ( problem.getColumnNumber() > 0 )
168 {
169 if ( buffer.length() > 0 )
170 {
171 buffer.append( ", " );
172 }
173 buffer.append( "column " ).append( problem.getColumnNumber() );
174 }
175
176 return buffer.toString();
177 }
178
179 }