• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2017 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 
17 #ifndef _GTS_NANOAPPS_GENERAL_TEST_RUNNING_INFO_H_
18 #define _GTS_NANOAPPS_GENERAL_TEST_RUNNING_INFO_H_
19 
20 #include <general_test/nanoapp_info.h>
21 
22 #include <cstdint>
23 
24 #include <chre.h>
25 
26 namespace general_test {
27 
28 class RunningInfo {
29  public:
30   bool queryByAppId();
31   bool queryByInstanceId();
32 
33   /**
34    * Validate that provided values match gathered data.
35    *
36    * @param appVersion The app version to validate against
37    * @return true if provided value matches data, false otherwise
38    */
39   bool validate(uint32_t appVersion);
40 
41  private:
42   NanoappInfo mPlatformInfo;
43   struct chreNanoappInfo mRunningInfo;
44 };
45 
46 } // namespace general_test
47 
48 #endif // _GTS_NANOAPPS_GENERAL_TEST_RUNNING_INFO_H_
49