FIRFirestore+Internal.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. /** Provides a registry management interface for FIRFirestore instances. */
  31. @protocol FSTFirestoreInstanceRegistry
  32. /** Removes the FIRFirestore instance with given database name from registry. */
  33. - (void)removeInstanceWithDatabase:(NSString *)database;
  34. @end
  35. @interface FIRFirestore (/* Init */)
  36. /**
  37. * Initializes a Firestore object with all the required parameters directly. This exists so that
  38. * tests can create FIRFirestore objects without needing FIRApp.
  39. */
  40. - (instancetype)initWithDatabaseID:(model::DatabaseId)databaseID
  41. persistenceKey:(std::string)persistenceKey
  42. credentialsProvider:(std::shared_ptr<auth::CredentialsProvider>)credentialsProvider
  43. workerQueue:(std::shared_ptr<util::AsyncQueue>)workerQueue
  44. firebaseApp:(FIRApp *)app
  45. instanceRegistry:(nullable id<FSTFirestoreInstanceRegistry>)registry;
  46. @end
  47. /** Internal FIRFirestore API we don't want exposed in our public header files. */
  48. @interface FIRFirestore (Internal)
  49. + (FIRFirestore *)recoverFromFirestore:(std::shared_ptr<api::Firestore>)firestore;
  50. - (void)terminateInternalWithCompletion:(nullable void (^)(NSError *_Nullable error))completion;
  51. - (const std::shared_ptr<util::AsyncQueue> &)workerQueue;
  52. @property(nonatomic, assign, readonly) std::shared_ptr<api::Firestore> wrapped;
  53. @property(nonatomic, assign, readonly) const model::DatabaseId &databaseID;
  54. @property(nonatomic, strong, readonly) FSTUserDataConverter *dataConverter;
  55. @end
  56. NS_ASSUME_NONNULL_END