diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/Android.bp | 1 | ||||
| -rw-r--r-- | tests/bar/Android.mk | 19 | ||||
| -rw-r--r-- | tests/baz/Android.mk | 19 | ||||
| -rw-r--r-- | tests/expression/Android.mk | 19 | ||||
| -rw-r--r-- | tests/extension/light/2.0/Android.bp | 62 | ||||
| -rw-r--r-- | tests/extension/light/2.0/Android.mk | 196 | ||||
| -rw-r--r-- | tests/extension/light/2.0/IExtLight.hal | 35 | ||||
| -rw-r--r-- | tests/extension/light/2.0/default/Android.mk | 19 | ||||
| -rw-r--r-- | tests/extension/light/2.0/default/Light.cpp | 71 | ||||
| -rw-r--r-- | tests/extension/light/2.0/default/Light.h | 61 | ||||
| -rw-r--r-- | tests/extension/light/2.0/default/android.hardware.tests.extension.light@2.0-service.rc | 4 | ||||
| -rw-r--r-- | tests/extension/light/2.0/default/service.cpp | 35 | ||||
| -rw-r--r-- | tests/extension/light/2.0/types.hal | 68 | ||||
| -rw-r--r-- | tests/foo/Android.mk | 19 | ||||
| -rw-r--r-- | tests/inheritance/Android.mk | 19 | ||||
| -rw-r--r-- | tests/libhwbinder/Android.mk | 19 | ||||
| -rw-r--r-- | tests/msgq/Android.mk | 19 | ||||
| -rw-r--r-- | tests/pointer/Android.mk | 19 |
18 files changed, 704 insertions, 0 deletions
diff --git a/tests/Android.bp b/tests/Android.bp index 337e4f4b4..040a6fb7a 100644 --- a/tests/Android.bp +++ b/tests/Android.bp @@ -4,6 +4,7 @@ subdirs = [ "bar/1.0/default", "baz/1.0", "expression/1.0", + "extension/light/2.0", "foo/1.0", "foo/1.0/default", "foo/1.0/default/lib", diff --git a/tests/bar/Android.mk b/tests/bar/Android.mk new file mode 100644 index 000000000..f9e32763f --- /dev/null +++ b/tests/bar/Android.mk @@ -0,0 +1,19 @@ +# +# Copyright (C) 2016 The Android Open Source Project +# +# 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. +# + +LOCAL_PATH := $(call my-dir) + +include $(call all-subdir-makefiles) diff --git a/tests/baz/Android.mk b/tests/baz/Android.mk new file mode 100644 index 000000000..f9e32763f --- /dev/null +++ b/tests/baz/Android.mk @@ -0,0 +1,19 @@ +# +# Copyright (C) 2016 The Android Open Source Project +# +# 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. +# + +LOCAL_PATH := $(call my-dir) + +include $(call all-subdir-makefiles) diff --git a/tests/expression/Android.mk b/tests/expression/Android.mk new file mode 100644 index 000000000..f9e32763f --- /dev/null +++ b/tests/expression/Android.mk @@ -0,0 +1,19 @@ +# +# Copyright (C) 2016 The Android Open Source Project +# +# 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. +# + +LOCAL_PATH := $(call my-dir) + +include $(call all-subdir-makefiles) diff --git a/tests/extension/light/2.0/Android.bp b/tests/extension/light/2.0/Android.bp new file mode 100644 index 000000000..5203da610 --- /dev/null +++ b/tests/extension/light/2.0/Android.bp @@ -0,0 +1,62 @@ +// This file is autogenerated by hidl-gen. Do not edit manually. + +filegroup { + name: "android.hardware.tests.extension.light@2.0_hal", + srcs: [ + "types.hal", + "IExtLight.hal", + ], +} + +genrule { + name: "android.hardware.tests.extension.light@2.0_genc++", + tools: ["hidl-gen"], + cmd: "$(location hidl-gen) -o $(genDir) -Lc++ -randroid.hardware:hardware/interfaces -randroid.hidl:system/libhidl/transport android.hardware.tests.extension.light@2.0", + srcs: [ + ":android.hardware.tests.extension.light@2.0_hal", + ], + out: [ + "android/hardware/tests/extension/light/2.0/types.cpp", + "android/hardware/tests/extension/light/2.0/ExtLightAll.cpp", + ], +} + +genrule { + name: "android.hardware.tests.extension.light@2.0_genc++_headers", + tools: ["hidl-gen"], + cmd: "$(location hidl-gen) -o $(genDir) -Lc++ -randroid.hardware:hardware/interfaces -randroid.hidl:system/libhidl/transport android.hardware.tests.extension.light@2.0", + srcs: [ + ":android.hardware.tests.extension.light@2.0_hal", + ], + out: [ + "android/hardware/tests/extension/light/2.0/types.h", + "android/hardware/tests/extension/light/2.0/IExtLight.h", + "android/hardware/tests/extension/light/2.0/IHwExtLight.h", + "android/hardware/tests/extension/light/2.0/BnHwExtLight.h", + "android/hardware/tests/extension/light/2.0/BpHwExtLight.h", + "android/hardware/tests/extension/light/2.0/BsExtLight.h", + ], +} + +cc_library_shared { + name: "android.hardware.tests.extension.light@2.0", + generated_sources: ["android.hardware.tests.extension.light@2.0_genc++"], + generated_headers: ["android.hardware.tests.extension.light@2.0_genc++_headers"], + export_generated_headers: ["android.hardware.tests.extension.light@2.0_genc++_headers"], + shared_libs: [ + "libhidlbase", + "libhidltransport", + "libhwbinder", + "liblog", + "libutils", + "libcutils", + "android.hardware.light@2.0", + ], + export_shared_lib_headers: [ + "libhidlbase", + "libhidltransport", + "libhwbinder", + "libutils", + "android.hardware.light@2.0", + ], +} diff --git a/tests/extension/light/2.0/Android.mk b/tests/extension/light/2.0/Android.mk new file mode 100644 index 000000000..16424a337 --- /dev/null +++ b/tests/extension/light/2.0/Android.mk @@ -0,0 +1,196 @@ +# This file is autogenerated by hidl-gen. Do not edit manually. + +LOCAL_PATH := $(call my-dir) + +################################################################################ + +include $(CLEAR_VARS) +LOCAL_MODULE := android.hardware.tests.extension.light@2.0-java +LOCAL_MODULE_CLASS := JAVA_LIBRARIES + +intermediates := $(call local-generated-sources-dir, COMMON) + +HIDL := $(HOST_OUT_EXECUTABLES)/hidl-gen$(HOST_EXECUTABLE_SUFFIX) + +LOCAL_JAVA_LIBRARIES := \ + android.hardware.light@2.0-java \ + android.hidl.base@1.0-java \ + + +# +# Build types.hal (Default) +# +GEN := $(intermediates)/android/hardware/tests/extension/light/V2_0/Default.java +$(GEN): $(HIDL) +$(GEN): PRIVATE_HIDL := $(HIDL) +$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/types.hal +$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates) +$(GEN): PRIVATE_CUSTOM_TOOL = \ + $(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \ + -Ljava \ + -randroid.hardware:hardware/interfaces \ + -randroid.hidl:system/libhidl/transport \ + android.hardware.tests.extension.light@2.0::types.Default + +$(GEN): $(LOCAL_PATH)/types.hal + $(transform-generated-source) +LOCAL_GENERATED_SOURCES += $(GEN) + +# +# Build types.hal (ExtBrightness) +# +GEN := $(intermediates)/android/hardware/tests/extension/light/V2_0/ExtBrightness.java +$(GEN): $(HIDL) +$(GEN): PRIVATE_HIDL := $(HIDL) +$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/types.hal +$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates) +$(GEN): PRIVATE_CUSTOM_TOOL = \ + $(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \ + -Ljava \ + -randroid.hardware:hardware/interfaces \ + -randroid.hidl:system/libhidl/transport \ + android.hardware.tests.extension.light@2.0::types.ExtBrightness + +$(GEN): $(LOCAL_PATH)/types.hal + $(transform-generated-source) +LOCAL_GENERATED_SOURCES += $(GEN) + +# +# Build types.hal (ExtLightState) +# +GEN := $(intermediates)/android/hardware/tests/extension/light/V2_0/ExtLightState.java +$(GEN): $(HIDL) +$(GEN): PRIVATE_HIDL := $(HIDL) +$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/types.hal +$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates) +$(GEN): PRIVATE_CUSTOM_TOOL = \ + $(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \ + -Ljava \ + -randroid.hardware:hardware/interfaces \ + -randroid.hidl:system/libhidl/transport \ + android.hardware.tests.extension.light@2.0::types.ExtLightState + +$(GEN): $(LOCAL_PATH)/types.hal + $(transform-generated-source) +LOCAL_GENERATED_SOURCES += $(GEN) + +# +# Build IExtLight.hal +# +GEN := $(intermediates)/android/hardware/tests/extension/light/V2_0/IExtLight.java +$(GEN): $(HIDL) +$(GEN): PRIVATE_HIDL := $(HIDL) +$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/IExtLight.hal +$(GEN): PRIVATE_DEPS += $(LOCAL_PATH)/types.hal +$(GEN): $(LOCAL_PATH)/types.hal +$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates) +$(GEN): PRIVATE_CUSTOM_TOOL = \ + $(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \ + -Ljava \ + -randroid.hardware:hardware/interfaces \ + -randroid.hidl:system/libhidl/transport \ + android.hardware.tests.extension.light@2.0::IExtLight + +$(GEN): $(LOCAL_PATH)/IExtLight.hal + $(transform-generated-source) +LOCAL_GENERATED_SOURCES += $(GEN) +include $(BUILD_JAVA_LIBRARY) + + +################################################################################ + +include $(CLEAR_VARS) +LOCAL_MODULE := android.hardware.tests.extension.light@2.0-java-static +LOCAL_MODULE_CLASS := JAVA_LIBRARIES + +intermediates := $(call local-generated-sources-dir, COMMON) + +HIDL := $(HOST_OUT_EXECUTABLES)/hidl-gen$(HOST_EXECUTABLE_SUFFIX) + +LOCAL_STATIC_JAVA_LIBRARIES := \ + android.hardware.light@2.0-java-static \ + android.hidl.base@1.0-java-static \ + + +# +# Build types.hal (Default) +# +GEN := $(intermediates)/android/hardware/tests/extension/light/V2_0/Default.java +$(GEN): $(HIDL) +$(GEN): PRIVATE_HIDL := $(HIDL) +$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/types.hal +$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates) +$(GEN): PRIVATE_CUSTOM_TOOL = \ + $(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \ + -Ljava \ + -randroid.hardware:hardware/interfaces \ + -randroid.hidl:system/libhidl/transport \ + android.hardware.tests.extension.light@2.0::types.Default + +$(GEN): $(LOCAL_PATH)/types.hal + $(transform-generated-source) +LOCAL_GENERATED_SOURCES += $(GEN) + +# +# Build types.hal (ExtBrightness) +# +GEN := $(intermediates)/android/hardware/tests/extension/light/V2_0/ExtBrightness.java +$(GEN): $(HIDL) +$(GEN): PRIVATE_HIDL := $(HIDL) +$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/types.hal +$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates) +$(GEN): PRIVATE_CUSTOM_TOOL = \ + $(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \ + -Ljava \ + -randroid.hardware:hardware/interfaces \ + -randroid.hidl:system/libhidl/transport \ + android.hardware.tests.extension.light@2.0::types.ExtBrightness + +$(GEN): $(LOCAL_PATH)/types.hal + $(transform-generated-source) +LOCAL_GENERATED_SOURCES += $(GEN) + +# +# Build types.hal (ExtLightState) +# +GEN := $(intermediates)/android/hardware/tests/extension/light/V2_0/ExtLightState.java +$(GEN): $(HIDL) +$(GEN): PRIVATE_HIDL := $(HIDL) +$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/types.hal +$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates) +$(GEN): PRIVATE_CUSTOM_TOOL = \ + $(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \ + -Ljava \ + -randroid.hardware:hardware/interfaces \ + -randroid.hidl:system/libhidl/transport \ + android.hardware.tests.extension.light@2.0::types.ExtLightState + +$(GEN): $(LOCAL_PATH)/types.hal + $(transform-generated-source) +LOCAL_GENERATED_SOURCES += $(GEN) + +# +# Build IExtLight.hal +# +GEN := $(intermediates)/android/hardware/tests/extension/light/V2_0/IExtLight.java +$(GEN): $(HIDL) +$(GEN): PRIVATE_HIDL := $(HIDL) +$(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/IExtLight.hal +$(GEN): PRIVATE_DEPS += $(LOCAL_PATH)/types.hal +$(GEN): $(LOCAL_PATH)/types.hal +$(GEN): PRIVATE_OUTPUT_DIR := $(intermediates) +$(GEN): PRIVATE_CUSTOM_TOOL = \ + $(PRIVATE_HIDL) -o $(PRIVATE_OUTPUT_DIR) \ + -Ljava \ + -randroid.hardware:hardware/interfaces \ + -randroid.hidl:system/libhidl/transport \ + android.hardware.tests.extension.light@2.0::IExtLight + +$(GEN): $(LOCAL_PATH)/IExtLight.hal + $(transform-generated-source) +LOCAL_GENERATED_SOURCES += $(GEN) +include $(BUILD_STATIC_JAVA_LIBRARY) + + + +include $(call all-makefiles-under,$(LOCAL_PATH)) diff --git a/tests/extension/light/2.0/IExtLight.hal b/tests/extension/light/2.0/IExtLight.hal new file mode 100644 index 000000000..1515b869c --- /dev/null +++ b/tests/extension/light/2.0/IExtLight.hal @@ -0,0 +1,35 @@ +/* + * Copyright (C) 2016 The Android Open Source Project + * + * 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. + */ + +// Would normally be 'vendor.example.extension.light@2.0' however, this is +// a google extension example. A vendor extension should also live in the +// vendor partition. +package android.hardware.tests.extension.light@2.0; + +import android.hardware.light@2.0; + +interface IExtLight extends android.hardware.light@2.0::ILight { + + /** + * Set the provided lights to the provided values. + * + * @param type logical light to set + * @param state describes what the light should look like. + * @return status result of applying state transformation. + */ + setExtLight(Type type, ExtLightState state) generates (Status status); + +}; diff --git a/tests/extension/light/2.0/default/Android.mk b/tests/extension/light/2.0/default/Android.mk new file mode 100644 index 000000000..b30d11c84 --- /dev/null +++ b/tests/extension/light/2.0/default/Android.mk @@ -0,0 +1,19 @@ +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) +LOCAL_MODULE := android.hardware.tests.extension.light@2.0-service +LOCAL_INIT_RC := android.hardware.tests.extension.light@2.0-service.rc +LOCAL_PROPRIETARY_MODULE := true +LOCAL_MODULE_RELATIVE_PATH := hw +LOCAL_SRC_FILES := \ + Light.cpp \ + service.cpp + +LOCAL_SHARED_LIBRARIES := \ + libhidlbase \ + libhidltransport \ + libutils \ + android.hardware.light@2.0 \ + android.hardware.tests.extension.light@2.0 \ + +include $(BUILD_EXECUTABLE) diff --git a/tests/extension/light/2.0/default/Light.cpp b/tests/extension/light/2.0/default/Light.cpp new file mode 100644 index 000000000..d941e73e0 --- /dev/null +++ b/tests/extension/light/2.0/default/Light.cpp @@ -0,0 +1,71 @@ +/* + * Copyright (C) 2016 The Android Open Source Project + * + * 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. + */ +#include "Light.h" + +namespace android { +namespace hardware { +namespace tests { +namespace extension { +namespace light { +namespace V2_0 { +namespace implementation { + +// Methods from ::android::hardware::light::V2_0::ILight follow. +Return<Status> Light::setLight(Type type, const LightState& state) { + // Forward types for new methods. + + ExtLightState extState { + .state = state, + .interpolationOmega = + static_cast<int32_t>(Default::INTERPOLATION_OMEGA), + .brightness = // ExtBrightness inherits from Brightness + static_cast<ExtBrightness>(state.brightnessMode) + }; + + return setExtLight(type, extState); +} + +Return<void> Light::getSupportedTypes(getSupportedTypes_cb _hidl_cb) { + // implement unchanged method as you would always + hidl_vec<Type> vec{}; + + // ****************************************************** + // Note: awesome proprietary hardware implementation here + // ****************************************************** + + _hidl_cb(vec); + + return Void(); +} + +// Methods from ::android::hardware::example::extension::light::V2_0::ILight follow. +Return<Status> Light::setExtLight(Type /* type */, + const ExtLightState& /* state */) { + + // ****************************************************** + // Note: awesome proprietary hardware implementation here + // ****************************************************** + + return Status::SUCCESS; +} + +} // namespace implementation +} // namespace V2_0 +} // namespace light +} // namespace extension +} // namespace tests +} // namespace hardware +} // namespace android diff --git a/tests/extension/light/2.0/default/Light.h b/tests/extension/light/2.0/default/Light.h new file mode 100644 index 000000000..dc2c5dd53 --- /dev/null +++ b/tests/extension/light/2.0/default/Light.h @@ -0,0 +1,61 @@ +/* + * Copyright (C) 2016 The Android Open Source Project + * + * 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. + */ +#ifndef ANDROID_HARDWARE_TESTS_EXTENSION_LIGHT_V2_0_LIGHT_H +#define ANDROID_HARDWARE_TESTS_EXTENSION_LIGHT_V2_0_LIGHT_H + +#include <android/hardware/tests/extension/light/2.0/IExtLight.h> +#include <hidl/Status.h> + +#include <hidl/MQDescriptor.h> +namespace android { +namespace hardware { +namespace tests { +namespace extension { +namespace light { +namespace V2_0 { +namespace implementation { + +using ::android::hardware::tests::extension::light::V2_0::ExtLightState; +using ::android::hardware::tests::extension::light::V2_0::IExtLight; +using ::android::hardware::light::V2_0::ILight; +using ::android::hardware::light::V2_0::LightState; +using ::android::hardware::light::V2_0::Status; +using ::android::hardware::light::V2_0::Type; +using ::android::hardware::Return; +using ::android::hardware::Void; +using ::android::hardware::hidl_vec; +using ::android::hardware::hidl_string; +using ::android::sp; + +struct Light : public IExtLight { + // Methods from ::android::hardware::light::V2_0::ILight follow. + Return<Status> setLight(Type type, const LightState& state) override; + Return<void> getSupportedTypes(getSupportedTypes_cb _hidl_cb) override; + + // Methods from ::android::hardware::example::extension::light::V2_0::ILight follow. + Return<Status> setExtLight(Type type, const ExtLightState& state) override; + +}; + +} // namespace implementation +} // namespace V2_0 +} // namespace light +} // namespace extension +} // namespace tests +} // namespace hardware +} // namespace android + +#endif // ANDROID_HARDWARE_TESTS_EXTENSION_LIGHT_V2_0_LIGHT_H diff --git a/tests/extension/light/2.0/default/android.hardware.tests.extension.light@2.0-service.rc b/tests/extension/light/2.0/default/android.hardware.tests.extension.light@2.0-service.rc new file mode 100644 index 000000000..8f379ee4f --- /dev/null +++ b/tests/extension/light/2.0/default/android.hardware.tests.extension.light@2.0-service.rc @@ -0,0 +1,4 @@ +service light-ext-2-0 /vendor/bin/hw/android.hardware.tests.extension.light@2.0-service + class hal + user system + group system
\ No newline at end of file diff --git a/tests/extension/light/2.0/default/service.cpp b/tests/extension/light/2.0/default/service.cpp new file mode 100644 index 000000000..4d839b226 --- /dev/null +++ b/tests/extension/light/2.0/default/service.cpp @@ -0,0 +1,35 @@ +/* + * Copyright (C) 2016 The Android Open Source Project + * + * 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. + */ +#define LOG_TAG "android.hardware.tests.extension.light@2.0-service" + +#include <android/log.h> +#include <hidl/HidlTransportSupport.h> + +#include "Light.h" + +using android::hardware::configureRpcThreadpool; +using android::hardware::joinRpcThreadpool; +using android::sp; + +using android::hardware::light::V2_0::ILight; +using android::hardware::tests::extension::light::V2_0::implementation::Light; + +int main() { + android::sp<ILight> service = new Light(); + configureRpcThreadpool(1, true /*callerWillJoin*/); + service->registerAsService(); + joinRpcThreadpool(); +} diff --git a/tests/extension/light/2.0/types.hal b/tests/extension/light/2.0/types.hal new file mode 100644 index 000000000..1b094796d --- /dev/null +++ b/tests/extension/light/2.0/types.hal @@ -0,0 +1,68 @@ +/* + * Copyright (C) 2016 The Android Open Source Project + * + * 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 android.hardware.tests.extension.light@2.0; + +import android.hardware.light@2.0; + +enum Default : int32_t { + // for calls to setLight from the framework that don't know about this + // extension or its requirements + INTERPOLATION_OMEGA = 2 +}; + +/** + * One possibility is renaming an old type. Another possibility is taking + * advantages of the different namespaces. + */ +enum ExtBrightness : Brightness { + /** + * Say we're really going to use the phone as a heater. + */ + EXTREME, + + /** + * Sometimes at night, we need it to be day. + */ + THE_SUN, +}; + +/** + * Structs can't inherit eachother in hidl. Use composition instead. In this + * case, I won't use inheritence because I want to replace Brightness with + * ExtBrightness. + */ +struct ExtLightState { + LightState state; + + /** + * This is the secret sauce that will really make this extension shine. + * No other person has such a cool feature in their hals. Don't forget + * to describe all details of parameters. An interface is a contract, and + * specifying this contract to the letter is what allows that contracted + * to be maintained. :) + * + * So, this parameter represents the speed at which brightness is changed + * to the new value in the three dimensional space with coordinates RGB + * from the red, blue, and green. + */ + int32_t interpolationOmega; + + /** + * Include new values. + */ + ExtBrightness brightness; +}; diff --git a/tests/foo/Android.mk b/tests/foo/Android.mk new file mode 100644 index 000000000..f9e32763f --- /dev/null +++ b/tests/foo/Android.mk @@ -0,0 +1,19 @@ +# +# Copyright (C) 2016 The Android Open Source Project +# +# 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. +# + +LOCAL_PATH := $(call my-dir) + +include $(call all-subdir-makefiles) diff --git a/tests/inheritance/Android.mk b/tests/inheritance/Android.mk new file mode 100644 index 000000000..f9e32763f --- /dev/null +++ b/tests/inheritance/Android.mk @@ -0,0 +1,19 @@ +# +# Copyright (C) 2016 The Android Open Source Project +# +# 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. +# + +LOCAL_PATH := $(call my-dir) + +include $(call all-subdir-makefiles) diff --git a/tests/libhwbinder/Android.mk b/tests/libhwbinder/Android.mk new file mode 100644 index 000000000..f9e32763f --- /dev/null +++ b/tests/libhwbinder/Android.mk @@ -0,0 +1,19 @@ +# +# Copyright (C) 2016 The Android Open Source Project +# +# 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. +# + +LOCAL_PATH := $(call my-dir) + +include $(call all-subdir-makefiles) diff --git a/tests/msgq/Android.mk b/tests/msgq/Android.mk new file mode 100644 index 000000000..f9e32763f --- /dev/null +++ b/tests/msgq/Android.mk @@ -0,0 +1,19 @@ +# +# Copyright (C) 2016 The Android Open Source Project +# +# 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. +# + +LOCAL_PATH := $(call my-dir) + +include $(call all-subdir-makefiles) diff --git a/tests/pointer/Android.mk b/tests/pointer/Android.mk new file mode 100644 index 000000000..f9e32763f --- /dev/null +++ b/tests/pointer/Android.mk @@ -0,0 +1,19 @@ +# +# Copyright (C) 2016 The Android Open Source Project +# +# 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. +# + +LOCAL_PATH := $(call my-dir) + +include $(call all-subdir-makefiles) |
