org.fourthline.cling.binding.annotations.AnnotationLocalServiceBinder Java Examples
The following examples show how to use
org.fourthline.cling.binding.annotations.AnnotationLocalServiceBinder.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BeyondUpnpService.java From BeyondUPnP with Apache License 2.0 | 6 votes |
@Override public void onCreate() { super.onCreate(); //Create LocalDevice LocalService localService = new AnnotationLocalServiceBinder().read(BeyondContentDirectoryService.class); localService.setManager(new DefaultServiceManager<>( localService, BeyondContentDirectoryService.class)); String macAddress = Utils.getMACAddress(Utils.WLAN0); //Generate UUID by MAC address UDN udn = UDN.valueOf(UUID.nameUUIDFromBytes(macAddress.getBytes()).toString()); try { mLocalDevice = new LocalDevice(new DeviceIdentity(udn), new UDADeviceType("MediaServer"), new DeviceDetails("Local Media Server"), new LocalService[]{localService}); } catch (ValidationException e) { e.printStackTrace(); } upnpService.getRegistry().addDevice(mLocalDevice); //LocalBinder instead of binder binder = new LocalBinder(); }
Example #2
Source File: MediaServer.java From DroidDLNA with GNU General Public License v3.0 | 5 votes |
public MediaServer(Context context ) throws ValidationException { mContext = context; DeviceType type = new UDADeviceType(deviceType, version); DeviceDetails details = new DeviceDetails(SettingActivity.getDeviceName(context) + " (" + android.os.Build.MODEL + ")", new ManufacturerDetails( android.os.Build.MANUFACTURER), new ModelDetails(android.os.Build.MODEL, Utils.DMS_DESC, "v1")); LocalService service = new AnnotationLocalServiceBinder() .read(ContentDirectoryService.class); service.setManager(new DefaultServiceManager<ContentDirectoryService>(service, ContentDirectoryService.class)); udn = UpnpUtil.uniqueSystemIdentifier("msidms"); localDevice = new LocalDevice(new DeviceIdentity(udn), type, details, createDefaultDeviceIcon(), service); Log.v(LOGTAG, "MediaServer device created: "); Log.v(LOGTAG, "friendly name: " + details.getFriendlyName()); Log.v(LOGTAG, "manufacturer: " + details.getManufacturerDetails().getManufacturer()); Log.v(LOGTAG, "model: " + details.getModelDetails().getModelName()); // start http server try { new HttpServer(PORT); } catch (IOException ioe) { System.err.println("Couldn't start server:\n" + ioe); System.exit(-1); } Log.v(LOGTAG, "Started Http Server on port " + PORT); }
Example #3
Source File: UPnPService.java From airsonic-advanced with GNU General Public License v3.0 | 4 votes |
private LocalDevice createMediaServerDevice() throws Exception { String serverName = settingsService.getDlnaServerName(); DeviceIdentity identity = new DeviceIdentity(UDN.uniqueSystemIdentifier(serverName)); DeviceType type = new UDADeviceType("MediaServer", 1); // TODO: DLNACaps DeviceDetails details = new DeviceDetails(serverName, new ManufacturerDetails(serverName), new ModelDetails(serverName), new DLNADoc[]{new DLNADoc("DMS", DLNADoc.Version.V1_5)}, null); InputStream in = getClass().getResourceAsStream("logo-512.png"); Icon icon = new Icon("image/png", 512, 512, 32, "logo-512", in); FileUtil.closeQuietly(in); LocalService<CustomContentDirectory> contentDirectoryservice = new AnnotationLocalServiceBinder().read(CustomContentDirectory.class); contentDirectoryservice.setManager(new DefaultServiceManager<CustomContentDirectory>(contentDirectoryservice) { @Override protected CustomContentDirectory createServiceInstance() { return dispatchingContentDirectory; } }); final ProtocolInfos protocols = new ProtocolInfos(); for (DLNAProfiles dlnaProfile : DLNAProfiles.values()) { if (dlnaProfile == DLNAProfiles.NONE) { continue; } try { protocols.add(new DLNAProtocolInfo(dlnaProfile)); } catch (Exception e) { // Silently ignored. } } LocalService<ConnectionManagerService> connetionManagerService = new AnnotationLocalServiceBinder().read(ConnectionManagerService.class); connetionManagerService.setManager(new DefaultServiceManager<ConnectionManagerService>(connetionManagerService) { @Override protected ConnectionManagerService createServiceInstance() { return new ConnectionManagerService(protocols, null); } }); // For compatibility with Microsoft LocalService<MSMediaReceiverRegistrarService> receiverService = new AnnotationLocalServiceBinder().read(MSMediaReceiverRegistrarService.class); receiverService.setManager(new DefaultServiceManager<>(receiverService, MSMediaReceiverRegistrarService.class)); return new LocalDevice(identity, type, details, new Icon[]{icon}, new LocalService[]{contentDirectoryservice, connetionManagerService, receiverService}); }
Example #4
Source File: UPnPService.java From airsonic with GNU General Public License v3.0 | 4 votes |
private LocalDevice createMediaServerDevice() throws Exception { String serverName = settingsService.getDlnaServerName(); DeviceIdentity identity = new DeviceIdentity(UDN.uniqueSystemIdentifier(serverName)); DeviceType type = new UDADeviceType("MediaServer", 1); // TODO: DLNACaps DeviceDetails details = new DeviceDetails(serverName, new ManufacturerDetails(serverName), new ModelDetails(serverName), new DLNADoc[]{new DLNADoc("DMS", DLNADoc.Version.V1_5)}, null); InputStream in = getClass().getResourceAsStream("logo-512.png"); Icon icon = new Icon("image/png", 512, 512, 32, "logo-512", in); FileUtil.closeQuietly(in); LocalService<CustomContentDirectory> contentDirectoryservice = new AnnotationLocalServiceBinder().read(CustomContentDirectory.class); contentDirectoryservice.setManager(new DefaultServiceManager<CustomContentDirectory>(contentDirectoryservice) { @Override protected CustomContentDirectory createServiceInstance() { return dispatchingContentDirectory; } }); final ProtocolInfos protocols = new ProtocolInfos(); for (DLNAProfiles dlnaProfile : DLNAProfiles.values()) { if (dlnaProfile == DLNAProfiles.NONE) { continue; } try { protocols.add(new DLNAProtocolInfo(dlnaProfile)); } catch (Exception e) { // Silently ignored. } } LocalService<ConnectionManagerService> connetionManagerService = new AnnotationLocalServiceBinder().read(ConnectionManagerService.class); connetionManagerService.setManager(new DefaultServiceManager<ConnectionManagerService>(connetionManagerService) { @Override protected ConnectionManagerService createServiceInstance() { return new ConnectionManagerService(protocols, null); } }); // For compatibility with Microsoft LocalService<MSMediaReceiverRegistrarService> receiverService = new AnnotationLocalServiceBinder().read(MSMediaReceiverRegistrarService.class); receiverService.setManager(new DefaultServiceManager<>(receiverService, MSMediaReceiverRegistrarService.class)); return new LocalDevice(identity, type, details, new Icon[]{icon}, new LocalService[]{contentDirectoryservice, connetionManagerService, receiverService}); }
Example #5
Source File: MediaServer.java From HPlayer with Apache License 2.0 | 4 votes |
public MediaServer(final Context context) throws ValidationException, UnknownHostException { localAddress = getWIFIIpAddress(context); generateContentTask = new GenerateContentTask(); generateContentTask.execute(context); udn = new UDN(UUID.randomUUID()); DeviceType type = new UDADeviceType(deviceType, version); DeviceDetails details = new DeviceDetails(android.os.Build.MODEL, new ManufacturerDetails(android.os.Build.MANUFACTURER), new ModelDetails("HPlayer", "HPlayer MediaServer for Android", "v1")); LocalServiceBinder binder = new AnnotationLocalServiceBinder(); // 文件共享服务 LocalService<ContentDirectoryService> contentDirectoryService = binder.read(ContentDirectoryService.class); ServiceManager<ContentDirectoryService> contentDirectoryManger = new DefaultServiceManager<ContentDirectoryService>(contentDirectoryService) { @Override protected ContentDirectoryService createServiceInstance() throws Exception { return new ContentDirectoryService(); } }; contentDirectoryService.setManager(contentDirectoryManger); // 连接管理服务 LocalService<ConnectionManagerService> connectionManagerService = binder.read(ConnectionManagerService.class); connectionManagerService.setManager(new DefaultServiceManager<>( connectionManagerService, ConnectionManagerService.class)); // TODO 添加 AVTransportService // TODO 添加 AudioRenderingControl localDevice = new LocalDevice(new DeviceIdentity(udn), type, details, new LocalService[]{contentDirectoryService, connectionManagerService}); // 启动服务器 try { nanoHttpServer = new NanoHttpServer(port); nanoHttpServer.start(); Log.d(TAG, "Started Http Server on port " + port); } catch (IOException e) { Log.d(TAG, "Started Http Server on error:" + e.getMessage()); Toast.makeText(context, "启动服务器失败!", Toast.LENGTH_SHORT).show(); e.printStackTrace(); } }
Example #6
Source File: UPnPService.java From subsonic with GNU General Public License v3.0 | 4 votes |
private LocalDevice createMediaServerDevice() throws Exception { String serverName = settingsService.getDlnaServerName(); DeviceIdentity identity = new DeviceIdentity(UDN.uniqueSystemIdentifier(serverName)); DeviceType type = new UDADeviceType("MediaServer", 1); // TODO: DLNACaps Version version = versionService.getLocalVersion(); String versionString = version == null ? null : version.toString(); String licenseEmail = settingsService.getLicenseEmail(); String licenseString = licenseEmail == null ? "Unlicensed" : ("Licensed to " + licenseEmail); DeviceDetails details = new DeviceDetails(serverName, new ManufacturerDetails(serverName), new ModelDetails(serverName, licenseString, versionString), new DLNADoc[]{new DLNADoc("DMS", DLNADoc.Version.V1_5)}, null); Icon icon = new Icon("image/png", 512, 512, 32, getClass().getResource("subsonic-512.png")); LocalService<FolderBasedContentDirectory> contentDirectoryservice = new AnnotationLocalServiceBinder().read(FolderBasedContentDirectory.class); contentDirectoryservice.setManager(new DefaultServiceManager<FolderBasedContentDirectory>(contentDirectoryservice) { @Override protected FolderBasedContentDirectory createServiceInstance() throws Exception { return folderBasedContentDirectory; } }); final ProtocolInfos protocols = new ProtocolInfos(); for (DLNAProfiles dlnaProfile : DLNAProfiles.values()) { if (dlnaProfile == DLNAProfiles.NONE) { continue; } try { protocols.add(new DLNAProtocolInfo(dlnaProfile)); } catch (Exception e) { // Silently ignored. } } LocalService<ConnectionManagerService> connetionManagerService = new AnnotationLocalServiceBinder().read(ConnectionManagerService.class); connetionManagerService.setManager(new DefaultServiceManager<ConnectionManagerService>(connetionManagerService) { @Override protected ConnectionManagerService createServiceInstance() throws Exception { return new ConnectionManagerService(protocols, null); } }); // For compatibility with Microsoft LocalService<MSMediaReceiverRegistrarService> receiverService = new AnnotationLocalServiceBinder().read(MSMediaReceiverRegistrarService.class); receiverService.setManager(new DefaultServiceManager<MSMediaReceiverRegistrarService>(receiverService, MSMediaReceiverRegistrarService.class)); return new LocalDevice(identity, type, details, new Icon[]{icon}, new LocalService[]{contentDirectoryservice, connetionManagerService, receiverService}); }