├── .devcontainer ├── devcontainer.json └── docker-compose.yml ├── .dockerignore ├── .env ├── .gitignore ├── .gitmodules ├── .vscode ├── cmake-variants.yaml ├── extensions.json └── settings.json ├── CMake ├── CodeCoverage.cmake ├── CompilerFlags.cmake ├── RealmCore.cmake └── Sanitizers.cmake ├── CMakeLists.txt ├── CMakeSettings.json ├── Dockerfile ├── Jenkinsfile ├── LICENSE ├── README.md ├── android.Dockerfile ├── dependencies.list ├── external └── json │ └── json.hpp ├── src ├── CMakeLists.txt ├── audit.hpp ├── binding_callback_thread_observer.cpp ├── binding_callback_thread_observer.hpp ├── binding_context.hpp ├── collection_notifications.cpp ├── collection_notifications.hpp ├── feature_checks.hpp ├── impl │ ├── apple │ │ ├── external_commit_helper.cpp │ │ ├── external_commit_helper.hpp │ │ ├── keychain_helper.cpp │ │ └── keychain_helper.hpp │ ├── collection_change_builder.cpp │ ├── collection_change_builder.hpp │ ├── collection_notifier.cpp │ ├── collection_notifier.hpp │ ├── epoll │ │ ├── external_commit_helper.cpp │ │ └── external_commit_helper.hpp │ ├── external_commit_helper.hpp │ ├── generic │ │ ├── external_commit_helper.cpp │ │ └── external_commit_helper.hpp │ ├── list_notifier.cpp │ ├── list_notifier.hpp │ ├── notification_wrapper.hpp │ ├── object_accessor_impl.hpp │ ├── object_notifier.cpp │ ├── object_notifier.hpp │ ├── realm_coordinator.cpp │ ├── realm_coordinator.hpp │ ├── results_notifier.cpp │ ├── results_notifier.hpp │ ├── transact_log_handler.cpp │ ├── transact_log_handler.hpp │ ├── weak_realm_notifier.cpp │ ├── weak_realm_notifier.hpp │ └── windows │ │ ├── external_commit_helper.cpp │ │ └── external_commit_helper.hpp ├── index_set.cpp ├── index_set.hpp ├── keypath_helpers.hpp ├── list.cpp ├── list.hpp ├── object.cpp ├── object.hpp ├── object_accessor.hpp ├── object_changeset.cpp ├── object_changeset.hpp ├── object_schema.cpp ├── object_schema.hpp ├── object_store.cpp ├── object_store.hpp ├── placeholder.cpp ├── property.hpp ├── results.cpp ├── results.hpp ├── schema.cpp ├── schema.hpp ├── shared_realm.cpp ├── shared_realm.hpp ├── sync │ ├── app.cpp │ ├── app.hpp │ ├── app_credentials.cpp │ ├── app_credentials.hpp │ ├── app_service_client.hpp │ ├── app_utils.cpp │ ├── app_utils.hpp │ ├── async_open_task.cpp │ ├── async_open_task.hpp │ ├── auth_request_client.hpp │ ├── generic_network_transport.cpp │ ├── generic_network_transport.hpp │ ├── impl │ │ ├── apple │ │ │ ├── network_reachability_observer.cpp │ │ │ ├── network_reachability_observer.hpp │ │ │ ├── system_configuration.cpp │ │ │ └── system_configuration.hpp │ │ ├── network_reachability.hpp │ │ ├── sync_client.hpp │ │ ├── sync_file.cpp │ │ ├── sync_file.hpp │ │ ├── sync_metadata.cpp │ │ └── sync_metadata.hpp │ ├── mongo_client.cpp │ ├── mongo_client.hpp │ ├── mongo_collection.cpp │ ├── mongo_collection.hpp │ ├── mongo_database.cpp │ ├── mongo_database.hpp │ ├── push_client.cpp │ ├── push_client.hpp │ ├── subscribable.hpp │ ├── sync_config.hpp │ ├── sync_manager.cpp │ ├── sync_manager.hpp │ ├── sync_session.cpp │ ├── sync_session.hpp │ ├── sync_user.cpp │ └── sync_user.hpp ├── thread_safe_reference.cpp ├── thread_safe_reference.hpp └── util │ ├── aligned_union.hpp │ ├── android │ └── scheduler.hpp │ ├── apple │ └── scheduler.hpp │ ├── atomic_shared_ptr.hpp │ ├── bson │ ├── bson.cpp │ ├── bson.hpp │ ├── indexed_map.hpp │ ├── max_key.hpp │ ├── min_key.hpp │ ├── mongo_timestamp.hpp │ ├── regular_expression.cpp │ └── regular_expression.hpp │ ├── checked_mutex.hpp │ ├── copyable_atomic.hpp │ ├── event_loop_dispatcher.hpp │ ├── generic │ └── scheduler.hpp │ ├── scheduler.cpp │ ├── scheduler.hpp │ ├── tagged_bool.hpp │ ├── tagged_string.hpp │ ├── uuid.cpp │ ├── uuid.hpp │ └── uv │ └── scheduler.hpp ├── tests ├── CMakeLists.txt ├── benchmarks │ ├── CMakeLists.txt │ ├── main.cpp │ ├── object.cpp │ └── results.cpp ├── bson.cpp ├── collection_change_indices.cpp ├── frozen_objects.cpp ├── index_set.cpp ├── list.cpp ├── main.cpp ├── migrations.cpp ├── mongodb │ ├── .gitignore │ ├── auth_providers │ │ ├── anon-user.json │ │ ├── api-key.json │ │ ├── custom-function.json │ │ └── local-userpass.json │ ├── functions │ │ ├── authFunc │ │ │ ├── config.json │ │ │ └── source.js │ │ ├── confirmFunc │ │ │ ├── config.json │ │ │ └── source.js │ │ ├── resetFunc │ │ │ ├── config.json │ │ │ └── source.js │ │ └── sumFunc │ │ │ ├── config.json │ │ │ └── source.js │ ├── graphql │ │ └── config.json │ ├── secrets.json │ ├── services │ │ ├── BackingDB │ │ │ ├── config.json │ │ │ └── rules │ │ │ │ ├── test_data.Dog.json │ │ │ │ ├── test_data.Person.json │ │ │ │ └── test_data.testRemoteMongoClient.json │ │ └── gcm │ │ │ └── config.json │ └── stitch.json ├── notifications-fuzzer │ ├── CMakeLists.txt │ ├── command_file.cpp │ ├── command_file.hpp │ ├── fuzz-sorted-linkview.cpp │ ├── fuzz-sorted-query.cpp │ ├── fuzz-unsorted-linkview.cpp │ ├── fuzz-unsorted-query.cpp │ ├── fuzzer.cpp │ ├── input-lv │ │ └── 0 │ └── input │ │ ├── 0 │ │ └── 1 ├── object.cpp ├── object_store.cpp ├── primitive_list.cpp ├── query.json ├── realm.cpp ├── results.cpp ├── schema.cpp ├── sync-1.x.realm ├── sync │ ├── app.cpp │ ├── file.cpp │ ├── metadata.cpp │ ├── remote_mongo_tests.cpp │ ├── session │ │ ├── connection_change_notifications.cpp │ │ ├── progress_notifications.cpp │ │ ├── session.cpp │ │ ├── session_util.hpp │ │ └── wait_for_completion.cpp │ ├── sync_manager.cpp │ ├── sync_test_utils.cpp │ ├── sync_test_utils.hpp │ └── user.cpp ├── thread_safe_reference.cpp ├── transaction_log_parsing.cpp ├── util │ ├── event_loop.cpp │ ├── event_loop.hpp │ ├── index_helpers.hpp │ ├── test_file.cpp │ ├── test_file.hpp │ ├── test_utils.cpp │ └── test_utils.hpp └── uuid.cpp └── workflow ├── build.sh ├── docker_build_wrapper.sh ├── local_docker_build.sh └── test_coverage.sh /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .gitignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | dependencies.list -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/cmake-variants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/.vscode/cmake-variants.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMake/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/CMake/CodeCoverage.cmake -------------------------------------------------------------------------------- /CMake/CompilerFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/CMake/CompilerFlags.cmake -------------------------------------------------------------------------------- /CMake/RealmCore.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/CMake/RealmCore.cmake -------------------------------------------------------------------------------- /CMake/Sanitizers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/CMake/Sanitizers.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/README.md -------------------------------------------------------------------------------- /android.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/android.Dockerfile -------------------------------------------------------------------------------- /dependencies.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/dependencies.list -------------------------------------------------------------------------------- /external/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/external/json/json.hpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/audit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/audit.hpp -------------------------------------------------------------------------------- /src/binding_callback_thread_observer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/binding_callback_thread_observer.cpp -------------------------------------------------------------------------------- /src/binding_callback_thread_observer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/binding_callback_thread_observer.hpp -------------------------------------------------------------------------------- /src/binding_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/binding_context.hpp -------------------------------------------------------------------------------- /src/collection_notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/collection_notifications.cpp -------------------------------------------------------------------------------- /src/collection_notifications.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/collection_notifications.hpp -------------------------------------------------------------------------------- /src/feature_checks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/feature_checks.hpp -------------------------------------------------------------------------------- /src/impl/apple/external_commit_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/apple/external_commit_helper.cpp -------------------------------------------------------------------------------- /src/impl/apple/external_commit_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/apple/external_commit_helper.hpp -------------------------------------------------------------------------------- /src/impl/apple/keychain_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/apple/keychain_helper.cpp -------------------------------------------------------------------------------- /src/impl/apple/keychain_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/apple/keychain_helper.hpp -------------------------------------------------------------------------------- /src/impl/collection_change_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/collection_change_builder.cpp -------------------------------------------------------------------------------- /src/impl/collection_change_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/collection_change_builder.hpp -------------------------------------------------------------------------------- /src/impl/collection_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/collection_notifier.cpp -------------------------------------------------------------------------------- /src/impl/collection_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/collection_notifier.hpp -------------------------------------------------------------------------------- /src/impl/epoll/external_commit_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/epoll/external_commit_helper.cpp -------------------------------------------------------------------------------- /src/impl/epoll/external_commit_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/epoll/external_commit_helper.hpp -------------------------------------------------------------------------------- /src/impl/external_commit_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/external_commit_helper.hpp -------------------------------------------------------------------------------- /src/impl/generic/external_commit_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/generic/external_commit_helper.cpp -------------------------------------------------------------------------------- /src/impl/generic/external_commit_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/generic/external_commit_helper.hpp -------------------------------------------------------------------------------- /src/impl/list_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/list_notifier.cpp -------------------------------------------------------------------------------- /src/impl/list_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/list_notifier.hpp -------------------------------------------------------------------------------- /src/impl/notification_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/notification_wrapper.hpp -------------------------------------------------------------------------------- /src/impl/object_accessor_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/object_accessor_impl.hpp -------------------------------------------------------------------------------- /src/impl/object_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/object_notifier.cpp -------------------------------------------------------------------------------- /src/impl/object_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/object_notifier.hpp -------------------------------------------------------------------------------- /src/impl/realm_coordinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/realm_coordinator.cpp -------------------------------------------------------------------------------- /src/impl/realm_coordinator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/realm_coordinator.hpp -------------------------------------------------------------------------------- /src/impl/results_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/results_notifier.cpp -------------------------------------------------------------------------------- /src/impl/results_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/results_notifier.hpp -------------------------------------------------------------------------------- /src/impl/transact_log_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/transact_log_handler.cpp -------------------------------------------------------------------------------- /src/impl/transact_log_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/transact_log_handler.hpp -------------------------------------------------------------------------------- /src/impl/weak_realm_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/weak_realm_notifier.cpp -------------------------------------------------------------------------------- /src/impl/weak_realm_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/weak_realm_notifier.hpp -------------------------------------------------------------------------------- /src/impl/windows/external_commit_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/windows/external_commit_helper.cpp -------------------------------------------------------------------------------- /src/impl/windows/external_commit_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/impl/windows/external_commit_helper.hpp -------------------------------------------------------------------------------- /src/index_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/index_set.cpp -------------------------------------------------------------------------------- /src/index_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/index_set.hpp -------------------------------------------------------------------------------- /src/keypath_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/keypath_helpers.hpp -------------------------------------------------------------------------------- /src/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/list.cpp -------------------------------------------------------------------------------- /src/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/list.hpp -------------------------------------------------------------------------------- /src/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/object.cpp -------------------------------------------------------------------------------- /src/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/object.hpp -------------------------------------------------------------------------------- /src/object_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/object_accessor.hpp -------------------------------------------------------------------------------- /src/object_changeset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/object_changeset.cpp -------------------------------------------------------------------------------- /src/object_changeset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/object_changeset.hpp -------------------------------------------------------------------------------- /src/object_schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/object_schema.cpp -------------------------------------------------------------------------------- /src/object_schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/object_schema.hpp -------------------------------------------------------------------------------- /src/object_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/object_store.cpp -------------------------------------------------------------------------------- /src/object_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/object_store.hpp -------------------------------------------------------------------------------- /src/placeholder.cpp: -------------------------------------------------------------------------------- 1 | // This file is intentionally left blank. 2 | -------------------------------------------------------------------------------- /src/property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/property.hpp -------------------------------------------------------------------------------- /src/results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/results.cpp -------------------------------------------------------------------------------- /src/results.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/results.hpp -------------------------------------------------------------------------------- /src/schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/schema.cpp -------------------------------------------------------------------------------- /src/schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/schema.hpp -------------------------------------------------------------------------------- /src/shared_realm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/shared_realm.cpp -------------------------------------------------------------------------------- /src/shared_realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/shared_realm.hpp -------------------------------------------------------------------------------- /src/sync/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/app.cpp -------------------------------------------------------------------------------- /src/sync/app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/app.hpp -------------------------------------------------------------------------------- /src/sync/app_credentials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/app_credentials.cpp -------------------------------------------------------------------------------- /src/sync/app_credentials.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/app_credentials.hpp -------------------------------------------------------------------------------- /src/sync/app_service_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/app_service_client.hpp -------------------------------------------------------------------------------- /src/sync/app_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/app_utils.cpp -------------------------------------------------------------------------------- /src/sync/app_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/app_utils.hpp -------------------------------------------------------------------------------- /src/sync/async_open_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/async_open_task.cpp -------------------------------------------------------------------------------- /src/sync/async_open_task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/async_open_task.hpp -------------------------------------------------------------------------------- /src/sync/auth_request_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/auth_request_client.hpp -------------------------------------------------------------------------------- /src/sync/generic_network_transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/generic_network_transport.cpp -------------------------------------------------------------------------------- /src/sync/generic_network_transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/generic_network_transport.hpp -------------------------------------------------------------------------------- /src/sync/impl/apple/network_reachability_observer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/impl/apple/network_reachability_observer.cpp -------------------------------------------------------------------------------- /src/sync/impl/apple/network_reachability_observer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/impl/apple/network_reachability_observer.hpp -------------------------------------------------------------------------------- /src/sync/impl/apple/system_configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/impl/apple/system_configuration.cpp -------------------------------------------------------------------------------- /src/sync/impl/apple/system_configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/impl/apple/system_configuration.hpp -------------------------------------------------------------------------------- /src/sync/impl/network_reachability.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/impl/network_reachability.hpp -------------------------------------------------------------------------------- /src/sync/impl/sync_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/impl/sync_client.hpp -------------------------------------------------------------------------------- /src/sync/impl/sync_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/impl/sync_file.cpp -------------------------------------------------------------------------------- /src/sync/impl/sync_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/impl/sync_file.hpp -------------------------------------------------------------------------------- /src/sync/impl/sync_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/impl/sync_metadata.cpp -------------------------------------------------------------------------------- /src/sync/impl/sync_metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/impl/sync_metadata.hpp -------------------------------------------------------------------------------- /src/sync/mongo_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/mongo_client.cpp -------------------------------------------------------------------------------- /src/sync/mongo_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/mongo_client.hpp -------------------------------------------------------------------------------- /src/sync/mongo_collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/mongo_collection.cpp -------------------------------------------------------------------------------- /src/sync/mongo_collection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/mongo_collection.hpp -------------------------------------------------------------------------------- /src/sync/mongo_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/mongo_database.cpp -------------------------------------------------------------------------------- /src/sync/mongo_database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/mongo_database.hpp -------------------------------------------------------------------------------- /src/sync/push_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/push_client.cpp -------------------------------------------------------------------------------- /src/sync/push_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/push_client.hpp -------------------------------------------------------------------------------- /src/sync/subscribable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/subscribable.hpp -------------------------------------------------------------------------------- /src/sync/sync_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/sync_config.hpp -------------------------------------------------------------------------------- /src/sync/sync_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/sync_manager.cpp -------------------------------------------------------------------------------- /src/sync/sync_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/sync_manager.hpp -------------------------------------------------------------------------------- /src/sync/sync_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/sync_session.cpp -------------------------------------------------------------------------------- /src/sync/sync_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/sync_session.hpp -------------------------------------------------------------------------------- /src/sync/sync_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/sync_user.cpp -------------------------------------------------------------------------------- /src/sync/sync_user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/sync/sync_user.hpp -------------------------------------------------------------------------------- /src/thread_safe_reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/thread_safe_reference.cpp -------------------------------------------------------------------------------- /src/thread_safe_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/thread_safe_reference.hpp -------------------------------------------------------------------------------- /src/util/aligned_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/aligned_union.hpp -------------------------------------------------------------------------------- /src/util/android/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/android/scheduler.hpp -------------------------------------------------------------------------------- /src/util/apple/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/apple/scheduler.hpp -------------------------------------------------------------------------------- /src/util/atomic_shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/atomic_shared_ptr.hpp -------------------------------------------------------------------------------- /src/util/bson/bson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/bson/bson.cpp -------------------------------------------------------------------------------- /src/util/bson/bson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/bson/bson.hpp -------------------------------------------------------------------------------- /src/util/bson/indexed_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/bson/indexed_map.hpp -------------------------------------------------------------------------------- /src/util/bson/max_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/bson/max_key.hpp -------------------------------------------------------------------------------- /src/util/bson/min_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/bson/min_key.hpp -------------------------------------------------------------------------------- /src/util/bson/mongo_timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/bson/mongo_timestamp.hpp -------------------------------------------------------------------------------- /src/util/bson/regular_expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/bson/regular_expression.cpp -------------------------------------------------------------------------------- /src/util/bson/regular_expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/bson/regular_expression.hpp -------------------------------------------------------------------------------- /src/util/checked_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/checked_mutex.hpp -------------------------------------------------------------------------------- /src/util/copyable_atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/copyable_atomic.hpp -------------------------------------------------------------------------------- /src/util/event_loop_dispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/event_loop_dispatcher.hpp -------------------------------------------------------------------------------- /src/util/generic/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/generic/scheduler.hpp -------------------------------------------------------------------------------- /src/util/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/scheduler.cpp -------------------------------------------------------------------------------- /src/util/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/scheduler.hpp -------------------------------------------------------------------------------- /src/util/tagged_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/tagged_bool.hpp -------------------------------------------------------------------------------- /src/util/tagged_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/tagged_string.hpp -------------------------------------------------------------------------------- /src/util/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/uuid.cpp -------------------------------------------------------------------------------- /src/util/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/uuid.hpp -------------------------------------------------------------------------------- /src/util/uv/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/src/util/uv/scheduler.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /tests/benchmarks/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/benchmarks/main.cpp -------------------------------------------------------------------------------- /tests/benchmarks/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/benchmarks/object.cpp -------------------------------------------------------------------------------- /tests/benchmarks/results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/benchmarks/results.cpp -------------------------------------------------------------------------------- /tests/bson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/bson.cpp -------------------------------------------------------------------------------- /tests/collection_change_indices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/collection_change_indices.cpp -------------------------------------------------------------------------------- /tests/frozen_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/frozen_objects.cpp -------------------------------------------------------------------------------- /tests/index_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/index_set.cpp -------------------------------------------------------------------------------- /tests/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/list.cpp -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tests/migrations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/migrations.cpp -------------------------------------------------------------------------------- /tests/mongodb/.gitignore: -------------------------------------------------------------------------------- 1 | app_id 2 | -------------------------------------------------------------------------------- /tests/mongodb/auth_providers/anon-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/auth_providers/anon-user.json -------------------------------------------------------------------------------- /tests/mongodb/auth_providers/api-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/auth_providers/api-key.json -------------------------------------------------------------------------------- /tests/mongodb/auth_providers/custom-function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/auth_providers/custom-function.json -------------------------------------------------------------------------------- /tests/mongodb/auth_providers/local-userpass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/auth_providers/local-userpass.json -------------------------------------------------------------------------------- /tests/mongodb/functions/authFunc/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/functions/authFunc/config.json -------------------------------------------------------------------------------- /tests/mongodb/functions/authFunc/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/functions/authFunc/source.js -------------------------------------------------------------------------------- /tests/mongodb/functions/confirmFunc/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/functions/confirmFunc/config.json -------------------------------------------------------------------------------- /tests/mongodb/functions/confirmFunc/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/functions/confirmFunc/source.js -------------------------------------------------------------------------------- /tests/mongodb/functions/resetFunc/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/functions/resetFunc/config.json -------------------------------------------------------------------------------- /tests/mongodb/functions/resetFunc/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/functions/resetFunc/source.js -------------------------------------------------------------------------------- /tests/mongodb/functions/sumFunc/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/functions/sumFunc/config.json -------------------------------------------------------------------------------- /tests/mongodb/functions/sumFunc/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/functions/sumFunc/source.js -------------------------------------------------------------------------------- /tests/mongodb/graphql/config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mongodb/secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/secrets.json -------------------------------------------------------------------------------- /tests/mongodb/services/BackingDB/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/services/BackingDB/config.json -------------------------------------------------------------------------------- /tests/mongodb/services/BackingDB/rules/test_data.Dog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/services/BackingDB/rules/test_data.Dog.json -------------------------------------------------------------------------------- /tests/mongodb/services/BackingDB/rules/test_data.Person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/services/BackingDB/rules/test_data.Person.json -------------------------------------------------------------------------------- /tests/mongodb/services/BackingDB/rules/test_data.testRemoteMongoClient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/services/BackingDB/rules/test_data.testRemoteMongoClient.json -------------------------------------------------------------------------------- /tests/mongodb/services/gcm/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/services/gcm/config.json -------------------------------------------------------------------------------- /tests/mongodb/stitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/mongodb/stitch.json -------------------------------------------------------------------------------- /tests/notifications-fuzzer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/notifications-fuzzer/CMakeLists.txt -------------------------------------------------------------------------------- /tests/notifications-fuzzer/command_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/notifications-fuzzer/command_file.cpp -------------------------------------------------------------------------------- /tests/notifications-fuzzer/command_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/notifications-fuzzer/command_file.hpp -------------------------------------------------------------------------------- /tests/notifications-fuzzer/fuzz-sorted-linkview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/notifications-fuzzer/fuzz-sorted-linkview.cpp -------------------------------------------------------------------------------- /tests/notifications-fuzzer/fuzz-sorted-query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/notifications-fuzzer/fuzz-sorted-query.cpp -------------------------------------------------------------------------------- /tests/notifications-fuzzer/fuzz-unsorted-linkview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/notifications-fuzzer/fuzz-unsorted-linkview.cpp -------------------------------------------------------------------------------- /tests/notifications-fuzzer/fuzz-unsorted-query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/notifications-fuzzer/fuzz-unsorted-query.cpp -------------------------------------------------------------------------------- /tests/notifications-fuzzer/fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/notifications-fuzzer/fuzzer.cpp -------------------------------------------------------------------------------- /tests/notifications-fuzzer/input-lv/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/notifications-fuzzer/input-lv/0 -------------------------------------------------------------------------------- /tests/notifications-fuzzer/input/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/notifications-fuzzer/input/0 -------------------------------------------------------------------------------- /tests/notifications-fuzzer/input/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/notifications-fuzzer/input/1 -------------------------------------------------------------------------------- /tests/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/object.cpp -------------------------------------------------------------------------------- /tests/object_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/object_store.cpp -------------------------------------------------------------------------------- /tests/primitive_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/primitive_list.cpp -------------------------------------------------------------------------------- /tests/query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/query.json -------------------------------------------------------------------------------- /tests/realm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/realm.cpp -------------------------------------------------------------------------------- /tests/results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/results.cpp -------------------------------------------------------------------------------- /tests/schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/schema.cpp -------------------------------------------------------------------------------- /tests/sync-1.x.realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/sync-1.x.realm -------------------------------------------------------------------------------- /tests/sync/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/sync/app.cpp -------------------------------------------------------------------------------- /tests/sync/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/sync/file.cpp -------------------------------------------------------------------------------- /tests/sync/metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/sync/metadata.cpp -------------------------------------------------------------------------------- /tests/sync/remote_mongo_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/sync/remote_mongo_tests.cpp -------------------------------------------------------------------------------- /tests/sync/session/connection_change_notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/sync/session/connection_change_notifications.cpp -------------------------------------------------------------------------------- /tests/sync/session/progress_notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/sync/session/progress_notifications.cpp -------------------------------------------------------------------------------- /tests/sync/session/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/sync/session/session.cpp -------------------------------------------------------------------------------- /tests/sync/session/session_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/sync/session/session_util.hpp -------------------------------------------------------------------------------- /tests/sync/session/wait_for_completion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/sync/session/wait_for_completion.cpp -------------------------------------------------------------------------------- /tests/sync/sync_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/sync/sync_manager.cpp -------------------------------------------------------------------------------- /tests/sync/sync_test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/sync/sync_test_utils.cpp -------------------------------------------------------------------------------- /tests/sync/sync_test_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/sync/sync_test_utils.hpp -------------------------------------------------------------------------------- /tests/sync/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/sync/user.cpp -------------------------------------------------------------------------------- /tests/thread_safe_reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/thread_safe_reference.cpp -------------------------------------------------------------------------------- /tests/transaction_log_parsing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/transaction_log_parsing.cpp -------------------------------------------------------------------------------- /tests/util/event_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/util/event_loop.cpp -------------------------------------------------------------------------------- /tests/util/event_loop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/util/event_loop.hpp -------------------------------------------------------------------------------- /tests/util/index_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/util/index_helpers.hpp -------------------------------------------------------------------------------- /tests/util/test_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/util/test_file.cpp -------------------------------------------------------------------------------- /tests/util/test_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/util/test_file.hpp -------------------------------------------------------------------------------- /tests/util/test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/util/test_utils.cpp -------------------------------------------------------------------------------- /tests/util/test_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/util/test_utils.hpp -------------------------------------------------------------------------------- /tests/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/tests/uuid.cpp -------------------------------------------------------------------------------- /workflow/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/workflow/build.sh -------------------------------------------------------------------------------- /workflow/docker_build_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/workflow/docker_build_wrapper.sh -------------------------------------------------------------------------------- /workflow/local_docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/workflow/local_docker_build.sh -------------------------------------------------------------------------------- /workflow/test_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realm/realm-object-store/HEAD/workflow/test_coverage.sh --------------------------------------------------------------------------------