Package com.impetus.kundera.ycsb.utils

Source Code of com.impetus.kundera.ycsb.utils.MailUtils

/**
* Copyright 2012 Impetus Infotech.
*
* 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.
*/
package com.impetus.kundera.ycsb.utils;

import java.util.HashMap;
import java.util.Map;

import org.springframework.mail.SimpleMailMessage;
import org.springframework.mail.javamail.JavaMailSenderImpl;

/**
* @author Kuldeep Mishra
*
*/
public class MailUtils
{

    public static void sendMail(Map<String, Double> delta, String operationType, String dataStore)
    {
        onSendEmail(delta, operationType, dataStore, new String[] { "shaheed.hussain@impetus.co.in",
                "chhavi.gangwal@impetus.co.in", "kuldeep.mishra@impetus.co.in", "vivek.shrivastava@impetus.co.in" });
    }

    public static void sendPositiveEmail(Map<String, Double> delta, String operationType, String dataStore)
    {
        onSendEmail(delta, operationType, dataStore, new String[] { "kuldeep.mishra@impetus.co.in",
                "vivek.shrivastava@impetus.co.in" });
    }

    private static void onSendEmail(Map<String, Double> delta, String operationType, String dataStore,
            String[] reciepents)
    {
        String host = "192.168.150.5";
        JavaMailSenderImpl emailSender = new JavaMailSenderImpl();
        emailSender.setHost(host);
        // emailSender.setPort(port);
        emailSender.setUsername("noreply-kundera@build.co.in");
        SimpleMailMessage mail = new SimpleMailMessage();
        mail.setTo(reciepents);
        mail.setFrom("noreply-kundera@build.co.in");

        if (operationType.equalsIgnoreCase("load"))
        {
            operationType = "write";
        }
        else if (operationType.equalsIgnoreCase("t"))
        {
            operationType = "read";
        }
        mail.setSubject(operationType + " kundera-" + dataStore + "-performance Delta");

        String mailBody = null;
        for (String key : delta.keySet())
        {
            if (mailBody == null)
            {
                mailBody = key + " Performance Delta ==> " + delta.get(key) + " \n";
            }
            else
            {
                mailBody = mailBody + key + " Performance Delta ==> " + delta.get(key) + " \n";
            }
        }
        mail.setText(mailBody);
        emailSender.send(mail);
    }

    public static void main(String[] args)
    {
        MailUtils mailUtils = new MailUtils();
        mailUtils.sendMail(new HashMap<String, Double>(), "load", "Cassandra");
    }
}
TOP

Related Classes of com.impetus.kundera.ycsb.utils.MailUtils

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.