Skip to main content
summaryrefslogtreecommitdiffstats
blob: 44f8c0e71959abb6e9367fad30512117d6464100 (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
/*******************************************************************************
 * Copyright (c) 2003, 2005 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.internet.monitor.core.internal;

import java.io.IOException;
import java.net.Socket;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.wst.internet.monitor.core.internal.provisional.IMonitor;
/**
 * 
 */
public class ProtocolAdapter implements IProtocolAdapter {
	protected IConfigurationElement element;
	protected ProtocolAdapterDelegate delegate;

	protected ProtocolAdapter(IConfigurationElement element) {
		this.element = element;
	}

	/**
	 * @see IProtocolAdapter#getId()
	 */
	public String getId() {
		return element.getAttribute("id");
	}

	/**
	 * @see IProtocolAdapter#getName()
	 */
	public String getName() {
		return element.getAttribute("name");
	}

	protected ProtocolAdapterDelegate getDelegate() {
		if (delegate != null)
			return delegate;
		
		try {
			delegate = (ProtocolAdapterDelegate) element.createExecutableExtension("class");
		} catch (Exception e) {
			Trace.trace(Trace.SEVERE, "Could not create protocol adapter delegate: " + getId(), e);
		}
		return delegate;
	}

	/**
	 * Connect with the protocol.
	 * 
	 * @param monitor a monitor
	 * @param in an inbound socket
	 * @param out an outbound socket
	 * @throws IOException
	 */
	public void connect(IMonitor monitor, Socket in, Socket out) throws IOException {
		getDelegate().connect(monitor, in, out);
	}

	/**
	 * Disconnect from the sockets.
	 * 
	 * @param monitor a monitor
	 * @throws IOException
	 */
	public void disconnect(IMonitor monitor) throws IOException {
		getDelegate().disconnect(monitor);
	}
}

Back to the top