You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
246 lines
9.3 KiB
JavaScript
246 lines
9.3 KiB
JavaScript
10 months ago
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.IndexInformationOperation = exports.IndexExistsOperation = exports.ListIndexesOperation = exports.DropIndexOperation = exports.EnsureIndexOperation = exports.CreateIndexOperation = exports.CreateIndexesOperation = exports.IndexesOperation = void 0;
|
||
|
const error_1 = require("../error");
|
||
|
const read_preference_1 = require("../read_preference");
|
||
|
const utils_1 = require("../utils");
|
||
|
const command_1 = require("./command");
|
||
|
const common_functions_1 = require("./common_functions");
|
||
|
const operation_1 = require("./operation");
|
||
|
const VALID_INDEX_OPTIONS = new Set([
|
||
|
'background',
|
||
|
'unique',
|
||
|
'name',
|
||
|
'partialFilterExpression',
|
||
|
'sparse',
|
||
|
'hidden',
|
||
|
'expireAfterSeconds',
|
||
|
'storageEngine',
|
||
|
'collation',
|
||
|
'version',
|
||
|
// text indexes
|
||
|
'weights',
|
||
|
'default_language',
|
||
|
'language_override',
|
||
|
'textIndexVersion',
|
||
|
// 2d-sphere indexes
|
||
|
'2dsphereIndexVersion',
|
||
|
// 2d indexes
|
||
|
'bits',
|
||
|
'min',
|
||
|
'max',
|
||
|
// geoHaystack Indexes
|
||
|
'bucketSize',
|
||
|
// wildcard indexes
|
||
|
'wildcardProjection'
|
||
|
]);
|
||
|
function isIndexDirection(x) {
|
||
|
return (typeof x === 'number' || x === '2d' || x === '2dsphere' || x === 'text' || x === 'geoHaystack');
|
||
|
}
|
||
|
function isSingleIndexTuple(t) {
|
||
|
return Array.isArray(t) && t.length === 2 && isIndexDirection(t[1]);
|
||
|
}
|
||
|
function makeIndexSpec(indexSpec, options) {
|
||
|
const key = new Map();
|
||
|
const indexSpecs = !Array.isArray(indexSpec) || isSingleIndexTuple(indexSpec) ? [indexSpec] : indexSpec;
|
||
|
// Iterate through array and handle different types
|
||
|
for (const spec of indexSpecs) {
|
||
|
if (typeof spec === 'string') {
|
||
|
key.set(spec, 1);
|
||
|
}
|
||
|
else if (Array.isArray(spec)) {
|
||
|
key.set(spec[0], spec[1] ?? 1);
|
||
|
}
|
||
|
else if (spec instanceof Map) {
|
||
|
for (const [property, value] of spec) {
|
||
|
key.set(property, value);
|
||
|
}
|
||
|
}
|
||
|
else if ((0, utils_1.isObject)(spec)) {
|
||
|
for (const [property, value] of Object.entries(spec)) {
|
||
|
key.set(property, value);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return { ...options, key };
|
||
|
}
|
||
|
/** @internal */
|
||
|
class IndexesOperation extends operation_1.AbstractOperation {
|
||
|
constructor(collection, options) {
|
||
|
super(options);
|
||
|
this.options = options;
|
||
|
this.collection = collection;
|
||
|
}
|
||
|
async execute(_server, session) {
|
||
|
const coll = this.collection;
|
||
|
const options = this.options;
|
||
|
return (0, common_functions_1.indexInformation)(coll.s.db, coll.collectionName, {
|
||
|
full: true,
|
||
|
...options,
|
||
|
readPreference: this.readPreference,
|
||
|
session
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
exports.IndexesOperation = IndexesOperation;
|
||
|
/** @internal */
|
||
|
class CreateIndexesOperation extends command_1.CommandOperation {
|
||
|
constructor(parent, collectionName, indexes, options) {
|
||
|
super(parent, options);
|
||
|
this.options = options ?? {};
|
||
|
this.collectionName = collectionName;
|
||
|
this.indexes = indexes.map(userIndex => {
|
||
|
// Ensure the key is a Map to preserve index key ordering
|
||
|
const key = userIndex.key instanceof Map ? userIndex.key : new Map(Object.entries(userIndex.key));
|
||
|
const name = userIndex.name != null ? userIndex.name : Array.from(key).flat().join('_');
|
||
|
const validIndexOptions = Object.fromEntries(Object.entries({ ...userIndex }).filter(([optionName]) => VALID_INDEX_OPTIONS.has(optionName)));
|
||
|
return {
|
||
|
...validIndexOptions,
|
||
|
name,
|
||
|
key
|
||
|
};
|
||
|
});
|
||
|
}
|
||
|
async execute(server, session) {
|
||
|
const options = this.options;
|
||
|
const indexes = this.indexes;
|
||
|
const serverWireVersion = (0, utils_1.maxWireVersion)(server);
|
||
|
const cmd = { createIndexes: this.collectionName, indexes };
|
||
|
if (options.commitQuorum != null) {
|
||
|
if (serverWireVersion < 9) {
|
||
|
throw new error_1.MongoCompatibilityError('Option `commitQuorum` for `createIndexes` not supported on servers < 4.4');
|
||
|
}
|
||
|
cmd.commitQuorum = options.commitQuorum;
|
||
|
}
|
||
|
// collation is set on each index, it should not be defined at the root
|
||
|
this.options.collation = undefined;
|
||
|
await super.executeCommand(server, session, cmd);
|
||
|
const indexNames = indexes.map(index => index.name || '');
|
||
|
return indexNames;
|
||
|
}
|
||
|
}
|
||
|
exports.CreateIndexesOperation = CreateIndexesOperation;
|
||
|
/** @internal */
|
||
|
class CreateIndexOperation extends CreateIndexesOperation {
|
||
|
constructor(parent, collectionName, indexSpec, options) {
|
||
|
super(parent, collectionName, [makeIndexSpec(indexSpec, options)], options);
|
||
|
}
|
||
|
async execute(server, session) {
|
||
|
const indexNames = await super.execute(server, session);
|
||
|
return indexNames[0];
|
||
|
}
|
||
|
}
|
||
|
exports.CreateIndexOperation = CreateIndexOperation;
|
||
|
/** @internal */
|
||
|
class EnsureIndexOperation extends CreateIndexOperation {
|
||
|
constructor(db, collectionName, indexSpec, options) {
|
||
|
super(db, collectionName, indexSpec, options);
|
||
|
this.readPreference = read_preference_1.ReadPreference.primary;
|
||
|
this.db = db;
|
||
|
this.collectionName = collectionName;
|
||
|
}
|
||
|
async execute(server, session) {
|
||
|
const indexName = this.indexes[0].name;
|
||
|
const indexes = await this.db
|
||
|
.collection(this.collectionName)
|
||
|
.listIndexes({ session })
|
||
|
.toArray()
|
||
|
.catch(error => {
|
||
|
if (error instanceof error_1.MongoError && error.code === error_1.MONGODB_ERROR_CODES.NamespaceNotFound)
|
||
|
return [];
|
||
|
throw error;
|
||
|
});
|
||
|
if (indexName && indexes.some(index => index.name === indexName))
|
||
|
return indexName;
|
||
|
return super.execute(server, session);
|
||
|
}
|
||
|
}
|
||
|
exports.EnsureIndexOperation = EnsureIndexOperation;
|
||
|
/** @internal */
|
||
|
class DropIndexOperation extends command_1.CommandOperation {
|
||
|
constructor(collection, indexName, options) {
|
||
|
super(collection, options);
|
||
|
this.options = options ?? {};
|
||
|
this.collection = collection;
|
||
|
this.indexName = indexName;
|
||
|
}
|
||
|
async execute(server, session) {
|
||
|
const cmd = { dropIndexes: this.collection.collectionName, index: this.indexName };
|
||
|
return super.executeCommand(server, session, cmd);
|
||
|
}
|
||
|
}
|
||
|
exports.DropIndexOperation = DropIndexOperation;
|
||
|
/** @internal */
|
||
|
class ListIndexesOperation extends command_1.CommandOperation {
|
||
|
constructor(collection, options) {
|
||
|
super(collection, options);
|
||
|
this.options = { ...options };
|
||
|
delete this.options.writeConcern;
|
||
|
this.collectionNamespace = collection.s.namespace;
|
||
|
}
|
||
|
async execute(server, session) {
|
||
|
const serverWireVersion = (0, utils_1.maxWireVersion)(server);
|
||
|
const cursor = this.options.batchSize ? { batchSize: this.options.batchSize } : {};
|
||
|
const command = { listIndexes: this.collectionNamespace.collection, cursor };
|
||
|
// we check for undefined specifically here to allow falsy values
|
||
|
// eslint-disable-next-line no-restricted-syntax
|
||
|
if (serverWireVersion >= 9 && this.options.comment !== undefined) {
|
||
|
command.comment = this.options.comment;
|
||
|
}
|
||
|
return super.executeCommand(server, session, command);
|
||
|
}
|
||
|
}
|
||
|
exports.ListIndexesOperation = ListIndexesOperation;
|
||
|
/** @internal */
|
||
|
class IndexExistsOperation extends operation_1.AbstractOperation {
|
||
|
constructor(collection, indexes, options) {
|
||
|
super(options);
|
||
|
this.options = options;
|
||
|
this.collection = collection;
|
||
|
this.indexes = indexes;
|
||
|
}
|
||
|
async execute(server, session) {
|
||
|
const coll = this.collection;
|
||
|
const indexes = this.indexes;
|
||
|
const info = await (0, common_functions_1.indexInformation)(coll.s.db, coll.collectionName, {
|
||
|
...this.options,
|
||
|
readPreference: this.readPreference,
|
||
|
session
|
||
|
});
|
||
|
// Let's check for the index names
|
||
|
if (!Array.isArray(indexes))
|
||
|
return info[indexes] != null;
|
||
|
// All keys found return true
|
||
|
return indexes.every(indexName => info[indexName] != null);
|
||
|
}
|
||
|
}
|
||
|
exports.IndexExistsOperation = IndexExistsOperation;
|
||
|
/** @internal */
|
||
|
class IndexInformationOperation extends operation_1.AbstractOperation {
|
||
|
constructor(db, name, options) {
|
||
|
super(options);
|
||
|
this.options = options ?? {};
|
||
|
this.db = db;
|
||
|
this.name = name;
|
||
|
}
|
||
|
async execute(server, session) {
|
||
|
const db = this.db;
|
||
|
const name = this.name;
|
||
|
return (0, common_functions_1.indexInformation)(db, name, {
|
||
|
...this.options,
|
||
|
readPreference: this.readPreference,
|
||
|
session
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
exports.IndexInformationOperation = IndexInformationOperation;
|
||
|
(0, operation_1.defineAspects)(ListIndexesOperation, [
|
||
|
operation_1.Aspect.READ_OPERATION,
|
||
|
operation_1.Aspect.RETRYABLE,
|
||
|
operation_1.Aspect.CURSOR_CREATING
|
||
|
]);
|
||
|
(0, operation_1.defineAspects)(CreateIndexesOperation, [operation_1.Aspect.WRITE_OPERATION]);
|
||
|
(0, operation_1.defineAspects)(CreateIndexOperation, [operation_1.Aspect.WRITE_OPERATION]);
|
||
|
(0, operation_1.defineAspects)(EnsureIndexOperation, [operation_1.Aspect.WRITE_OPERATION]);
|
||
|
(0, operation_1.defineAspects)(DropIndexOperation, [operation_1.Aspect.WRITE_OPERATION]);
|
||
|
//# sourceMappingURL=indexes.js.map
|