debuggercdi/com.nokia.carbide.trk.support/src/com/nokia/carbide/trk/support/status/ConnectionStatusReconciler.java
author dadubrow
Fri, 29 Jan 2010 15:43:40 -0600
changeset 848 679300bad088
parent 770 cb7e68ca1ef4
child 924 657e34ac671f
permissions -rw-r--r--
Show connections view when new connection is added
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
     1
/**
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
     2
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
     3
* All rights reserved.
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
     4
* This component and the accompanying materials are made available
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
     5
* under the terms of the License "Eclipse Public License v1.0"
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
     6
* which accompanies this distribution, and is available
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
     8
*
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
     9
* Initial Contributors:
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    10
* Nokia Corporation - initial contribution.
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    11
*
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    12
* Contributors:
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    13
*
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    14
* Description: 
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    15
*
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    16
*/
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    17
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    18
package com.nokia.carbide.trk.support.status;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    19
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    20
import java.util.ArrayList;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    21
import java.util.List;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    22
848
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
    23
import org.eclipse.ui.PartInitException;
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
    24
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    25
import com.nokia.carbide.remoteconnections.RemoteConnectionsActivator;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    26
import com.nokia.carbide.remoteconnections.interfaces.IConnectedService;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    27
import com.nokia.carbide.remoteconnections.interfaces.IConnection;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    28
import com.nokia.carbide.remoteconnections.interfaces.IConnectionsManager;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    29
import com.nokia.carbide.remoteconnections.interfaces.AbstractConnection.ConnectionStatus;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    30
import com.nokia.carbide.remoteconnections.interfaces.IConnectedService.IStatus;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    31
import com.nokia.carbide.remoteconnections.interfaces.IConnectedService.IStatusChangedListener;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    32
import com.nokia.carbide.remoteconnections.interfaces.IConnectedService.IStatus.EStatus;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    33
import com.nokia.carbide.remoteconnections.interfaces.IConnectionsManager.IConnectionListener;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    34
import com.nokia.carbide.remoteconnections.internal.api.IConnection2;
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
    35
import com.nokia.carbide.remoteconnections.internal.api.IConnection2.IConnectionStatus;
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    36
import com.nokia.carbide.remoteconnections.internal.api.IConnection2.IConnectionStatus.EConnectionStatus;
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
    37
import com.nokia.carbide.trk.support.Messages;
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    38
import com.nokia.carbide.trk.support.connection.USBConnectionType;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    39
import com.nokia.carbide.trk.support.service.TRKConnectedService;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    40
import com.nokia.carbide.trk.support.service.TracingConnectedService;
848
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
    41
import com.nokia.cpp.internal.api.utils.ui.RunRunnableWhenWorkbenchVisibleJob;
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
    42
import com.nokia.cpp.internal.api.utils.ui.WorkbenchUtils;
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    43
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    44
/**
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    45
 * A singleton object that manages the device status of dynamic connections
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    46
 * based on the status of the TRK and Tracing services.
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    47
 */
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    48
public class ConnectionStatusReconciler {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    49
	
848
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
    50
	private static final String CONNECTIONS_VIEW_ID = 
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
    51
		"com.nokia.carbide.remoteconnections.view.ConnectionsView"; //$NON-NLS-1$
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
    52
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    53
	private class ConnectionListener implements IConnectionListener {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    54
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    55
		public void connectionAdded(IConnection connection) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    56
			addConnection(connection);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    57
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    58
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    59
		public void connectionRemoved(IConnection connection) {
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    60
			if (connection.equals(userSetCurrentConnection))
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    61
				userSetCurrentConnection = null;
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    62
			removeConnection(connection);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    63
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    64
		
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    65
		public void currentConnectionSet(IConnection connection) {
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    66
			if (connection != null && !connection.equals(reconcilerSetCurrentConnection))
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    67
				userSetCurrentConnection = connection;
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    68
		}
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    69
		
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    70
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    71
	
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    72
	private class ServiceStatusListener implements IStatusChangedListener {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    73
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    74
		public void statusChanged(IStatus status) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    75
			handleServiceStatusChange(status);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    76
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    77
		
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    78
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    79
	
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    80
	private static ConnectionStatusReconciler instance;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    81
	private IConnectionsManager manager;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    82
	private IConnectionListener connectionListener;
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
    83
	private List<IConnection> handledConnections;
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    84
	private ServiceStatusListener serviceStatusListener;
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    85
	private IConnection reconcilerSetCurrentConnection;
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    86
	private IConnection userSetCurrentConnection;
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    87
	
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    88
	private ConnectionStatusReconciler() {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    89
		connectionListener = new ConnectionListener();
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    90
		manager = RemoteConnectionsActivator.getConnectionsManager();
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    91
		manager.addConnectionListener(connectionListener);
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
    92
		handledConnections = new ArrayList<IConnection>();
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    93
		serviceStatusListener = new ServiceStatusListener();
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    94
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    95
	
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    96
	public static ConnectionStatusReconciler getInstance() {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    97
		if (instance == null)
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    98
			instance = new ConnectionStatusReconciler();
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    99
		
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   100
		return instance;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   101
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   102
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   103
	public void dispose() {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   104
		manager.removeConnectionListener(connectionListener);
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   105
		for (IConnection connection : new ArrayList<IConnection>(handledConnections)) {
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   106
			removeConnection(connection);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   107
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   108
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   109
752
a0609ea7401a add sys trk checking for usb only and use with reconciler
dadubrow
parents: 750
diff changeset
   110
	private boolean isDynamic(IConnection connection) {
a0609ea7401a add sys trk checking for usb only and use with reconciler
dadubrow
parents: 750
diff changeset
   111
		return connection instanceof IConnection2 && ((IConnection2) connection).isDynamic();
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   112
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   113
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   114
	private boolean isSysTRK(TRKConnectedService service) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   115
		String value = service.getProperties().get(TRKConnectedService.PROP_SYS_TRK);
752
a0609ea7401a add sys trk checking for usb only and use with reconciler
dadubrow
parents: 750
diff changeset
   116
		return Boolean.parseBoolean(value);
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   117
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   118
	
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   119
	private void addConnection(IConnection connection) {
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   120
		handledConnections.add(connection);
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   121
		for (IConnectedService service : manager.getConnectedServices(connection)) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   122
			if (service instanceof TRKConnectedService ||
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   123
					service instanceof TracingConnectedService) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   124
				service.addStatusChangedListener(serviceStatusListener);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   125
			}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   126
		}
848
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
   127
		showConnectionsView();
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
   128
	}
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
   129
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
   130
	private void showConnectionsView() {
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
   131
		RunRunnableWhenWorkbenchVisibleJob.start(new Runnable() {
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
   132
			public void run() {
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
   133
				// try to show the connections view to start service testers
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
   134
				try {
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
   135
					WorkbenchUtils.getView(CONNECTIONS_VIEW_ID);
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
   136
				} catch (PartInitException e) {
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
   137
				}
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
   138
			}
679300bad088 Show connections view when new connection is added
dadubrow
parents: 770
diff changeset
   139
		});
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   140
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   141
	
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   142
	private void reconcileAsCurrent(IConnection connection) {
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   143
		if (canBeSetToCurrent(connection)) {
770
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   144
			if (isReady(connection)) { // set as current
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   145
				reconcilerSetCurrentConnection = connection;
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   146
				manager.setCurrentConnection(connection);
770
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   147
			} else if (isNotReady(connection) && connection.equals(manager.getCurrentConnection())) { 
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   148
				// unset current or set something else current
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   149
				if (isDynamic(connection) && userSetCurrentConnection != null) {
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   150
					manager.setCurrentConnection(userSetCurrentConnection);
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   151
				}
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   152
				else {
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   153
					// look for some other existing connection that is ready
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   154
					for (IConnection c : manager.getConnections()) {
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   155
						if (canBeSetToCurrent(c) && isReady(c)) {
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   156
							reconcilerSetCurrentConnection = connection;
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   157
							manager.setCurrentConnection(connection);
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   158
							return;
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   159
						}
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   160
					}
770
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   161
					// set to no current connection
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   162
					manager.setCurrentConnection(null);
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   163
				}
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   164
			}
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   165
		}
758
c3cf3704d340 Make setting default part of reconciler responsibility
dadubrow
parents: 752
diff changeset
   166
	}
c3cf3704d340 Make setting default part of reconciler responsibility
dadubrow
parents: 752
diff changeset
   167
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   168
	private boolean isReady(IConnection connection) {
770
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   169
		return equalsConnectionStatus(connection, EConnectionStatus.READY);
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   170
	}
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   171
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   172
	private boolean isNotReady(IConnection connection) {
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   173
		return equalsConnectionStatus(connection, EConnectionStatus.NOT_READY);
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   174
	}
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   175
	
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   176
	private boolean equalsConnectionStatus(IConnection connection, EConnectionStatus status) {
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   177
		if (connection instanceof IConnection2) {
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   178
			IConnectionStatus connectionStatus = ((IConnection2) connection).getStatus();
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   179
			if (connectionStatus != null)
770
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   180
				return connectionStatus.getEConnectionStatus().equals(status);
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   181
		}
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   182
		return false;
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   183
	}
770
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   184
	
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   185
	private boolean canBeSetToCurrent(IConnection connection) {
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   186
		// USB connections for now
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   187
		return USBConnectionType.ID.equals(connection.getConnectionType().getIdentifier());
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   188
	}
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   189
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   190
	private void reconcileStatus(IConnection connection) {
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   191
		if (!isDynamic(connection)) // don't set status for user generated connections
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   192
			return;
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   193
		
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   194
		boolean isSysTRK = false;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   195
		EStatus trkStatus = EStatus.UNKNOWN;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   196
		EStatus traceStatus = EStatus.UNKNOWN;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   197
		for (IConnectedService service : manager.getConnectedServices(connection)) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   198
			if (service instanceof TRKConnectedService) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   199
				isSysTRK = isSysTRK((TRKConnectedService) service);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   200
				trkStatus = service.getStatus().getEStatus();
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   201
			}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   202
			if (service instanceof TracingConnectedService) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   203
				traceStatus = service.getStatus().getEStatus();
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   204
			}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   205
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   206
		setConnectionStatus((IConnection2) connection, isSysTRK, trkStatus, traceStatus);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   207
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   208
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   209
	private void setConnectionStatus(IConnection2 connection, boolean isSysTRK, EStatus trkStatus, EStatus traceStatus) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   210
		// use trk status
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   211
		EConnectionStatus connectionStatus = service2ConnectionStatus(trkStatus);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   212
		// if sys trk, tracing also used
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   213
		if (isSysTRK && connectionStatus.equals(EConnectionStatus.READY)) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   214
			connectionStatus = service2ConnectionStatus(traceStatus);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   215
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   216
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   217
		String shortDesc = getShortDescriptionForStatus(connectionStatus);
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   218
		StringBuilder longDesc = new StringBuilder(Messages.getString("ConnectionStatusReconciler_TRKServicePrefix")); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   219
		longDesc.append(getServiceStatusString(trkStatus));
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   220
		if (isSysTRK) {
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   221
			longDesc.append(Messages.getString("ConnectionStatusReconciler_TracingServicePrefix")); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   222
			longDesc.append(getServiceStatusString(traceStatus));
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   223
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   224
		
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   225
		connection.setStatus(new ConnectionStatus(connectionStatus, shortDesc, longDesc.toString()));
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   226
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   227
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   228
	private String getShortDescriptionForStatus(EConnectionStatus connectionStatus) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   229
		switch (connectionStatus) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   230
			case READY:
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   231
				return Messages.getString("ConnectionStatusReconciler_ReadyLabel"); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   232
			case NOT_READY:
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   233
				return Messages.getString("ConnectionStatusReconciler_NotReadyLabel"); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   234
			case IN_USE:
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   235
				return Messages.getString("ConnectionStatusReconciler_InUseLabel"); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   236
			case IN_USE_DISCONNECTED:
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   237
				return Messages.getString("ConnectionStatusReconciler_DisconnectedLabel"); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   238
			}
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   239
		return ""; //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   240
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   241
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   242
	private String getServiceStatusString(EStatus status) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   243
		switch (status) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   244
			case UP:
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   245
				return Messages.getString("ConnectionStatusReconciler_availableLabel"); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   246
			case DOWN:
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   247
				return Messages.getString("ConnectionStatusReconciler_unavailableLabel"); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   248
			case IN_USE:
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   249
				return Messages.getString("ConnectionStatusReconciler_inUseLabel_lower"); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   250
		}
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   251
		return ""; //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   252
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   253
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   254
	private EConnectionStatus service2ConnectionStatus(EStatus serviceStatus) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   255
		switch (serviceStatus) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   256
			case UP:
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   257
				return EConnectionStatus.READY;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   258
			case DOWN:
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   259
				return EConnectionStatus.NOT_READY;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   260
			case IN_USE:
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   261
				return EConnectionStatus.IN_USE;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   262
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   263
		return EConnectionStatus.NONE;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   264
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   265
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   266
	private void removeConnection(IConnection connection) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   267
		handledConnections.remove(connection);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   268
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   269
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   270
	private IConnection findConnection(IConnectedService cs) {
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   271
		for (IConnection connection : handledConnections) {
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   272
			for (IConnectedService connectedService : manager.getConnectedServices(connection)) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   273
				if (cs.equals(connectedService))
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   274
					return connection;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   275
			}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   276
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   277
		return null;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   278
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   279
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   280
	public void handleServiceStatusChange(IStatus status) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   281
		IConnectedService service = status.getConnectedService();
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   282
		IConnection connection = findConnection(service);
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   283
		if (connection instanceof IConnection2) {
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   284
			reconcileStatus((IConnection2) connection);
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   285
		}
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   286
		if (connection != null)
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   287
			reconcileAsCurrent(connection);
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   288
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   289
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   290
}