Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 52a45445d0cd45c8275244167e4722301b8ebed7 (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
/*******************************************************************************
 * Copyright (c) 2011 protos software gmbh (http://www.protos.de).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 * 
 * CONTRIBUTORS:
 * 		Thomas Schuetz
 * 
 *******************************************************************************/

package org.eclipse.etrice.runtime.java.messaging;

import org.eclipse.etrice.runtime.java.modelbase.SubSystemClassBase;

/**
 * RTServices is the single point of access to all runtime services in one SubSystem
 * e.g. MessageServices, DebuggingService, ...
 * 
 * @author Thomas Schuetz
 *
 */
public class RTServices {
	
	private RTServices(){
		messageServiceController = new MessageServiceController();
	}
	
	public static RTServices getInstance(){
		if (instance == null){
			instance = new RTServices();
		}
		return instance;
	}
	
	public void destroy(){
		// TODO: also clean up all sub elements
		subSystem = null;
		messageServiceController = null;
		instance = null;
	}

	public MessageServiceController getMsgSvcCtrl(){
		assert(messageServiceController != null);
		return messageServiceController;
	}
	
	public SubSystemClassBase getSubSystem() {
		return subSystem;
	}
	public void setSubSystem(SubSystemClassBase subSystem) {
		this.subSystem = subSystem;
	}
	private static RTServices instance = null;
	private MessageServiceController messageServiceController = null;
	private SubSystemClassBase subSystem = null;
}

Back to the top