Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 16b06daeff92dbf98c189ee3a65b02b8db55e3e4 (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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
/*******************************************************************************
 * Copyright (c) 2008, 2012 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 - Initial API and implementation
 *******************************************************************************/
package org.eclipse.ptp.rdt.server.dstore.core;

import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.ptp.internal.rdt.core.callhierarchy.ICallHierarchyService;
import org.eclipse.ptp.internal.rdt.core.callhierarchy.RemoteCallHierarchyService;
import org.eclipse.ptp.internal.rdt.core.includebrowser.IIncludeBrowserService;
import org.eclipse.ptp.internal.rdt.core.includebrowser.RemoteIncludeBrowserService;
import org.eclipse.ptp.internal.rdt.core.index.IIndexLifecycleService;
import org.eclipse.ptp.internal.rdt.core.index.RemoteIndexLifecycleService;
import org.eclipse.ptp.internal.rdt.core.model.IModelBuilderService;
import org.eclipse.ptp.internal.rdt.core.model.RemoteModelBuilderService;
import org.eclipse.ptp.internal.rdt.core.typehierarchy.ITypeHierarchyService;
import org.eclipse.ptp.internal.rdt.core.typehierarchy.RemoteTypeHierarchyService;
import org.eclipse.ptp.internal.rdt.ui.contentassist.IContentAssistService;
import org.eclipse.ptp.internal.rdt.ui.contentassist.RemoteContentAssistService;
import org.eclipse.ptp.internal.rdt.ui.editor.IRemoteCCodeFoldingService;
import org.eclipse.ptp.internal.rdt.ui.editor.IRemoteSemanticHighlightingService;
import org.eclipse.ptp.internal.rdt.ui.editor.RemoteCCodeFoldingService;
import org.eclipse.ptp.internal.rdt.ui.editor.RemoteSemanticHighlightingService;
import org.eclipse.ptp.internal.rdt.ui.navigation.INavigationService;
import org.eclipse.ptp.internal.rdt.ui.navigation.RemoteNavigationService;
import org.eclipse.ptp.internal.rdt.ui.search.ISearchService;
import org.eclipse.ptp.internal.rdt.ui.search.RemoteSearchService;
import org.eclipse.ptp.rdt.server.dstore.messages.Messages;
import org.eclipse.ptp.rdt.ui.serviceproviders.IRemoteToolsIndexServiceProvider;
import org.eclipse.ptp.remote.core.IRemoteConnection;
import org.eclipse.ptp.remote.core.IRemoteServices;
import org.eclipse.ptp.remote.core.PTPRemoteCorePlugin;
import org.eclipse.ptp.services.core.IServiceProvider;
import org.eclipse.ptp.services.core.IServiceProviderWorkingCopy;
import org.eclipse.ptp.services.core.ServiceProvider;

/**
 * @since 2.0
 */
public class RemoteToolsCIndexServiceProvider extends ServiceProvider implements IRemoteToolsIndexServiceProvider,
		IServiceProviderWorkingCopy {

	protected IIndexLifecycleService fIndexLifecycleService = null;
	protected INavigationService fNavigationService = null;
	protected ICallHierarchyService fCallHierarchyService = null;
	protected ITypeHierarchyService fTypeHierarchyService = null;
	protected IIncludeBrowserService fIncludeBrowserService = null;
	protected IModelBuilderService fModelBuilderService = null;
	protected RemoteSearchService fSearchService = null;
	protected IContentAssistService fContentAssistService = null;
	/**
	 * @since 3.0
	 */
	protected RemoteSemanticHighlightingService fRemoteSemanticHighlightingService = null;
	/**
	 * @since 3.0
	 */
	protected RemoteCCodeFoldingService fRemoteCCodeFoldingService = null;
	protected RemoteToolsCIndexSubsystem fSubsystem = null;
	protected boolean fIsDirty = false;
	protected RemoteToolsCIndexServiceProvider fProvider = null;
	protected boolean fIsConfigured = false;

	public static final String NAME = Messages.RemoteToolsCIndexServiceProvider_0;
	public static final String SERVICE_ID = "org.eclipse.ptp.rdt.core.CIndexingService"; //$NON-NLS-1$

	/**
	 * @since 2.0
	 */
	public static final String SERVICE_ID_KEY = "service-name"; //$NON-NLS-1$
	/**
	 * @since 2.0
	 */
	public static final String CONNECTION_NAME_KEY = "connection-name"; //$NON-NLS-1$
	/**
	 * @since 2.0
	 */
	public static final String INDEX_LOCATION_KEY = "index-location"; //$NON-NLS-1$

	public RemoteToolsCIndexServiceProvider() {
	}

	public RemoteToolsCIndexServiceProvider(RemoteToolsCIndexServiceProvider provider) {
		fProvider = provider;
		setProperties(provider.getProperties());
		setDescriptor(provider.getDescriptor());
	}

	
	/**
	 * @since 3.0
	 */
	public boolean isRemote() {
		return true;
	}
	
	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.services.core.ServiceProvider#copy()
	 */
	@Override
	public IServiceProviderWorkingCopy copy() {
		return new RemoteToolsCIndexServiceProvider(this);
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.rdt.core.serviceproviders.IIndexServiceProvider#
	 * getCallHierarchyService()
	 */
	public synchronized ICallHierarchyService getCallHierarchyService() {
		if (!isConfigured())
			return null;

		if (fCallHierarchyService == null)
			fCallHierarchyService = new RemoteCallHierarchyService(fSubsystem);

		return fCallHierarchyService;
	}

	/**
	 * Get the host name for this connection.
	 * 
	 * @return host name
	 */
	public String getConnectionName() {
		return getString(CONNECTION_NAME_KEY, null);
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.rdt.ui.serviceproviders.IIndexServiceProvider2#
	 * getContentAssistService()
	 */
	public IContentAssistService getContentAssistService() {
		if (!isConfigured())
			return null;

		if (fContentAssistService == null)
			fContentAssistService = new RemoteContentAssistService(fSubsystem);

		return fContentAssistService;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.rdt.core.serviceproviders.IIndexServiceProvider#
	 * getIncludeBrowserService()
	 */
	public synchronized IIncludeBrowserService getIncludeBrowserService() {
		if (!isConfigured())
			return null;

		if (fIncludeBrowserService == null)
			fIncludeBrowserService = new RemoteIncludeBrowserService(fSubsystem);

		return fIncludeBrowserService;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.rdt.core.serviceproviders.IIndexServiceProvider#
	 * getIndexLifeCycleService()
	 */
	public synchronized IIndexLifecycleService getIndexLifeCycleService() {
		if (!isConfigured())
			return null;

		if (fIndexLifecycleService == null)
			fIndexLifecycleService = new RemoteIndexLifecycleService(fSubsystem);

		return fIndexLifecycleService;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.rdt.core.serviceproviders.IIndexServiceProvider#
	 * getIndexLocation()
	 */
	public String getIndexLocation() {
		initialize();
		return getString(INDEX_LOCATION_KEY, ""); //$NON-NLS-1$
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.rdt.core.serviceproviders.IIndexServiceProvider#
	 * getModelBuilderService()
	 */
	public synchronized IModelBuilderService getModelBuilderService() {
		if (!isConfigured())
			return null;

		if (fModelBuilderService == null)
			fModelBuilderService = new RemoteModelBuilderService(fSubsystem);

		return fModelBuilderService;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.rdt.core.serviceproviders.IIndexServiceProvider#
	 * getNavigationService()
	 */
	/**
	 * @since 3.0
	 */
	public synchronized INavigationService getNavigationService() {
		if (!isConfigured())
			return null;

		if (fNavigationService == null)
			fNavigationService = new RemoteNavigationService(fSubsystem);

		return fNavigationService;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see
	 * org.eclipse.ptp.services.core.IServiceProviderWorkingCopy#getOriginal()
	 */
	public IServiceProvider getOriginal() {
		return fProvider;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see
	 * org.eclipse.ptp.rdt.ui.serviceproviders.IRemoteToolsIndexServiceProvider#
	 * getConnection()
	 */
	public IRemoteConnection getConnection() {
		if (!isConfigured()) {
			return null;
		}
		return getRemoteServices().getConnectionManager().getConnection(getConnectionName());
	}

	private IRemoteServices getRemoteServices() {
		if (!isConfigured()) {
			return null;
		}
		IRemoteServices services = PTPRemoteCorePlugin.getDefault().getRemoteServices(getServiceId());
		if (!services.isInitialized()) {
			services.initialize();
		}
		if (!services.isInitialized()) {
			return null;
		}
		return services;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.rdt.ui.serviceproviders.IIndexServiceProvider2#
	 * getSearchService()
	 */
	public ISearchService getSearchService() {
		if (!isConfigured())
			return null;

		if (fSearchService == null)
			fSearchService = new RemoteSearchService(fSubsystem);

		return fSearchService;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.services.core.ServiceProvider#getServiceId()
	 */
	@Override
	public String getServiceId() {
		return getString(SERVICE_ID_KEY, null);
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.rdt.core.serviceproviders.IIndexServiceProvider#
	 * getTypeHierarchyService()
	 */
	public synchronized ITypeHierarchyService getTypeHierarchyService() {
		if (!isConfigured())
			return null;

		if (fTypeHierarchyService == null)
			fTypeHierarchyService = new RemoteTypeHierarchyService(fSubsystem);

		return fTypeHierarchyService;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.services.core.IServiceProvider#isConfigured()
	 */
	public boolean isConfigured() {
		initialize();
		return fIsConfigured;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.services.core.IServiceProviderWorkingCopy#isDirty()
	 */
	public boolean isDirty() {
		return fIsDirty;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see
	 * org.eclipse.ptp.services.core.ServiceProvider#putString(java.lang.String,
	 * java.lang.String)
	 */
	@Override
	public void putString(String key, String value) {
		fIsDirty = true;
		super.putString(key, value);
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.services.core.IServiceProviderWorkingCopy#save()
	 */
	public void save() {
		if (fProvider != null) {
			fProvider.setProperties(getProperties());
			fIsDirty = false;
		}
	}

	/**
	 * @param isConfigured
	 */
	public void setConfigured(boolean isConfigured) {
		fIsConfigured = isConfigured;
	}

	/**
	 * Set a new connection for this service provider. This will reset the index
	 * and DStore server locations to their default values.
	 * 
	 * @param connection
	 *            new connection
	 */
	public void setConnection(IRemoteConnection connection) {
		setConnection(connection, true);
	}

	/**
	 * Set the host name for this connection
	 * 
	 * @param hostName
	 */
	public void setConnectionName(String connectionName) {
		putString(CONNECTION_NAME_KEY, connectionName);
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ptp.rdt.core.serviceproviders.IIndexServiceProvider#
	 * setIndexLocation(java.lang.String)
	 */
	public void setIndexLocation(String path) {
		putString(INDEX_LOCATION_KEY, path);
	}

	/**
	 * @param serviceId
	 */
	public void setServiceId(String serviceId) {
		putString(SERVICE_ID_KEY, serviceId);
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see java.lang.Object#toString()
	 */
	@Override
	public String toString() {
		return "RemoteToolsCIndexServiceProvider(" + getIndexLocation() + ")"; //$NON-NLS-1$ //$NON-NLS-2$
	}

	private void initialize() {
		if (fSubsystem == null && getServiceId() != null) {
			IRemoteServices services = PTPRemoteCorePlugin.getDefault().getRemoteServices(getServiceId());
			if (services != null) {
				if (!services.isInitialized()) {
					services.initialize();
				}
				if (services.isInitialized() && getConnectionName() != null) {
					IRemoteConnection connection = services.getConnectionManager().getConnection(getConnectionName());
					setConnection(connection, false);
				}
			}
		}
	}

	/**
	 * Set a new connection for this service provider. If reset is true the
	 * index and DStore server locations will be reset to their default values.
	 * 
	 * @param connection
	 *            new connection
	 * @param reset
	 *            reset locations to defaults
	 */
	private void setConnection(IRemoteConnection connection, boolean reset) {
		setServiceId(connection.getRemoteServices().getId());
		setConnectionName(connection.getName());
		if (reset) {
			IPath workingDir = new Path(connection.getWorkingDirectory());
			setIndexLocation(workingDir.append(".eclipsesettings").toString()); //$NON-NLS-1$
		}
		if (fSubsystem != null) {
			fSubsystem.dispose();
		}
		fSubsystem = new RemoteToolsCIndexSubsystem(this);
		setConfigured(true);
	}
	
	/**
	 * @since 3.0
	 */
	public IRemoteSemanticHighlightingService getRemoteSemanticHighlightingService() {
		if(!isConfigured())
			return null;

		if(fRemoteSemanticHighlightingService== null)
			fRemoteSemanticHighlightingService = new RemoteSemanticHighlightingService(fSubsystem);

		return fRemoteSemanticHighlightingService;
	}

	/**
	 * @since 3.0
	 */
	public IRemoteCCodeFoldingService getRemoteCodeFoldingService() {
		if(!isConfigured())
			return null;

		if(fRemoteCCodeFoldingService== null)
			fRemoteCCodeFoldingService = new RemoteCCodeFoldingService(fSubsystem);

		return fRemoteCCodeFoldingService;
	}
}

Back to the top