Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 476a389cfffff4ba2b8fb5e35cc2c42134a6fd08 (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
package PingPong;

import org.eclipse.etrice.runtime.java.messaging.MessageService;
import org.eclipse.etrice.runtime.java.messaging.RTServices;
import org.eclipse.etrice.runtime.java.messaging.Address;
import org.eclipse.etrice.runtime.java.messaging.IRTObject;
import org.eclipse.etrice.runtime.java.messaging.RTSystemServicesProtocol.*;
import org.eclipse.etrice.runtime.java.modelbase.ActorClassBase;
import org.eclipse.etrice.runtime.java.modelbase.SubSystemClassBase;
import org.eclipse.etrice.runtime.java.modelbase.InterfaceItemBase;

import room.basic.service.timing.*;



public class SubSystem_PingPong extends SubSystemClassBase{

	
	public SubSystem_PingPong(IRTObject parent, String name) {
		super(parent, name);
	}
	
	@Override
	public void receiveEvent(InterfaceItemBase ifitem, int evt, Object data){
	}
	
	@Override	
	public void instantiateMessageServices(){
	
		RTServices.getInstance().getMsgSvcCtrl().addMsgSvc(new MessageService(this, new Address(0, 0, 0),"MessageService_Main"));
		RTServices.getInstance().getMsgSvcCtrl().addMsgSvc(new MessageService(this, new Address(0, 1, 0),"MessageService_mrPingThread", 5));
		RTServices.getInstance().getMsgSvcCtrl().addMsgSvc(new MessageService(this, new Address(0, 2, 0),"MessageService_mrPong1Thread", 5));
		}

	@Override
	public void instantiateActors(){
		// all addresses
		// Addresses for the Subsystem Systemport
		Address addr_item_SystemPort_0 = new Address(0,0,110);
		Address addr_item_SystemPort_1 = new Address(0,0,111);
		Address addr_item_SystemPort_2 = new Address(0,0,112);
		Address addr_item_SystemPort_3 = new Address(0,0,113);
		
		// actor instance /SubSystem_PingPong/application itself => Systemport Address
		// TODOTJ: For each Actor, multiple addresses should be generated (actor?, systemport, debugport)
		Address addr_item__SubSystem_PingPong_application = new Address(0,0,101);
		// interface items of /SubSystem_PingPong/application
		// actor instance /SubSystem_PingPong/application/MrPing itself => Systemport Address
		// TODOTJ: For each Actor, multiple addresses should be generated (actor?, systemport, debugport)
		Address addr_item__SubSystem_PingPong_application_MrPing = new Address(0,1,102);
		// interface items of /SubSystem_PingPong/application/MrPing
		Address addr_item__SubSystem_PingPong_application_MrPing_PingPongPort = new Address(0,1,103);
		Address addr_item__SubSystem_PingPong_application_MrPing_timer = new Address(0,1,105);
		// actor instance /SubSystem_PingPong/application/MrPong1 itself => Systemport Address
		// TODOTJ: For each Actor, multiple addresses should be generated (actor?, systemport, debugport)
		Address addr_item__SubSystem_PingPong_application_MrPong1 = new Address(0,2,106);
		// interface items of /SubSystem_PingPong/application/MrPong1
		Address addr_item__SubSystem_PingPong_application_MrPong1_PingPongPort = new Address(0,2,107);
		// actor instance /SubSystem_PingPong/services itself => Systemport Address
		// TODOTJ: For each Actor, multiple addresses should be generated (actor?, systemport, debugport)
		Address addr_item__SubSystem_PingPong_services = new Address(0,0,108);
		// interface items of /SubSystem_PingPong/services
		Address addr_item__SubSystem_PingPong_services_timeout_0 = new Address(0,0,109);

		// instantiate all actor instances
		instances = new ActorClassBase[4];
		instances[0] = new PingPongTop(
			this,
			"application",
			// own interface item addresses
			new Address[][] {{addr_item__SubSystem_PingPong_application}
			},
			// peer interface item addresses
			new Address[][] {{addr_item_SystemPort_0}
			}
		); 
		instances[1] = new MrPingActor(
			instances[0],
			"MrPing",
			// own interface item addresses
			new Address[][] {{addr_item__SubSystem_PingPong_application_MrPing},
			{
				addr_item__SubSystem_PingPong_application_MrPing_PingPongPort
			},
			{
				addr_item__SubSystem_PingPong_application_MrPing_timer
			}
			},
			// peer interface item addresses
			new Address[][] {{addr_item_SystemPort_1},
				{
					addr_item__SubSystem_PingPong_application_MrPong1_PingPongPort
				},
				{
					addr_item__SubSystem_PingPong_services_timeout_0
				}
			}
		); 
		instances[2] = new MrPongActor1(
			instances[0],
			"MrPong1",
			// own interface item addresses
			new Address[][] {{addr_item__SubSystem_PingPong_application_MrPong1},
			{
				addr_item__SubSystem_PingPong_application_MrPong1_PingPongPort
			}
			},
			// peer interface item addresses
			new Address[][] {{addr_item_SystemPort_2},
				{
					addr_item__SubSystem_PingPong_application_MrPing_PingPongPort
				}
			}
		); 
		instances[3] = new ATimingService(
			this,
			"services",
			// own interface item addresses
			new Address[][] {{addr_item__SubSystem_PingPong_services},
			{
			},
			{
				addr_item__SubSystem_PingPong_services_timeout_0
			}
			},
			// peer interface item addresses
			new Address[][] {{addr_item_SystemPort_3},
				{
				},
				{
					addr_item__SubSystem_PingPong_application_MrPing_timer
				}
			}
		); 

		// create the subsystem system port	
		RTSystemPort = new RTSystemServicesProtocolConjPortRepl(this, "RTSystemPort",
				0, //local ID
				// own addresses
				new Address[]{
					addr_item_SystemPort_0,
					addr_item_SystemPort_1,
					addr_item_SystemPort_2,
					addr_item_SystemPort_3
				},
				// peer addresses
				new Address[]{
					addr_item__SubSystem_PingPong_application,
					addr_item__SubSystem_PingPong_application_MrPing,
					addr_item__SubSystem_PingPong_application_MrPong1,
					addr_item__SubSystem_PingPong_services
				});
				
	}
};

Back to the top