├── .clang-format ├── .clang-tidy ├── .codecov.yml ├── .evergreen ├── README.md ├── config.yml ├── config_generator │ ├── components │ │ ├── abi_stability.py │ │ ├── atlas_search_indexes.py │ │ ├── benchmarks.py │ │ ├── clang_tidy.py │ │ ├── cmake_compat.py │ │ ├── compile_only.py │ │ ├── docker_build.py │ │ ├── funcs │ │ │ ├── backtrace.py │ │ │ ├── compile.py │ │ │ ├── fetch_c_driver_source.py │ │ │ ├── fetch_det.py │ │ │ ├── install_c_driver.py │ │ │ ├── run_kms_servers.py │ │ │ ├── set_cache_dir.py │ │ │ ├── setup.py │ │ │ ├── start_mongod.py │ │ │ ├── stop_mongod.py │ │ │ ├── test.py │ │ │ ├── upload_code_coverage.py │ │ │ ├── upload_mongo_orchestration_artifacts.py │ │ │ └── upload_working_dir.py │ │ ├── integration.py │ │ ├── lint.py │ │ ├── macro_guards.py │ │ ├── packaging.py │ │ ├── sanitizers.py │ │ ├── sbom.py │ │ ├── scan_build.py │ │ ├── uninstall_check.py │ │ ├── valgrind.py │ │ └── versioned_api.py │ ├── etc │ │ ├── distros.py │ │ ├── function.py │ │ └── utils.py │ ├── generate.py │ └── generators │ │ ├── functions.py │ │ ├── task_groups.py │ │ ├── tasks.py │ │ └── variants.py ├── generated_configs │ ├── functions.yml │ ├── task_groups.yml │ ├── tasks.yml │ └── variants.yml ├── mongo-cxx-driver.spec ├── scripts │ ├── abi-compliance-check-setup.sh │ ├── abi-compliance-check-test.sh │ ├── abi-prohibited-symbols-test.sh │ ├── abi-stability-setup.sh │ ├── abidiff-setup.sh │ ├── abidiff-test.sh │ ├── build-example-projects.sh │ ├── build_snapshot_rpm.sh │ ├── bypass-dlclose.sh │ ├── cmake-compat-check.sh │ ├── cmake-compat.sh │ ├── compile-scan-build.sh │ ├── compile.sh │ ├── debian_package_build.sh │ ├── install-build-tools.sh │ ├── install-c-driver.sh │ ├── sbom.sh │ ├── send-perf-data.sh │ ├── start-mongod.sh │ ├── test.sh │ ├── uninstall_check.sh │ ├── uninstall_check_windows.cmd │ └── upload-code-coverage.sh └── spec.patch ├── .git-blame-ignore-refs ├── .gitattributes ├── .github └── CODEOWNERS ├── .gitignore ├── .ycm_extra_conf.py ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── CREDITS.json ├── Doxyfile ├── LICENSE ├── README.md ├── THIRD-PARTY-NOTICES ├── benchmark ├── CMakeLists.txt ├── README.md ├── benchmark_runner.cpp ├── benchmark_runner.hpp ├── bson │ ├── bson_decoding.hpp │ └── bson_encoding.hpp ├── main.cpp ├── microbench.cpp ├── microbench.hpp ├── multi_doc │ ├── bulk_insert.hpp │ ├── find_many.hpp │ ├── gridfs_download.hpp │ └── gridfs_upload.hpp ├── parallel │ ├── gridfs_multi_export.hpp │ ├── gridfs_multi_import.hpp │ ├── json_multi_export.hpp │ └── json_multi_import.hpp ├── score_recorder.cpp ├── score_recorder.hpp └── single_doc │ ├── find_one_by_id.hpp │ ├── insert_one.hpp │ └── run_command.hpp ├── cmake ├── BsoncxxUtil.cmake ├── CMakeLists.txt ├── FetchCatch2.cmake ├── FetchMongoC.cmake ├── MacroGuardTest.cmake ├── MongocxxUtil.cmake ├── ParseVersion.cmake └── make_dist │ ├── CMakeLists.txt │ ├── COPYING-CMAKE-SCRIPTS.txt │ ├── MakeDist.cmake │ ├── MakeDistCheck.cmake │ └── MakeDistFiles.cmake ├── data ├── CMakeLists.txt ├── change-streams │ └── unified │ │ ├── change-streams-clusterTime.json │ │ ├── change-streams-disambiguatedPaths.json │ │ ├── change-streams-errors.json │ │ ├── change-streams-nsType.json │ │ ├── change-streams-pre_and_post_images.json │ │ ├── change-streams-resume-allowlist.json │ │ ├── change-streams-resume-errorLabels.json │ │ ├── change-streams-showExpandedEvents.json │ │ ├── change-streams.json │ │ └── test_files.txt ├── client_side_encryption │ ├── corpus │ │ ├── corpus-encrypted.json │ │ ├── corpus-key-aws.json │ │ ├── corpus-key-azure.json │ │ ├── corpus-key-gcp.json │ │ ├── corpus-key-kmip.json │ │ ├── corpus-key-local.json │ │ ├── corpus-schema.json │ │ └── corpus.json │ ├── explicit-encryption │ │ ├── encryptedFields.json │ │ ├── key1-document.json │ │ ├── range-encryptedFields-Date.json │ │ ├── range-encryptedFields-DecimalNoPrecision.json │ │ ├── range-encryptedFields-DecimalPrecision.json │ │ ├── range-encryptedFields-DoubleNoPrecision.json │ │ ├── range-encryptedFields-DoublePrecision.json │ │ ├── range-encryptedFields-Int.json │ │ └── range-encryptedFields-Long.json │ ├── external │ │ ├── external-key.json │ │ └── external-schema.json │ ├── legacy │ │ ├── aggregate.json │ │ ├── awsTemporary.json │ │ ├── azureKMS.json │ │ ├── badQueries.json │ │ ├── badSchema.json │ │ ├── basic.json │ │ ├── bulk.json │ │ ├── bypassAutoEncryption.json │ │ ├── bypassedCommand.json │ │ ├── count.json │ │ ├── countDocuments.json │ │ ├── delete.json │ │ ├── distinct.json │ │ ├── explain.json │ │ ├── find.json │ │ ├── findOneAndDelete.json │ │ ├── findOneAndReplace.json │ │ ├── findOneAndUpdate.json │ │ ├── fle2v2-BypassQueryAnalysis.json │ │ ├── fle2v2-Compact.json │ │ ├── fle2v2-CreateCollection-OldServer.json │ │ ├── fle2v2-CreateCollection.json │ │ ├── fle2v2-DecryptExistingData.json │ │ ├── fle2v2-Delete.json │ │ ├── fle2v2-EncryptedFields-vs-EncryptedFieldsMap.json │ │ ├── fle2v2-EncryptedFields-vs-jsonSchema.json │ │ ├── fle2v2-EncryptedFieldsMap-defaults.json │ │ ├── fle2v2-FindOneAndUpdate.json │ │ ├── fle2v2-InsertFind-Indexed.json │ │ ├── fle2v2-InsertFind-Unindexed.json │ │ ├── fle2v2-MissingKey.json │ │ ├── fle2v2-NoEncryption.json │ │ ├── fle2v2-Rangev2-Compact.json │ │ ├── fle2v2-Rangev2-Date-Aggregate.json │ │ ├── fle2v2-Rangev2-Date-Correctness.json │ │ ├── fle2v2-Rangev2-Date-Delete.json │ │ ├── fle2v2-Rangev2-Date-FindOneAndUpdate.json │ │ ├── fle2v2-Rangev2-Date-InsertFind.json │ │ ├── fle2v2-Rangev2-Date-Update.json │ │ ├── fle2v2-Rangev2-Decimal-Aggregate.json │ │ ├── fle2v2-Rangev2-Decimal-Correctness.json │ │ ├── fle2v2-Rangev2-Decimal-Delete.json │ │ ├── fle2v2-Rangev2-Decimal-FindOneAndUpdate.json │ │ ├── fle2v2-Rangev2-Decimal-InsertFind.json │ │ ├── fle2v2-Rangev2-Decimal-Update.json │ │ ├── fle2v2-Rangev2-DecimalPrecision-Aggregate.json │ │ ├── fle2v2-Rangev2-DecimalPrecision-Correctness.json │ │ ├── fle2v2-Rangev2-DecimalPrecision-Delete.json │ │ ├── fle2v2-Rangev2-DecimalPrecision-FindOneAndUpdate.json │ │ ├── fle2v2-Rangev2-DecimalPrecision-InsertFind.json │ │ ├── fle2v2-Rangev2-DecimalPrecision-Update.json │ │ ├── fle2v2-Rangev2-Defaults.json │ │ ├── fle2v2-Rangev2-Double-Aggregate.json │ │ ├── fle2v2-Rangev2-Double-Correctness.json │ │ ├── fle2v2-Rangev2-Double-Delete.json │ │ ├── fle2v2-Rangev2-Double-FindOneAndUpdate.json │ │ ├── fle2v2-Rangev2-Double-InsertFind.json │ │ ├── fle2v2-Rangev2-Double-Update.json │ │ ├── fle2v2-Rangev2-DoublePrecision-Aggregate.json │ │ ├── fle2v2-Rangev2-DoublePrecision-Correctness.json │ │ ├── fle2v2-Rangev2-DoublePrecision-Delete.json │ │ ├── fle2v2-Rangev2-DoublePrecision-FindOneAndUpdate.json │ │ ├── fle2v2-Rangev2-DoublePrecision-InsertFind.json │ │ ├── fle2v2-Rangev2-DoublePrecision-Update.json │ │ ├── fle2v2-Rangev2-Int-Aggregate.json │ │ ├── fle2v2-Rangev2-Int-Correctness.json │ │ ├── fle2v2-Rangev2-Int-Delete.json │ │ ├── fle2v2-Rangev2-Int-FindOneAndUpdate.json │ │ ├── fle2v2-Rangev2-Int-InsertFind.json │ │ ├── fle2v2-Rangev2-Int-Update.json │ │ ├── fle2v2-Rangev2-Long-Aggregate.json │ │ ├── fle2v2-Rangev2-Long-Correctness.json │ │ ├── fle2v2-Rangev2-Long-Delete.json │ │ ├── fle2v2-Rangev2-Long-FindOneAndUpdate.json │ │ ├── fle2v2-Rangev2-Long-InsertFind.json │ │ ├── fle2v2-Rangev2-Long-Update.json │ │ ├── fle2v2-Rangev2-WrongType.json │ │ ├── fle2v2-Update.json │ │ ├── fle2v2-validatorAndPartialFieldExpression.json │ │ ├── gcpKMS.json │ │ ├── getMore.json │ │ ├── insert.json │ │ ├── keyAltName.json │ │ ├── kmipKMS.json │ │ ├── localKMS.json │ │ ├── localSchema.json │ │ ├── malformedCiphertext.json │ │ ├── maxWireVersion.json │ │ ├── missingKey.json │ │ ├── noSchema.json │ │ ├── replaceOne.json │ │ ├── test_files.txt │ │ ├── types.json │ │ ├── unsupportedCommand.json │ │ ├── updateMany.json │ │ └── updateOne.json │ ├── limits │ │ ├── limits-doc.json │ │ ├── limits-key.json │ │ └── limits-schema.json │ └── unified │ │ ├── addKeyAltName.json │ │ ├── createDataKey-kms_providers-invalid.json │ │ ├── createDataKey.json │ │ ├── deleteKey.json │ │ ├── getKey.json │ │ ├── getKeyByAltName.json │ │ ├── getKeys.json │ │ ├── kmsProviders-explicit_kms_credentials.json │ │ ├── kmsProviders-mixed_kms_credential_fields.json │ │ ├── kmsProviders-placeholder_kms_credentials.json │ │ ├── kmsProviders-unconfigured_kms.json │ │ ├── removeKeyAltName.json │ │ ├── rewrapManyDataKey-decrypt_failure.json │ │ ├── rewrapManyDataKey-encrypt_failure.json │ │ ├── rewrapManyDataKey.json │ │ └── test_files.txt ├── collection-management │ ├── test_files.txt │ └── unified │ │ ├── clustered-indexes.json │ │ ├── createCollection-pre_and_post_images.json │ │ ├── modifyCollection-pre_and_post_images.json │ │ └── timeseries-collection.json ├── command-monitoring │ ├── bulkWrite.json │ ├── command.json │ ├── deleteMany.json │ ├── deleteOne.json │ ├── find.json │ ├── insertMany.json │ ├── insertOne.json │ ├── test_files.txt │ ├── unacknowledgedBulkWrite.json │ ├── updateMany.json │ └── updateOne.json ├── crud │ ├── legacy │ │ ├── test_files.txt │ │ └── v1 │ │ │ ├── read │ │ │ ├── aggregate-collation.json │ │ │ ├── aggregate-out.json │ │ │ ├── aggregate.json │ │ │ ├── count-collation.json │ │ │ ├── count-empty.json │ │ │ ├── count.json │ │ │ ├── distinct-collation.json │ │ │ ├── distinct.json │ │ │ ├── find-collation.json │ │ │ └── find.json │ │ │ └── write │ │ │ ├── bulkWrite-arrayFilters.json │ │ │ ├── bulkWrite-collation.json │ │ │ ├── bulkWrite.json │ │ │ ├── deleteMany-collation.json │ │ │ ├── deleteMany.json │ │ │ ├── deleteOne-collation.json │ │ │ ├── deleteOne.json │ │ │ ├── findOneAndDelete-collation.json │ │ │ ├── findOneAndDelete.json │ │ │ ├── findOneAndReplace-collation.json │ │ │ ├── findOneAndReplace-upsert.json │ │ │ ├── findOneAndReplace.json │ │ │ ├── findOneAndUpdate-arrayFilters.json │ │ │ ├── findOneAndUpdate-collation.json │ │ │ ├── findOneAndUpdate.json │ │ │ ├── insertMany.json │ │ │ ├── insertOne.json │ │ │ ├── replaceOne-collation.json │ │ │ ├── replaceOne.json │ │ │ ├── updateMany-arrayFilters.json │ │ │ ├── updateMany-collation.json │ │ │ ├── updateMany.json │ │ │ ├── updateOne-arrayFilters.json │ │ │ ├── updateOne-collation.json │ │ │ └── updateOne.json │ └── unified │ │ ├── aggregate-allowdiskuse.json │ │ ├── aggregate-let.json │ │ ├── aggregate-merge.json │ │ ├── aggregate-out-readConcern.json │ │ ├── aggregate-write-readPreference.json │ │ ├── aggregate.json │ │ ├── bulkWrite-arrayFilters-clientError.json │ │ ├── bulkWrite-arrayFilters.json │ │ ├── bulkWrite-comment.json │ │ ├── bulkWrite-delete-hint-clientError.json │ │ ├── bulkWrite-delete-hint-serverError.json │ │ ├── bulkWrite-delete-hint.json │ │ ├── bulkWrite-deleteMany-hint-unacknowledged.json │ │ ├── bulkWrite-deleteMany-let.json │ │ ├── bulkWrite-deleteOne-hint-unacknowledged.json │ │ ├── bulkWrite-deleteOne-let.json │ │ ├── bulkWrite-insertOne-dots_and_dollars.json │ │ ├── bulkWrite-replaceOne-dots_and_dollars.json │ │ ├── bulkWrite-replaceOne-hint-unacknowledged.json │ │ ├── bulkWrite-replaceOne-let.json │ │ ├── bulkWrite-replaceOne-sort.json │ │ ├── bulkWrite-update-hint-clientError.json │ │ ├── bulkWrite-update-hint-serverError.json │ │ ├── bulkWrite-update-hint.json │ │ ├── bulkWrite-update-validation.json │ │ ├── bulkWrite-updateMany-dots_and_dollars.json │ │ ├── bulkWrite-updateMany-hint-unacknowledged.json │ │ ├── bulkWrite-updateMany-let.json │ │ ├── bulkWrite-updateOne-dots_and_dollars.json │ │ ├── bulkWrite-updateOne-hint-unacknowledged.json │ │ ├── bulkWrite-updateOne-let.json │ │ ├── bulkWrite-updateOne-sort.json │ │ ├── client-bulkWrite-replaceOne-sort.json │ │ ├── client-bulkWrite-updateOne-sort.json │ │ ├── countDocuments-comment.json │ │ ├── db-aggregate-write-readPreference.json │ │ ├── db-aggregate.json │ │ ├── deleteMany-comment.json │ │ ├── deleteMany-hint-clientError.json │ │ ├── deleteMany-hint-serverError.json │ │ ├── deleteMany-hint-unacknowledged.json │ │ ├── deleteMany-hint.json │ │ ├── deleteMany-let.json │ │ ├── deleteOne-comment.json │ │ ├── deleteOne-hint-clientError.json │ │ ├── deleteOne-hint-serverError.json │ │ ├── deleteOne-hint-unacknowledged.json │ │ ├── deleteOne-hint.json │ │ ├── deleteOne-let.json │ │ ├── distinct-comment.json │ │ ├── estimatedDocumentCount-comment.json │ │ ├── estimatedDocumentCount.json │ │ ├── find-allowdiskuse-clientError.json │ │ ├── find-allowdiskuse-serverError.json │ │ ├── find-allowdiskuse.json │ │ ├── find-comment.json │ │ ├── find-let.json │ │ ├── find.json │ │ ├── findOneAndDelete-comment.json │ │ ├── findOneAndDelete-hint-clientError.json │ │ ├── findOneAndDelete-hint-serverError.json │ │ ├── findOneAndDelete-hint-unacknowledged.json │ │ ├── findOneAndDelete-hint.json │ │ ├── findOneAndDelete-let.json │ │ ├── findOneAndReplace-comment.json │ │ ├── findOneAndReplace-dots_and_dollars.json │ │ ├── findOneAndReplace-hint-clientError.json │ │ ├── findOneAndReplace-hint-serverError.json │ │ ├── findOneAndReplace-hint-unacknowledged.json │ │ ├── findOneAndReplace-hint.json │ │ ├── findOneAndReplace-let.json │ │ ├── findOneAndUpdate-comment.json │ │ ├── findOneAndUpdate-dots_and_dollars.json │ │ ├── findOneAndUpdate-hint-clientError.json │ │ ├── findOneAndUpdate-hint-serverError.json │ │ ├── findOneAndUpdate-hint-unacknowledged.json │ │ ├── findOneAndUpdate-hint.json │ │ ├── findOneAndUpdate-let.json │ │ ├── insertMany-comment.json │ │ ├── insertMany-dots_and_dollars.json │ │ ├── insertOne-comment.json │ │ ├── insertOne-dots_and_dollars.json │ │ ├── replaceOne-comment.json │ │ ├── replaceOne-dots_and_dollars.json │ │ ├── replaceOne-hint-unacknowledged.json │ │ ├── replaceOne-hint.json │ │ ├── replaceOne-let.json │ │ ├── replaceOne-sort.json │ │ ├── replaceOne-validation.json │ │ ├── test_files.txt │ │ ├── updateMany-comment.json │ │ ├── updateMany-dots_and_dollars.json │ │ ├── updateMany-hint-clientError.json │ │ ├── updateMany-hint-serverError.json │ │ ├── updateMany-hint-unacknowledged.json │ │ ├── updateMany-hint.json │ │ ├── updateMany-let.json │ │ ├── updateMany-validation.json │ │ ├── updateOne-comment.json │ │ ├── updateOne-dots_and_dollars.json │ │ ├── updateOne-hint-clientError.json │ │ ├── updateOne-hint-serverError.json │ │ ├── updateOne-hint-unacknowledged.json │ │ ├── updateOne-hint.json │ │ ├── updateOne-let.json │ │ ├── updateOne-sort.json │ │ ├── updateOne-validation.json │ │ └── updateWithPipelines.json ├── gridfs │ ├── delete.json │ ├── download.json │ ├── download_by_name.json │ ├── gridfs-download-serverErrors.json │ ├── gridfs-download.json │ ├── gridfs-downloadByName-serverErrors.json │ ├── gridfs-downloadByName.json │ ├── test_files.txt │ └── upload.json ├── index-management │ ├── createSearchIndex.json │ ├── createSearchIndexes.json │ ├── dropSearchIndex.json │ ├── listSearchIndexes.json │ ├── searchIndexIgnoresReadWriteConcern.json │ ├── test_files.txt │ └── updateSearchIndex.json ├── initial_dns_seedlist_discovery │ ├── load-balanced │ │ ├── srvMaxHosts-conflicts_with_loadBalanced-true-txt.json │ │ ├── srvMaxHosts-conflicts_with_loadBalanced-true.json │ │ ├── srvMaxHosts-zero-txt.json │ │ └── srvMaxHosts-zero.json │ ├── replica-set │ │ ├── srvMaxHosts-conflicts_with_replicaSet-txt.json │ │ ├── srvMaxHosts-conflicts_with_replicaSet.json │ │ ├── srvMaxHosts-equal_to_srv_records.json │ │ ├── srvMaxHosts-greater_than_srv_records.json │ │ ├── srvMaxHosts-invalid_integer.json │ │ ├── srvMaxHosts-invalid_type.json │ │ ├── srvMaxHosts-less_than_srv_records.json │ │ ├── srvMaxHosts-zero-txt.json │ │ └── srvMaxHosts-zero.json │ └── sharded │ │ ├── srvMaxHosts-equal_to_srv_records.json │ │ ├── srvMaxHosts-greater_than_srv_records.json │ │ ├── srvMaxHosts-invalid_integer.json │ │ ├── srvMaxHosts-invalid_type.json │ │ ├── srvMaxHosts-less_than_srv_records.json │ │ └── srvMaxHosts-zero.json ├── mongohouse │ ├── aggregate.json │ ├── estimatedDocumentCount.json │ ├── find.json │ ├── getMore.json │ ├── listCollections.json │ ├── listDatabases.json │ ├── runCommand.json │ └── test_files.txt ├── read-write-concern │ └── operation │ │ ├── default-write-concern-2.6.json │ │ ├── default-write-concern-3.2.json │ │ ├── default-write-concern-3.4.json │ │ ├── default-write-concern-4.2.json │ │ └── test_files.txt ├── retryable-reads │ ├── legacy │ │ ├── aggregate-merge.json │ │ ├── aggregate-serverErrors.json │ │ ├── aggregate.json │ │ ├── changeStreams-client.watch-serverErrors.json │ │ ├── changeStreams-client.watch.json │ │ ├── changeStreams-db.coll.watch-serverErrors.json │ │ ├── changeStreams-db.coll.watch.json │ │ ├── changeStreams-db.watch-serverErrors.json │ │ ├── changeStreams-db.watch.json │ │ ├── count-serverErrors.json │ │ ├── count.json │ │ ├── countDocuments-serverErrors.json │ │ ├── countDocuments.json │ │ ├── distinct-serverErrors.json │ │ ├── distinct.json │ │ ├── estimatedDocumentCount-4.9.json │ │ ├── estimatedDocumentCount-serverErrors-4.9.json │ │ ├── estimatedDocumentCount-serverErrors.json │ │ ├── estimatedDocumentCount.json │ │ ├── find-serverErrors.json │ │ ├── find.json │ │ ├── findOne-serverErrors.json │ │ ├── findOne.json │ │ ├── gridfs-download-serverErrors.json │ │ ├── gridfs-download.json │ │ ├── gridfs-downloadByName-serverErrors.json │ │ ├── gridfs-downloadByName.json │ │ ├── listCollectionNames-serverErrors.json │ │ ├── listCollectionNames.json │ │ ├── listCollectionObjects-serverErrors.json │ │ ├── listCollectionObjects.json │ │ ├── listCollections-serverErrors.json │ │ ├── listCollections.json │ │ ├── listDatabaseNames-serverErrors.json │ │ ├── listDatabaseNames.json │ │ ├── listDatabaseObjects-serverErrors.json │ │ ├── listDatabaseObjects.json │ │ ├── listDatabases-serverErrors.json │ │ ├── listDatabases.json │ │ ├── listIndexNames-serverErrors.json │ │ ├── listIndexNames.json │ │ ├── listIndexes-serverErrors.json │ │ ├── listIndexes.json │ │ ├── mapReduce.json │ │ └── test_files.txt │ └── unified │ │ ├── handshakeError.json │ │ └── test_files.txt ├── retryable-writes │ └── unified │ │ ├── bulkWrite-serverErrors.json │ │ ├── handshakeError.json │ │ ├── insertOne-serverErrors.json │ │ └── test_files.txt ├── sessions │ └── unified │ │ ├── implicit-sessions-default-causal-consistency.json │ │ ├── snapshot-sessions-not-supported-client-error.json │ │ ├── snapshot-sessions-not-supported-server-error.json │ │ ├── snapshot-sessions-unsupported-ops.json │ │ ├── snapshot-sessions.json │ │ └── test_files.txt ├── transactions │ ├── legacy │ │ ├── abort.json │ │ ├── bulk.json │ │ ├── causal-consistency.json │ │ ├── commit.json │ │ ├── count.json │ │ ├── create-collection.json │ │ ├── create-index.json │ │ ├── delete.json │ │ ├── error-labels-errorLabels.json │ │ ├── error-labels.json │ │ ├── errors-client.json │ │ ├── errors.json │ │ ├── findOneAndDelete.json │ │ ├── findOneAndReplace.json │ │ ├── findOneAndUpdate.json │ │ ├── insert.json │ │ ├── isolation.json │ │ ├── mongos-pin-auto.json │ │ ├── mongos-recovery-token-errorLabels.json │ │ ├── mongos-recovery-token.json │ │ ├── pin-mongos.json │ │ ├── read-concern.json │ │ ├── read-pref.json │ │ ├── reads.json │ │ ├── retryable-abort-errorLabels.json │ │ ├── retryable-abort.json │ │ ├── retryable-commit-errorLabels-forbid_serverless.json │ │ ├── retryable-commit-errorLabels.json │ │ ├── retryable-commit-forbid_serverless.json │ │ ├── retryable-commit.json │ │ ├── retryable-writes.json │ │ ├── run-command.json │ │ ├── test_files.txt │ │ ├── transaction-options-repl.json │ │ ├── transaction-options.json │ │ ├── update.json │ │ └── write-concern.json │ └── unified │ │ ├── do-not-retry-read-in-transaction.json │ │ ├── mongos-unpin.json │ │ ├── retryable-abort-handshake.json │ │ ├── retryable-commit-handshake.json │ │ └── test_files.txt ├── unified-format │ ├── test_files.txt │ └── valid-pass │ │ ├── assertNumberConnectionsCheckedOut.json │ │ ├── entity-client-cmap-events.json │ │ ├── entity-client-storeEventsAsEntities.json │ │ ├── entity-find-cursor.json │ │ ├── expectedEventsForClient-eventType.json │ │ ├── expectedEventsForClient-ignoreExtraEvents.json │ │ ├── ignoreResultAndError.json │ │ ├── observeSensitiveCommands.json │ │ ├── poc-change-streams.json │ │ ├── poc-command-monitoring.json │ │ ├── poc-crud.json │ │ ├── poc-gridfs.json │ │ ├── poc-retryable-reads.json │ │ ├── poc-retryable-writes.json │ │ ├── poc-sessions.json │ │ ├── poc-transactions-convenient-api.json │ │ ├── poc-transactions-mongos-pin-auto.json │ │ ├── poc-transactions.json │ │ └── redacted-commands.json ├── uri-options │ └── srv-options.json ├── versioned-api │ ├── crud-api-version-1-strict.json │ ├── crud-api-version-1.json │ ├── runcommand-helper-no-api-version-declared.json │ ├── test-commands-deprecation-errors.json │ ├── test-commands-strict-mode.json │ ├── test_files.txt │ └── transaction-handling.json └── with_transaction │ ├── callback-aborts.json │ ├── callback-commits.json │ ├── callback-retry.json │ ├── commit-retry-errorLabels.json │ ├── commit-retry.json │ ├── commit-transienttransactionerror-4.2.json │ ├── commit-transienttransactionerror.json │ ├── commit-writeconcernerror.json │ ├── commit.json │ ├── test_files.txt │ └── transaction-options.json ├── docs ├── .gitignore ├── CMakeLists.txt ├── DoxygenLayout.xml ├── api │ ├── bsoncxx │ │ └── examples │ │ │ ├── bson_documents │ │ │ ├── access_array.md │ │ │ ├── access_doc.md │ │ │ ├── create_array.md │ │ │ ├── create_doc.md │ │ │ ├── elements.md │ │ │ ├── json.md │ │ │ └── values.md │ │ │ ├── bson_errors.md │ │ │ ├── decimal128.md │ │ │ ├── oid.md │ │ │ └── validation.md │ └── mongocxx │ │ └── examples │ │ ├── change_streams.md │ │ ├── client_sessions.md │ │ ├── clients.md │ │ ├── collections.md │ │ ├── databases.md │ │ ├── instance.md │ │ ├── logger.md │ │ ├── operation_exceptions.md │ │ └── uri.md ├── config.toml ├── content │ ├── _index.md │ └── legacy-v1 │ │ ├── _index.md │ │ ├── breaking-changes.md │ │ ├── configuration.md │ │ ├── installation.md │ │ ├── tutorial.md │ │ └── working-with-bson.md ├── data │ └── mongodb.toml ├── layouts │ ├── .readme │ └── shortcodes │ │ └── apiref.html ├── static │ └── .readme └── themes │ ├── CMakeLists.txt │ └── mongodb │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── layouts │ ├── _default │ │ ├── list.html │ │ └── single.html │ ├── index.html │ ├── legacy-v1 │ │ ├── list.html │ │ └── single.html │ ├── partials │ │ ├── assets │ │ │ ├── analytics.html │ │ │ ├── css.html │ │ │ └── javascripts.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── header │ │ │ ├── contentHeader.html │ │ │ ├── main.html │ │ │ ├── search.html │ │ │ └── topRight.html │ │ ├── menu.html │ │ ├── menu │ │ │ ├── currentItem.html │ │ │ ├── footer.html │ │ │ ├── item.html │ │ │ └── options.html │ │ ├── meta.html │ │ ├── rightColumn.html │ │ └── welcome.html │ └── shortcodes │ │ ├── docsref.html │ │ ├── note.html │ │ └── srcref.html │ ├── static │ ├── .nojekyll │ ├── css │ │ ├── basic.css │ │ ├── bootstrap-custom.css │ │ ├── mongodb-docs.css │ │ ├── overrides.css │ │ └── reset.css │ ├── favicon.ico │ ├── img │ │ ├── 24px-baseline-overlay.png │ │ ├── code-block-bg.png │ │ ├── code-block-bg@2x.png │ │ ├── favicon.png │ │ └── logo-mongodb-header.png │ ├── js │ │ ├── doctools.js │ │ ├── jquery.js │ │ ├── navbar.js │ │ ├── scripts.js │ │ ├── searchtools.js │ │ └── underscore.js │ └── lib │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ └── highlight │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── highlight.pack.js │ │ └── styles │ │ └── idea.css │ └── theme.toml ├── etc ├── CMakeLists.txt ├── apidocmenu.md ├── augmented.sbom.json ├── calc_release_version.py ├── calc_release_version_selftest.py ├── calc_release_version_selftest.sh ├── coding_guidelines.md ├── cyclonedx.sbom.json ├── debug-core-evergreen.sh ├── deploy-to-ghpages.pl ├── doxygen-extra.css ├── format.py ├── garasign_dist_file.sh ├── garasign_release_tag.sh ├── generate-latest-apidocs.sh ├── generate-uninstall.cmd ├── generate-uninstall.sh ├── make_release.py ├── memcheck.suppressions ├── microbenchmark-test-data.sh ├── patch-apidocs-current-redirects.py ├── patch-apidocs-index-pages.py ├── purls.txt ├── releasing.md ├── ruff-format-all.sh ├── run-clang-tidy.sh ├── shfmt-format-all.sh ├── ssdlc_compliance_report.md ├── test_make_release.py ├── third_party_vulnerabilities.md └── ubsan.ignorelist ├── examples ├── CMakeLists.txt ├── README.md ├── add_subdirectory │ ├── .gitignore │ ├── CMakeLists.txt │ └── hello_mongocxx.cpp ├── api │ ├── bsoncxx │ │ └── examples │ │ │ ├── bson_documents │ │ │ ├── access_array │ │ │ │ ├── algorithms.cpp │ │ │ │ ├── basic.cpp │ │ │ │ ├── find.cpp │ │ │ │ ├── iterators.cpp │ │ │ │ └── subscript.cpp │ │ │ ├── access_doc │ │ │ │ ├── algorithms.cpp │ │ │ │ ├── basic.cpp │ │ │ │ ├── find.cpp │ │ │ │ ├── iterators.cpp │ │ │ │ └── subscript.cpp │ │ │ ├── create_array │ │ │ │ ├── builder_append.cpp │ │ │ │ ├── builder_basic.cpp │ │ │ │ ├── builder_bson_type.cpp │ │ │ │ ├── builder_bson_value.cpp │ │ │ │ ├── builder_concatenate.cpp │ │ │ │ ├── builder_make_document.cpp │ │ │ │ ├── builder_raw_value.cpp │ │ │ │ ├── builder_raw_view.cpp │ │ │ │ ├── builder_reset.cpp │ │ │ │ ├── builder_sub_array.cpp │ │ │ │ ├── builder_sub_array_append.cpp │ │ │ │ ├── builder_sub_document.cpp │ │ │ │ ├── builder_sub_document_append.cpp │ │ │ │ ├── builder_value_type.cpp │ │ │ │ ├── json_basic.cpp │ │ │ │ ├── json_extended.cpp │ │ │ │ ├── json_sub_array.cpp │ │ │ │ ├── json_sub_document.cpp │ │ │ │ └── json_udl.cpp │ │ │ ├── create_doc │ │ │ │ ├── builder_append.cpp │ │ │ │ ├── builder_basic.cpp │ │ │ │ ├── builder_bson_type.cpp │ │ │ │ ├── builder_bson_value.cpp │ │ │ │ ├── builder_concatenate.cpp │ │ │ │ ├── builder_make_document.cpp │ │ │ │ ├── builder_raw_value.cpp │ │ │ │ ├── builder_raw_view.cpp │ │ │ │ ├── builder_reset.cpp │ │ │ │ ├── builder_sub_array.cpp │ │ │ │ ├── builder_sub_array_append.cpp │ │ │ │ ├── builder_sub_document.cpp │ │ │ │ ├── builder_sub_document_append.cpp │ │ │ │ ├── builder_value_type.cpp │ │ │ │ ├── json_basic.cpp │ │ │ │ ├── json_extended.cpp │ │ │ │ ├── json_sub_array.cpp │ │ │ │ ├── json_sub_document.cpp │ │ │ │ └── json_udl.cpp │ │ │ ├── elements │ │ │ │ ├── arr_multi.cpp │ │ │ │ ├── arr_single.cpp │ │ │ │ ├── cmp_bson_value.cpp │ │ │ │ ├── cmp_type.cpp │ │ │ │ ├── doc_multi.cpp │ │ │ │ └── doc_single.cpp │ │ │ ├── json │ │ │ │ ├── array.cpp │ │ │ │ └── document.cpp │ │ │ └── values │ │ │ │ ├── arr_value.cpp │ │ │ │ ├── arr_view.cpp │ │ │ │ ├── bson_type_value.cpp │ │ │ │ ├── bson_type_view.cpp │ │ │ │ ├── doc_value.cpp │ │ │ │ ├── doc_view.cpp │ │ │ │ ├── make_value.cpp │ │ │ │ └── value_type.cpp │ │ │ ├── bson_errors │ │ │ ├── access_arr_iter_end.cpp │ │ │ ├── access_arr_iter_invalid.cpp │ │ │ ├── access_arr_key_missing.cpp │ │ │ ├── access_doc_iter_end.cpp │ │ │ ├── access_doc_iter_invalid.cpp │ │ │ ├── access_doc_key_missing.cpp │ │ │ ├── big_string.hh │ │ │ ├── create_arr_append.cpp │ │ │ ├── create_arr_append_sub_array.cpp │ │ │ ├── create_arr_append_sub_document.cpp │ │ │ ├── create_bson_value_invalid_element.cpp │ │ │ ├── create_bson_value_invalid_type.cpp │ │ │ ├── create_doc_append.cpp │ │ │ ├── create_doc_append_sub_array.cpp │ │ │ ├── create_doc_append_sub_document.cpp │ │ │ ├── create_json.cpp │ │ │ ├── query_bson_value_invalid_type.cpp │ │ │ ├── query_element_arr_invalid.cpp │ │ │ ├── query_element_arr_invalid_type.cpp │ │ │ ├── query_element_doc_invalid.cpp │ │ │ ├── query_element_doc_invalid_type.cpp │ │ │ ├── to_json_invalid_arr.cpp │ │ │ └── to_json_invalid_doc.cpp │ │ │ ├── decimal128 │ │ │ ├── basic_usage.cpp │ │ │ ├── errors.cpp │ │ │ └── from_bytes.cpp │ │ │ ├── oid │ │ │ ├── basic_usage.cpp │ │ │ └── errors.cpp │ │ │ └── validation │ │ │ ├── basic_usage.cpp │ │ │ └── validator.cpp │ ├── concern.cpp │ ├── concern.hh │ ├── db_lock.cpp │ ├── db_lock.hh │ ├── mongocxx │ │ └── examples │ │ │ ├── change_streams │ │ │ ├── basic.cpp │ │ │ ├── from_client.cpp │ │ │ ├── from_collection.cpp │ │ │ ├── from_database.cpp │ │ │ └── with_pipeline.cpp │ │ │ ├── client_sessions │ │ │ ├── create │ │ │ │ ├── basic.cpp │ │ │ │ └── with_options.cpp │ │ │ └── use │ │ │ │ ├── basic.cpp │ │ │ │ └── transactions.cpp │ │ │ ├── clients │ │ │ ├── create │ │ │ │ ├── pool │ │ │ │ │ ├── basic.cpp │ │ │ │ │ ├── options.cpp │ │ │ │ │ └── try_acquire.cpp │ │ │ │ └── single │ │ │ │ │ ├── basic.cpp │ │ │ │ │ ├── options │ │ │ │ │ ├── apm.cpp │ │ │ │ │ ├── auto_encryption.cpp │ │ │ │ │ ├── stable_api.cpp │ │ │ │ │ └── tls.cpp │ │ │ │ │ └── with_uri.cpp │ │ │ ├── errors │ │ │ │ ├── auto_encryption.cpp │ │ │ │ ├── invalid_client.cpp │ │ │ │ ├── stable_api.cpp │ │ │ │ ├── tls.cpp │ │ │ │ └── wait_queue_timeout.cpp │ │ │ └── use │ │ │ │ ├── list_database_names.cpp │ │ │ │ ├── list_database_names_with_options.cpp │ │ │ │ ├── list_databases.cpp │ │ │ │ └── list_databases_with_options.cpp │ │ │ ├── collections │ │ │ ├── aggregate.cpp │ │ │ ├── bulk_write.cpp │ │ │ ├── bulk_write_with_options.cpp │ │ │ ├── count.cpp │ │ │ ├── create_index.cpp │ │ │ ├── create_index_with_options.cpp │ │ │ ├── delete_many.cpp │ │ │ ├── delete_one.cpp │ │ │ ├── distinct.cpp │ │ │ ├── drop.cpp │ │ │ ├── estimate_count.cpp │ │ │ ├── find.cpp │ │ │ ├── find_one.cpp │ │ │ ├── find_one_and_delete.cpp │ │ │ ├── find_one_and_replace.cpp │ │ │ ├── find_one_and_update.cpp │ │ │ ├── incompatible_options.cpp │ │ │ ├── index_views │ │ │ │ ├── create.cpp │ │ │ │ ├── create_many.cpp │ │ │ │ ├── create_with_options.cpp │ │ │ │ ├── drop.cpp │ │ │ │ ├── drop_all.cpp │ │ │ │ ├── indexes.cpp │ │ │ │ └── list.cpp │ │ │ ├── insert_many.cpp │ │ │ ├── insert_one.cpp │ │ │ ├── invalid.cpp │ │ │ ├── invalid_parameter.cpp │ │ │ ├── list_indexes.cpp │ │ │ ├── obtain.cpp │ │ │ ├── rc.cpp │ │ │ ├── rename.cpp │ │ │ ├── replace_one.cpp │ │ │ ├── rp.cpp │ │ │ ├── update_many.cpp │ │ │ ├── update_one.cpp │ │ │ ├── wc.cpp │ │ │ └── write.cpp │ │ │ ├── databases │ │ │ ├── create_collection.cpp │ │ │ ├── create_collection_with_options.cpp │ │ │ ├── drop.cpp │ │ │ ├── has_collection.cpp │ │ │ ├── invalid.cpp │ │ │ ├── list_collection_names.cpp │ │ │ ├── list_collections.cpp │ │ │ ├── obtain.cpp │ │ │ ├── rc.cpp │ │ │ ├── rp.cpp │ │ │ ├── run_command.cpp │ │ │ └── wc.cpp │ │ │ ├── instance │ │ │ ├── basic_usage.cpp │ │ │ ├── destroyed.cpp │ │ │ └── recreation.cpp │ │ │ ├── logger │ │ │ ├── basic_usage.cpp │ │ │ └── to_string.cpp │ │ │ ├── operation_exceptions │ │ │ ├── operation.cpp │ │ │ └── regular.cpp │ │ │ └── uri │ │ │ ├── all_options.cpp │ │ │ ├── basic_usage.cpp │ │ │ ├── default_value.cpp │ │ │ ├── hosts.cpp │ │ │ ├── invalid.cpp │ │ │ ├── optional.cpp │ │ │ └── userpass.cpp │ ├── runner.cpp │ └── runner.hh ├── bsoncxx │ ├── bson_binary_vector.cpp │ ├── builder_basic.cpp │ ├── builder_core.cpp │ ├── builder_list.cpp │ ├── builder_stream.cpp │ ├── builder_stream_customization.cpp │ ├── decimal128.cpp │ ├── getting_values.cpp │ └── view_and_value.cpp ├── macros.hh ├── mongocxx │ ├── aggregate.cpp │ ├── automatic_client_side_field_level_encryption.cpp │ ├── bulk_write.cpp │ ├── causal_consistency.cpp │ ├── change_streams.cpp │ ├── client_session.cpp │ ├── connect.cpp │ ├── create.cpp │ ├── document_validation.cpp │ ├── exception.cpp │ ├── explicit_encryption.cpp │ ├── explicit_encryption_auto_decryption.cpp │ ├── get_values_from_documents.cpp │ ├── gridfs.cpp │ ├── index.cpp │ ├── inserted_id.cpp │ ├── instance_management.cpp │ ├── mongodb.com │ │ ├── aggregation_examples.cpp │ │ ├── change_streams_examples.cpp │ │ ├── documentation_examples.cpp │ │ ├── index_examples.cpp │ │ ├── runcommand_examples.cpp │ │ ├── transactions_examples.cpp │ │ ├── usage_overview.cpp │ │ └── versioned_api_examples.cpp │ ├── pool.cpp │ ├── query.cpp │ ├── query_projection.cpp │ ├── remove.cpp │ ├── server_side_field_level_encryption_enforcement.cpp │ ├── tailable_cursor.cpp │ ├── tutorial.cpp │ ├── update.cpp │ ├── view_or_value_variant.cpp │ └── with_transaction.cpp └── projects │ ├── bsoncxx │ ├── cmake │ │ ├── shared │ │ │ ├── CMakeLists.txt │ │ │ ├── build.sh │ │ │ └── build │ │ │ │ └── .gitignore │ │ └── static │ │ │ ├── CMakeLists.txt │ │ │ ├── build.sh │ │ │ └── build │ │ │ └── .gitignore │ ├── hello_bsoncxx.cpp │ └── pkg-config │ │ ├── shared │ │ ├── build.sh │ │ └── build │ │ │ └── .gitignore │ │ └── static │ │ ├── build.sh │ │ └── build │ │ └── .gitignore │ └── mongocxx │ ├── cmake │ ├── shared │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ └── build │ │ │ └── .gitignore │ └── static │ │ ├── CMakeLists.txt │ │ ├── build.sh │ │ └── build │ │ └── .gitignore │ ├── hello_mongocxx.cpp │ └── pkg-config │ ├── shared │ ├── build.sh │ └── build │ │ └── .gitignore │ └── static │ ├── build.sh │ └── build │ └── .gitignore ├── extras └── docker │ ├── Dockerfile.j2 │ ├── Makefile.j2 │ ├── README.md │ ├── TestDockerfile.j2 │ ├── alpine3.19 │ ├── Dockerfile │ ├── Makefile │ ├── TestDockerfile │ └── test.cpp │ ├── bookworm │ ├── Dockerfile │ ├── Makefile │ ├── TestDockerfile │ └── test.cpp │ ├── generate.py │ ├── noble │ ├── Dockerfile │ ├── Makefile │ ├── TestDockerfile │ └── test.cpp │ ├── redhat-ubi-9.4 │ ├── Dockerfile │ ├── Makefile │ ├── TestDockerfile │ └── test.cpp │ └── test.cpp.j2 ├── generate_uninstall └── CMakeLists.txt ├── pyproject.toml ├── src ├── CMakeLists.txt ├── bsoncxx │ ├── CMakeLists.txt │ ├── bsoncxx.rc.in │ ├── cmake │ │ ├── CMakeLists.txt │ │ ├── bsoncxx-config.cmake.in │ │ ├── generate-pc.cmake │ │ └── libbsoncxx.pc.in │ ├── include │ │ ├── CMakeLists.txt │ │ └── bsoncxx │ │ │ ├── docs │ │ │ ├── top.hpp │ │ │ ├── topics.hpp │ │ │ ├── v1.hpp │ │ │ └── v_noabi.hpp │ │ │ ├── v1 │ │ │ ├── array │ │ │ │ ├── value-fwd.hpp │ │ │ │ ├── value.hpp │ │ │ │ ├── view-fwd.hpp │ │ │ │ └── view.hpp │ │ │ ├── decimal128-fwd.hpp │ │ │ ├── decimal128.hpp │ │ │ ├── detail │ │ │ │ ├── bit.hpp │ │ │ │ ├── compare.hpp │ │ │ │ ├── macros.hpp │ │ │ │ ├── postlude.hpp │ │ │ │ ├── prelude.hpp │ │ │ │ └── type_traits.hpp │ │ │ ├── document │ │ │ │ ├── value-fwd.hpp │ │ │ │ ├── value.hpp │ │ │ │ ├── view-fwd.hpp │ │ │ │ └── view.hpp │ │ │ ├── element │ │ │ │ ├── view-fwd.hpp │ │ │ │ └── view.hpp │ │ │ ├── exception-fwd.hpp │ │ │ ├── exception.hpp │ │ │ ├── oid-fwd.hpp │ │ │ ├── oid.hpp │ │ │ ├── stdx │ │ │ │ ├── optional.hpp │ │ │ │ └── string_view.hpp │ │ │ └── types │ │ │ │ ├── id-fwd.hpp │ │ │ │ ├── id.hpp │ │ │ │ ├── value-fwd.hpp │ │ │ │ ├── value.hpp │ │ │ │ ├── view-fwd.hpp │ │ │ │ └── view.hpp │ │ │ └── v_noabi │ │ │ └── bsoncxx │ │ │ ├── array │ │ │ ├── element-fwd.hpp │ │ │ ├── element.hpp │ │ │ ├── value-fwd.hpp │ │ │ ├── value.hpp │ │ │ ├── view-fwd.hpp │ │ │ ├── view.hpp │ │ │ └── view_or_value.hpp │ │ │ ├── builder │ │ │ ├── basic │ │ │ │ ├── array-fwd.hpp │ │ │ │ ├── array.hpp │ │ │ │ ├── document-fwd.hpp │ │ │ │ ├── document.hpp │ │ │ │ ├── helpers.hpp │ │ │ │ ├── impl.hpp │ │ │ │ ├── kvp.hpp │ │ │ │ ├── sub_array-fwd.hpp │ │ │ │ ├── sub_array.hpp │ │ │ │ ├── sub_binary-fwd.hpp │ │ │ │ ├── sub_binary.hpp │ │ │ │ ├── sub_document-fwd.hpp │ │ │ │ └── sub_document.hpp │ │ │ ├── concatenate-fwd.hpp │ │ │ ├── concatenate.hpp │ │ │ ├── core-fwd.hpp │ │ │ ├── core.hpp │ │ │ ├── list-fwd.hpp │ │ │ ├── list.hpp │ │ │ └── stream │ │ │ │ ├── array-fwd.hpp │ │ │ │ ├── array.hpp │ │ │ │ ├── array_context-fwd.hpp │ │ │ │ ├── array_context.hpp │ │ │ │ ├── closed_context-fwd.hpp │ │ │ │ ├── closed_context.hpp │ │ │ │ ├── document-fwd.hpp │ │ │ │ ├── document.hpp │ │ │ │ ├── helpers-fwd.hpp │ │ │ │ ├── helpers.hpp │ │ │ │ ├── key_context-fwd.hpp │ │ │ │ ├── key_context.hpp │ │ │ │ ├── single_context-fwd.hpp │ │ │ │ ├── single_context.hpp │ │ │ │ ├── value_context-fwd.hpp │ │ │ │ └── value_context.hpp │ │ │ ├── config │ │ │ ├── compiler.hpp │ │ │ ├── config.hpp │ │ │ ├── export.hpp │ │ │ ├── postlude.hpp │ │ │ ├── prelude.hpp │ │ │ ├── util.hpp │ │ │ └── version.hpp │ │ │ ├── decimal128-fwd.hpp │ │ │ ├── decimal128.hpp │ │ │ ├── document │ │ │ ├── element-fwd.hpp │ │ │ ├── element.hpp │ │ │ ├── value-fwd.hpp │ │ │ ├── value.hpp │ │ │ ├── view-fwd.hpp │ │ │ ├── view.hpp │ │ │ └── view_or_value.hpp │ │ │ ├── enums │ │ │ ├── binary_sub_type.hpp │ │ │ └── type.hpp │ │ │ ├── exception │ │ │ ├── error_code-fwd.hpp │ │ │ ├── error_code.hpp │ │ │ ├── exception-fwd.hpp │ │ │ └── exception.hpp │ │ │ ├── fwd.hpp │ │ │ ├── json-fwd.hpp │ │ │ ├── json.hpp │ │ │ ├── oid-fwd.hpp │ │ │ ├── oid.hpp │ │ │ ├── stdx │ │ │ ├── operators.hpp │ │ │ ├── optional.hpp │ │ │ ├── string_view.hpp │ │ │ └── type_traits.hpp │ │ │ ├── string │ │ │ ├── to_string.hpp │ │ │ ├── view_or_value-fwd.hpp │ │ │ └── view_or_value.hpp │ │ │ ├── types-fwd.hpp │ │ │ ├── types.hpp │ │ │ ├── types │ │ │ ├── bson_value │ │ │ │ ├── make_value.hpp │ │ │ │ ├── value-fwd.hpp │ │ │ │ ├── value.hpp │ │ │ │ ├── view-fwd.hpp │ │ │ │ ├── view.hpp │ │ │ │ └── view_or_value.hpp │ │ │ ├── id-fwd.hpp │ │ │ ├── id.hpp │ │ │ ├── value-fwd.hpp │ │ │ ├── value.hpp │ │ │ ├── view-fwd.hpp │ │ │ └── view.hpp │ │ │ ├── validate-fwd.hpp │ │ │ ├── validate.hpp │ │ │ ├── vector │ │ │ ├── accessor-fwd.hpp │ │ │ ├── accessor.hpp │ │ │ ├── detail-fwd.hpp │ │ │ ├── detail.hpp │ │ │ ├── elements-fwd.hpp │ │ │ ├── elements.hpp │ │ │ ├── formats-fwd.hpp │ │ │ ├── formats.hpp │ │ │ ├── iterators-fwd.hpp │ │ │ └── iterators.hpp │ │ │ ├── view_or_value-fwd.hpp │ │ │ └── view_or_value.hpp │ ├── lib │ │ ├── CMakeLists.txt │ │ └── bsoncxx │ │ │ ├── private │ │ │ ├── b64_ntop.hh │ │ │ ├── bson.hh │ │ │ ├── config │ │ │ │ └── config.hh.in │ │ │ ├── export.hh │ │ │ ├── helpers.hh │ │ │ ├── immortal.hh │ │ │ ├── itoa.cpp │ │ │ ├── itoa.hh │ │ │ ├── make_unique.hh │ │ │ ├── stack.hh │ │ │ ├── suppress_deprecation_warnings.hh │ │ │ ├── type_traits.hh │ │ │ ├── version.cpp │ │ │ └── version.hh │ │ │ ├── v1 │ │ │ ├── array │ │ │ │ ├── value.cpp │ │ │ │ └── view.cpp │ │ │ ├── config │ │ │ │ ├── config.cpp │ │ │ │ ├── config.hpp.in │ │ │ │ ├── export.cpp │ │ │ │ ├── version.cpp │ │ │ │ └── version.hpp.in │ │ │ ├── decimal128.cpp │ │ │ ├── detail │ │ │ │ ├── postlude.cpp │ │ │ │ └── prelude.cpp │ │ │ ├── document │ │ │ │ ├── value.cpp │ │ │ │ ├── view.cpp │ │ │ │ └── view.hh │ │ │ ├── element │ │ │ │ ├── view.cpp │ │ │ │ └── view.hh │ │ │ ├── exception.cpp │ │ │ ├── oid.cpp │ │ │ ├── oid.hh │ │ │ └── types │ │ │ │ ├── id.cpp │ │ │ │ ├── value.cpp │ │ │ │ ├── value.hh │ │ │ │ ├── view.cpp │ │ │ │ └── view.hh │ │ │ └── v_noabi │ │ │ └── bsoncxx │ │ │ ├── array │ │ │ ├── element.cpp │ │ │ ├── value.cpp │ │ │ └── view.cpp │ │ │ ├── builder │ │ │ └── core.cpp │ │ │ ├── config │ │ │ ├── config.cpp │ │ │ ├── export.cpp │ │ │ └── version.cpp │ │ │ ├── decimal128.cpp │ │ │ ├── document │ │ │ ├── element.cpp │ │ │ ├── value.cpp │ │ │ └── view.cpp │ │ │ ├── exception │ │ │ ├── error_code.cpp │ │ │ └── exception.cpp │ │ │ ├── json.cpp │ │ │ ├── oid.cpp │ │ │ ├── string │ │ │ └── view_or_value.cpp │ │ │ ├── types.cpp │ │ │ ├── types │ │ │ └── bson_value │ │ │ │ ├── value.cpp │ │ │ │ └── view.cpp │ │ │ ├── validate.cpp │ │ │ └── vector.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── catch.cpp │ │ ├── catch.hh │ │ ├── exception_guard.cpp │ │ ├── exception_guard.hh │ │ ├── private │ │ ├── bson_version.cpp │ │ └── make_unique.test.cpp │ │ ├── stringify.hh │ │ ├── system_error.hh │ │ ├── test_macro_guards.cpp.in │ │ ├── v1 │ │ ├── array │ │ │ ├── value.cpp │ │ │ ├── value.hh │ │ │ ├── view.cpp │ │ │ ├── view.hh │ │ │ └── view_string_maker.cpp │ │ ├── decimal128.cpp │ │ ├── decimal128.hh │ │ ├── detail │ │ │ └── bit.hh │ │ ├── document │ │ │ ├── value.cpp │ │ │ ├── value.hh │ │ │ ├── view.cpp │ │ │ ├── view.hh │ │ │ └── view_string_maker.cpp │ │ ├── element │ │ │ ├── view.cpp │ │ │ ├── view.hh │ │ │ └── view_string_maker.cpp │ │ ├── exception.cpp │ │ ├── exception.hh │ │ ├── oid.cpp │ │ ├── oid.hh │ │ ├── stdx │ │ │ ├── optional.hh │ │ │ ├── optional.test.cpp │ │ │ ├── string_view.hh │ │ │ ├── string_view.test.cpp │ │ │ └── type_traits.test.cpp │ │ └── types │ │ │ ├── id.cpp │ │ │ ├── id.hh │ │ │ ├── value.cpp │ │ │ ├── value.hh │ │ │ ├── view.cpp │ │ │ └── view.hh │ │ └── v_noabi │ │ ├── array.cpp │ │ ├── bson_b_date.cpp │ │ ├── bson_builder.cpp │ │ ├── bson_get_values.cpp │ │ ├── bson_serialization.cpp │ │ ├── bson_types.cpp │ │ ├── bson_util_itoa.cpp │ │ ├── bson_validate.cpp │ │ ├── decimal128.cpp │ │ ├── json.cpp │ │ ├── oid.cpp │ │ ├── to_string.hh │ │ ├── types.cpp │ │ ├── vector.cpp │ │ └── view_or_value.cpp └── mongocxx │ ├── CMakeLists.txt │ ├── cmake │ ├── CMakeLists.txt │ ├── generate-pc.cmake │ ├── libmongocxx.pc.in │ └── mongocxx-config.cmake.in │ ├── include │ ├── CMakeLists.txt │ └── mongocxx │ │ ├── docs │ │ ├── top.hpp │ │ ├── topics.hpp │ │ ├── v1.hpp │ │ └── v_noabi.hpp │ │ ├── v1 │ │ ├── aggregate_options-fwd.hpp │ │ ├── aggregate_options.hpp │ │ ├── apm-fwd.hpp │ │ ├── apm.hpp │ │ ├── auto_encryption_options-fwd.hpp │ │ ├── auto_encryption_options.hpp │ │ ├── bulk_write-fwd.hpp │ │ ├── bulk_write.hpp │ │ ├── change_stream-fwd.hpp │ │ ├── change_stream.hpp │ │ ├── client-fwd.hpp │ │ ├── client.hpp │ │ ├── client_encryption-fwd.hpp │ │ ├── client_encryption.hpp │ │ ├── client_session-fwd.hpp │ │ ├── client_session.hpp │ │ ├── collection-fwd.hpp │ │ ├── collection.hpp │ │ ├── count_options-fwd.hpp │ │ ├── count_options.hpp │ │ ├── cursor-fwd.hpp │ │ ├── cursor.hpp │ │ ├── data_key_options-fwd.hpp │ │ ├── data_key_options.hpp │ │ ├── database-fwd.hpp │ │ ├── database.hpp │ │ ├── delete_many_options-fwd.hpp │ │ ├── delete_many_options.hpp │ │ ├── delete_many_result-fwd.hpp │ │ ├── delete_many_result.hpp │ │ ├── delete_one_options-fwd.hpp │ │ ├── delete_one_options.hpp │ │ ├── delete_one_result-fwd.hpp │ │ ├── delete_one_result.hpp │ │ ├── detail │ │ │ ├── macros.hpp │ │ │ ├── postlude.hpp │ │ │ └── prelude.hpp │ │ ├── distinct_options-fwd.hpp │ │ ├── distinct_options.hpp │ │ ├── encrypt_options-fwd.hpp │ │ ├── encrypt_options.hpp │ │ ├── estimated_document_count_options-fwd.hpp │ │ ├── estimated_document_count_options.hpp │ │ ├── events │ │ │ ├── command_failed-fwd.hpp │ │ │ ├── command_failed.hpp │ │ │ ├── command_started-fwd.hpp │ │ │ ├── command_started.hpp │ │ │ ├── command_succeeded-fwd.hpp │ │ │ ├── command_succeeded.hpp │ │ │ ├── server_closed-fwd.hpp │ │ │ ├── server_closed.hpp │ │ │ ├── server_description-fwd.hpp │ │ │ ├── server_description.hpp │ │ │ ├── server_description_changed-fwd.hpp │ │ │ ├── server_description_changed.hpp │ │ │ ├── server_heartbeat_failed-fwd.hpp │ │ │ ├── server_heartbeat_failed.hpp │ │ │ ├── server_heartbeat_started-fwd.hpp │ │ │ ├── server_heartbeat_started.hpp │ │ │ ├── server_heartbeat_succeeded-fwd.hpp │ │ │ ├── server_heartbeat_succeeded.hpp │ │ │ ├── server_opening-fwd.hpp │ │ │ ├── server_opening.hpp │ │ │ ├── topology_closed-fwd.hpp │ │ │ ├── topology_closed.hpp │ │ │ ├── topology_description-fwd.hpp │ │ │ ├── topology_description.hpp │ │ │ ├── topology_description_changed-fwd.hpp │ │ │ ├── topology_description_changed.hpp │ │ │ ├── topology_opening-fwd.hpp │ │ │ └── topology_opening.hpp │ │ ├── exception-fwd.hpp │ │ ├── exception.hpp │ │ ├── find_one_and_delete_options-fwd.hpp │ │ ├── find_one_and_delete_options.hpp │ │ ├── find_one_and_replace_options-fwd.hpp │ │ ├── find_one_and_replace_options.hpp │ │ ├── find_one_and_update_options-fwd.hpp │ │ ├── find_one_and_update_options.hpp │ │ ├── find_options-fwd.hpp │ │ ├── find_options.hpp │ │ ├── gridfs │ │ │ ├── bucket-fwd.hpp │ │ │ ├── bucket.hpp │ │ │ ├── downloader-fwd.hpp │ │ │ ├── downloader.hpp │ │ │ ├── upload_options-fwd.hpp │ │ │ ├── upload_options.hpp │ │ │ ├── upload_result-fwd.hpp │ │ │ ├── upload_result.hpp │ │ │ ├── uploader-fwd.hpp │ │ │ └── uploader.hpp │ │ ├── hint-fwd.hpp │ │ ├── hint.hpp │ │ ├── indexes-fwd.hpp │ │ ├── indexes.hpp │ │ ├── insert_many_options-fwd.hpp │ │ ├── insert_many_options.hpp │ │ ├── insert_many_result-fwd.hpp │ │ ├── insert_many_result.hpp │ │ ├── insert_one_options-fwd.hpp │ │ ├── insert_one_options.hpp │ │ ├── insert_one_result-fwd.hpp │ │ ├── insert_one_result.hpp │ │ ├── instance-fwd.hpp │ │ ├── instance.hpp │ │ ├── logger-fwd.hpp │ │ ├── logger.hpp │ │ ├── pipeline-fwd.hpp │ │ ├── pipeline.hpp │ │ ├── pool-fwd.hpp │ │ ├── pool.hpp │ │ ├── range_options-fwd.hpp │ │ ├── range_options.hpp │ │ ├── read_concern-fwd.hpp │ │ ├── read_concern.hpp │ │ ├── read_preference-fwd.hpp │ │ ├── read_preference.hpp │ │ ├── replace_one_options-fwd.hpp │ │ ├── replace_one_options.hpp │ │ ├── replace_one_result-fwd.hpp │ │ ├── replace_one_result.hpp │ │ ├── return_document-fwd.hpp │ │ ├── return_document.hpp │ │ ├── rewrap_many_datakey_options-fwd.hpp │ │ ├── rewrap_many_datakey_options.hpp │ │ ├── rewrap_many_datakey_result-fwd.hpp │ │ ├── rewrap_many_datakey_result.hpp │ │ ├── search_indexes-fwd.hpp │ │ ├── search_indexes.hpp │ │ ├── server_api-fwd.hpp │ │ ├── server_api.hpp │ │ ├── server_error-fwd.hpp │ │ ├── server_error.hpp │ │ ├── tls-fwd.hpp │ │ ├── tls.hpp │ │ ├── transaction_options-fwd.hpp │ │ ├── transaction_options.hpp │ │ ├── update_many_options-fwd.hpp │ │ ├── update_many_options.hpp │ │ ├── update_many_result-fwd.hpp │ │ ├── update_many_result.hpp │ │ ├── update_one_options-fwd.hpp │ │ ├── update_one_options.hpp │ │ ├── update_one_result-fwd.hpp │ │ ├── update_one_result.hpp │ │ ├── uri-fwd.hpp │ │ ├── uri.hpp │ │ ├── write_concern-fwd.hpp │ │ └── write_concern.hpp │ │ └── v_noabi │ │ └── mongocxx │ │ ├── bulk_write-fwd.hpp │ │ ├── bulk_write.hpp │ │ ├── change_stream-fwd.hpp │ │ ├── change_stream.hpp │ │ ├── client-fwd.hpp │ │ ├── client.hpp │ │ ├── client_encryption-fwd.hpp │ │ ├── client_encryption.hpp │ │ ├── client_session-fwd.hpp │ │ ├── client_session.hpp │ │ ├── collection-fwd.hpp │ │ ├── collection.hpp │ │ ├── config │ │ ├── compiler.hpp │ │ ├── config.hpp │ │ ├── export.hpp │ │ ├── postlude.hpp │ │ ├── prelude.hpp │ │ └── version.hpp │ │ ├── cursor-fwd.hpp │ │ ├── cursor.hpp │ │ ├── database-fwd.hpp │ │ ├── database.hpp │ │ ├── events │ │ ├── command_failed_event-fwd.hpp │ │ ├── command_failed_event.hpp │ │ ├── command_started_event-fwd.hpp │ │ ├── command_started_event.hpp │ │ ├── command_succeeded_event-fwd.hpp │ │ ├── command_succeeded_event.hpp │ │ ├── heartbeat_failed_event-fwd.hpp │ │ ├── heartbeat_failed_event.hpp │ │ ├── heartbeat_started_event-fwd.hpp │ │ ├── heartbeat_started_event.hpp │ │ ├── heartbeat_succeeded_event-fwd.hpp │ │ ├── heartbeat_succeeded_event.hpp │ │ ├── server_changed_event-fwd.hpp │ │ ├── server_changed_event.hpp │ │ ├── server_closed_event-fwd.hpp │ │ ├── server_closed_event.hpp │ │ ├── server_description-fwd.hpp │ │ ├── server_description.hpp │ │ ├── server_opening_event-fwd.hpp │ │ ├── server_opening_event.hpp │ │ ├── topology_changed_event-fwd.hpp │ │ ├── topology_changed_event.hpp │ │ ├── topology_closed_event-fwd.hpp │ │ ├── topology_closed_event.hpp │ │ ├── topology_description-fwd.hpp │ │ ├── topology_description.hpp │ │ ├── topology_opening_event-fwd.hpp │ │ └── topology_opening_event.hpp │ │ ├── exception │ │ ├── authentication_exception-fwd.hpp │ │ ├── authentication_exception.hpp │ │ ├── bulk_write_exception-fwd.hpp │ │ ├── bulk_write_exception.hpp │ │ ├── error_code-fwd.hpp │ │ ├── error_code.hpp │ │ ├── exception-fwd.hpp │ │ ├── exception.hpp │ │ ├── gridfs_exception-fwd.hpp │ │ ├── gridfs_exception.hpp │ │ ├── logic_error-fwd.hpp │ │ ├── logic_error.hpp │ │ ├── operation_exception-fwd.hpp │ │ ├── operation_exception.hpp │ │ ├── query_exception-fwd.hpp │ │ ├── query_exception.hpp │ │ ├── server_error_code-fwd.hpp │ │ ├── server_error_code.hpp │ │ ├── write_exception-fwd.hpp │ │ └── write_exception.hpp │ │ ├── fwd.hpp │ │ ├── gridfs │ │ ├── bucket-fwd.hpp │ │ ├── bucket.hpp │ │ ├── downloader-fwd.hpp │ │ ├── downloader.hpp │ │ ├── uploader-fwd.hpp │ │ └── uploader.hpp │ │ ├── hint-fwd.hpp │ │ ├── hint.hpp │ │ ├── index_model-fwd.hpp │ │ ├── index_model.hpp │ │ ├── index_view-fwd.hpp │ │ ├── index_view.hpp │ │ ├── instance-fwd.hpp │ │ ├── instance.hpp │ │ ├── logger-fwd.hpp │ │ ├── logger.hpp │ │ ├── model │ │ ├── delete_many-fwd.hpp │ │ ├── delete_many.hpp │ │ ├── delete_one-fwd.hpp │ │ ├── delete_one.hpp │ │ ├── insert_one-fwd.hpp │ │ ├── insert_one.hpp │ │ ├── replace_one-fwd.hpp │ │ ├── replace_one.hpp │ │ ├── update_many-fwd.hpp │ │ ├── update_many.hpp │ │ ├── update_one-fwd.hpp │ │ ├── update_one.hpp │ │ ├── write-fwd.hpp │ │ └── write.hpp │ │ ├── options │ │ ├── aggregate-fwd.hpp │ │ ├── aggregate.hpp │ │ ├── apm-fwd.hpp │ │ ├── apm.hpp │ │ ├── auto_encryption-fwd.hpp │ │ ├── auto_encryption.hpp │ │ ├── bulk_write-fwd.hpp │ │ ├── bulk_write.hpp │ │ ├── change_stream-fwd.hpp │ │ ├── change_stream.hpp │ │ ├── client-fwd.hpp │ │ ├── client.hpp │ │ ├── client_encryption-fwd.hpp │ │ ├── client_encryption.hpp │ │ ├── client_session-fwd.hpp │ │ ├── client_session.hpp │ │ ├── count-fwd.hpp │ │ ├── count.hpp │ │ ├── data_key-fwd.hpp │ │ ├── data_key.hpp │ │ ├── delete-fwd.hpp │ │ ├── delete.hpp │ │ ├── distinct-fwd.hpp │ │ ├── distinct.hpp │ │ ├── encrypt-fwd.hpp │ │ ├── encrypt.hpp │ │ ├── estimated_document_count-fwd.hpp │ │ ├── estimated_document_count.hpp │ │ ├── find-fwd.hpp │ │ ├── find.hpp │ │ ├── find_one_and_delete-fwd.hpp │ │ ├── find_one_and_delete.hpp │ │ ├── find_one_and_replace-fwd.hpp │ │ ├── find_one_and_replace.hpp │ │ ├── find_one_and_update-fwd.hpp │ │ ├── find_one_and_update.hpp │ │ ├── find_one_common_options-fwd.hpp │ │ ├── find_one_common_options.hpp │ │ ├── gridfs │ │ │ ├── bucket-fwd.hpp │ │ │ ├── bucket.hpp │ │ │ ├── upload-fwd.hpp │ │ │ └── upload.hpp │ │ ├── index-fwd.hpp │ │ ├── index.hpp │ │ ├── index_view-fwd.hpp │ │ ├── index_view.hpp │ │ ├── insert-fwd.hpp │ │ ├── insert.hpp │ │ ├── pool-fwd.hpp │ │ ├── pool.hpp │ │ ├── range-fwd.hpp │ │ ├── range.hpp │ │ ├── replace-fwd.hpp │ │ ├── replace.hpp │ │ ├── rewrap_many_datakey-fwd.hpp │ │ ├── rewrap_many_datakey.hpp │ │ ├── server_api-fwd.hpp │ │ ├── server_api.hpp │ │ ├── ssl.hpp │ │ ├── tls-fwd.hpp │ │ ├── tls.hpp │ │ ├── transaction-fwd.hpp │ │ ├── transaction.hpp │ │ ├── update-fwd.hpp │ │ └── update.hpp │ │ ├── pipeline-fwd.hpp │ │ ├── pipeline.hpp │ │ ├── pool-fwd.hpp │ │ ├── pool.hpp │ │ ├── read_concern-fwd.hpp │ │ ├── read_concern.hpp │ │ ├── read_preference-fwd.hpp │ │ ├── read_preference.hpp │ │ ├── result │ │ ├── bulk_write-fwd.hpp │ │ ├── bulk_write.hpp │ │ ├── delete-fwd.hpp │ │ ├── delete.hpp │ │ ├── gridfs │ │ │ ├── upload-fwd.hpp │ │ │ └── upload.hpp │ │ ├── insert_many-fwd.hpp │ │ ├── insert_many.hpp │ │ ├── insert_one-fwd.hpp │ │ ├── insert_one.hpp │ │ ├── replace_one-fwd.hpp │ │ ├── replace_one.hpp │ │ ├── rewrap_many_datakey-fwd.hpp │ │ ├── rewrap_many_datakey.hpp │ │ ├── update-fwd.hpp │ │ └── update.hpp │ │ ├── search_index_model-fwd.hpp │ │ ├── search_index_model.hpp │ │ ├── search_index_view-fwd.hpp │ │ ├── search_index_view.hpp │ │ ├── uri-fwd.hpp │ │ ├── uri.hpp │ │ ├── validation_criteria-fwd.hpp │ │ ├── validation_criteria.hpp │ │ ├── write_concern-fwd.hpp │ │ ├── write_concern.hpp │ │ ├── write_type-fwd.hpp │ │ └── write_type.hpp │ ├── lib │ ├── CMakeLists.txt │ └── mongocxx │ │ ├── private │ │ ├── config │ │ │ └── config.hh.in │ │ ├── export.hh │ │ ├── mock.hh │ │ ├── mongoc.cpp │ │ ├── mongoc.hh │ │ ├── numeric_casting.cpp │ │ ├── numeric_casting.hh │ │ ├── scoped_bson.cpp │ │ ├── scoped_bson.hh │ │ ├── scoped_bson_value.hh │ │ ├── ssl.hh │ │ └── utility.hh │ │ ├── v1 │ │ ├── aggregate_options.cpp │ │ ├── aggregate_options.hh │ │ ├── apm.cpp │ │ ├── apm.hh │ │ ├── auto_encryption_options.cpp │ │ ├── bulk_write.cpp │ │ ├── change_stream.cpp │ │ ├── client.cpp │ │ ├── client_encryption.cpp │ │ ├── client_session.cpp │ │ ├── collection.cpp │ │ ├── config │ │ │ ├── config.cpp │ │ │ ├── config.hpp.in │ │ │ ├── export.cpp │ │ │ ├── version.cpp │ │ │ └── version.hpp.in │ │ ├── count_options.cpp │ │ ├── count_options.hh │ │ ├── cursor.cpp │ │ ├── data_key_options.cpp │ │ ├── data_key_options.hh │ │ ├── database.cpp │ │ ├── delete_many_options.cpp │ │ ├── delete_many_options.hh │ │ ├── delete_many_result.cpp │ │ ├── delete_one_options.cpp │ │ ├── delete_one_options.hh │ │ ├── delete_one_result.cpp │ │ ├── detail │ │ │ ├── postlude.cpp │ │ │ └── prelude.cpp │ │ ├── distinct_options.cpp │ │ ├── distinct_options.hh │ │ ├── encrypt_options.cpp │ │ ├── estimated_document_count_options.cpp │ │ ├── estimated_document_count_options.hh │ │ ├── events │ │ │ ├── command_failed.cpp │ │ │ ├── command_failed.hh │ │ │ ├── command_started.cpp │ │ │ ├── command_started.hh │ │ │ ├── command_succeeded.cpp │ │ │ ├── command_succeeded.hh │ │ │ ├── server_closed.cpp │ │ │ ├── server_closed.hh │ │ │ ├── server_description.cpp │ │ │ ├── server_description.hh │ │ │ ├── server_description_changed.cpp │ │ │ ├── server_description_changed.hh │ │ │ ├── server_heartbeat_failed.cpp │ │ │ ├── server_heartbeat_failed.hh │ │ │ ├── server_heartbeat_started.cpp │ │ │ ├── server_heartbeat_started.hh │ │ │ ├── server_heartbeat_succeeded.cpp │ │ │ ├── server_heartbeat_succeeded.hh │ │ │ ├── server_opening.cpp │ │ │ ├── server_opening.hh │ │ │ ├── topology_closed.cpp │ │ │ ├── topology_closed.hh │ │ │ ├── topology_description.cpp │ │ │ ├── topology_description.hh │ │ │ ├── topology_description_changed.cpp │ │ │ ├── topology_description_changed.hh │ │ │ ├── topology_opening.cpp │ │ │ └── topology_opening.hh │ │ ├── exception.cpp │ │ ├── exception.hh │ │ ├── find_one_and_delete_options.cpp │ │ ├── find_one_and_delete_options.hh │ │ ├── find_one_and_replace_options.cpp │ │ ├── find_one_and_update_options.cpp │ │ ├── find_one_and_update_options.hh │ │ ├── find_options.cpp │ │ ├── find_options.hh │ │ ├── gridfs │ │ │ ├── bucket.cpp │ │ │ ├── downloader.cpp │ │ │ ├── upload_options.cpp │ │ │ ├── upload_result.cpp │ │ │ └── uploader.cpp │ │ ├── hint.cpp │ │ ├── hint.hh │ │ ├── indexes.cpp │ │ ├── insert_many_options.cpp │ │ ├── insert_many_options.hh │ │ ├── insert_many_result.cpp │ │ ├── insert_one_options.cpp │ │ ├── insert_one_options.hh │ │ ├── insert_one_result.cpp │ │ ├── instance.cpp │ │ ├── logger.cpp │ │ ├── pipeline.cpp │ │ ├── pipeline.hh │ │ ├── pool.cpp │ │ ├── range_options.cpp │ │ ├── range_options.hh │ │ ├── read_concern.cpp │ │ ├── read_concern.hh │ │ ├── read_preference.cpp │ │ ├── read_preference.hh │ │ ├── replace_one_options.cpp │ │ ├── replace_one_options.hh │ │ ├── replace_one_result.cpp │ │ ├── return_document.cpp │ │ ├── rewrap_many_datakey_options.cpp │ │ ├── rewrap_many_datakey_options.hh │ │ ├── rewrap_many_datakey_result.cpp │ │ ├── search_indexes.cpp │ │ ├── server_api.cpp │ │ ├── server_error.cpp │ │ ├── server_error.hh │ │ ├── tls.cpp │ │ ├── tls.hh │ │ ├── transaction_options.cpp │ │ ├── transaction_options.hh │ │ ├── update_many_options.cpp │ │ ├── update_many_options.hh │ │ ├── update_many_result.cpp │ │ ├── update_one_options.cpp │ │ ├── update_one_options.hh │ │ ├── update_one_result.cpp │ │ ├── uri.cpp │ │ ├── write_concern.cpp │ │ └── write_concern.hh │ │ └── v_noabi │ │ └── mongocxx │ │ ├── append_aggregate_options.hh │ │ ├── bulk_write.cpp │ │ ├── bulk_write.hh │ │ ├── change_stream.cpp │ │ ├── change_stream.hh │ │ ├── client.cpp │ │ ├── client.hh │ │ ├── client_encryption.cpp │ │ ├── client_encryption.hh │ │ ├── client_session.cpp │ │ ├── client_session.hh │ │ ├── collection.cpp │ │ ├── collection.hh │ │ ├── config │ │ ├── config.cpp │ │ ├── export.cpp │ │ └── version.cpp │ │ ├── conversions.cpp │ │ ├── conversions.hh │ │ ├── cursor.cpp │ │ ├── cursor.hh │ │ ├── database.cpp │ │ ├── database.hh │ │ ├── events │ │ ├── command_failed_event.cpp │ │ ├── command_started_event.cpp │ │ ├── command_succeeded_event.cpp │ │ ├── heartbeat_failed_event.cpp │ │ ├── heartbeat_started_event.cpp │ │ ├── heartbeat_succeeded_event.cpp │ │ ├── server_changed_event.cpp │ │ ├── server_closed_event.cpp │ │ ├── server_description.cpp │ │ ├── server_opening_event.cpp │ │ ├── topology_changed_event.cpp │ │ ├── topology_closed_event.cpp │ │ ├── topology_description.cpp │ │ └── topology_opening_event.cpp │ │ ├── exception │ │ ├── authentication_exception.cpp │ │ ├── bulk_write_exception.cpp │ │ ├── error_code.cpp │ │ ├── exception.cpp │ │ ├── gridfs_exception.cpp │ │ ├── logic_error.cpp │ │ ├── operation_exception.cpp │ │ ├── query_exception.cpp │ │ ├── server_error_code.cpp │ │ └── write_exception.cpp │ │ ├── gridfs │ │ ├── bucket.cpp │ │ ├── bucket.hh │ │ ├── downloader.cpp │ │ ├── downloader.hh │ │ ├── uploader.cpp │ │ └── uploader.hh │ │ ├── hint.cpp │ │ ├── index_model.cpp │ │ ├── index_view.cpp │ │ ├── index_view.hh │ │ ├── instance.cpp │ │ ├── logger.cpp │ │ ├── model │ │ ├── delete_many.cpp │ │ ├── delete_one.cpp │ │ ├── insert_one.cpp │ │ ├── replace_one.cpp │ │ ├── update_many.cpp │ │ ├── update_one.cpp │ │ └── write.cpp │ │ ├── mongoc_error.hh │ │ ├── options │ │ ├── aggregate.cpp │ │ ├── apm.cpp │ │ ├── apm.hh │ │ ├── auto_encryption.cpp │ │ ├── bulk_write.cpp │ │ ├── change_stream.cpp │ │ ├── client.cpp │ │ ├── client_encryption.cpp │ │ ├── client_session.cpp │ │ ├── count.cpp │ │ ├── data_key.cpp │ │ ├── data_key.hh │ │ ├── delete.cpp │ │ ├── distinct.cpp │ │ ├── encrypt.cpp │ │ ├── estimated_document_count.cpp │ │ ├── find.cpp │ │ ├── find_one_and_delete.cpp │ │ ├── find_one_and_replace.cpp │ │ ├── find_one_and_update.cpp │ │ ├── gridfs │ │ │ ├── bucket.cpp │ │ │ └── upload.cpp │ │ ├── index.cpp │ │ ├── index_view.cpp │ │ ├── insert.cpp │ │ ├── pool.cpp │ │ ├── range.cpp │ │ ├── replace.cpp │ │ ├── rewrap_many_datakey.cpp │ │ ├── server_api.cpp │ │ ├── server_api.hh │ │ ├── tls.cpp │ │ ├── tls.hh │ │ ├── transaction.cpp │ │ ├── transaction.hh │ │ └── update.cpp │ │ ├── pipeline.cpp │ │ ├── pipeline.hh │ │ ├── pool.cpp │ │ ├── pool.hh │ │ ├── read_concern.cpp │ │ ├── read_concern.hh │ │ ├── read_preference.cpp │ │ ├── read_preference.hh │ │ ├── result │ │ ├── bulk_write.cpp │ │ ├── delete.cpp │ │ ├── gridfs │ │ │ └── upload.cpp │ │ ├── insert_many.cpp │ │ ├── insert_one.cpp │ │ ├── replace_one.cpp │ │ ├── rewrap_many_datakey.cpp │ │ └── update.cpp │ │ ├── scoped_bson.hh │ │ ├── search_index_model.cpp │ │ ├── search_index_model.hh │ │ ├── search_index_view.cpp │ │ ├── search_index_view.hh │ │ ├── uri.cpp │ │ ├── uri.hh │ │ ├── validation_criteria.cpp │ │ ├── write_concern.cpp │ │ └── write_concern.hh │ ├── mongocxx.rc.in │ └── test │ ├── CMakeLists.txt │ ├── catch.cpp │ ├── private │ ├── mongoc_version.cpp │ ├── numeric_casting.cpp │ ├── scoped_bson.cpp │ ├── scoped_bson.hh │ └── scoped_bson_value.cpp │ ├── spec │ ├── client_side_encryption.cpp │ ├── command_monitoring.cpp │ ├── crud.cpp │ ├── gridfs.cpp │ ├── initial_dns_seedlist_discovery.cpp │ ├── monitoring.cpp │ ├── monitoring.hh │ ├── operation.cpp │ ├── operation.hh │ ├── read_write_concern.cpp │ ├── retryable-reads.cpp │ ├── transactions.cpp │ ├── unified_tests │ │ ├── assert.cpp │ │ ├── assert.hh │ │ ├── entity.cpp │ │ ├── entity.hh │ │ ├── operations.cpp │ │ ├── operations.hh │ │ └── runner.cpp │ ├── uri_options.cpp │ ├── util.cpp │ └── util.hh │ ├── subprocess.cpp │ ├── subprocess.hh │ ├── test_macro_guards.cpp.in │ ├── v1 │ ├── aggregate_options.cpp │ ├── apm.cpp │ ├── bsoncxx.cpp │ ├── count_options.cpp │ ├── data_key_options.cpp │ ├── delete_many_options.cpp │ ├── delete_one_options.cpp │ ├── distinct_options.cpp │ ├── estimated_document_count_options.cpp │ ├── events.cpp │ ├── exception.cpp │ ├── exception.hh │ ├── find_one_and_delete_options.cpp │ ├── find_one_and_update_options.cpp │ ├── find_options.cpp │ ├── hint.cpp │ ├── insert_many_options.cpp │ ├── insert_one_options.cpp │ ├── instance.cpp │ ├── instance.hh │ ├── logger.cpp │ ├── logger.hh │ ├── pipeline.cpp │ ├── range_options.cpp │ ├── read_concern.cpp │ ├── read_concern.hh │ ├── read_preference.cpp │ ├── read_preference.hh │ ├── replace_one_options.cpp │ ├── rewrap_many_datakey_options.cpp │ ├── server_error.cpp │ ├── server_error.hh │ ├── tls.cpp │ ├── transaction_options.cpp │ ├── update_many_options.cpp │ ├── update_one_options.cpp │ ├── write_concern.cpp │ └── write_concern.hh │ └── v_noabi │ ├── bulk_write.cpp │ ├── catch_helpers.cpp │ ├── catch_helpers.hh │ ├── change_streams.cpp │ ├── client.cpp │ ├── client_helpers.cpp │ ├── client_helpers.hh │ ├── client_session.cpp │ ├── client_side_encryption.cpp │ ├── collection.cpp │ ├── collection_mocked.cpp │ ├── conversions.cpp │ ├── database.cpp │ ├── gridfs │ ├── bucket.cpp │ ├── downloader.cpp │ └── uploader.cpp │ ├── hint.cpp │ ├── index_view.cpp │ ├── instance.cpp │ ├── logging.cpp │ ├── model │ ├── delete_many.cpp │ ├── delete_one.cpp │ ├── insert_one.cpp │ ├── replace_one.cpp │ ├── update_many.cpp │ └── update_one.cpp │ ├── options │ ├── aggregate.cpp │ ├── bulk_write.cpp │ ├── client_session.cpp │ ├── count.cpp │ ├── delete.cpp │ ├── distinct.cpp │ ├── find.cpp │ ├── find_one_and_delete.cpp │ ├── find_one_and_replace.cpp │ ├── find_one_and_update.cpp │ ├── gridfs │ │ ├── bucket.cpp │ │ └── upload.cpp │ ├── index.cpp │ ├── insert.cpp │ ├── pool.cpp │ ├── replace.cpp │ └── update.cpp │ ├── pool.cpp │ ├── read_concern.cpp │ ├── read_preference.cpp │ ├── result │ ├── bulk_write.cpp │ ├── delete.cpp │ ├── gridfs │ │ └── upload.cpp │ ├── insert_one.cpp │ ├── replace_one.cpp │ └── update.cpp │ ├── sdam-monitoring.cpp │ ├── search_index_view.cpp │ ├── transactions.cpp │ ├── uri.cpp │ ├── validation_criteria.cpp │ └── write_concern.cpp └── uv.lock /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.evergreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/README.md -------------------------------------------------------------------------------- /.evergreen/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/config.yml -------------------------------------------------------------------------------- /.evergreen/config_generator/components/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/config_generator/components/lint.py -------------------------------------------------------------------------------- /.evergreen/config_generator/components/sbom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/config_generator/components/sbom.py -------------------------------------------------------------------------------- /.evergreen/config_generator/etc/distros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/config_generator/etc/distros.py -------------------------------------------------------------------------------- /.evergreen/config_generator/etc/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/config_generator/etc/function.py -------------------------------------------------------------------------------- /.evergreen/config_generator/etc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/config_generator/etc/utils.py -------------------------------------------------------------------------------- /.evergreen/config_generator/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/config_generator/generate.py -------------------------------------------------------------------------------- /.evergreen/config_generator/generators/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/config_generator/generators/tasks.py -------------------------------------------------------------------------------- /.evergreen/generated_configs/functions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/generated_configs/functions.yml -------------------------------------------------------------------------------- /.evergreen/generated_configs/task_groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/generated_configs/task_groups.yml -------------------------------------------------------------------------------- /.evergreen/generated_configs/tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/generated_configs/tasks.yml -------------------------------------------------------------------------------- /.evergreen/generated_configs/variants.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/generated_configs/variants.yml -------------------------------------------------------------------------------- /.evergreen/mongo-cxx-driver.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/mongo-cxx-driver.spec -------------------------------------------------------------------------------- /.evergreen/scripts/abi-compliance-check-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/abi-compliance-check-setup.sh -------------------------------------------------------------------------------- /.evergreen/scripts/abi-compliance-check-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/abi-compliance-check-test.sh -------------------------------------------------------------------------------- /.evergreen/scripts/abi-prohibited-symbols-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/abi-prohibited-symbols-test.sh -------------------------------------------------------------------------------- /.evergreen/scripts/abi-stability-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/abi-stability-setup.sh -------------------------------------------------------------------------------- /.evergreen/scripts/abidiff-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/abidiff-setup.sh -------------------------------------------------------------------------------- /.evergreen/scripts/abidiff-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/abidiff-test.sh -------------------------------------------------------------------------------- /.evergreen/scripts/build-example-projects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/build-example-projects.sh -------------------------------------------------------------------------------- /.evergreen/scripts/build_snapshot_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/build_snapshot_rpm.sh -------------------------------------------------------------------------------- /.evergreen/scripts/bypass-dlclose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/bypass-dlclose.sh -------------------------------------------------------------------------------- /.evergreen/scripts/cmake-compat-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/cmake-compat-check.sh -------------------------------------------------------------------------------- /.evergreen/scripts/cmake-compat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/cmake-compat.sh -------------------------------------------------------------------------------- /.evergreen/scripts/compile-scan-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/compile-scan-build.sh -------------------------------------------------------------------------------- /.evergreen/scripts/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/compile.sh -------------------------------------------------------------------------------- /.evergreen/scripts/debian_package_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/debian_package_build.sh -------------------------------------------------------------------------------- /.evergreen/scripts/install-build-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/install-build-tools.sh -------------------------------------------------------------------------------- /.evergreen/scripts/install-c-driver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/install-c-driver.sh -------------------------------------------------------------------------------- /.evergreen/scripts/sbom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/sbom.sh -------------------------------------------------------------------------------- /.evergreen/scripts/send-perf-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/send-perf-data.sh -------------------------------------------------------------------------------- /.evergreen/scripts/start-mongod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/start-mongod.sh -------------------------------------------------------------------------------- /.evergreen/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/test.sh -------------------------------------------------------------------------------- /.evergreen/scripts/uninstall_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/uninstall_check.sh -------------------------------------------------------------------------------- /.evergreen/scripts/uninstall_check_windows.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/uninstall_check_windows.cmd -------------------------------------------------------------------------------- /.evergreen/scripts/upload-code-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/scripts/upload-code-coverage.sh -------------------------------------------------------------------------------- /.evergreen/spec.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.evergreen/spec.patch -------------------------------------------------------------------------------- /.git-blame-ignore-refs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.git-blame-ignore-refs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Listing code owners is required by DRIVERS-3098 2 | * @mongodb/dbx-c-cxx 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/.ycm_extra_conf.py -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/CREDITS.json -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY-NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/THIRD-PARTY-NOTICES -------------------------------------------------------------------------------- /benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/README.md -------------------------------------------------------------------------------- /benchmark/benchmark_runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/benchmark_runner.cpp -------------------------------------------------------------------------------- /benchmark/benchmark_runner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/benchmark_runner.hpp -------------------------------------------------------------------------------- /benchmark/bson/bson_decoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/bson/bson_decoding.hpp -------------------------------------------------------------------------------- /benchmark/bson/bson_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/bson/bson_encoding.hpp -------------------------------------------------------------------------------- /benchmark/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/main.cpp -------------------------------------------------------------------------------- /benchmark/microbench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/microbench.cpp -------------------------------------------------------------------------------- /benchmark/microbench.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/microbench.hpp -------------------------------------------------------------------------------- /benchmark/multi_doc/bulk_insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/multi_doc/bulk_insert.hpp -------------------------------------------------------------------------------- /benchmark/multi_doc/find_many.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/multi_doc/find_many.hpp -------------------------------------------------------------------------------- /benchmark/multi_doc/gridfs_download.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/multi_doc/gridfs_download.hpp -------------------------------------------------------------------------------- /benchmark/multi_doc/gridfs_upload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/multi_doc/gridfs_upload.hpp -------------------------------------------------------------------------------- /benchmark/parallel/gridfs_multi_export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/parallel/gridfs_multi_export.hpp -------------------------------------------------------------------------------- /benchmark/parallel/gridfs_multi_import.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/parallel/gridfs_multi_import.hpp -------------------------------------------------------------------------------- /benchmark/parallel/json_multi_export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/parallel/json_multi_export.hpp -------------------------------------------------------------------------------- /benchmark/parallel/json_multi_import.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/parallel/json_multi_import.hpp -------------------------------------------------------------------------------- /benchmark/score_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/score_recorder.cpp -------------------------------------------------------------------------------- /benchmark/score_recorder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/score_recorder.hpp -------------------------------------------------------------------------------- /benchmark/single_doc/find_one_by_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/single_doc/find_one_by_id.hpp -------------------------------------------------------------------------------- /benchmark/single_doc/insert_one.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/single_doc/insert_one.hpp -------------------------------------------------------------------------------- /benchmark/single_doc/run_command.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/benchmark/single_doc/run_command.hpp -------------------------------------------------------------------------------- /cmake/BsoncxxUtil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/cmake/BsoncxxUtil.cmake -------------------------------------------------------------------------------- /cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/FetchCatch2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/cmake/FetchCatch2.cmake -------------------------------------------------------------------------------- /cmake/FetchMongoC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/cmake/FetchMongoC.cmake -------------------------------------------------------------------------------- /cmake/MacroGuardTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/cmake/MacroGuardTest.cmake -------------------------------------------------------------------------------- /cmake/MongocxxUtil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/cmake/MongocxxUtil.cmake -------------------------------------------------------------------------------- /cmake/ParseVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/cmake/ParseVersion.cmake -------------------------------------------------------------------------------- /cmake/make_dist/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/cmake/make_dist/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/make_dist/COPYING-CMAKE-SCRIPTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/cmake/make_dist/COPYING-CMAKE-SCRIPTS.txt -------------------------------------------------------------------------------- /cmake/make_dist/MakeDist.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/cmake/make_dist/MakeDist.cmake -------------------------------------------------------------------------------- /cmake/make_dist/MakeDistCheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/cmake/make_dist/MakeDistCheck.cmake -------------------------------------------------------------------------------- /cmake/make_dist/MakeDistFiles.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/cmake/make_dist/MakeDistFiles.cmake -------------------------------------------------------------------------------- /data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/CMakeLists.txt -------------------------------------------------------------------------------- /data/change-streams/unified/change-streams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/change-streams/unified/change-streams.json -------------------------------------------------------------------------------- /data/change-streams/unified/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/change-streams/unified/test_files.txt -------------------------------------------------------------------------------- /data/client_side_encryption/corpus/corpus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/corpus/corpus.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/aggregate.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/azureKMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/azureKMS.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/badSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/badSchema.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/basic.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/bulk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/bulk.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/count.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/delete.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/distinct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/distinct.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/explain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/explain.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/find.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/gcpKMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/gcpKMS.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/getMore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/getMore.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/insert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/insert.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/kmipKMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/kmipKMS.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/localKMS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/localKMS.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/noSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/noSchema.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/test_files.txt -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/types.json -------------------------------------------------------------------------------- /data/client_side_encryption/legacy/updateOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/legacy/updateOne.json -------------------------------------------------------------------------------- /data/client_side_encryption/unified/getKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/unified/getKey.json -------------------------------------------------------------------------------- /data/client_side_encryption/unified/getKeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/client_side_encryption/unified/getKeys.json -------------------------------------------------------------------------------- /data/collection-management/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/collection-management/test_files.txt -------------------------------------------------------------------------------- /data/command-monitoring/bulkWrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/command-monitoring/bulkWrite.json -------------------------------------------------------------------------------- /data/command-monitoring/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/command-monitoring/command.json -------------------------------------------------------------------------------- /data/command-monitoring/deleteMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/command-monitoring/deleteMany.json -------------------------------------------------------------------------------- /data/command-monitoring/deleteOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/command-monitoring/deleteOne.json -------------------------------------------------------------------------------- /data/command-monitoring/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/command-monitoring/find.json -------------------------------------------------------------------------------- /data/command-monitoring/insertMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/command-monitoring/insertMany.json -------------------------------------------------------------------------------- /data/command-monitoring/insertOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/command-monitoring/insertOne.json -------------------------------------------------------------------------------- /data/command-monitoring/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/command-monitoring/test_files.txt -------------------------------------------------------------------------------- /data/command-monitoring/updateMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/command-monitoring/updateMany.json -------------------------------------------------------------------------------- /data/command-monitoring/updateOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/command-monitoring/updateOne.json -------------------------------------------------------------------------------- /data/crud/legacy/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/test_files.txt -------------------------------------------------------------------------------- /data/crud/legacy/v1/read/aggregate-collation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/read/aggregate-collation.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/read/aggregate-out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/read/aggregate-out.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/read/aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/read/aggregate.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/read/count-collation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/read/count-collation.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/read/count-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/read/count-empty.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/read/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/read/count.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/read/distinct-collation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/read/distinct-collation.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/read/distinct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/read/distinct.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/read/find-collation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/read/find-collation.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/read/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/read/find.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/write/bulkWrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/write/bulkWrite.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/write/deleteMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/write/deleteMany.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/write/deleteOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/write/deleteOne.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/write/findOneAndDelete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/write/findOneAndDelete.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/write/findOneAndReplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/write/findOneAndReplace.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/write/findOneAndUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/write/findOneAndUpdate.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/write/insertMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/write/insertMany.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/write/insertOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/write/insertOne.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/write/replaceOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/write/replaceOne.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/write/updateMany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/write/updateMany.json -------------------------------------------------------------------------------- /data/crud/legacy/v1/write/updateOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/legacy/v1/write/updateOne.json -------------------------------------------------------------------------------- /data/crud/unified/aggregate-allowdiskuse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/aggregate-allowdiskuse.json -------------------------------------------------------------------------------- /data/crud/unified/aggregate-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/aggregate-let.json -------------------------------------------------------------------------------- /data/crud/unified/aggregate-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/aggregate-merge.json -------------------------------------------------------------------------------- /data/crud/unified/aggregate-out-readConcern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/aggregate-out-readConcern.json -------------------------------------------------------------------------------- /data/crud/unified/aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/aggregate.json -------------------------------------------------------------------------------- /data/crud/unified/bulkWrite-arrayFilters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/bulkWrite-arrayFilters.json -------------------------------------------------------------------------------- /data/crud/unified/bulkWrite-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/bulkWrite-comment.json -------------------------------------------------------------------------------- /data/crud/unified/bulkWrite-delete-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/bulkWrite-delete-hint.json -------------------------------------------------------------------------------- /data/crud/unified/bulkWrite-deleteMany-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/bulkWrite-deleteMany-let.json -------------------------------------------------------------------------------- /data/crud/unified/bulkWrite-deleteOne-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/bulkWrite-deleteOne-let.json -------------------------------------------------------------------------------- /data/crud/unified/bulkWrite-replaceOne-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/bulkWrite-replaceOne-let.json -------------------------------------------------------------------------------- /data/crud/unified/bulkWrite-replaceOne-sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/bulkWrite-replaceOne-sort.json -------------------------------------------------------------------------------- /data/crud/unified/bulkWrite-update-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/bulkWrite-update-hint.json -------------------------------------------------------------------------------- /data/crud/unified/bulkWrite-updateMany-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/bulkWrite-updateMany-let.json -------------------------------------------------------------------------------- /data/crud/unified/bulkWrite-updateOne-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/bulkWrite-updateOne-let.json -------------------------------------------------------------------------------- /data/crud/unified/bulkWrite-updateOne-sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/bulkWrite-updateOne-sort.json -------------------------------------------------------------------------------- /data/crud/unified/countDocuments-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/countDocuments-comment.json -------------------------------------------------------------------------------- /data/crud/unified/db-aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/db-aggregate.json -------------------------------------------------------------------------------- /data/crud/unified/deleteMany-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/deleteMany-comment.json -------------------------------------------------------------------------------- /data/crud/unified/deleteMany-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/deleteMany-hint.json -------------------------------------------------------------------------------- /data/crud/unified/deleteMany-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/deleteMany-let.json -------------------------------------------------------------------------------- /data/crud/unified/deleteOne-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/deleteOne-comment.json -------------------------------------------------------------------------------- /data/crud/unified/deleteOne-hint-clientError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/deleteOne-hint-clientError.json -------------------------------------------------------------------------------- /data/crud/unified/deleteOne-hint-serverError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/deleteOne-hint-serverError.json -------------------------------------------------------------------------------- /data/crud/unified/deleteOne-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/deleteOne-hint.json -------------------------------------------------------------------------------- /data/crud/unified/deleteOne-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/deleteOne-let.json -------------------------------------------------------------------------------- /data/crud/unified/distinct-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/distinct-comment.json -------------------------------------------------------------------------------- /data/crud/unified/estimatedDocumentCount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/estimatedDocumentCount.json -------------------------------------------------------------------------------- /data/crud/unified/find-allowdiskuse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/find-allowdiskuse.json -------------------------------------------------------------------------------- /data/crud/unified/find-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/find-comment.json -------------------------------------------------------------------------------- /data/crud/unified/find-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/find-let.json -------------------------------------------------------------------------------- /data/crud/unified/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/find.json -------------------------------------------------------------------------------- /data/crud/unified/findOneAndDelete-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/findOneAndDelete-comment.json -------------------------------------------------------------------------------- /data/crud/unified/findOneAndDelete-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/findOneAndDelete-hint.json -------------------------------------------------------------------------------- /data/crud/unified/findOneAndDelete-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/findOneAndDelete-let.json -------------------------------------------------------------------------------- /data/crud/unified/findOneAndReplace-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/findOneAndReplace-comment.json -------------------------------------------------------------------------------- /data/crud/unified/findOneAndReplace-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/findOneAndReplace-hint.json -------------------------------------------------------------------------------- /data/crud/unified/findOneAndReplace-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/findOneAndReplace-let.json -------------------------------------------------------------------------------- /data/crud/unified/findOneAndUpdate-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/findOneAndUpdate-comment.json -------------------------------------------------------------------------------- /data/crud/unified/findOneAndUpdate-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/findOneAndUpdate-hint.json -------------------------------------------------------------------------------- /data/crud/unified/findOneAndUpdate-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/findOneAndUpdate-let.json -------------------------------------------------------------------------------- /data/crud/unified/insertMany-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/insertMany-comment.json -------------------------------------------------------------------------------- /data/crud/unified/insertOne-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/insertOne-comment.json -------------------------------------------------------------------------------- /data/crud/unified/insertOne-dots_and_dollars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/insertOne-dots_and_dollars.json -------------------------------------------------------------------------------- /data/crud/unified/replaceOne-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/replaceOne-comment.json -------------------------------------------------------------------------------- /data/crud/unified/replaceOne-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/replaceOne-hint.json -------------------------------------------------------------------------------- /data/crud/unified/replaceOne-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/replaceOne-let.json -------------------------------------------------------------------------------- /data/crud/unified/replaceOne-sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/replaceOne-sort.json -------------------------------------------------------------------------------- /data/crud/unified/replaceOne-validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/replaceOne-validation.json -------------------------------------------------------------------------------- /data/crud/unified/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/test_files.txt -------------------------------------------------------------------------------- /data/crud/unified/updateMany-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/updateMany-comment.json -------------------------------------------------------------------------------- /data/crud/unified/updateMany-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/updateMany-hint.json -------------------------------------------------------------------------------- /data/crud/unified/updateMany-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/updateMany-let.json -------------------------------------------------------------------------------- /data/crud/unified/updateMany-validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/updateMany-validation.json -------------------------------------------------------------------------------- /data/crud/unified/updateOne-comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/updateOne-comment.json -------------------------------------------------------------------------------- /data/crud/unified/updateOne-dots_and_dollars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/updateOne-dots_and_dollars.json -------------------------------------------------------------------------------- /data/crud/unified/updateOne-hint-clientError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/updateOne-hint-clientError.json -------------------------------------------------------------------------------- /data/crud/unified/updateOne-hint-serverError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/updateOne-hint-serverError.json -------------------------------------------------------------------------------- /data/crud/unified/updateOne-hint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/updateOne-hint.json -------------------------------------------------------------------------------- /data/crud/unified/updateOne-let.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/updateOne-let.json -------------------------------------------------------------------------------- /data/crud/unified/updateOne-sort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/updateOne-sort.json -------------------------------------------------------------------------------- /data/crud/unified/updateOne-validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/updateOne-validation.json -------------------------------------------------------------------------------- /data/crud/unified/updateWithPipelines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/crud/unified/updateWithPipelines.json -------------------------------------------------------------------------------- /data/gridfs/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/gridfs/delete.json -------------------------------------------------------------------------------- /data/gridfs/download.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/gridfs/download.json -------------------------------------------------------------------------------- /data/gridfs/download_by_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/gridfs/download_by_name.json -------------------------------------------------------------------------------- /data/gridfs/gridfs-download-serverErrors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/gridfs/gridfs-download-serverErrors.json -------------------------------------------------------------------------------- /data/gridfs/gridfs-download.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/gridfs/gridfs-download.json -------------------------------------------------------------------------------- /data/gridfs/gridfs-downloadByName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/gridfs/gridfs-downloadByName.json -------------------------------------------------------------------------------- /data/gridfs/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/gridfs/test_files.txt -------------------------------------------------------------------------------- /data/gridfs/upload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/gridfs/upload.json -------------------------------------------------------------------------------- /data/index-management/createSearchIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/index-management/createSearchIndex.json -------------------------------------------------------------------------------- /data/index-management/createSearchIndexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/index-management/createSearchIndexes.json -------------------------------------------------------------------------------- /data/index-management/dropSearchIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/index-management/dropSearchIndex.json -------------------------------------------------------------------------------- /data/index-management/listSearchIndexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/index-management/listSearchIndexes.json -------------------------------------------------------------------------------- /data/index-management/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/index-management/test_files.txt -------------------------------------------------------------------------------- /data/index-management/updateSearchIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/index-management/updateSearchIndex.json -------------------------------------------------------------------------------- /data/mongohouse/aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/mongohouse/aggregate.json -------------------------------------------------------------------------------- /data/mongohouse/estimatedDocumentCount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/mongohouse/estimatedDocumentCount.json -------------------------------------------------------------------------------- /data/mongohouse/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/mongohouse/find.json -------------------------------------------------------------------------------- /data/mongohouse/getMore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/mongohouse/getMore.json -------------------------------------------------------------------------------- /data/mongohouse/listCollections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/mongohouse/listCollections.json -------------------------------------------------------------------------------- /data/mongohouse/listDatabases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/mongohouse/listDatabases.json -------------------------------------------------------------------------------- /data/mongohouse/runCommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/mongohouse/runCommand.json -------------------------------------------------------------------------------- /data/mongohouse/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/mongohouse/test_files.txt -------------------------------------------------------------------------------- /data/read-write-concern/operation/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/read-write-concern/operation/test_files.txt -------------------------------------------------------------------------------- /data/retryable-reads/legacy/aggregate-merge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/legacy/aggregate-merge.json -------------------------------------------------------------------------------- /data/retryable-reads/legacy/aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/legacy/aggregate.json -------------------------------------------------------------------------------- /data/retryable-reads/legacy/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/legacy/count.json -------------------------------------------------------------------------------- /data/retryable-reads/legacy/countDocuments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/legacy/countDocuments.json -------------------------------------------------------------------------------- /data/retryable-reads/legacy/distinct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/legacy/distinct.json -------------------------------------------------------------------------------- /data/retryable-reads/legacy/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/legacy/find.json -------------------------------------------------------------------------------- /data/retryable-reads/legacy/findOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/legacy/findOne.json -------------------------------------------------------------------------------- /data/retryable-reads/legacy/gridfs-download.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/legacy/gridfs-download.json -------------------------------------------------------------------------------- /data/retryable-reads/legacy/listCollections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/legacy/listCollections.json -------------------------------------------------------------------------------- /data/retryable-reads/legacy/listDatabases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/legacy/listDatabases.json -------------------------------------------------------------------------------- /data/retryable-reads/legacy/listIndexNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/legacy/listIndexNames.json -------------------------------------------------------------------------------- /data/retryable-reads/legacy/listIndexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/legacy/listIndexes.json -------------------------------------------------------------------------------- /data/retryable-reads/legacy/mapReduce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/legacy/mapReduce.json -------------------------------------------------------------------------------- /data/retryable-reads/legacy/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/legacy/test_files.txt -------------------------------------------------------------------------------- /data/retryable-reads/unified/handshakeError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-reads/unified/handshakeError.json -------------------------------------------------------------------------------- /data/retryable-reads/unified/test_files.txt: -------------------------------------------------------------------------------- 1 | handshakeError.json 2 | -------------------------------------------------------------------------------- /data/retryable-writes/unified/handshakeError.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-writes/unified/handshakeError.json -------------------------------------------------------------------------------- /data/retryable-writes/unified/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/retryable-writes/unified/test_files.txt -------------------------------------------------------------------------------- /data/sessions/unified/snapshot-sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/sessions/unified/snapshot-sessions.json -------------------------------------------------------------------------------- /data/sessions/unified/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/sessions/unified/test_files.txt -------------------------------------------------------------------------------- /data/transactions/legacy/abort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/abort.json -------------------------------------------------------------------------------- /data/transactions/legacy/bulk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/bulk.json -------------------------------------------------------------------------------- /data/transactions/legacy/causal-consistency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/causal-consistency.json -------------------------------------------------------------------------------- /data/transactions/legacy/commit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/commit.json -------------------------------------------------------------------------------- /data/transactions/legacy/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/count.json -------------------------------------------------------------------------------- /data/transactions/legacy/create-collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/create-collection.json -------------------------------------------------------------------------------- /data/transactions/legacy/create-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/create-index.json -------------------------------------------------------------------------------- /data/transactions/legacy/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/delete.json -------------------------------------------------------------------------------- /data/transactions/legacy/error-labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/error-labels.json -------------------------------------------------------------------------------- /data/transactions/legacy/errors-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/errors-client.json -------------------------------------------------------------------------------- /data/transactions/legacy/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/errors.json -------------------------------------------------------------------------------- /data/transactions/legacy/findOneAndDelete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/findOneAndDelete.json -------------------------------------------------------------------------------- /data/transactions/legacy/findOneAndReplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/findOneAndReplace.json -------------------------------------------------------------------------------- /data/transactions/legacy/findOneAndUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/findOneAndUpdate.json -------------------------------------------------------------------------------- /data/transactions/legacy/insert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/insert.json -------------------------------------------------------------------------------- /data/transactions/legacy/isolation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/isolation.json -------------------------------------------------------------------------------- /data/transactions/legacy/mongos-pin-auto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/mongos-pin-auto.json -------------------------------------------------------------------------------- /data/transactions/legacy/pin-mongos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/pin-mongos.json -------------------------------------------------------------------------------- /data/transactions/legacy/read-concern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/read-concern.json -------------------------------------------------------------------------------- /data/transactions/legacy/read-pref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/read-pref.json -------------------------------------------------------------------------------- /data/transactions/legacy/reads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/reads.json -------------------------------------------------------------------------------- /data/transactions/legacy/retryable-abort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/retryable-abort.json -------------------------------------------------------------------------------- /data/transactions/legacy/retryable-commit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/retryable-commit.json -------------------------------------------------------------------------------- /data/transactions/legacy/retryable-writes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/retryable-writes.json -------------------------------------------------------------------------------- /data/transactions/legacy/run-command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/run-command.json -------------------------------------------------------------------------------- /data/transactions/legacy/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/test_files.txt -------------------------------------------------------------------------------- /data/transactions/legacy/transaction-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/transaction-options.json -------------------------------------------------------------------------------- /data/transactions/legacy/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/update.json -------------------------------------------------------------------------------- /data/transactions/legacy/write-concern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/legacy/write-concern.json -------------------------------------------------------------------------------- /data/transactions/unified/mongos-unpin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/unified/mongos-unpin.json -------------------------------------------------------------------------------- /data/transactions/unified/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/transactions/unified/test_files.txt -------------------------------------------------------------------------------- /data/unified-format/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/unified-format/test_files.txt -------------------------------------------------------------------------------- /data/unified-format/valid-pass/poc-crud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/unified-format/valid-pass/poc-crud.json -------------------------------------------------------------------------------- /data/unified-format/valid-pass/poc-gridfs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/unified-format/valid-pass/poc-gridfs.json -------------------------------------------------------------------------------- /data/unified-format/valid-pass/poc-sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/unified-format/valid-pass/poc-sessions.json -------------------------------------------------------------------------------- /data/uri-options/srv-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/uri-options/srv-options.json -------------------------------------------------------------------------------- /data/versioned-api/crud-api-version-1-strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/versioned-api/crud-api-version-1-strict.json -------------------------------------------------------------------------------- /data/versioned-api/crud-api-version-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/versioned-api/crud-api-version-1.json -------------------------------------------------------------------------------- /data/versioned-api/test-commands-strict-mode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/versioned-api/test-commands-strict-mode.json -------------------------------------------------------------------------------- /data/versioned-api/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/versioned-api/test_files.txt -------------------------------------------------------------------------------- /data/versioned-api/transaction-handling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/versioned-api/transaction-handling.json -------------------------------------------------------------------------------- /data/with_transaction/callback-aborts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/with_transaction/callback-aborts.json -------------------------------------------------------------------------------- /data/with_transaction/callback-commits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/with_transaction/callback-commits.json -------------------------------------------------------------------------------- /data/with_transaction/callback-retry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/with_transaction/callback-retry.json -------------------------------------------------------------------------------- /data/with_transaction/commit-retry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/with_transaction/commit-retry.json -------------------------------------------------------------------------------- /data/with_transaction/commit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/with_transaction/commit.json -------------------------------------------------------------------------------- /data/with_transaction/test_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/with_transaction/test_files.txt -------------------------------------------------------------------------------- /data/with_transaction/transaction-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/data/with_transaction/transaction-options.json -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated files 2 | /public 3 | -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /docs/api/bsoncxx/examples/bson_documents/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/api/bsoncxx/examples/bson_documents/json.md -------------------------------------------------------------------------------- /docs/api/bsoncxx/examples/bson_errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/api/bsoncxx/examples/bson_errors.md -------------------------------------------------------------------------------- /docs/api/bsoncxx/examples/decimal128.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/api/bsoncxx/examples/decimal128.md -------------------------------------------------------------------------------- /docs/api/bsoncxx/examples/oid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/api/bsoncxx/examples/oid.md -------------------------------------------------------------------------------- /docs/api/bsoncxx/examples/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/api/bsoncxx/examples/validation.md -------------------------------------------------------------------------------- /docs/api/mongocxx/examples/change_streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/api/mongocxx/examples/change_streams.md -------------------------------------------------------------------------------- /docs/api/mongocxx/examples/client_sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/api/mongocxx/examples/client_sessions.md -------------------------------------------------------------------------------- /docs/api/mongocxx/examples/clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/api/mongocxx/examples/clients.md -------------------------------------------------------------------------------- /docs/api/mongocxx/examples/collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/api/mongocxx/examples/collections.md -------------------------------------------------------------------------------- /docs/api/mongocxx/examples/databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/api/mongocxx/examples/databases.md -------------------------------------------------------------------------------- /docs/api/mongocxx/examples/instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/api/mongocxx/examples/instance.md -------------------------------------------------------------------------------- /docs/api/mongocxx/examples/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/api/mongocxx/examples/logger.md -------------------------------------------------------------------------------- /docs/api/mongocxx/examples/uri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/api/mongocxx/examples/uri.md -------------------------------------------------------------------------------- /docs/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/config.toml -------------------------------------------------------------------------------- /docs/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/content/_index.md -------------------------------------------------------------------------------- /docs/content/legacy-v1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/content/legacy-v1/_index.md -------------------------------------------------------------------------------- /docs/content/legacy-v1/breaking-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/content/legacy-v1/breaking-changes.md -------------------------------------------------------------------------------- /docs/content/legacy-v1/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/content/legacy-v1/configuration.md -------------------------------------------------------------------------------- /docs/content/legacy-v1/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/content/legacy-v1/installation.md -------------------------------------------------------------------------------- /docs/content/legacy-v1/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/content/legacy-v1/tutorial.md -------------------------------------------------------------------------------- /docs/content/legacy-v1/working-with-bson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/content/legacy-v1/working-with-bson.md -------------------------------------------------------------------------------- /docs/data/mongodb.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/data/mongodb.toml -------------------------------------------------------------------------------- /docs/layouts/.readme: -------------------------------------------------------------------------------- 1 | custom layouts here 2 | -------------------------------------------------------------------------------- /docs/layouts/shortcodes/apiref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/layouts/shortcodes/apiref.html -------------------------------------------------------------------------------- /docs/static/.readme: -------------------------------------------------------------------------------- 1 | Custom static resources 2 | -------------------------------------------------------------------------------- /docs/themes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/CMakeLists.txt -------------------------------------------------------------------------------- /docs/themes/mongodb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/CMakeLists.txt -------------------------------------------------------------------------------- /docs/themes/mongodb/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/LICENSE.md -------------------------------------------------------------------------------- /docs/themes/mongodb/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/layouts/_default/list.html -------------------------------------------------------------------------------- /docs/themes/mongodb/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/layouts/_default/single.html -------------------------------------------------------------------------------- /docs/themes/mongodb/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/layouts/index.html -------------------------------------------------------------------------------- /docs/themes/mongodb/layouts/legacy-v1/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/layouts/legacy-v1/list.html -------------------------------------------------------------------------------- /docs/themes/mongodb/layouts/legacy-v1/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/layouts/legacy-v1/single.html -------------------------------------------------------------------------------- /docs/themes/mongodb/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/layouts/partials/footer.html -------------------------------------------------------------------------------- /docs/themes/mongodb/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/layouts/partials/header.html -------------------------------------------------------------------------------- /docs/themes/mongodb/layouts/partials/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/layouts/partials/menu.html -------------------------------------------------------------------------------- /docs/themes/mongodb/layouts/partials/menu/footer.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/themes/mongodb/layouts/partials/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/layouts/partials/meta.html -------------------------------------------------------------------------------- /docs/themes/mongodb/layouts/partials/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/layouts/partials/welcome.html -------------------------------------------------------------------------------- /docs/themes/mongodb/layouts/shortcodes/note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/layouts/shortcodes/note.html -------------------------------------------------------------------------------- /docs/themes/mongodb/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/themes/mongodb/static/css/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/css/basic.css -------------------------------------------------------------------------------- /docs/themes/mongodb/static/css/mongodb-docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/css/mongodb-docs.css -------------------------------------------------------------------------------- /docs/themes/mongodb/static/css/overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/css/overrides.css -------------------------------------------------------------------------------- /docs/themes/mongodb/static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/css/reset.css -------------------------------------------------------------------------------- /docs/themes/mongodb/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/favicon.ico -------------------------------------------------------------------------------- /docs/themes/mongodb/static/img/code-block-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/img/code-block-bg.png -------------------------------------------------------------------------------- /docs/themes/mongodb/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/img/favicon.png -------------------------------------------------------------------------------- /docs/themes/mongodb/static/js/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/js/doctools.js -------------------------------------------------------------------------------- /docs/themes/mongodb/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/js/jquery.js -------------------------------------------------------------------------------- /docs/themes/mongodb/static/js/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/js/navbar.js -------------------------------------------------------------------------------- /docs/themes/mongodb/static/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/js/scripts.js -------------------------------------------------------------------------------- /docs/themes/mongodb/static/js/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/js/searchtools.js -------------------------------------------------------------------------------- /docs/themes/mongodb/static/js/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/js/underscore.js -------------------------------------------------------------------------------- /docs/themes/mongodb/static/lib/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/lib/bootstrap.css -------------------------------------------------------------------------------- /docs/themes/mongodb/static/lib/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/lib/bootstrap.js -------------------------------------------------------------------------------- /docs/themes/mongodb/static/lib/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/lib/bootstrap.min.css -------------------------------------------------------------------------------- /docs/themes/mongodb/static/lib/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/lib/bootstrap.min.js -------------------------------------------------------------------------------- /docs/themes/mongodb/static/lib/highlight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/static/lib/highlight/LICENSE -------------------------------------------------------------------------------- /docs/themes/mongodb/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/docs/themes/mongodb/theme.toml -------------------------------------------------------------------------------- /etc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/CMakeLists.txt -------------------------------------------------------------------------------- /etc/apidocmenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/apidocmenu.md -------------------------------------------------------------------------------- /etc/augmented.sbom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/augmented.sbom.json -------------------------------------------------------------------------------- /etc/calc_release_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/calc_release_version.py -------------------------------------------------------------------------------- /etc/calc_release_version_selftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/calc_release_version_selftest.py -------------------------------------------------------------------------------- /etc/calc_release_version_selftest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/calc_release_version_selftest.sh -------------------------------------------------------------------------------- /etc/coding_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/coding_guidelines.md -------------------------------------------------------------------------------- /etc/cyclonedx.sbom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/cyclonedx.sbom.json -------------------------------------------------------------------------------- /etc/debug-core-evergreen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/debug-core-evergreen.sh -------------------------------------------------------------------------------- /etc/deploy-to-ghpages.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/deploy-to-ghpages.pl -------------------------------------------------------------------------------- /etc/doxygen-extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/doxygen-extra.css -------------------------------------------------------------------------------- /etc/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/format.py -------------------------------------------------------------------------------- /etc/garasign_dist_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/garasign_dist_file.sh -------------------------------------------------------------------------------- /etc/garasign_release_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/garasign_release_tag.sh -------------------------------------------------------------------------------- /etc/generate-latest-apidocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/generate-latest-apidocs.sh -------------------------------------------------------------------------------- /etc/generate-uninstall.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/generate-uninstall.cmd -------------------------------------------------------------------------------- /etc/generate-uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/generate-uninstall.sh -------------------------------------------------------------------------------- /etc/make_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/make_release.py -------------------------------------------------------------------------------- /etc/memcheck.suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/memcheck.suppressions -------------------------------------------------------------------------------- /etc/microbenchmark-test-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/microbenchmark-test-data.sh -------------------------------------------------------------------------------- /etc/patch-apidocs-current-redirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/patch-apidocs-current-redirects.py -------------------------------------------------------------------------------- /etc/patch-apidocs-index-pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/patch-apidocs-index-pages.py -------------------------------------------------------------------------------- /etc/purls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/purls.txt -------------------------------------------------------------------------------- /etc/releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/releasing.md -------------------------------------------------------------------------------- /etc/ruff-format-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/ruff-format-all.sh -------------------------------------------------------------------------------- /etc/run-clang-tidy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/run-clang-tidy.sh -------------------------------------------------------------------------------- /etc/shfmt-format-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/shfmt-format-all.sh -------------------------------------------------------------------------------- /etc/ssdlc_compliance_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/ssdlc_compliance_report.md -------------------------------------------------------------------------------- /etc/test_make_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/test_make_release.py -------------------------------------------------------------------------------- /etc/third_party_vulnerabilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/third_party_vulnerabilities.md -------------------------------------------------------------------------------- /etc/ubsan.ignorelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/etc/ubsan.ignorelist -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/add_subdirectory/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/add_subdirectory/.gitignore -------------------------------------------------------------------------------- /examples/add_subdirectory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/add_subdirectory/CMakeLists.txt -------------------------------------------------------------------------------- /examples/add_subdirectory/hello_mongocxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/add_subdirectory/hello_mongocxx.cpp -------------------------------------------------------------------------------- /examples/api/bsoncxx/examples/oid/basic_usage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/bsoncxx/examples/oid/basic_usage.cpp -------------------------------------------------------------------------------- /examples/api/bsoncxx/examples/oid/errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/bsoncxx/examples/oid/errors.cpp -------------------------------------------------------------------------------- /examples/api/concern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/concern.cpp -------------------------------------------------------------------------------- /examples/api/concern.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/concern.hh -------------------------------------------------------------------------------- /examples/api/db_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/db_lock.cpp -------------------------------------------------------------------------------- /examples/api/db_lock.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/db_lock.hh -------------------------------------------------------------------------------- /examples/api/mongocxx/examples/collections/rc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/mongocxx/examples/collections/rc.cpp -------------------------------------------------------------------------------- /examples/api/mongocxx/examples/collections/rp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/mongocxx/examples/collections/rp.cpp -------------------------------------------------------------------------------- /examples/api/mongocxx/examples/collections/wc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/mongocxx/examples/collections/wc.cpp -------------------------------------------------------------------------------- /examples/api/mongocxx/examples/databases/drop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/mongocxx/examples/databases/drop.cpp -------------------------------------------------------------------------------- /examples/api/mongocxx/examples/databases/rc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/mongocxx/examples/databases/rc.cpp -------------------------------------------------------------------------------- /examples/api/mongocxx/examples/databases/rp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/mongocxx/examples/databases/rp.cpp -------------------------------------------------------------------------------- /examples/api/mongocxx/examples/databases/wc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/mongocxx/examples/databases/wc.cpp -------------------------------------------------------------------------------- /examples/api/mongocxx/examples/uri/hosts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/mongocxx/examples/uri/hosts.cpp -------------------------------------------------------------------------------- /examples/api/mongocxx/examples/uri/invalid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/mongocxx/examples/uri/invalid.cpp -------------------------------------------------------------------------------- /examples/api/mongocxx/examples/uri/optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/mongocxx/examples/uri/optional.cpp -------------------------------------------------------------------------------- /examples/api/mongocxx/examples/uri/userpass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/mongocxx/examples/uri/userpass.cpp -------------------------------------------------------------------------------- /examples/api/runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/runner.cpp -------------------------------------------------------------------------------- /examples/api/runner.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/api/runner.hh -------------------------------------------------------------------------------- /examples/bsoncxx/bson_binary_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/bsoncxx/bson_binary_vector.cpp -------------------------------------------------------------------------------- /examples/bsoncxx/builder_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/bsoncxx/builder_basic.cpp -------------------------------------------------------------------------------- /examples/bsoncxx/builder_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/bsoncxx/builder_core.cpp -------------------------------------------------------------------------------- /examples/bsoncxx/builder_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/bsoncxx/builder_list.cpp -------------------------------------------------------------------------------- /examples/bsoncxx/builder_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/bsoncxx/builder_stream.cpp -------------------------------------------------------------------------------- /examples/bsoncxx/builder_stream_customization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/bsoncxx/builder_stream_customization.cpp -------------------------------------------------------------------------------- /examples/bsoncxx/decimal128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/bsoncxx/decimal128.cpp -------------------------------------------------------------------------------- /examples/bsoncxx/getting_values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/bsoncxx/getting_values.cpp -------------------------------------------------------------------------------- /examples/bsoncxx/view_and_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/bsoncxx/view_and_value.cpp -------------------------------------------------------------------------------- /examples/macros.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/macros.hh -------------------------------------------------------------------------------- /examples/mongocxx/aggregate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/aggregate.cpp -------------------------------------------------------------------------------- /examples/mongocxx/bulk_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/bulk_write.cpp -------------------------------------------------------------------------------- /examples/mongocxx/causal_consistency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/causal_consistency.cpp -------------------------------------------------------------------------------- /examples/mongocxx/change_streams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/change_streams.cpp -------------------------------------------------------------------------------- /examples/mongocxx/client_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/client_session.cpp -------------------------------------------------------------------------------- /examples/mongocxx/connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/connect.cpp -------------------------------------------------------------------------------- /examples/mongocxx/create.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/create.cpp -------------------------------------------------------------------------------- /examples/mongocxx/document_validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/document_validation.cpp -------------------------------------------------------------------------------- /examples/mongocxx/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/exception.cpp -------------------------------------------------------------------------------- /examples/mongocxx/explicit_encryption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/explicit_encryption.cpp -------------------------------------------------------------------------------- /examples/mongocxx/get_values_from_documents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/get_values_from_documents.cpp -------------------------------------------------------------------------------- /examples/mongocxx/gridfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/gridfs.cpp -------------------------------------------------------------------------------- /examples/mongocxx/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/index.cpp -------------------------------------------------------------------------------- /examples/mongocxx/inserted_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/inserted_id.cpp -------------------------------------------------------------------------------- /examples/mongocxx/instance_management.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/instance_management.cpp -------------------------------------------------------------------------------- /examples/mongocxx/mongodb.com/index_examples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/mongodb.com/index_examples.cpp -------------------------------------------------------------------------------- /examples/mongocxx/mongodb.com/usage_overview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/mongodb.com/usage_overview.cpp -------------------------------------------------------------------------------- /examples/mongocxx/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/pool.cpp -------------------------------------------------------------------------------- /examples/mongocxx/query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/query.cpp -------------------------------------------------------------------------------- /examples/mongocxx/query_projection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/query_projection.cpp -------------------------------------------------------------------------------- /examples/mongocxx/remove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/remove.cpp -------------------------------------------------------------------------------- /examples/mongocxx/tailable_cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/tailable_cursor.cpp -------------------------------------------------------------------------------- /examples/mongocxx/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/tutorial.cpp -------------------------------------------------------------------------------- /examples/mongocxx/update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/update.cpp -------------------------------------------------------------------------------- /examples/mongocxx/view_or_value_variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/view_or_value_variant.cpp -------------------------------------------------------------------------------- /examples/mongocxx/with_transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/mongocxx/with_transaction.cpp -------------------------------------------------------------------------------- /examples/projects/bsoncxx/cmake/shared/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/projects/bsoncxx/cmake/shared/build.sh -------------------------------------------------------------------------------- /examples/projects/bsoncxx/cmake/static/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/projects/bsoncxx/cmake/static/build.sh -------------------------------------------------------------------------------- /examples/projects/bsoncxx/hello_bsoncxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/projects/bsoncxx/hello_bsoncxx.cpp -------------------------------------------------------------------------------- /examples/projects/mongocxx/cmake/shared/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/projects/mongocxx/cmake/shared/build.sh -------------------------------------------------------------------------------- /examples/projects/mongocxx/cmake/static/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/projects/mongocxx/cmake/static/build.sh -------------------------------------------------------------------------------- /examples/projects/mongocxx/hello_mongocxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/examples/projects/mongocxx/hello_mongocxx.cpp -------------------------------------------------------------------------------- /extras/docker/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/Dockerfile.j2 -------------------------------------------------------------------------------- /extras/docker/Makefile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/Makefile.j2 -------------------------------------------------------------------------------- /extras/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/README.md -------------------------------------------------------------------------------- /extras/docker/TestDockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/TestDockerfile.j2 -------------------------------------------------------------------------------- /extras/docker/alpine3.19/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/alpine3.19/Dockerfile -------------------------------------------------------------------------------- /extras/docker/alpine3.19/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/alpine3.19/Makefile -------------------------------------------------------------------------------- /extras/docker/alpine3.19/TestDockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/alpine3.19/TestDockerfile -------------------------------------------------------------------------------- /extras/docker/alpine3.19/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/alpine3.19/test.cpp -------------------------------------------------------------------------------- /extras/docker/bookworm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/bookworm/Dockerfile -------------------------------------------------------------------------------- /extras/docker/bookworm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/bookworm/Makefile -------------------------------------------------------------------------------- /extras/docker/bookworm/TestDockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/bookworm/TestDockerfile -------------------------------------------------------------------------------- /extras/docker/bookworm/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/bookworm/test.cpp -------------------------------------------------------------------------------- /extras/docker/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/generate.py -------------------------------------------------------------------------------- /extras/docker/noble/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/noble/Dockerfile -------------------------------------------------------------------------------- /extras/docker/noble/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/noble/Makefile -------------------------------------------------------------------------------- /extras/docker/noble/TestDockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/noble/TestDockerfile -------------------------------------------------------------------------------- /extras/docker/noble/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/noble/test.cpp -------------------------------------------------------------------------------- /extras/docker/redhat-ubi-9.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/redhat-ubi-9.4/Dockerfile -------------------------------------------------------------------------------- /extras/docker/redhat-ubi-9.4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/redhat-ubi-9.4/Makefile -------------------------------------------------------------------------------- /extras/docker/redhat-ubi-9.4/TestDockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/redhat-ubi-9.4/TestDockerfile -------------------------------------------------------------------------------- /extras/docker/redhat-ubi-9.4/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/redhat-ubi-9.4/test.cpp -------------------------------------------------------------------------------- /extras/docker/test.cpp.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/extras/docker/test.cpp.j2 -------------------------------------------------------------------------------- /generate_uninstall/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/generate_uninstall/CMakeLists.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/bsoncxx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/CMakeLists.txt -------------------------------------------------------------------------------- /src/bsoncxx/bsoncxx.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/bsoncxx.rc.in -------------------------------------------------------------------------------- /src/bsoncxx/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /src/bsoncxx/cmake/bsoncxx-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/cmake/bsoncxx-config.cmake.in -------------------------------------------------------------------------------- /src/bsoncxx/cmake/generate-pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/cmake/generate-pc.cmake -------------------------------------------------------------------------------- /src/bsoncxx/cmake/libbsoncxx.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/cmake/libbsoncxx.pc.in -------------------------------------------------------------------------------- /src/bsoncxx/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/CMakeLists.txt -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/docs/top.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/docs/top.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/docs/topics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/docs/topics.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/docs/v1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/docs/v1.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/docs/v_noabi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/docs/v_noabi.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/array/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/array/value.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/array/view-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/array/view-fwd.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/array/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/array/view.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/decimal128-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/decimal128-fwd.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/decimal128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/decimal128.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/detail/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/detail/bit.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/detail/compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/detail/compare.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/detail/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/detail/macros.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/detail/prelude.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/detail/prelude.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/document/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/document/value.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/document/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/document/view.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/element/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/element/view.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/exception-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/exception-fwd.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/exception.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/oid-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/oid-fwd.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/oid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/oid.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/stdx/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/stdx/optional.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/types/id-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/types/id-fwd.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/types/id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/types/id.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/types/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/types/value.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/types/view-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/types/view-fwd.hpp -------------------------------------------------------------------------------- /src/bsoncxx/include/bsoncxx/v1/types/view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/include/bsoncxx/v1/types/view.hpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/CMakeLists.txt -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/private/b64_ntop.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/private/b64_ntop.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/private/bson.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/private/bson.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/private/export.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/private/export.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/private/helpers.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/private/helpers.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/private/immortal.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/private/immortal.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/private/itoa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/private/itoa.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/private/itoa.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/private/itoa.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/private/make_unique.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/private/make_unique.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/private/stack.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/private/stack.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/private/type_traits.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/private/type_traits.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/private/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/private/version.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/private/version.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/private/version.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/array/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/array/value.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/array/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/array/view.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/config/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/config/config.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/config/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/config/config.hpp.in -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/config/export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/config/export.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/config/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/config/version.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/config/version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/config/version.hpp.in -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/decimal128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/decimal128.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/detail/postlude.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/detail/postlude.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/detail/prelude.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/detail/prelude.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/document/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/document/value.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/document/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/document/view.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/document/view.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/document/view.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/element/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/element/view.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/element/view.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/element/view.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/exception.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/oid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/oid.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/oid.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/oid.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/types/id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/types/id.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/types/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/types/value.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/types/value.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/types/value.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/types/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/types/view.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v1/types/view.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v1/types/view.hh -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v_noabi/bsoncxx/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v_noabi/bsoncxx/json.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v_noabi/bsoncxx/oid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v_noabi/bsoncxx/oid.cpp -------------------------------------------------------------------------------- /src/bsoncxx/lib/bsoncxx/v_noabi/bsoncxx/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/lib/bsoncxx/v_noabi/bsoncxx/types.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/bsoncxx/test/catch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/catch.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/catch.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/catch.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/exception_guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/exception_guard.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/exception_guard.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/exception_guard.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/private/bson_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/private/bson_version.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/private/make_unique.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/private/make_unique.test.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/stringify.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/stringify.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/system_error.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/system_error.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/test_macro_guards.cpp.in: -------------------------------------------------------------------------------- 1 | @MACRO_GUARD_TEST@ 2 | -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/array/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/array/value.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/array/value.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/array/value.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/array/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/array/view.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/array/view.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/array/view.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/array/view_string_maker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/array/view_string_maker.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/decimal128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/decimal128.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/decimal128.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/decimal128.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/detail/bit.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/detail/bit.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/document/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/document/value.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/document/value.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/document/value.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/document/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/document/view.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/document/view.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/document/view.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/element/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/element/view.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/element/view.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/element/view.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/element/view_string_maker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/element/view_string_maker.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/exception.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/exception.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/exception.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/oid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/oid.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/oid.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/oid.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/stdx/optional.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/stdx/optional.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/stdx/optional.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/stdx/optional.test.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/stdx/string_view.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/stdx/string_view.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/stdx/string_view.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/stdx/string_view.test.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/stdx/type_traits.test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/stdx/type_traits.test.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/types/id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/types/id.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/types/id.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/types/id.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/types/value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/types/value.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/types/value.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/types/value.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/types/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/types/view.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v1/types/view.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v1/types/view.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/array.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/bson_b_date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/bson_b_date.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/bson_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/bson_builder.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/bson_get_values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/bson_get_values.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/bson_serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/bson_serialization.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/bson_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/bson_types.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/bson_util_itoa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/bson_util_itoa.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/bson_validate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/bson_validate.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/decimal128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/decimal128.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/json.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/oid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/oid.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/to_string.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/to_string.hh -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/types.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/vector.cpp -------------------------------------------------------------------------------- /src/bsoncxx/test/v_noabi/view_or_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/bsoncxx/test/v_noabi/view_or_value.cpp -------------------------------------------------------------------------------- /src/mongocxx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/CMakeLists.txt -------------------------------------------------------------------------------- /src/mongocxx/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /src/mongocxx/cmake/generate-pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/cmake/generate-pc.cmake -------------------------------------------------------------------------------- /src/mongocxx/cmake/libmongocxx.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/cmake/libmongocxx.pc.in -------------------------------------------------------------------------------- /src/mongocxx/cmake/mongocxx-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/cmake/mongocxx-config.cmake.in -------------------------------------------------------------------------------- /src/mongocxx/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/CMakeLists.txt -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/docs/top.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/docs/top.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/docs/topics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/docs/topics.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/docs/v1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/docs/v1.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/docs/v_noabi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/docs/v_noabi.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/apm-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/apm-fwd.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/apm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/apm.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/bulk_write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/bulk_write.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/client-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/client-fwd.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/client.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/collection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/collection.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/cursor-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/cursor-fwd.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/cursor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/cursor.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/database-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/database-fwd.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/database.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/exception.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/find_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/find_options.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/hint-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/hint-fwd.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/hint.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/indexes-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/indexes-fwd.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/indexes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/indexes.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/instance-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/instance-fwd.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/instance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/instance.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/logger-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/logger-fwd.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/logger.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/pipeline-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/pipeline-fwd.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/pipeline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/pipeline.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/pool-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/pool-fwd.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/pool.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/read_concern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/read_concern.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/server_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/server_api.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/server_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/server_error.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/tls-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/tls-fwd.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/tls.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/uri-fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/uri-fwd.hpp -------------------------------------------------------------------------------- /src/mongocxx/include/mongocxx/v1/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/include/mongocxx/v1/uri.hpp -------------------------------------------------------------------------------- /src/mongocxx/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/CMakeLists.txt -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/private/export.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/private/export.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/private/mock.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/private/mock.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/private/mongoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/private/mongoc.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/private/mongoc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/private/mongoc.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/private/scoped_bson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/private/scoped_bson.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/private/scoped_bson.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/private/scoped_bson.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/private/ssl.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/private/ssl.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/private/utility.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/private/utility.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/aggregate_options.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/aggregate_options.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/apm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/apm.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/apm.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/apm.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/bulk_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/bulk_write.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/change_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/change_stream.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/client.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/client_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/client_session.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/collection.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/config/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/config/config.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/config/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/config/config.hpp.in -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/config/export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/config/export.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/config/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/config/version.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/count_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/count_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/count_options.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/count_options.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/cursor.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/data_key_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/data_key_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/data_key_options.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/data_key_options.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/database.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/detail/postlude.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/detail/postlude.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/detail/prelude.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/detail/prelude.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/distinct_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/distinct_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/distinct_options.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/distinct_options.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/exception.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/exception.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/exception.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/find_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/find_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/find_options.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/find_options.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/gridfs/bucket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/gridfs/bucket.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/hint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/hint.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/hint.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/hint.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/indexes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/indexes.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/instance.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/logger.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/pipeline.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/pipeline.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/pipeline.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/pool.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/range_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/range_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/range_options.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/range_options.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/read_concern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/read_concern.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/read_concern.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/read_concern.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/server_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/server_api.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/server_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/server_error.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/server_error.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/server_error.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/tls.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/tls.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/tls.hh -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/uri.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/write_concern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/write_concern.cpp -------------------------------------------------------------------------------- /src/mongocxx/lib/mongocxx/v1/write_concern.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/lib/mongocxx/v1/write_concern.hh -------------------------------------------------------------------------------- /src/mongocxx/mongocxx.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/mongocxx.rc.in -------------------------------------------------------------------------------- /src/mongocxx/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/mongocxx/test/catch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/catch.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/private/mongoc_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/private/mongoc_version.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/private/numeric_casting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/private/numeric_casting.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/private/scoped_bson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/private/scoped_bson.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/private/scoped_bson.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/private/scoped_bson.hh -------------------------------------------------------------------------------- /src/mongocxx/test/spec/command_monitoring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/command_monitoring.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/spec/crud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/crud.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/spec/gridfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/gridfs.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/spec/monitoring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/monitoring.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/spec/monitoring.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/monitoring.hh -------------------------------------------------------------------------------- /src/mongocxx/test/spec/operation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/operation.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/spec/operation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/operation.hh -------------------------------------------------------------------------------- /src/mongocxx/test/spec/read_write_concern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/read_write_concern.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/spec/retryable-reads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/retryable-reads.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/spec/transactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/transactions.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/spec/unified_tests/assert.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/unified_tests/assert.hh -------------------------------------------------------------------------------- /src/mongocxx/test/spec/unified_tests/entity.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/unified_tests/entity.hh -------------------------------------------------------------------------------- /src/mongocxx/test/spec/uri_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/uri_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/spec/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/util.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/spec/util.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/spec/util.hh -------------------------------------------------------------------------------- /src/mongocxx/test/subprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/subprocess.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/subprocess.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/subprocess.hh -------------------------------------------------------------------------------- /src/mongocxx/test/test_macro_guards.cpp.in: -------------------------------------------------------------------------------- 1 | @MACRO_GUARD_TEST@ 2 | -------------------------------------------------------------------------------- /src/mongocxx/test/v1/aggregate_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/aggregate_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/apm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/apm.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/bsoncxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/bsoncxx.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/count_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/count_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/data_key_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/data_key_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/delete_many_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/delete_many_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/delete_one_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/delete_one_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/distinct_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/distinct_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/events.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/exception.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/exception.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/exception.hh -------------------------------------------------------------------------------- /src/mongocxx/test/v1/find_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/find_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/hint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/hint.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/insert_many_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/insert_many_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/insert_one_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/insert_one_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/instance.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/instance.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/instance.hh -------------------------------------------------------------------------------- /src/mongocxx/test/v1/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/logger.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/logger.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/logger.hh -------------------------------------------------------------------------------- /src/mongocxx/test/v1/pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/pipeline.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/range_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/range_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/read_concern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/read_concern.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/read_concern.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/read_concern.hh -------------------------------------------------------------------------------- /src/mongocxx/test/v1/read_preference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/read_preference.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/read_preference.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/read_preference.hh -------------------------------------------------------------------------------- /src/mongocxx/test/v1/replace_one_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/replace_one_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/server_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/server_error.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/server_error.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/server_error.hh -------------------------------------------------------------------------------- /src/mongocxx/test/v1/tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/tls.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/transaction_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/transaction_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/update_many_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/update_many_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/update_one_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/update_one_options.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/write_concern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/write_concern.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v1/write_concern.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v1/write_concern.hh -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/bulk_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/bulk_write.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/catch_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/catch_helpers.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/catch_helpers.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/catch_helpers.hh -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/change_streams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/change_streams.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/client.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/client_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/client_helpers.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/client_helpers.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/client_helpers.hh -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/client_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/client_session.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/collection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/collection.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/conversions.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/database.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/gridfs/bucket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/gridfs/bucket.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/gridfs/uploader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/gridfs/uploader.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/hint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/hint.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/index_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/index_view.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/instance.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/logging.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/model/delete_one.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/model/delete_one.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/model/insert_one.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/model/insert_one.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/model/update_one.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/model/update_one.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/options/count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/options/count.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/options/delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/options/delete.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/options/distinct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/options/distinct.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/options/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/options/find.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/options/index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/options/index.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/options/insert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/options/insert.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/options/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/options/pool.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/options/replace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/options/replace.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/options/update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/options/update.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/pool.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/read_concern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/read_concern.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/read_preference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/read_preference.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/result/delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/result/delete.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/result/update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/result/update.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/sdam-monitoring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/sdam-monitoring.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/transactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/transactions.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/uri.cpp -------------------------------------------------------------------------------- /src/mongocxx/test/v_noabi/write_concern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/src/mongocxx/test/v_noabi/write_concern.cpp -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb/mongo-cxx-driver/HEAD/uv.lock --------------------------------------------------------------------------------