lp:~thomas-voss/location-service/unify-source-code-formatting
Created by
Thomas Voß
and last modified
- Get this branch:
- bzr branch lp:~thomas-voss/location-service/unify-source-code-formatting
Only
Thomas Voß
can upload to this branch. If you are
Thomas Voß
please log in for upload directions.
Branch merges
Propose for merging
- PS Jenkins bot: Approve (continuous-integration)
- Ubuntu Phablet Team: Pending requested
-
Diff: 9479 lines (+2308/-2558)103 files modified_clang-format (+1/-1)
include/location_service/com/ubuntu/location/accuracy.h (+4/-5)
include/location_service/com/ubuntu/location/codec.h (+33/-33)
include/location_service/com/ubuntu/location/configuration.h (+1/-1)
include/location_service/com/ubuntu/location/connectivity/bounded_integer.h (+8/-10)
include/location_service/com/ubuntu/location/connectivity/manager.h (+0/-1)
include/location_service/com/ubuntu/location/connectivity/radio_cell.h (+69/-84)
include/location_service/com/ubuntu/location/connectivity/wireless_network.h (+10/-10)
include/location_service/com/ubuntu/location/criteria.h (+5/-5)
include/location_service/com/ubuntu/location/default_provider_selection_policy.h (+1/-1)
include/location_service/com/ubuntu/location/logging.h (+0/-1)
include/location_service/com/ubuntu/location/optional.h (+1/-1)
include/location_service/com/ubuntu/location/provider.h (+9/-9)
include/location_service/com/ubuntu/location/provider_factory.h (+2/-2)
include/location_service/com/ubuntu/location/provider_selection.h (+3/-3)
include/location_service/com/ubuntu/location/provider_selection_policy.h (+2/-2)
include/location_service/com/ubuntu/location/providers/geoclue/geoclue.h (+9/-10)
include/location_service/com/ubuntu/location/providers/geoclue/provider.h (+2/-2)
include/location_service/com/ubuntu/location/providers/remote/interface.h (+14/-29)
include/location_service/com/ubuntu/location/providers/remote/skeleton.h (+6/-2)
include/location_service/com/ubuntu/location/providers/remote/stub.h (+6/-2)
include/location_service/com/ubuntu/location/providers/skyhook/provider.h (+3/-3)
include/location_service/com/ubuntu/location/proxy_provider.h (+1/-1)
include/location_service/com/ubuntu/location/service/configuration.h (+2/-2)
include/location_service/com/ubuntu/location/service/default_permission_manager.h (+4/-4)
include/location_service/com/ubuntu/location/service/interface.h (+15/-27)
include/location_service/com/ubuntu/location/service/permission_manager.h (+1/-1)
include/location_service/com/ubuntu/location/service/session/implementation.h (+2/-2)
include/location_service/com/ubuntu/location/service/session/interface.h (+1/-1)
include/location_service/com/ubuntu/location/service/session/stub.h (+2/-2)
include/location_service/com/ubuntu/location/service/skeleton.h (+10/-12)
include/location_service/com/ubuntu/location/service/stub.h (+3/-3)
include/location_service/com/ubuntu/location/space_vehicle.h (+26/-27)
include/location_service/com/ubuntu/location/units/units.h (+3/-4)
include/location_service/com/ubuntu/location/update.h (+3/-4)
include/location_service/com/ubuntu/location/wgs84/altitude.h (+1/-1)
include/location_service/com/ubuntu/location/wgs84/coordinate.h (+10/-10)
include/location_service/com/ubuntu/location/wgs84/latitude.h (+1/-1)
include/location_service/com/ubuntu/location/wgs84/longitude.h (+1/-1)
src/location_service/com/ubuntu/location/boost_ptree_settings.cpp (+1/-1)
src/location_service/com/ubuntu/location/connectivity/cached_radio_cell.cpp (+82/-125)
src/location_service/com/ubuntu/location/connectivity/cached_radio_cell.h (+6/-6)
src/location_service/com/ubuntu/location/connectivity/cached_wireless_network.cpp (+41/-61)
src/location_service/com/ubuntu/location/connectivity/cached_wireless_network.h (+2/-2)
src/location_service/com/ubuntu/location/connectivity/manager.cpp (+48/-14)
src/location_service/com/ubuntu/location/connectivity/nm.h (+25/-34)
src/location_service/com/ubuntu/location/connectivity/ofono.h (+539/-599)
src/location_service/com/ubuntu/location/connectivity/ofono_nm_connectivity_manager.cpp (+97/-105)
src/location_service/com/ubuntu/location/connectivity/ofono_nm_connectivity_manager.h (+19/-11)
src/location_service/com/ubuntu/location/connectivity/radio_cell.cpp (+29/-18)
src/location_service/com/ubuntu/location/connectivity/wireless_network.cpp (+9/-3)
src/location_service/com/ubuntu/location/criteria.cpp (+8/-5)
src/location_service/com/ubuntu/location/default_permission_manager.cpp (+2/-2)
src/location_service/com/ubuntu/location/default_provider_selection_policy.cpp (+23/-27)
src/location_service/com/ubuntu/location/engine.cpp (+56/-63)
src/location_service/com/ubuntu/location/engine.h (+26/-44)
src/location_service/com/ubuntu/location/non_selecting_provider_selection_policy.cpp (+11/-13)
src/location_service/com/ubuntu/location/position.cpp (+13/-13)
src/location_service/com/ubuntu/location/provider.cpp (+2/-2)
src/location_service/com/ubuntu/location/provider_factory.cpp (+5/-7)
src/location_service/com/ubuntu/location/providers/config.cpp (+13/-23)
src/location_service/com/ubuntu/location/providers/dummy/provider.cpp (+14/-27)
src/location_service/com/ubuntu/location/providers/dummy/provider.h (+29/-57)
src/location_service/com/ubuntu/location/providers/geoclue/provider.cpp (+36/-38)
src/location_service/com/ubuntu/location/providers/gps/android_hardware_abstraction_layer.cpp (+70/-83)
src/location_service/com/ubuntu/location/providers/gps/android_hardware_abstraction_layer.h (+24/-20)
src/location_service/com/ubuntu/location/providers/gps/hardware_abstraction_layer.h (+0/-1)
src/location_service/com/ubuntu/location/providers/gps/net_cpp_gps_xtra_downloader.h (+23/-8)
src/location_service/com/ubuntu/location/providers/gps/null_gps_xtra_downloader.h (+18/-2)
src/location_service/com/ubuntu/location/providers/gps/provider.cpp (+10/-11)
src/location_service/com/ubuntu/location/providers/gps/provider.h (+3/-3)
src/location_service/com/ubuntu/location/providers/remote/provider.cpp (+92/-105)
src/location_service/com/ubuntu/location/providers/skyhook/provider.cpp (+40/-43)
src/location_service/com/ubuntu/location/proxy_provider.cpp (+3/-5)
src/location_service/com/ubuntu/location/satellite_based_positioning_state.cpp (+14/-19)
src/location_service/com/ubuntu/location/service/daemon.cpp (+83/-86)
src/location_service/com/ubuntu/location/service/daemon.h (+13/-19)
src/location_service/com/ubuntu/location/service/daemon_cli_main.cpp (+4/-2)
src/location_service/com/ubuntu/location/service/daemon_main.cpp (+4/-2)
src/location_service/com/ubuntu/location/service/default_configuration.cpp (+0/-1)
src/location_service/com/ubuntu/location/service/default_configuration.h (+1/-1)
src/location_service/com/ubuntu/location/service/demultiplexing_reporter.cpp (+6/-7)
src/location_service/com/ubuntu/location/service/demultiplexing_reporter.h (+12/-2)
src/location_service/com/ubuntu/location/service/harvester.cpp (+4/-4)
src/location_service/com/ubuntu/location/service/harvester.h (+0/-1)
src/location_service/com/ubuntu/location/service/ichnaea_reporter.cpp (+39/-46)
src/location_service/com/ubuntu/location/service/ichnaea_reporter.h (+25/-24)
src/location_service/com/ubuntu/location/service/implementation.cpp (+20/-35)
src/location_service/com/ubuntu/location/service/implementation.h (+1/-1)
src/location_service/com/ubuntu/location/service/program_options.h (+30/-27)
src/location_service/com/ubuntu/location/service/provider_daemon.cpp (+17/-25)
src/location_service/com/ubuntu/location/service/provider_daemon_main.cpp (+4/-4)
src/location_service/com/ubuntu/location/service/runtime_tests.cpp (+22/-16)
src/location_service/com/ubuntu/location/service/session/implementation.cpp (+27/-31)
src/location_service/com/ubuntu/location/service/session/interface_p.h (+21/-41)
src/location_service/com/ubuntu/location/service/session/skeleton.cpp (+82/-66)
src/location_service/com/ubuntu/location/service/session/stub.cpp (+65/-50)
src/location_service/com/ubuntu/location/service/skeleton.cpp (+62/-86)
src/location_service/com/ubuntu/location/service/stub.cpp (+5/-5)
src/location_service/com/ubuntu/location/service/trust_store_permission_manager.cpp (+20/-24)
src/location_service/com/ubuntu/location/service/trust_store_permission_manager.h (+2/-2)
src/location_service/com/ubuntu/location/settings.h (+17/-11)
src/location_service/com/ubuntu/location/wifi_and_cell_reporting_state.cpp (+14/-19)
Branch information
Recent revisions
- 169. By Thomas Voß
-
Add documentation for debugging, hacking and debugging the location service.
Pull manual testing instructions over from the wiki.
Add tools for formatting the source. - 164. By Thomas Voß
-
Make the remote:
:Provider: :Stub fail loudly on construction if the other side is not reachable.
Relax the exception in location::Daemon: :main and do not exit if instantiating a provider fails. Fixes: #1414591
Approved by: Charles Kerr, Loïc Minier, PS Jenkins bot
Branch metadata
- Branch format:
- Branch format 7
- Repository format:
- Bazaar repository format 2a (needs bzr 1.16 or later)
- Stacked on:
- lp:location-service/trunk