All Downloads are FREE. Search and download functionalities are using the official Maven repository.

web.eventsimulator.js.sendDBConfigFileDetails.js Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
 *
 * 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.
 */
function sendDBConfigFileNameToSimulate(fileName){

    jQuery.ajax({
        type: "POST",
        url: "../eventsimulator/sendDBConfigFileDetails_ajaxprocessor.jsp?fileName=" + fileName + "&mode=send",
        async: true,
        success:function(msg){
            handleDBCallback(fileName, "play");
            CARBON.showInfoDialog("Events sending using file is started .......");
        }
    });
}

function pauseDBConfigFileNameToSimulate(fileName){

    jQuery.ajax({
        type: "POST",
        url: "../eventsimulator/sendDBConfigFileDetails_ajaxprocessor.jsp?fileName=" + fileName + "&mode=pause",
        async: true,
        success:function(msg){
            handleDBCallback(fileName, "pause");
            CARBON.showInfoDialog("Pausing events sending process .......");
        }
    });
}

function resumeDBConfigFileNameToSimulate(fileName){

    jQuery.ajax({
        type: "POST",
        url: "../eventsimulator/sendDBConfigFileDetails_ajaxprocessor.jsp?fileName=" + fileName + "&mode=resume",
        async: true,
        success:function(msg){
            handleDBCallback(fileName, "resume");
            CARBON.showInfoDialog("Resuming events sending process .......");
        }
    });
}

function stopDBConfigFileNameToSimulate(fileName){

    jQuery.ajax({
        type: "POST",
        url: "../eventsimulator/sendDBConfigFileDetails_ajaxprocessor.jsp?fileName=" + fileName + "&mode=stop",
        async: true,
        success:function(msg){
            handleDBCallback(fileName, "stop");
            CARBON.showInfoDialog("Stopping events sending process .......");
        }
    });
}


function deleteDBConfigFile(fileName){

    jQuery.ajax({
        type: "POST",
        url: "../eventsimulator/deleteDBConfigFile_ajaxprocessor.jsp?fileName=" + fileName + "",
        async: false,

        success:function(msg){
            if(msg!=null &&msg.trim()=="deleted"){
                CARBON.showInfoDialog("File is successfully deleted, please refresh the page to see the changes");
            }else{
                CARBON.showErrorDialog(msg);
            }
        }

    });
}

function handleDBCallback(fileName, action) {
    var element;
    if (action == "play") {
        element = document.getElementById("dbSimulationPlay" + fileName);
        element.style.display = "none";
        element = document.getElementById("dbSimulationResume" + fileName);
        element.style.display = "none";
        element = document.getElementById("dbSimulationPause" + fileName);
        element.style.display = "";
        element = document.getElementById("dbSimulationStop" + fileName);
        element.style.display = "";
    } else if(action == "pause"){
        element = document.getElementById("dbSimulationPause" + fileName);
        element.style.display = "none";
        element = document.getElementById("dbSimulationPlay" + fileName);
        element.style.display = "none";
        element = document.getElementById("dbSimulationResume" + fileName);
        element.style.display = "";
        element = document.getElementById("dbSimulationStop" + fileName);
        element.style.display = "";
    } else if(action == "resume"){
        element = document.getElementById("dbSimulationPlay" + fileName);
        element.style.display = "none";
        element = document.getElementById("dbSimulationResume" + fileName);
        element.style.display = "none";
        element = document.getElementById("dbSimulationPause" + fileName);
        element.style.display = "";
        element = document.getElementById("dbSimulationStop" + fileName);
        element.style.display = "";
    } else{
        element = document.getElementById("dbSimulationStop" + fileName);
        element.style.display = "none";
        element = document.getElementById("dbSimulationPause" + fileName);
        element.style.display = "none";
        element = document.getElementById("dbSimulationResume" + fileName);
        element.style.display = "none";
        element = document.getElementById("dbSimulationPlay" + fileName);
        element.style.display = "";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy