org.kurento.room.endpoint.SubscriberEndpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kurento-room-sdk Show documentation
Show all versions of kurento-room-sdk Show documentation
Kurento Room SDK - Java API for developing Kurento Room apps
/*
* (C) Copyright 2013 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.room.endpoint;
import org.kurento.client.MediaPipeline;
import org.kurento.client.MediaType;
import org.kurento.room.api.MutedMediaType;
import org.kurento.room.exception.RoomException;
import org.kurento.room.exception.RoomException.Code;
import org.kurento.room.internal.Participant;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Subscriber aspect of the {@link MediaEndpoint}.
*
* @author Radu Tom Vlad
*/
public class SubscriberEndpoint extends MediaEndpoint {
private final static Logger log = LoggerFactory.getLogger(SubscriberEndpoint.class);
private boolean connectedToPublisher = false;
private PublisherEndpoint publisher = null;
public SubscriberEndpoint(boolean web, Participant owner, String endpointName,
MediaPipeline pipeline) {
super(web, owner, endpointName, pipeline, log);
}
public synchronized String subscribe(String sdpOffer, PublisherEndpoint publisher) {
registerOnIceCandidateEventListener();
String sdpAnswer = processOffer(sdpOffer);
gatherCandidates();
publisher.connect(this.getEndpoint());
setConnectedToPublisher(true);
setPublisher(publisher);
return sdpAnswer;
}
public boolean isConnectedToPublisher() {
return connectedToPublisher;
}
public void setConnectedToPublisher(boolean connectedToPublisher) {
this.connectedToPublisher = connectedToPublisher;
}
public PublisherEndpoint getPublisher() {
return publisher;
}
public void setPublisher(PublisherEndpoint publisher) {
this.publisher = publisher;
}
@Override
public synchronized void mute(MutedMediaType muteType) {
if (this.publisher == null) {
throw new RoomException(Code.MEDIA_MUTE_ERROR_CODE, "Publisher endpoint not found");
}
switch (muteType) {
case ALL :
this.publisher.disconnectFrom(this.getEndpoint());
break;
case AUDIO :
this.publisher.disconnectFrom(this.getEndpoint(), MediaType.AUDIO);
break;
case VIDEO :
this.publisher.disconnectFrom(this.getEndpoint(), MediaType.VIDEO);
break;
}
resolveCurrentMuteType(muteType);
}
@Override
public synchronized void unmute() {
this.publisher.connect(this.getEndpoint());
setMuteType(null);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy