FIRFirestore+Internal.h 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. NS_ASSUME_NONNULL_BEGIN
  23. @class FIRApp;
  24. @class FSTFirestoreClient;
  25. @class FSTUserDataConverter;
  26. @interface FIRFirestore (/* Init */)
  27. /**
  28. * Initializes a Firestore object with all the required parameters directly. This exists so that
  29. * tests can create FIRFirestore objects without needing FIRApp.
  30. */
  31. - (instancetype)
  32. initWithProjectID:(std::string)projectID
  33. database:(std::string)database
  34. persistenceKey:(std::string)persistenceKey
  35. credentialsProvider:
  36. (std::unique_ptr<firebase::firestore::auth::CredentialsProvider>)credentialsProvider
  37. workerQueue:(std::unique_ptr<firebase::firestore::util::AsyncQueue>)workerQueue
  38. firebaseApp:(FIRApp *)app;
  39. @end
  40. /** Internal FIRFirestore API we don't want exposed in our public header files. */
  41. @interface FIRFirestore (Internal)
  42. // TODO(b/116617988): Move this to FIRFirestore.h and update CHANGELOG.md once backend support is
  43. // ready.
  44. #pragma mark - Collection Group Queries
  45. /**
  46. * Creates and returns a new `Query` that includes all documents in the database that are contained
  47. * in a collection or subcollection with the given collectionID.
  48. *
  49. * @param collectionID Identifies the collections to query over. Every collection or subcollection
  50. * with this ID as the last segment of its path will be included. Cannot contain a slash.
  51. * @return The created `Query`.
  52. */
  53. - (FIRQuery *)collectionGroupWithID:(NSString *)collectionID NS_SWIFT_NAME(collectionGroup(_:));
  54. /** Checks to see if logging is is globally enabled for the Firestore client. */
  55. + (BOOL)isLoggingEnabled;
  56. + (FIRFirestore *)recoverFromFirestore:(firebase::firestore::api::Firestore *)firestore;
  57. /**
  58. * Shutdown this `FIRFirestore`, releasing all resources (abandoning any outstanding writes,
  59. * removing all listens, closing all network connections, etc.).
  60. *
  61. * @param completion A block to execute once everything has shut down.
  62. */
  63. - (void)shutdownWithCompletion:(nullable void (^)(NSError *_Nullable error))completion
  64. NS_SWIFT_NAME(shutdown(completion:));
  65. @property(nonatomic, assign, readonly) firebase::firestore::api::Firestore *wrapped;
  66. @property(nonatomic, assign, readonly) firebase::firestore::util::AsyncQueue *workerQueue;
  67. // FIRFirestore ownes the DatabaseId instance.
  68. @property(nonatomic, assign, readonly) const firebase::firestore::model::DatabaseId *databaseID;
  69. @property(nonatomic, strong, readonly) FSTFirestoreClient *client;
  70. @property(nonatomic, strong, readonly) FSTUserDataConverter *dataConverter;
  71. @end
  72. NS_ASSUME_NONNULL_END