1   
2   
3   
4   
5   
6   
7   
8   
9   
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  package org.apache.maven.project;
20  
21  import javax.xml.stream.XMLStreamException;
22  import javax.xml.stream.XMLStreamReader;
23  
24  import java.io.File;
25  import java.io.IOException;
26  import java.io.InputStream;
27  import java.nio.file.Files;
28  import java.util.ArrayList;
29  import java.util.List;
30  import java.util.jar.JarFile;
31  import java.util.zip.ZipEntry;
32  
33  import com.ctc.wstx.stax.WstxInputFactory;
34  import org.apache.maven.api.xml.XmlNode;
35  import org.apache.maven.internal.xml.XmlNodeBuilder;
36  
37  
38  
39  
40  
41  public class ExtensionDescriptorBuilder {
42  
43      
44  
45  
46      public String getExtensionDescriptorLocation() {
47          return "META-INF/maven/extension.xml";
48      }
49  
50      
51  
52  
53  
54  
55  
56  
57      public ExtensionDescriptor build(File extensionJar) throws IOException {
58          ExtensionDescriptor extensionDescriptor = null;
59  
60          if (extensionJar.isFile()) {
61              try (JarFile pluginJar = new JarFile(extensionJar, false)) {
62                  ZipEntry pluginDescriptorEntry = pluginJar.getEntry(getExtensionDescriptorLocation());
63  
64                  if (pluginDescriptorEntry != null) {
65                      try (InputStream is = pluginJar.getInputStream(pluginDescriptorEntry)) {
66                          extensionDescriptor = build(is);
67                      }
68                  }
69              }
70          } else {
71              File pluginXml = new File(extensionJar, getExtensionDescriptorLocation());
72  
73              if (pluginXml.canRead()) {
74                  try (InputStream is = Files.newInputStream(pluginXml.toPath())) {
75                      extensionDescriptor = build(is);
76                  }
77              }
78          }
79  
80          return extensionDescriptor;
81      }
82  
83      
84  
85  
86      public ExtensionDescriptor build(InputStream is) throws IOException {
87          ExtensionDescriptor extensionDescriptor = new ExtensionDescriptor();
88  
89          XmlNode dom;
90          try {
91              XMLStreamReader reader = WstxInputFactory.newFactory().createXMLStreamReader(is);
92              dom = XmlNodeBuilder.build(reader);
93          } catch (XMLStreamException e) {
94              throw new IOException(e.getMessage(), e);
95          }
96  
97          if (!"extension".equals(dom.getName())) {
98              throw new IOException("Unexpected root element \"" + dom.getName() + "\", expected \"extension\"");
99          }
100 
101         extensionDescriptor.setExportedPackages(parseStrings(dom.getChild("exportedPackages")));
102 
103         extensionDescriptor.setExportedArtifacts(parseStrings(dom.getChild("exportedArtifacts")));
104 
105         return extensionDescriptor;
106     }
107 
108     private List<String> parseStrings(XmlNode dom) {
109         List<String> strings = null;
110 
111         if (dom != null) {
112             strings = new ArrayList<>();
113 
114             for (XmlNode child : dom.getChildren()) {
115                 String string = child.getValue();
116                 if (string != null) {
117                     string = string.trim();
118                     if (string.length() > 0) {
119                         strings.add(string);
120                     }
121                 }
122             }
123         }
124 
125         return strings;
126     }
127 }