debuggercdi/com.nokia.carbide.trk.support/src/com/nokia/carbide/trk/support/status/ConnectionStatusReconciler.java
author dadubrow
Fri, 15 Jan 2010 14:08:27 -0600
changeset 770 cb7e68ca1ef4
parent 764 603d6ca035e8
child 848 679300bad088
permissions -rw-r--r--
don't unset current when in-use
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
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    23
import com.nokia.carbide.remoteconnections.RemoteConnectionsActivator;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    24
import com.nokia.carbide.remoteconnections.interfaces.IConnectedService;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    25
import com.nokia.carbide.remoteconnections.interfaces.IConnection;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    26
import com.nokia.carbide.remoteconnections.interfaces.IConnectionsManager;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    27
import com.nokia.carbide.remoteconnections.interfaces.AbstractConnection.ConnectionStatus;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    28
import com.nokia.carbide.remoteconnections.interfaces.IConnectedService.IStatus;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    29
import com.nokia.carbide.remoteconnections.interfaces.IConnectedService.IStatusChangedListener;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    30
import com.nokia.carbide.remoteconnections.interfaces.IConnectedService.IStatus.EStatus;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    31
import com.nokia.carbide.remoteconnections.interfaces.IConnectionsManager.IConnectionListener;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    32
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
    33
import com.nokia.carbide.remoteconnections.internal.api.IConnection2.IConnectionStatus;
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    34
import com.nokia.carbide.remoteconnections.internal.api.IConnection2.IConnectionStatus.EConnectionStatus;
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
    35
import com.nokia.carbide.trk.support.Messages;
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    36
import com.nokia.carbide.trk.support.connection.USBConnectionType;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    37
import com.nokia.carbide.trk.support.service.TRKConnectedService;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    38
import com.nokia.carbide.trk.support.service.TracingConnectedService;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    39
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    40
/**
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    41
 * A singleton object that manages the device status of dynamic connections
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    42
 * based on the status of the TRK and Tracing services.
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    43
 */
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    44
public class ConnectionStatusReconciler {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    45
	
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    46
	private class ConnectionListener implements IConnectionListener {
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 void connectionAdded(IConnection connection) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    49
			addConnection(connection);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    50
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    51
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    52
		public void connectionRemoved(IConnection connection) {
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    53
			if (connection.equals(userSetCurrentConnection))
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    54
				userSetCurrentConnection = null;
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    55
			removeConnection(connection);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    56
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    57
		
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    58
		public void currentConnectionSet(IConnection connection) {
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    59
			if (connection != null && !connection.equals(reconcilerSetCurrentConnection))
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    60
				userSetCurrentConnection = connection;
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    61
		}
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    62
		
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    63
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    64
	
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    65
	private class ServiceStatusListener implements IStatusChangedListener {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    66
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    67
		public void statusChanged(IStatus status) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    68
			handleServiceStatusChange(status);
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
	
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    73
	private static ConnectionStatusReconciler instance;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    74
	private IConnectionsManager manager;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    75
	private IConnectionListener connectionListener;
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
    76
	private List<IConnection> handledConnections;
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    77
	private ServiceStatusListener serviceStatusListener;
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    78
	private IConnection reconcilerSetCurrentConnection;
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
    79
	private IConnection userSetCurrentConnection;
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    80
	
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    81
	private ConnectionStatusReconciler() {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    82
		connectionListener = new ConnectionListener();
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    83
		manager = RemoteConnectionsActivator.getConnectionsManager();
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    84
		manager.addConnectionListener(connectionListener);
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
    85
		handledConnections = new ArrayList<IConnection>();
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    86
		serviceStatusListener = new ServiceStatusListener();
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    87
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    88
	
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    89
	public static ConnectionStatusReconciler getInstance() {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    90
		if (instance == null)
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    91
			instance = new ConnectionStatusReconciler();
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    92
		
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    93
		return instance;
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 void dispose() {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    97
		manager.removeConnectionListener(connectionListener);
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
    98
		for (IConnection connection : new ArrayList<IConnection>(handledConnections)) {
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
    99
			removeConnection(connection);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   100
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   101
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   102
752
a0609ea7401a add sys trk checking for usb only and use with reconciler
dadubrow
parents: 750
diff changeset
   103
	private boolean isDynamic(IConnection connection) {
a0609ea7401a add sys trk checking for usb only and use with reconciler
dadubrow
parents: 750
diff changeset
   104
		return connection instanceof IConnection2 && ((IConnection2) connection).isDynamic();
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   105
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   106
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   107
	private boolean isSysTRK(TRKConnectedService service) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   108
		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
   109
		return Boolean.parseBoolean(value);
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   110
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   111
	
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   112
	private void addConnection(IConnection connection) {
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   113
		handledConnections.add(connection);
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   114
		for (IConnectedService service : manager.getConnectedServices(connection)) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   115
			if (service instanceof TRKConnectedService ||
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   116
					service instanceof TracingConnectedService) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   117
				service.addStatusChangedListener(serviceStatusListener);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   118
			}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   119
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   120
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   121
	
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   122
	private void reconcileAsCurrent(IConnection connection) {
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   123
		if (canBeSetToCurrent(connection)) {
770
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   124
			if (isReady(connection)) { // set as current
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   125
				reconcilerSetCurrentConnection = connection;
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   126
				manager.setCurrentConnection(connection);
770
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   127
			} else if (isNotReady(connection) && connection.equals(manager.getCurrentConnection())) { 
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   128
				// unset current or set something else current
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   129
				if (isDynamic(connection) && userSetCurrentConnection != null) {
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   130
					manager.setCurrentConnection(userSetCurrentConnection);
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   131
				}
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   132
				else {
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   133
					// look for some other existing connection that is ready
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   134
					for (IConnection c : manager.getConnections()) {
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   135
						if (canBeSetToCurrent(c) && isReady(c)) {
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   136
							reconcilerSetCurrentConnection = connection;
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   137
							manager.setCurrentConnection(connection);
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   138
							return;
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   139
						}
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   140
					}
770
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   141
					// set to no current connection
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   142
					manager.setCurrentConnection(null);
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   143
				}
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   144
			}
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   145
		}
758
c3cf3704d340 Make setting default part of reconciler responsibility
dadubrow
parents: 752
diff changeset
   146
	}
c3cf3704d340 Make setting default part of reconciler responsibility
dadubrow
parents: 752
diff changeset
   147
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   148
	private boolean isReady(IConnection connection) {
770
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   149
		return equalsConnectionStatus(connection, EConnectionStatus.READY);
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   150
	}
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
	private boolean isNotReady(IConnection connection) {
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   153
		return equalsConnectionStatus(connection, EConnectionStatus.NOT_READY);
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   154
	}
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   155
	
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   156
	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
   157
		if (connection instanceof IConnection2) {
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   158
			IConnectionStatus connectionStatus = ((IConnection2) connection).getStatus();
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   159
			if (connectionStatus != null)
770
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   160
				return connectionStatus.getEConnectionStatus().equals(status);
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   161
		}
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   162
		return false;
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   163
	}
770
cb7e68ca1ef4 don't unset current when in-use
dadubrow
parents: 764
diff changeset
   164
	
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   165
	private boolean canBeSetToCurrent(IConnection connection) {
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   166
		// USB connections for now
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   167
		return USBConnectionType.ID.equals(connection.getConnectionType().getIdentifier());
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   168
	}
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   169
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   170
	private void reconcileStatus(IConnection connection) {
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   171
		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
   172
			return;
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   173
		
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   174
		boolean isSysTRK = false;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   175
		EStatus trkStatus = EStatus.UNKNOWN;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   176
		EStatus traceStatus = EStatus.UNKNOWN;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   177
		for (IConnectedService service : manager.getConnectedServices(connection)) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   178
			if (service instanceof TRKConnectedService) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   179
				isSysTRK = isSysTRK((TRKConnectedService) service);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   180
				trkStatus = service.getStatus().getEStatus();
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   181
			}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   182
			if (service instanceof TracingConnectedService) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   183
				traceStatus = service.getStatus().getEStatus();
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   184
			}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   185
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   186
		setConnectionStatus((IConnection2) connection, isSysTRK, trkStatus, traceStatus);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   187
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   188
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   189
	private void setConnectionStatus(IConnection2 connection, boolean isSysTRK, EStatus trkStatus, EStatus traceStatus) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   190
		// use trk status
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   191
		EConnectionStatus connectionStatus = service2ConnectionStatus(trkStatus);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   192
		// if sys trk, tracing also used
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   193
		if (isSysTRK && connectionStatus.equals(EConnectionStatus.READY)) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   194
			connectionStatus = service2ConnectionStatus(traceStatus);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   195
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   196
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   197
		String shortDesc = getShortDescriptionForStatus(connectionStatus);
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   198
		StringBuilder longDesc = new StringBuilder(Messages.getString("ConnectionStatusReconciler_TRKServicePrefix")); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   199
		longDesc.append(getServiceStatusString(trkStatus));
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   200
		if (isSysTRK) {
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   201
			longDesc.append(Messages.getString("ConnectionStatusReconciler_TracingServicePrefix")); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   202
			longDesc.append(getServiceStatusString(traceStatus));
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   203
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   204
		
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   205
		connection.setStatus(new ConnectionStatus(connectionStatus, shortDesc, longDesc.toString()));
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   206
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   207
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   208
	private String getShortDescriptionForStatus(EConnectionStatus connectionStatus) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   209
		switch (connectionStatus) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   210
			case READY:
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   211
				return Messages.getString("ConnectionStatusReconciler_ReadyLabel"); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   212
			case NOT_READY:
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   213
				return Messages.getString("ConnectionStatusReconciler_NotReadyLabel"); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   214
			case IN_USE:
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   215
				return Messages.getString("ConnectionStatusReconciler_InUseLabel"); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   216
			case IN_USE_DISCONNECTED:
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   217
				return Messages.getString("ConnectionStatusReconciler_DisconnectedLabel"); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   218
			}
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   219
		return ""; //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   220
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   221
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   222
	private String getServiceStatusString(EStatus status) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   223
		switch (status) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   224
			case UP:
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   225
				return Messages.getString("ConnectionStatusReconciler_availableLabel"); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   226
			case DOWN:
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   227
				return Messages.getString("ConnectionStatusReconciler_unavailableLabel"); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   228
			case IN_USE:
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   229
				return Messages.getString("ConnectionStatusReconciler_inUseLabel_lower"); //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   230
		}
749
22f0d10fce10 Externalize strings
dadubrow
parents: 748
diff changeset
   231
		return ""; //$NON-NLS-1$
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   232
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   233
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   234
	private EConnectionStatus service2ConnectionStatus(EStatus serviceStatus) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   235
		switch (serviceStatus) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   236
			case UP:
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   237
				return EConnectionStatus.READY;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   238
			case DOWN:
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   239
				return EConnectionStatus.NOT_READY;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   240
			case IN_USE:
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   241
				return EConnectionStatus.IN_USE;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   242
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   243
		return EConnectionStatus.NONE;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   244
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   245
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   246
	private void removeConnection(IConnection connection) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   247
		handledConnections.remove(connection);
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   248
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   249
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   250
	private IConnection findConnection(IConnectedService cs) {
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   251
		for (IConnection connection : handledConnections) {
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   252
			for (IConnectedService connectedService : manager.getConnectedServices(connection)) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   253
				if (cs.equals(connectedService))
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   254
					return connection;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   255
			}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   256
		}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   257
		return null;
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   258
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   259
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   260
	public void handleServiceStatusChange(IStatus status) {
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   261
		IConnectedService service = status.getConnectedService();
763
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   262
		IConnection connection = findConnection(service);
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   263
		if (connection instanceof IConnection2) {
751f5182b866 Refactor API and related from default connection to current + update heuristics
dadubrow
parents: 758
diff changeset
   264
			reconcileStatus((IConnection2) connection);
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   265
		}
764
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   266
		if (connection != null)
603d6ca035e8 updated set and reset current depending on ready state
dadubrow
parents: 763
diff changeset
   267
			reconcileAsCurrent(connection);
748
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   268
	}
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   269
7bd40a2d0a18 Add connection status reconciliation + fixes + tweaks
dadubrow
parents:
diff changeset
   270
}