it.tidalwave.bluemarine2.upnp.mediaserver.impl.device.DefaultDevicePublisher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of it-tidalwave-bluemarine2-upnp-mediaserver Show documentation
Show all versions of it-tidalwave-bluemarine2-upnp-mediaserver Show documentation
This module exposes the media server by means of the UPnP protocol.
/*
* #%L
* *********************************************************************************************************************
*
* blueMarine2 - Semantic Media Center
* http://bluemarine2.tidalwave.it - git clone https://bitbucket.org/tidalwave/bluemarine2-src.git
* %%
* Copyright (C) 2015 - 2017 Tidalwave s.a.s. (http://tidalwave.it)
* %%
*
* *********************************************************************************************************************
*
* 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.
*
* *********************************************************************************************************************
*
* $Id$
*
* *********************************************************************************************************************
* #L%
*/
package it.tidalwave.bluemarine2.upnp.mediaserver.impl.device;
import javax.annotation.Nonnull;
import javax.annotation.PostConstruct;
import javax.inject.Inject;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.net.InetAddress;
import java.net.UnknownHostException;
import org.fourthline.cling.UpnpService;
import org.fourthline.cling.binding.annotations.AnnotationLocalServiceBinder;
import org.fourthline.cling.model.DefaultServiceManager;
import org.fourthline.cling.model.ValidationException;
import org.fourthline.cling.model.meta.DeviceDetails;
import org.fourthline.cling.model.meta.DeviceIdentity;
import org.fourthline.cling.model.meta.Icon;
import org.fourthline.cling.model.meta.LocalDevice;
import org.fourthline.cling.model.meta.LocalService;
import org.fourthline.cling.model.meta.ManufacturerDetails;
import org.fourthline.cling.model.meta.ModelDetails;
import org.fourthline.cling.model.types.DLNACaps;
import org.fourthline.cling.model.types.DLNADoc;
import org.fourthline.cling.model.types.UDADeviceType;
import org.fourthline.cling.model.types.UDN;
import org.springframework.beans.factory.config.AutowireCapableBeanFactory;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;
/***********************************************************************************************************************
*
* @author Fabrizio Giudici
* @version $Id$
*
**********************************************************************************************************************/
@RequiredArgsConstructor @Slf4j
public class DefaultDevicePublisher implements DevicePublisher
{
@Inject
private UpnpService upnpService;
@Inject
private AutowireCapableBeanFactory beanFactory;
private final Class> serviceClass;
private LocalService service;
private DefaultServiceManager serviceManager;
private final AnnotationLocalServiceBinder serviceBinder = new AnnotationLocalServiceBinder();
@Getter @Setter
private boolean autoPublish = true;
@Getter @Setter
private UDN udn = UDN.uniqueSystemIdentifier("1");
@Getter @Setter
private String friendlyName = "bm II";
@Getter @Setter
private boolean useHostNameInFriendlyName = true;
@Getter @Setter
private UDADeviceType udaDeviceType = new UDADeviceType("MediaServer", 1);
@Getter @Setter
private ManufacturerDetails manufacturerDetails = new ManufacturerDetails("Tidalwave s.a.s.", "http://tidalwave.it");
@Getter @Setter
private ModelDetails modelDetails = new ModelDetails("blueMarine II",
"blueMarine II media server.",
"v?", // FIXME: use build tag
"http://bluemarine.tidalwave.it");
@Getter @Setter
private List dlnaDocs = Arrays.asList
(
new DLNADoc("DMS", DLNADoc.Version.V1_5),
new DLNADoc("M-DMS", DLNADoc.Version.V1_5)
);
@Getter @Setter
private List dlnaCaps = Arrays.asList
(
"av-upload", "image-upload", "audio-upload"
);
@Getter @Setter
private List icons = Collections.emptyList();
private LocalDevice device;
private ValidationException exception;
/*******************************************************************************************************************
*
* {@inheritDoc}
*
******************************************************************************************************************/
@Override
public LocalDevice getDevice()
throws ValidationException
{
if (exception != null)
{
throw exception;
}
assert device != null;
return device;
}
/*******************************************************************************************************************
*
* {@inheritDoc}
*
******************************************************************************************************************/
@Override
public void publishDevice()
throws ValidationException
{
try
{
service = serviceBinder.read(serviceClass);
serviceManager = new AutowireServiceManager<>(beanFactory, service, serviceClass);
service.setManager(serviceManager);
log.info("publishDevice() - {}", service);
device = new LocalDevice(new DeviceIdentity(udn, 1800),
udaDeviceType,
new DeviceDetails(computeFriendyName(),
manufacturerDetails,
modelDetails,
dlnaDocs.toArray(new DLNADoc[0]),
new DLNACaps(dlnaCaps.toArray(new String[0]))),
icons.toArray(new Icon[0]),
service);
upnpService.getRegistry().addDevice(device);
}
catch (ValidationException e)
{
this.exception = e;
throw e;
}
}
/*******************************************************************************************************************
*
*
******************************************************************************************************************/
@PostConstruct
private void initialize()
throws ValidationException
{
if (autoPublish)
{
publishDevice();
}
}
/*******************************************************************************************************************
*
*
******************************************************************************************************************/
@Nonnull
private String computeFriendyName()
{
final StringBuilder buffer = new StringBuilder(friendlyName);
if (useHostNameInFriendlyName)
{
try
{
buffer.append(" (").append(InetAddress.getLocalHost().getCanonicalHostName()).append(")");
}
catch (UnknownHostException e)
{
log.warn("Cannot get host name", e);
}
}
return buffer.toString();
}
}