-
Notifications
You must be signed in to change notification settings - Fork 0
/
Room.java
183 lines (150 loc) · 5.81 KB
/
Room.java
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
/*
* (C) Copyright 2014 Kurento (http://kurento.org/)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.kurento.tutorial.groupcall;
import java.io.Closeable;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import javax.annotation.PreDestroy;
import org.kurento.client.Continuation;
import org.kurento.client.MediaPipeline;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.socket.WebSocketSession;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonPrimitive;
/**
* @author Ivan Gracia (izanmail@gmail.com)
* @since 4.3.1
*/
public class Room implements Closeable {
private final Logger log = LoggerFactory.getLogger(Room.class);
private final ConcurrentMap<String, UserSession> participants = new ConcurrentHashMap<>();
private final MediaPipeline pipeline;
private final String name;
public String getName() {
return name;
}
public Room(String roomName, MediaPipeline pipeline) {
this.name = roomName;
this.pipeline = pipeline;
log.info("ROOM {} has been created", roomName);
}
@PreDestroy
private void shutdown() {
this.close();
}
public UserSession join(String userName, WebSocketSession session) throws IOException {
log.info("ROOM {}: adding participant {}", userName, userName);
final UserSession participant = new UserSession(userName, this.name, session, this.pipeline);
joinRoom(participant);
participants.put(participant.getName(), participant);
sendParticipantNames(participant);
return participant;
}
public void leave(UserSession user) throws IOException {
log.debug("PARTICIPANT {}: Leaving room {}", user.getName(), this.name);
this.removeParticipant(user.getName());
user.close();
}
private Collection<String> joinRoom(UserSession newParticipant) throws IOException {
final JsonObject newParticipantMsg = new JsonObject();
newParticipantMsg.addProperty("id", "newParticipantArrived");
newParticipantMsg.addProperty("name", newParticipant.getName());
final List<String> participantsList = new ArrayList<>(participants.values().size());
log.debug("ROOM {}: notifying other participants of new participant {}", name,
newParticipant.getName());
for (final UserSession participant : participants.values()) {
try {
participant.sendMessage(newParticipantMsg);
} catch (final IOException e) {
log.debug("ROOM {}: participant {} could not be notified", name, participant.getName(), e);
}
participantsList.add(participant.getName());
}
return participantsList;
}
private void removeParticipant(String name) throws IOException {
participants.remove(name);
log.debug("ROOM {}: notifying all users that {} is leaving the room", this.name, name);
final List<String> unnotifiedParticipants = new ArrayList<>();
final JsonObject participantLeftJson = new JsonObject();
participantLeftJson.addProperty("id", "participantLeft");
participantLeftJson.addProperty("name", name);
for (final UserSession participant : participants.values()) {
try {
participant.cancelVideoFrom(name);
participant.sendMessage(participantLeftJson);
} catch (final IOException e) {
unnotifiedParticipants.add(participant.getName());
}
}
if (!unnotifiedParticipants.isEmpty()) {
log.debug("ROOM {}: The users {} could not be notified that {} left the room", this.name,
unnotifiedParticipants, name);
}
}
public void sendParticipantNames(UserSession user) throws IOException {
final JsonArray participantsArray = new JsonArray();
for (final UserSession participant : this.getParticipants()) {
if (!participant.equals(user)) {
final JsonElement participantName = new JsonPrimitive(participant.getName());
participantsArray.add(participantName);
}
}
final JsonObject existingParticipantsMsg = new JsonObject();
existingParticipantsMsg.addProperty("id", "existingParticipants");
existingParticipantsMsg.add("data", participantsArray);
log.debug("PARTICIPANT {}: sending a list of {} participants", user.getName(),
participantsArray.size());
user.sendMessage(existingParticipantsMsg);
}
public Collection<UserSession> getParticipants() {
return participants.values();
}
public UserSession getParticipant(String name) {
return participants.get(name);
}
@Override
public void close() {
for (final UserSession user : participants.values()) {
try {
user.close();
} catch (IOException e) {
log.debug("ROOM {}: Could not invoke close on participant {}", this.name, user.getName(),
e);
}
}
participants.clear();
pipeline.release(new Continuation<Void>() {
@Override
public void onSuccess(Void result) throws Exception {
log.trace("ROOM {}: Released Pipeline", Room.this.name);
}
@Override
public void onError(Throwable cause) throws Exception {
log.warn("PARTICIPANT {}: Could not release Pipeline", Room.this.name);
}
});
log.debug("Room {} closed", this.name);
}
}