gps_extended.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /* Copyright (c) 2013-2017, 2020 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 GPS_EXTENDED_H
  29. #define GPS_EXTENDED_H
  30. /**
  31. * @file
  32. * @brief C++ declarations for GPS types
  33. */
  34. #include <gps_extended_c.h>
  35. #if defined(USE_GLIB) || defined(OFF_TARGET)
  36. #include <string.h>
  37. #endif
  38. #include <string>
  39. #ifdef __cplusplus
  40. extern "C" {
  41. #endif /* __cplusplus */
  42. struct LocPosMode
  43. {
  44. LocPositionMode mode;
  45. LocGpsPositionRecurrence recurrence;
  46. uint32_t min_interval;
  47. uint32_t preferred_accuracy;
  48. uint32_t preferred_time;
  49. bool share_position;
  50. char credentials[14];
  51. char provider[8];
  52. GnssPowerMode powerMode;
  53. uint32_t timeBetweenMeasurements;
  54. LocPosMode(LocPositionMode m, LocGpsPositionRecurrence recr,
  55. uint32_t gap, uint32_t accu, uint32_t time,
  56. bool sp, const char* cred, const char* prov,
  57. GnssPowerMode pMode = GNSS_POWER_MODE_INVALID,
  58. uint32_t tbm = 0) :
  59. mode(m), recurrence(recr),
  60. min_interval(gap < GPS_MIN_POSSIBLE_FIX_INTERVAL_MS ?
  61. GPS_MIN_POSSIBLE_FIX_INTERVAL_MS : gap),
  62. preferred_accuracy(accu), preferred_time(time),
  63. share_position(sp), powerMode(pMode),
  64. timeBetweenMeasurements(tbm) {
  65. memset(credentials, 0, sizeof(credentials));
  66. memset(provider, 0, sizeof(provider));
  67. if (NULL != cred) {
  68. memcpy(credentials, cred, sizeof(credentials)-1);
  69. }
  70. if (NULL != prov) {
  71. memcpy(provider, prov, sizeof(provider)-1);
  72. }
  73. }
  74. inline LocPosMode() :
  75. mode(LOC_POSITION_MODE_MS_BASED),
  76. recurrence(LOC_GPS_POSITION_RECURRENCE_PERIODIC),
  77. min_interval(GPS_DEFAULT_FIX_INTERVAL_MS),
  78. preferred_accuracy(50), preferred_time(120000),
  79. share_position(true), powerMode(GNSS_POWER_MODE_INVALID),
  80. timeBetweenMeasurements(GPS_DEFAULT_FIX_INTERVAL_MS) {
  81. memset(credentials, 0, sizeof(credentials));
  82. memset(provider, 0, sizeof(provider));
  83. }
  84. inline bool equals(const LocPosMode &anotherMode) const
  85. {
  86. return anotherMode.mode == mode &&
  87. anotherMode.recurrence == recurrence &&
  88. anotherMode.min_interval == min_interval &&
  89. anotherMode.preferred_accuracy == preferred_accuracy &&
  90. anotherMode.preferred_time == preferred_time &&
  91. anotherMode.powerMode == powerMode &&
  92. anotherMode.timeBetweenMeasurements == timeBetweenMeasurements &&
  93. !strncmp(anotherMode.credentials, credentials, sizeof(credentials)-1) &&
  94. !strncmp(anotherMode.provider, provider, sizeof(provider)-1);
  95. }
  96. void logv() const;
  97. };
  98. /*
  99. * Encapsulates the parameters (client name, preferred subscription ID and preferred APN
  100. * for backhaul connect.
  101. */
  102. struct BackhaulContext {
  103. std::string clientName;
  104. uint16_t prefSub;
  105. std::string prefApn;
  106. uint16_t prefIpType;
  107. };
  108. #ifdef __cplusplus
  109. }
  110. #endif /* __cplusplus */
  111. #endif /* GPS_EXTENDED_H */