com.eightkdata.mongowp.server.api.impl.NameBasedCommandsLibrary Maven / Gradle / Ivy
/*
* This file is part of mongowp.
*
* mongowp is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* mongowp is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with mongowp. If not, see .
*
* Copyright (c) 2014, 8Kdata Technology
*
*/
package com.eightkdata.mongowp.server.api.impl;
import com.eightkdata.mongowp.bson.BsonDocument;
import com.eightkdata.mongowp.bson.BsonDocument.Entry;
import com.eightkdata.mongowp.server.api.Command;
import com.eightkdata.mongowp.server.api.CommandsLibrary;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Sets;
import java.util.HashSet;
import java.util.Locale;
import java.util.Set;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
*/
public class NameBasedCommandsLibrary implements CommandsLibrary {
private static final Logger LOGGER
= LoggerFactory.getLogger(NameBasedCommandsLibrary.class);
private final String version;
private final ImmutableMap commandsMap;
public NameBasedCommandsLibrary(String version, Iterable commands) {
this.version = version;
ImmutableMap.Builder commandsMapBuilder = ImmutableMap.builder();
for (Command command : commands) {
commandsMapBuilder.put(command.getCommandName().toLowerCase(Locale.ENGLISH), command);
}
this.commandsMap = commandsMapBuilder.build();
}
@Override
public String getSupportedVersion() {
return version;
}
@Override
public Set getSupportedCommands() {
HashSet supportedCommands = Sets.newHashSet(commandsMap.values());
assert supportedCommands.size() == commandsMap.size();
return supportedCommands;
}
@Override
public Command find(BsonDocument requestDocument) {
if (requestDocument.isEmpty()) {
return null;
}
String commandName = requestDocument.getFirstEntry().getKey().toLowerCase(Locale.ENGLISH);
Command result = commandsMap.get(commandName);
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy