FIRFirestore+Internal.h 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * Copyright 2017 Google
  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. #import "FIRFirestore.h"
  17. #include <memory>
  18. #include <string>
  19. #include "Firestore/core/src/firebase/firestore/api/firestore.h"
  20. #include "Firestore/core/src/firebase/firestore/auth/credentials_provider.h"
  21. #include "Firestore/core/src/firebase/firestore/util/async_queue.h"
  22. @class FIRApp;
  23. @class FSTFirestoreClient;
  24. @class FSTUserDataConverter;
  25. namespace api = firebase::firestore::api;
  26. namespace auth = firebase::firestore::auth;
  27. namespace model = firebase::firestore::model;
  28. namespace util = firebase::firestore::util;
  29. NS_ASSUME_NONNULL_BEGIN
  30. @interface FIRFirestore (/* Init */)
  31. /**
  32. * Initializes a Firestore object with all the required parameters directly. This exists so that
  33. * tests can create FIRFirestore objects without needing FIRApp.
  34. */
  35. - (instancetype)initWithDatabaseID:(model::DatabaseId)databaseID
  36. persistenceKey:(std::string)persistenceKey
  37. credentialsProvider:(std::unique_ptr<auth::CredentialsProvider>)credentialsProvider
  38. workerQueue:(std::shared_ptr<util::AsyncQueue>)workerQueue
  39. firebaseApp:(FIRApp *)app;
  40. @end
  41. /** Internal FIRFirestore API we don't want exposed in our public header files. */
  42. @interface FIRFirestore (Internal)
  43. /** Checks to see if logging is is globally enabled for the Firestore client. */
  44. + (BOOL)isLoggingEnabled;
  45. + (FIRFirestore *)recoverFromFirestore:(std::shared_ptr<api::Firestore>)firestore;
  46. /**
  47. * Shutdown this `FIRFirestore`, releasing all resources (abandoning any outstanding writes,
  48. * removing all listens, closing all network connections, etc.).
  49. *
  50. * @param completion A block to execute once everything has shut down.
  51. */
  52. - (void)shutdownWithCompletion:(nullable void (^)(NSError *_Nullable error))completion
  53. NS_SWIFT_NAME(shutdown(completion:));
  54. /**
  55. * Clears the persistent storage. This includes pending writes and cached documents.
  56. *
  57. * Must be called while the firestore instance is not started (after the app is shutdown or when
  58. * the app is first initialized). On startup, this method must be called before other methods
  59. * (other than `FIRFirestore.settings`). If the firestore instance is still running, the function
  60. * will complete with an error code of `FailedPrecondition`.
  61. *
  62. * Note: `clearPersistence(completion:)` is primarily intended to help write reliable tests that
  63. * use Firestore. It uses the most efficient mechanism possible for dropping existing data but
  64. * does not attempt to securely overwrite or otherwise make cached data unrecoverable. For
  65. * applications that are sensitive to the disclosure of cache data in between user sessions we
  66. * strongly recommend not to enable persistence in the first place.
  67. */
  68. - (void)clearPersistenceWithCompletion:(nullable void (^)(NSError *_Nullable error))completion;
  69. - (const std::shared_ptr<util::AsyncQueue> &)workerQueue;
  70. @property(nonatomic, assign, readonly) std::shared_ptr<api::Firestore> wrapped;
  71. @property(nonatomic, assign, readonly) const model::DatabaseId &databaseID;
  72. @property(nonatomic, strong, readonly) FSTUserDataConverter *dataConverter;
  73. @end
  74. NS_ASSUME_NONNULL_END