aidl_test_client_service_exceptions.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright (C) 2015 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include "aidl_test_client_service_exceptions.h"
  17. #include <iostream>
  18. #include "binder/Status.h"
  19. using android::binder::Status;
  20. using std::cout;
  21. using std::endl;
  22. namespace android {
  23. namespace aidl {
  24. namespace tests {
  25. namespace client {
  26. bool ConfirmServiceSpecificExceptions(const sp<ITestService>& s) {
  27. cout << "Confirming application exceptions work" << endl;
  28. for (int32_t i = -1; i < 2; ++i) {
  29. Status status = s->ThrowServiceException(i);
  30. if (status.exceptionCode() != Status::EX_SERVICE_SPECIFIC ||
  31. status.serviceSpecificErrorCode() != i) {
  32. return false;
  33. }
  34. }
  35. return true;
  36. }
  37. } // namespace client
  38. } // namespace tests
  39. } // namespace aidl
  40. } // namespace android