Skip to main content
summaryrefslogtreecommitdiffstats
blob: 71ce3276113e572b1b6a9d4898167d12294f7a3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*******************************************************************************
 * Copyright (c) 2001, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.wsdl.ui.internal.adapters.commands;

import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.List;

import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.wst.wsdl.Definition;
import org.eclipse.wst.wsdl.Service;
import org.eclipse.wst.wsdl.internal.generator.BindingGenerator;
import org.eclipse.wst.wsdl.internal.generator.ContentGenerator;
import org.eclipse.wst.wsdl.internal.generator.PortGenerator;
import org.eclipse.wst.wsdl.ui.internal.WSDLEditorPlugin;
import org.eclipse.wst.wsdl.ui.internal.asd.Messages;
import org.eclipse.wst.wsdl.ui.internal.asd.actions.IASDAddCommand;
import org.eclipse.wst.wsdl.ui.internal.asd.contentgenerator.ui.extension.ContentGeneratorUIExtension;
import org.eclipse.wst.wsdl.ui.internal.asd.contentgenerator.ui.extension.ContentGeneratorUIExtensionRegistry;
import org.eclipse.wst.wsdl.ui.internal.commands.AddServiceCommand;
import org.eclipse.wst.wsdl.ui.internal.util.CreateWSDLElementHelper;
import org.eclipse.wst.wsdl.ui.internal.util.NameUtil;
import org.eclipse.wst.wsdl.ui.internal.util.ServicePolicyHelper;

public class W11AddServiceCommand extends W11TopLevelElementCommand implements IASDAddCommand {
	private Service service;
	
	public W11AddServiceCommand(Definition definition) {
	  super(Messages._UI_ACTION_ADD_SERVICE, definition);
	}
	
	public void execute() {
		try {
			beginRecording(definition.getElement());
			super.execute();
			String newName = NameUtil.buildUniqueServiceName(definition);
			AddServiceCommand command = new AddServiceCommand(definition, newName, false);
			command.run();
			service = (Service) command.getWSDLElement();
			
			PortGenerator portGenerator = new PortGenerator(service);
			
			// set the default content generator
			ContentGenerator contentGenerator = null;
			IProject project = getProject(definition);
			String protocol = ServicePolicyHelper.getDefaultBinding(project);
			if (protocol != null) {
				ContentGeneratorUIExtensionRegistry registry = WSDLEditorPlugin.getInstance().getContentGeneratorUIExtensionRegistry();
				ContentGeneratorUIExtension ext = registry.getExtensionForNamespace(protocol);
				if (ext != null) {
					contentGenerator = BindingGenerator.getContentGenerator(ext.getNamespace());
				  }
			}
			// unable to determine default content generator, try again
			if (contentGenerator == null) {
				// Get the first available content generator
				List protocols = WSDLEditorPlugin.getInstance().getContentGeneratorUIExtensionRegistry().getBindingExtensionNames();
				if (protocols.size() >= 1) {
					protocol = (String)protocols.get(0);
					ContentGeneratorUIExtension ext = WSDLEditorPlugin.getInstance().getContentGeneratorUIExtensionRegistry().getExtensionForName(protocol);
					if (ext != null) {
						contentGenerator = BindingGenerator.getContentGenerator(ext.getNamespace());
				  }
				}
			}
			portGenerator.setContentGenerator(contentGenerator);
			portGenerator.setName(NameUtil.buildUniquePortName(service, "NewPort")); //$NON-NLS-1$
		    // go ahead and add required namespaces first before generating port
			CreateWSDLElementHelper.addRequiredNamespaces(contentGenerator, definition);
			portGenerator.generatePort();
			
			formatChild(service.getElement());
		}
		finally {
			endRecording(definition.getElement());
		}
	}
	
	public Object getNewlyAddedComponent() {
		return service;
	}

	private IProject getProject(Definition definition) {
		IProject project = null;

		String location = definition.getLocation();
		URL url = null;
		try {
			url = new URL(location);
		}
		catch (MalformedURLException e)	{
			e.printStackTrace();
		}
		if (url != null) {
			URL fileURL = null;
			try {
				fileURL = FileLocator.toFileURL(url);
			}
			catch (IOException e) {
				e.printStackTrace();
			}
			if (fileURL != null) {
				IPath path = new Path(fileURL.getPath());
				IFile files[] = ResourcesPlugin.getWorkspace().getRoot().findFilesForLocation(path);
				IFile file = null;
				if (files.length > 0) {
					// just get the first file
					file = files[0];
				}
				project = file.getProject();
			}
		}
		return project;
	}
}

Back to the top