loc_pla.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /* Copyright (c) 2014 - 2021 The Linux Foundation. All rights reserved.
  2. *
  3. * Redistribution and use in source and binary forms, with or without
  4. * modification, are permitted provided that the following conditions are
  5. * met:
  6. * * Redistributions of source code must retain the above copyright
  7. * notice, this list of conditions and the following disclaimer.
  8. * * Redistributions in binary form must reproduce the above
  9. * copyright notice, this list of conditions and the following
  10. * disclaimer in the documentation and/or other materials provided
  11. * with the distribution.
  12. * * Neither the name of The Linux Foundation nor the names of its
  13. * contributors may be used to endorse or promote products derived
  14. * from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
  17. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  18. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
  20. * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  21. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  22. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  23. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  24. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  25. * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  26. * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27. */
  28. #ifndef __LOC_PLA__
  29. #define __LOC_PLA__
  30. #ifdef __cplusplus
  31. #ifndef FEATURE_EXTERNAL_AP
  32. #include <utils/SystemClock.h>
  33. #endif /* FEATURE_EXTERNAL_AP */
  34. #include <inttypes.h>
  35. #include <sys/time.h>
  36. #include <time.h>
  37. #if defined(__GNUC__) && defined(__GNUC_PREREQ)
  38. #if __GNUC_PREREQ(6,0)
  39. #pragma message "GNU C version is above 6"
  40. #else
  41. #pragma message "GNU C version is less than 6"
  42. #define NO_UNORDERED_SET_OR_MAP
  43. #endif
  44. #endif
  45. inline int64_t sysTimeMillis(int clock)
  46. {
  47. struct timespec ts = {};
  48. int64_t time_ms = 0;
  49. clock_gettime(clock, &ts);
  50. time_ms += (ts.tv_sec * 1000000000LL);
  51. time_ms += ts.tv_nsec + 500000LL;
  52. return time_ms / 1000000LL;
  53. }
  54. inline int64_t uptimeMillis() {
  55. return sysTimeMillis(CLOCK_MONOTONIC);
  56. }
  57. inline int64_t elapsedRealtime() {
  58. return sysTimeMillis(CLOCK_BOOTTIME);
  59. }
  60. extern "C" {
  61. #endif
  62. #ifndef FEATURE_EXTERNAL_AP
  63. #include <cutils/properties.h>
  64. #include <cutils/threads.h>
  65. #include <cutils/sched_policy.h>
  66. #else
  67. #define set_sched_policy(a, b)
  68. #endif /* FEATURE_EXTERNAL_AP */
  69. #include <pthread.h>
  70. #include <sys/time.h>
  71. #include <sys/types.h>
  72. #include <sys/stat.h>
  73. #include <fcntl.h>
  74. #include <unistd.h>
  75. #include <string.h>
  76. #include <stdlib.h>
  77. #include <stdio.h>
  78. #include <stdarg.h>
  79. #define MAX_COMMAND_STR_LEN (255)
  80. #define BOOT_KPI_FILE "/sys/kernel/debug/bootkpi/kpi_values"
  81. #ifndef OFF_TARGET
  82. #include <glib.h>
  83. #define strlcat g_strlcat
  84. #define strlcpy g_strlcpy
  85. #else
  86. #define strlcat strncat
  87. #define strlcpy strncpy
  88. #endif
  89. #define UID_GPS (1021)
  90. #define GID_GPS (1021)
  91. #define UID_LOCCLIENT (4021)
  92. #define GID_LOCCLIENT (4021)
  93. #define LOC_PATH_GPS_CONF_STR "/etc/gps.conf"
  94. #define LOC_PATH_IZAT_CONF_STR "/etc/izat.conf"
  95. #define LOC_PATH_BATCHING_CONF_STR "/etc/batching.conf"
  96. #define LOC_PATH_LOWI_CONF_STR "/etc/lowi.conf"
  97. #define LOC_PATH_SAP_CONF_STR "/etc/sap.conf"
  98. #define LOC_PATH_APDR_CONF_STR "/etc/apdr.conf"
  99. #define LOC_PATH_XTWIFI_CONF_STR "/etc/xtwifi.conf"
  100. #define LOC_PATH_QUIPC_CONF_STR "/etc/quipc.conf"
  101. #define LOC_PATH_ANT_CORR_STR "/etc/gnss_antenna_info.conf"
  102. #define LOC_PATH_SLIM_CONF_STR "/etc/slim.conf"
  103. #define LOC_PATH_VPE_CONF_STR "/etc/vpeglue.conf"
  104. #define LOC_PATH_QPPE_CONF_STR "/etc/qppe.conf"
  105. extern char *program_invocation_short_name;
  106. #ifdef FEATURE_EXTERNAL_AP
  107. #define PROPERTY_VALUE_MAX 92
  108. inline int property_get(const char* key, char* value, const char* default_value)
  109. {
  110. strlcpy(value, default_value, PROPERTY_VALUE_MAX - 1);
  111. return strlen(value);
  112. }
  113. #endif /* FEATURE_EXTERNAL_AP */
  114. /*!
  115. * @brief Function for memory block copy
  116. *
  117. * @param[out] p_Dest Destination buffer.
  118. * @param[in] q_DestSize Destination buffer size.
  119. * @param[in] p_Src Source buffer.
  120. * @param[in] q_SrcSize Source buffer size.
  121. *
  122. * @return Number of bytes copied.
  123. */
  124. static inline size_t memscpy (void *p_Dest, size_t q_DestSize, const void *p_Src, size_t q_SrcSize)
  125. {
  126. size_t res = (q_DestSize < q_SrcSize) ? q_DestSize : q_SrcSize;
  127. if (p_Dest && p_Src && q_DestSize > 0 && q_SrcSize > 0) {
  128. memcpy(p_Dest, p_Src, res);
  129. } else {
  130. res = 0;
  131. }
  132. return res;
  133. }
  134. /*API for boot kpi marker prints */
  135. static inline int loc_boot_kpi_marker(const char * pFmt, ...)
  136. {
  137. int result = 0;
  138. int32_t errRet = -1;
  139. struct stat nodeStat;
  140. // Check if the KPI node exists exists
  141. errRet = stat(BOOT_KPI_FILE, &nodeStat);
  142. if (errRet == 0) {
  143. char buf[MAX_COMMAND_STR_LEN] = {};
  144. va_list ap;
  145. va_start(ap, pFmt);
  146. vsnprintf(&buf[0], sizeof(buf), pFmt, ap);
  147. int fd = 0;
  148. fd = open(BOOT_KPI_FILE, O_WRONLY);
  149. if (fd > 0) {
  150. write(fd, buf, strlen(buf));
  151. close(fd);
  152. }
  153. va_end(ap);
  154. }
  155. return result;
  156. }
  157. /* API to get name of current program */
  158. static inline const char* getprogname() {
  159. return program_invocation_short_name;
  160. }
  161. #ifdef __cplusplus
  162. }
  163. #endif /*__cplusplus */
  164. #endif /* __LOC_PLA__ */