1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    *
5    *
6    *
7    * The contents of this file are subject to the terms of the Liferay Enterprise
8    * Subscription License ("License"). You may not use this file except in
9    * compliance with the License. You can obtain a copy of the License by
10   * contacting Liferay, Inc. See the License for the specific language governing
11   * permissions and limitations under the License, including but not limited to
12   * distribution rights of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portal.tools;
24  
25  import com.liferay.portal.kernel.xml.Document;
26  import com.liferay.portal.kernel.xml.Element;
27  import com.liferay.portal.kernel.xml.SAXReaderUtil;
28  import com.liferay.portal.util.InitUtil;
29  import com.liferay.util.ant.Wsdl2JavaTask;
30  
31  import java.io.File;
32  
33  import java.util.Iterator;
34  
35  /**
36   * <a href="PortalClientBuilder.java.html"><b><i>View Source</i></b></a>
37   *
38   * @author Brian Wing Shun Chan
39   */
40  public class PortalClientBuilder {
41  
42      public static void main(String[] args) {
43          InitUtil.initWithSpring();
44  
45          if (args.length == 4) {
46              new PortalClientBuilder(args[0], args[1], args[2], args[3]);
47          }
48          else {
49              throw new IllegalArgumentException();
50          }
51      }
52  
53      public PortalClientBuilder(
54          String fileName, String outputDir, String mappingFile, String url) {
55  
56          try {
57              Document doc = SAXReaderUtil.read(new File(fileName));
58  
59              Element root = doc.getRootElement();
60  
61              Iterator<Element> itr = root.elements("service").iterator();
62  
63              while (itr.hasNext()) {
64                  Element service = itr.next();
65  
66                  String name = service.attributeValue("name");
67  
68                  if (name.startsWith("Portal_") || name.startsWith("Portlet_")) {
69                      Wsdl2JavaTask.generateJava(
70                          url + "/" +  name + "?wsdl", outputDir, mappingFile);
71                  }
72              }
73          }
74          catch (Exception e) {
75              e.printStackTrace();
76          }
77  
78          File testNamespace = new File(outputDir + "/com/liferay/portal");
79  
80          if (testNamespace.exists()) {
81              throw new RuntimeException(
82                  "Please update " + mappingFile + " to namespace " +
83                      "com.liferay.portal to com.liferay.client.soap.portal");
84          }
85      }
86  
87  }