aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2014-11-04 21:43:19 -0800
committerScott Jackson <daneren2005@gmail.com>2014-11-04 21:43:19 -0800
commit00cb1123339b2e62891872efa867bcbe54760da3 (patch)
tree16f4e271aaee0b43157591290c3e3877c06b982c
parent8dcda6d5dc93b1888ed9da8fcba2c50b8263e680 (diff)
downloaddsub-00cb1123339b2e62891872efa867bcbe54760da3.tar.gz
dsub-00cb1123339b2e62891872efa867bcbe54760da3.tar.bz2
dsub-00cb1123339b2e62891872efa867bcbe54760da3.zip
Change to stable since alpha seems to not even start
-rw-r--r--libs/cling-core-1.0.5.jarbin0 -> 551922 bytes
-rw-r--r--libs/cling-core-2.0-alpha3.jarbin683382 -> 0 bytes
-rw-r--r--libs/cling-support-1.0.5.jarbin0 -> 359154 bytes
-rw-r--r--libs/teleal-common-1.0.13.jarbin0 -> 231831 bytes
-rw-r--r--src/github/daneren2005/dsub/provider/DLNARouteProvider.java57
5 files changed, 41 insertions, 16 deletions
diff --git a/libs/cling-core-1.0.5.jar b/libs/cling-core-1.0.5.jar
new file mode 100644
index 00000000..8079f329
--- /dev/null
+++ b/libs/cling-core-1.0.5.jar
Binary files differ
diff --git a/libs/cling-core-2.0-alpha3.jar b/libs/cling-core-2.0-alpha3.jar
deleted file mode 100644
index 41bca580..00000000
--- a/libs/cling-core-2.0-alpha3.jar
+++ /dev/null
Binary files differ
diff --git a/libs/cling-support-1.0.5.jar b/libs/cling-support-1.0.5.jar
new file mode 100644
index 00000000..a0ca6363
--- /dev/null
+++ b/libs/cling-support-1.0.5.jar
Binary files differ
diff --git a/libs/teleal-common-1.0.13.jar b/libs/teleal-common-1.0.13.jar
new file mode 100644
index 00000000..2d6403ef
--- /dev/null
+++ b/libs/teleal-common-1.0.13.jar
Binary files differ
diff --git a/src/github/daneren2005/dsub/provider/DLNARouteProvider.java b/src/github/daneren2005/dsub/provider/DLNARouteProvider.java
index 11c29d28..d86ebf20 100644
--- a/src/github/daneren2005/dsub/provider/DLNARouteProvider.java
+++ b/src/github/daneren2005/dsub/provider/DLNARouteProvider.java
@@ -33,15 +33,21 @@ import android.support.v7.media.MediaRouteProvider;
import android.support.v7.media.MediaRouteProviderDescriptor;
import android.util.Log;
-import org.fourthline.cling.android.AndroidUpnpService;
-import org.fourthline.cling.android.AndroidUpnpServiceImpl;
-import org.fourthline.cling.model.meta.Device;
-import org.fourthline.cling.model.meta.LocalDevice;
-import org.fourthline.cling.model.meta.RemoteDevice;
-import org.fourthline.cling.registry.Registry;
-import org.fourthline.cling.registry.RegistryListener;
+import org.teleal.cling.android.AndroidUpnpService;
+import org.teleal.cling.android.AndroidUpnpServiceImpl;
+import org.teleal.cling.model.action.ActionInvocation;
+import org.teleal.cling.model.message.UpnpResponse;
+import org.teleal.cling.model.meta.Device;
+import org.teleal.cling.model.meta.LocalDevice;
+import org.teleal.cling.model.meta.RemoteDevice;
+import org.teleal.cling.model.meta.StateVariable;
+import org.teleal.cling.model.meta.StateVariableAllowedValueRange;
+import org.teleal.cling.registry.Registry;
+import org.teleal.cling.registry.RegistryListener;
+import org.teleal.cling.support.renderingcontrol.callback.GetVolume;
import java.util.HashMap;
+import java.util.List;
import java.util.Map;
import github.daneren2005.dsub.domain.DLNADevice;
@@ -128,7 +134,7 @@ public class DLNARouteProvider extends MediaRouteProvider {
dlnaService = null;
}
};
- context.bindService(new Intent(context, AndroidUpnpServiceImpl.class), dlnaServiceConnection,Context.BIND_AUTO_CREATE);
+ context.bindService(new Intent(context, AndroidUpnpServiceImpl.class), dlnaServiceConnection, Context.BIND_AUTO_CREATE);
}
private void broadcastDescriptors() {
@@ -172,16 +178,35 @@ public class DLNARouteProvider extends MediaRouteProvider {
return new DLNARouteController(downloadService);
}
- private void deviceAdded(Device device) {
+ private void deviceAdded(final Device device) {
+ final org.teleal.cling.model.meta.Service renderingControl = null;
+
if(device.getType().getType().equals("MediaRenderer") && device instanceof RemoteDevice) {
- String id = device.getIdentity().getUdn().toString();
- String name = device.getDetails().getFriendlyName();
- String displayName = device.getDisplayString();
- Log.d(TAG, displayName);
+ dlnaService.getControlPoint().execute(new GetVolume(renderingControl) {
+ @Override
+ public void received(ActionInvocation actionInvocation, int currentVolume) {
+ int maxVolume = 100;
+ StateVariable volume = renderingControl.getStateVariable("Volume");
+ if(volume != null) {
+ StateVariableAllowedValueRange volumeRange = volume.getTypeDetails().getAllowedValueRange();
+ maxVolume = (int) volumeRange.getMaximum();
+ }
- DLNADevice newDevice = new DLNADevice(id, name, displayName, 0, 10);
- devices.put(id, newDevice);
- broadcastDescriptors();
+ String id = device.getIdentity().getUdn().toString();
+ String name = device.getDetails().getFriendlyName();
+ String displayName = device.getDisplayString();
+
+ DLNADevice newDevice = new DLNADevice(id, name, displayName, currentVolume, maxVolume);
+ devices.put(id, newDevice);
+ broadcastDescriptors();
+ }
+
+ @Override
+ public void failure(ActionInvocation actionInvocation, UpnpResponse upnpResponse, String s) {
+ Log.w(TAG, "Failed to get default volume for DLNA route");
+ Log.w(TAG, "Reason: " + s);
+ }
+ });
}
}
private void deviceRemoved(Device device) {