blob: 4e124a704f6442c4aab1672b134afb4e395a8fd1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.brooklyn.entity.nosql.mongodb;
import java.util.List;
import java.util.Map;
import org.apache.brooklyn.api.entity.ImplementedBy;
import org.apache.brooklyn.config.ConfigKey;
import org.apache.brooklyn.core.annotation.Effector;
import org.apache.brooklyn.core.annotation.EffectorParam;
import org.apache.brooklyn.core.config.ConfigKeys;
import org.apache.brooklyn.core.effector.MethodEffector;
import org.apache.brooklyn.entity.nosql.mongodb.sharding.MongoDBShardedDeployment;
import org.apache.brooklyn.util.core.flags.SetFromFlag;
import com.google.common.reflect.TypeToken;
@ImplementedBy(MongoDBClientImpl.class)
public interface MongoDBClient extends AbstractMongoDBServer {
MethodEffector<Void> RUN_SCRIPT = new MethodEffector<Void>(MongoDBClient.class, "runScript");
@SuppressWarnings("serial")
@SetFromFlag("startupJsScripts")
ConfigKey<List<String>> STARTUP_JS_SCRIPTS = ConfigKeys.newConfigKey(
new TypeToken<List<String>>(){}, "mongodb.client.startupJsScripts",
"List of scripts defined in mongodb.client.scripts to be run on startup");
@SuppressWarnings("serial")
@SetFromFlag("scripts")
ConfigKey<Map<String, String>> JS_SCRIPTS = ConfigKeys.newConfigKey(
new TypeToken<Map<String, String>>(){}, "mongodb.client.scripts", "List of javascript scripts to be copied "
+ "to the server. These scripts can be run using the runScript effector");
@SetFromFlag("shardedDeployment")
ConfigKey<MongoDBShardedDeployment> SHARDED_DEPLOYMENT = ConfigKeys.newConfigKey(MongoDBShardedDeployment.class,
"mongodb.client.shardeddeployment", "Sharded deployment that the client will use to run scripts. "
+ "If both SERVER and SHARDED_DEPLOYMENT are specified, SERVER will be used");
@SetFromFlag("server")
ConfigKey<AbstractMongoDBServer> SERVER = ConfigKeys.newConfigKey(AbstractMongoDBServer.class,
"mongodb.client.server", "MongoDBServer that the client will use to run scripts. "
+ "If both SERVER and SHARDED_DEPLOYMENT are specified, SERVER will be used");
@Effector(description="Runs one of the scripts defined in mongodb.client.scripts")
void runScript(@EffectorParam(name="preStart", description="use this to create parameters that can be used by the script, e.g.:<p><code>var loopCount = 10</code>") String preStart,
@EffectorParam(name="scriptName", description="Name of the script as defined in mongodb.client.scripts") String scriptName);
}