//###
//# #%L
//# mosaic-java-sun-utilities
//# %%
//# Copyright (C) 2010 - 2012 Seconda Università di Napoli
//#Authors: Massimiliano Rak, Giuseppe Aversano
//# %%
//# Licensed 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.
//# #L%
//###
package eu.mosaic_cloud.portingtest;
import eu.mosaic_cloud.cloudlets.connectors.kvstore.IKvStoreConnector;
import eu.mosaic_cloud.cloudlets.connectors.kvstore.IKvStoreConnectorFactory;
import eu.mosaic_cloud.cloudlets.connectors.kvstore.KvStoreCallbackCompletionArguments;
import eu.mosaic_cloud.cloudlets.connectors.queue.amqp.AmqpQueueConsumeCallbackArguments;
import eu.mosaic_cloud.cloudlets.connectors.queue.amqp.IAmqpQueueConsumerConnector;
import eu.mosaic_cloud.cloudlets.connectors.queue.amqp.IAmqpQueueConsumerConnectorFactory;
import eu.mosaic_cloud.cloudlets.connectors.queue.amqp.IAmqpQueuePublisherConnector;
import eu.mosaic_cloud.cloudlets.connectors.queue.amqp.IAmqpQueuePublisherConnectorFactory;
import eu.mosaic_cloud.cloudlets.core.CallbackArguments;
import eu.mosaic_cloud.cloudlets.core.CloudletCallbackArguments;
import eu.mosaic_cloud.cloudlets.core.CloudletCallbackCompletionArguments;
import eu.mosaic_cloud.cloudlets.core.GenericCallbackCompletionArguments;
import eu.mosaic_cloud.cloudlets.core.ICallback;
import eu.mosaic_cloud.cloudlets.core.ICloudletController;
import eu.mosaic_cloud.cloudlets.tools.DefaultAmqpPublisherConnectorCallback;
import eu.mosaic_cloud.cloudlets.tools.DefaultAmqpQueueConsumerConnectorCallback;
import eu.mosaic_cloud.cloudlets.tools.DefaultCloudletCallback;
import eu.mosaic_cloud.cloudlets.tools.DefaultKvStoreConnectorCallback;
import eu.mosaic_cloud.platform.core.configuration.ConfigurationIdentifier;
import eu.mosaic_cloud.platform.core.configuration.IConfiguration;
import eu.mosaic_cloud.platform.core.utils.JsonDataEncoder;
import eu.mosaic_cloud.platform.core.utils.NullDataEncoder;
import eu.mosaic_cloud.platform.core.utils.PlainTextDataEncoder;
import eu.mosaic_cloud.portingtest.ConsumerByteKV.ConsumerByteKVContext;
import eu.mosaic_cloud.portingtest.ConsumerByteKV.KeyValueCallback;
import eu.mosaic_cloud.tools.callbacks.core.CallbackCompletion;
public class ConsumerQPTKV
{
public static final class AmqpConsumerCallback
extends DefaultAmqpQueueConsumerConnectorCallback<ConsumerQPTKVContext, QPT, Void>
{
@Override
public CallbackCompletion<Void> consume (final ConsumerQPTKVContext context, final AmqpQueueConsumeCallbackArguments<QPT> arguments)
{
final QPT val = arguments.getMessage ();
this.logger.info ("\n\n ConsumerQPTKV received message");
this.logger.info ("\n\n ConsumerQPTKV SecLa:"+val.getSecLa());
this.logger.info ("\n\n ConsumerQPTKV nome:"+val.getName());
this.logger.info ("\n\n ConsumerQPTKV media:"+val.getVal());
context.kvStore.set(context.key,val, null);
context.consumer.acknowledge (arguments.getToken ());
return ICallback.SUCCESS;
}
@Override
public CallbackCompletion<Void> destroySucceeded (final ConsumerQPTKVContext context, final CallbackArguments arguments)
{
this.logger.info ("ConsumerQPTKV Consumer destroyed successfully.");
return ICallback.SUCCESS;
}
@Override
public CallbackCompletion<Void> initializeSucceeded (final ConsumerQPTKVContext context, final CallbackArguments arguments)
{
this.logger.info ("ConsumerQPTKV Consumer initialized successfully.");
return ICallback.SUCCESS;
}
public CallbackCompletion<Void> acknowledgeSucceeded (final ConsumerQPTKVContext context, final GenericCallbackCompletionArguments<Void> arguments)
{
// context.cloudlet.destroy ();
return ICallback.SUCCESS;
}
}
public static final class KeyValueCallback
extends DefaultKvStoreConnectorCallback<ConsumerQPTKVContext, QPT, Void>
{
@Override
public CallbackCompletion<Void> destroySucceeded (final ConsumerQPTKVContext context, final CallbackArguments arguments)
{
this.logger.info ("ConsumerQPTKV KV_QPT destroyed successfully.");
return ICallback.SUCCESS;
}
@Override
public CallbackCompletion<Void> initializeSucceeded (final ConsumerQPTKVContext context, final CallbackArguments arguments)
{
this.logger.info ("ConsumerQPTKV KV_QPT initialized successfully");
return ICallback.SUCCESS;
}
public CallbackCompletion<Void> setSucceeded(final ConsumerQPTKVContext context, final KvStoreCallbackCompletionArguments<QPT,Void> arguments) {
this.logger.info("\n\nSet nel KV_QPT Contenente i Risultati memorizzati Succeeded\n\n");
String k=arguments.getKey();
//this.logger.info("\n\nKEY:"+k);
QPT value=(QPT)arguments.getValue();
//this.logger.info("\n\nResult:"+value);
context.kvStore.get(context.key,null);
return ICallback.SUCCESS;
}
public CallbackCompletion<Void> deleteSucceeded (final ConsumerQPTKVContext context, final CallbackArguments arguments)
{
this.logger.info ("ConsumerQPTKV KV_QPT delete successfully.");
return ICallback.SUCCESS;
}
public CallbackCompletion<Void> getSucceeded(final ConsumerQPTKVContext context,final KvStoreCallbackCompletionArguments<QPT,Void> arguments) {
this.logger.info("\n\nGet nel KV_QPT Contenente i Risultati memorizzati Succeeded\n\n");
String key =(String) arguments.getKey();
QPT value=(QPT) arguments.getValue();
this.logger.info("\n\nKEY:"+key);
this.logger.info ("\n\n GET ConsumerQPTKV SecLa:"+value.getSecLa());
this.logger.info ("\n\n GET ConsumerQPTKV nome:"+value.getName());
this.logger.info ("\n\n GET ConsumerQPTKV media:"+value.getVal());
return ICallback.SUCCESS;
}
public CallbackCompletion<Void> ungetSucceeded (final ConsumerQPTKVContext context, final CallbackArguments arguments)
{
this.logger.info ("ConsumerQPTKV KV_QPT ungetSucceeded.");
return ICallback.SUCCESS;
}
}
public static final class LifeCycleHandler
extends DefaultCloudletCallback<ConsumerQPTKVContext>
{
@Override
public CallbackCompletion<Void> destroy (final ConsumerQPTKVContext context, final CloudletCallbackArguments<ConsumerQPTKVContext> arguments)
{
this.logger.info ("ConsumerQPTKV is being destroyed...");
return CallbackCompletion.createAndChained (context.consumer.destroy ());
}
@Override
public CallbackCompletion<Void> destroySucceeded (final ConsumerQPTKVContext context, final CloudletCallbackCompletionArguments<ConsumerQPTKVContext> arguments)
{
this.logger.info ("ConsumerQPTKV was destroyed successfully.");
return ICallback.SUCCESS;
}
@Override
public CallbackCompletion<Void> initialize (final ConsumerQPTKVContext context, final CloudletCallbackArguments<ConsumerQPTKVContext> arguments)
{
this.logger.info ("ConsumerQPTKV initializing...");
context.cloudlet = arguments.getCloudlet ();
final IConfiguration configuration = context.cloudlet.getConfiguration ();
final IConfiguration queueConfiguration = configuration.spliceConfiguration (ConfigurationIdentifier.resolveAbsolute ("queueqpt.consumer"));
final IConfiguration kvConfiguration = configuration.spliceConfiguration (ConfigurationIdentifier.resolveAbsolute ("storeqpt"));
context.consumer = context.cloudlet.getConnectorFactory (IAmqpQueueConsumerConnectorFactory.class).create (queueConfiguration, QPT.class, JsonDataEncoder.create(QPT.class), new AmqpConsumerCallback (), context);
context.kvStore = context.cloudlet.getConnectorFactory (IKvStoreConnectorFactory.class).create (kvConfiguration, QPT.class, JsonDataEncoder.create(QPT.class), new KeyValueCallback (), context);
return CallbackCompletion.createAndChained (context.consumer.initialize (),context.kvStore.initialize());
}
@Override
public CallbackCompletion<Void> initializeSucceeded (final ConsumerQPTKVContext context, final CloudletCallbackCompletionArguments<ConsumerQPTKVContext> arguments)
{
this.logger.info ("ConsumerQPTKV initialized successfully.");
return ICallback.SUCCESS;
}
}
public static final class ConsumerQPTKVContext
{
ICloudletController<ConsumerQPTKVContext> cloudlet;
IAmqpQueueConsumerConnector<QPT, Void> consumer;
IKvStoreConnector<QPT, Void> kvStore;
String key="key";
}
}