giraffplus:android-middleware
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
giraffplus:android-middleware [2013-10-22 11:57] – [One-time setup] davide | giraffplus:android-middleware [2014-05-30 16:10] (current) – [GiraffPlus packages] davide | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== GiraffPlus on Android ====== | ====== GiraffPlus on Android ====== | ||
Make sure you’ve obtained the archive interfaces.middleware.zip (it is in the Android\giraff.android folder from the svn checkout). This file contains the AIDL interface needed to communicate with the middleware. In order to setup your application you need to extract this file to the src/ directory of the project. | Make sure you’ve obtained the archive interfaces.middleware.zip (it is in the Android\giraff.android folder from the svn checkout). This file contains the AIDL interface needed to communicate with the middleware. In order to setup your application you need to extract this file to the src/ directory of the project. | ||
+ | |||
+ | |||
+ | ===== GiraffPlus packages ==== | ||
+ | |||
+ | Middleware: | ||
+ | * https:// | ||
+ | * https:// | ||
+ | | ||
+ | Previous versions: | ||
+ | * https:// | ||
+ | * https:// | ||
===== One-time setup ===== | ===== One-time setup ===== | ||
Applications that use this infrastructure require that the middleware application (Android/ | Applications that use this infrastructure require that the middleware application (Android/ | ||
Line 192: | Line 203: | ||
</ | </ | ||
- | The SensorsDescriptors constructor creates a descriptor for the accelerometer sensor present on the device using the **id** taken directly from the database | + | We called |
<code java> | <code java> | ||
- | private final static int SENSORS_DELAY = SensorManager.SENSOR_DELAY_NORMAL; | + | public |
- | private final static SparseArray< | + | |
- | private SparseArray< | + | |
- | private SensorManager sensorManager; | + | |
- | static { | + | |
- | // desirable sensors | + | |
- | SENSORS.append(Sensor.TYPE_ACCELEROMETER, | + | } catch (RemoteException e) { |
- | / | + | Log.e(TAG, "cannot announce"); |
- | SENSORS.append(Sensor.TYPE_GRAVITY, | + | } |
- | SENSORS.append(Sensor.TYPE_GYROSCOPE, | + | |
- | SENSORS.append(Sensor.TYPE_LIGHT, | + | |
- | SENSORS.append(Sensor.TYPE_LINEAR_ACCELERATION, | + | |
- | SENSORS.append(Sensor.TYPE_MAGNETIC_FIELD, | + | |
- | SENSORS.append(Sensor.TYPE_PRESSURE, | + | |
- | SENSORS.append(Sensor.TYPE_PROXIMITY, | + | |
- | SENSORS.append(Sensor.TYPE_RELATIVE_HUMIDITY, | + | |
- | SENSORS.append(Sensor.TYPE_ROTATION_VECTOR, | + | |
- | } | + | |
- | + | ||
- | public | + | |
- | | + | |
- | Bundle serviceDescriptor; | + | |
- | + | ||
- | sensorManager = (SensorManager) context.getSystemService(Context.SENSOR_SERVICE); | + | |
- | + | ||
- | String id = " | + | |
- | + | ||
- | | + | |
- | //for (int i = 0; i < SENSORS.size(); | + | |
- | | + | |
- | String sensorName = SENSORS.get(sensorType); | + | |
- | + | ||
- | // probe sensor and add to the list | + | |
- | sensor = sensorManager.getDefaultSensor(sensorType); | + | |
- | if (sensor != null) { | + | |
- | | + | |
- | serviceDescriptor.putString(" | + | |
- | serviceDescriptor.putString(" | + | |
- | serviceDescriptor.putString(" | + | |
- | serviceDescriptor.putString(" | + | |
- | serviceDescriptor.putString(" | + | |
- | serviceDescriptor.putString(" | + | |
- | Bundle[] ba = new Bundle[] {new Bundle (), new Bundle (), new Bundle ()}; | + | |
- | ba[0].putString (" | + | |
- | ba[0].putString (" | + | |
- | + | ||
- | ba[1].putString (" | + | |
- | ba[1].putString (" | + | |
- | + | ||
- | ba[2].putString (" | + | |
- | ba[2].putString (" | + | |
- | + | ||
- | serviceDescriptor.putParcelableArray (" | + | |
- | + | ||
- | serviceDescriptor.putParcelableArray (" | + | |
- | + | ||
- | serviceDescriptors.put(sensorType, | + | |
- | } | + | |
- | | + | |
} | } | ||
</ | </ | ||
- | We called the method sensorsDescriptors.initialize(middleware) in the SensorsService class when we implemented | + | The createSensorDescriptors() creates a descriptor for the accelerometer sensor present on the device using the **id** taken directly from the database (for sake of consistency with the GiraffPlus ecosystem we choose |
<code java> | <code java> | ||
- | public | + | private |
+ | Sensor sensor; | ||
try { | try { | ||
- | announce(middleware); | + | // Gets all the local sensors in a JSON array |
- | register(); | + | JSONArray localSensors = new JSONArray |
- | } catch (RemoteException e) { | + | |
- | Log.e(TAG, | + | // for each desirable sensor |
+ | for (int i = 0; i < sensors.size(); i++) | ||
+ | { | ||
+ | int sensorCode = sensors.keyAt (i); | ||
+ | String sensorType = sensors.get (sensorCode); | ||
+ | |||
+ | // probe sensor and add to the list | ||
+ | sensor = sensorManager.getDefaultSensor (sensorCode); | ||
+ | if (sensor != null) { | ||
+ | JSONObject sensDesc = null; | ||
+ | |||
+ | Log.d(TAG, " | ||
+ | |||
+ | for (int j = 0; j < localSensors.length (); j++) | ||
+ | if (((String)((JSONObject) localSensors.get (j)).get (" | ||
+ | sensDesc = (JSONObject) localSensors.get (j); | ||
+ | break; | ||
+ | } | ||
+ | |||
+ | if (sensDesc != null) { // The sensor descriptor exists in the database | ||
+ | Bundle serviceDescriptor = new Bundle (); | ||
+ | serviceDescriptor.putString (" | ||
+ | serviceDescriptor.putString (" | ||
+ | serviceDescriptor.putString (" | ||
+ | serviceDescriptor.putString (" | ||
+ | serviceDescriptor.putString (" | ||
+ | serviceDescriptor.putString (" | ||
+ | |||
+ | JSONArray params = sensDesc.getJSONArray (" | ||
+ | Bundle[] messageFormat = new Bundle[params.length ()]; | ||
+ | for (int j = 0; j < params.length (); j++) { | ||
+ | messageFormat[j] = new Bundle (); | ||
+ | messageFormat[j].putString (" | ||
+ | messageFormat[j].putString (" | ||
+ | } | ||
+ | |||
+ | serviceDescriptor.putParcelableArray (" | ||
+ | serviceDescriptor.putParcelableArray (" | ||
+ | serviceDescriptors.put(sensorCode, | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | | ||
+ | Log.e (TAG, | ||
} | } | ||
} | } | ||
Line 314: | Line 321: | ||
payload.put(" | payload.put(" | ||
payload.put(" | payload.put(" | ||
- | JSONArray | + | JSONObject |
- | JSONObject array_value | + | values.put(" |
- | array_value.put(" | + | values.put(" |
- | array_value.put(" | + | values.put(" |
- | array_value.put(" | + | |
- | values.put(array_value); | + | |
payload.put(" | payload.put(" | ||
} catch (JSONException e) { | } catch (JSONException e) { |
giraffplus/android-middleware.1382443033.txt.gz · Last modified: 2013-10-22 11:57 by davide