FIRFirestore+Internal.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 "Firestore/core/src/firebase/firestore/auth/credentials_provider.h"
  19. #include "Firestore/core/src/firebase/firestore/model/database_id.h"
  20. #include "absl/strings/string_view.h"
  21. NS_ASSUME_NONNULL_BEGIN
  22. @class FSTDispatchQueue;
  23. @class FSTFirestoreClient;
  24. @class FSTUserDataConverter;
  25. @interface FIRFirestore (/* Init */)
  26. /**
  27. * Initializes a Firestore object with all the required parameters directly. This exists so that
  28. * tests can create FIRFirestore objects without needing FIRApp.
  29. */
  30. - (instancetype)initWithProjectID:(const absl::string_view)projectID
  31. database:(const absl::string_view)database
  32. persistenceKey:(NSString *)persistenceKey
  33. credentialsProvider:(std::unique_ptr<firebase::firestore::auth::CredentialsProvider>)
  34. credentialsProvider
  35. workerDispatchQueue:(FSTDispatchQueue *)workerDispatchQueue
  36. firebaseApp:(FIRApp *)app;
  37. @end
  38. /** Internal FIRFirestore API we don't want exposed in our public header files. */
  39. @interface FIRFirestore (Internal)
  40. /** Checks to see if logging is is globally enabled for the Firestore client. */
  41. + (BOOL)isLoggingEnabled;
  42. /**
  43. * Shutdown this `FIRFirestore`, releasing all resources (abandoning any outstanding writes,
  44. * removing all listens, closing all network connections, etc.).
  45. *
  46. * @param completion A block to execute once everything has shut down.
  47. */
  48. - (void)shutdownWithCompletion:(nullable void (^)(NSError *_Nullable error))completion
  49. NS_SWIFT_NAME(shutdown(completion:));
  50. // FIRFirestore ownes the DatabaseId instance.
  51. @property(nonatomic, assign, readonly) const firebase::firestore::model::DatabaseId *databaseID;
  52. @property(nonatomic, strong, readonly) FSTFirestoreClient *client;
  53. @property(nonatomic, strong, readonly) FSTUserDataConverter *dataConverter;
  54. @end
  55. NS_ASSUME_NONNULL_END