pivotal.au.se.gemfirexdweb.controller.AsyncController.java Source code

Java tutorial

Introduction

Here is the source code for pivotal.au.se.gemfirexdweb.controller.AsyncController.java

Source

/*
Copyright (C) MARCH-2014 Pivotal Software, Inc.
    
All rights reserved. This program and the accompanying materials
are made available under the terms of the 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 pivotal.au.se.gemfirexdweb.controller;

import java.sql.Connection;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

import org.apache.log4j.Logger;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

import pivotal.au.se.gemfirexdweb.dao.GemFireXDWebDAOFactory;
import pivotal.au.se.gemfirexdweb.dao.asyncevent.Asyncevent;
import pivotal.au.se.gemfirexdweb.dao.asyncevent.AsynceventDAO;
import pivotal.au.se.gemfirexdweb.main.Result;
import pivotal.au.se.gemfirexdweb.main.UserPref;
import pivotal.au.se.gemfirexdweb.utils.AdminUtil;

@Controller
public class AsyncController {
    protected static Logger logger = Logger.getLogger("controller");
    private static final String FILENAME = "%s.sql";
    private static final String SAVE_CONTENT_TYPE = "application/x-download";

    @RequestMapping(value = "/asyncevent", method = RequestMethod.GET)
    public String showAsyncEvents(Model model, HttpServletResponse response, HttpServletRequest request,
            HttpSession session) throws Exception {
        int startAtIndex = 0, endAtIndex = 0;
        javax.servlet.jsp.jstl.sql.Result allAsyncEventInfoResult, asyncTables = null;

        if (session.getAttribute("user_key") == null) {
            logger.debug("user_key is null new Login required");
            response.sendRedirect(request.getContextPath() + "/GemFireXD-Web/login");
            return null;
        } else {
            Connection conn = AdminUtil.getConnection((String) session.getAttribute("user_key"));
            if (conn == null) {
                response.sendRedirect(request.getContextPath() + "/GemFireXD-Web/login");
                return null;
            } else {
                if (conn.isClosed()) {
                    response.sendRedirect(request.getContextPath() + "/GemFireXD-Web/login");
                    return null;
                }
            }

        }

        logger.debug("Received request to show async events");

        AsynceventDAO asyncDAO = GemFireXDWebDAOFactory.getAsynceventDAO();
        Result result = new Result();

        String asyncAction = request.getParameter("asyncAction");

        if (asyncAction != null) {
            logger.debug("asyncAction = " + asyncAction);
            if (asyncAction.equals("ALLASYNCEVENTINFO")) {
                allAsyncEventInfoResult = asyncDAO.getAsynEventInfo((String) request.getParameter("asyncName"),
                        (String) session.getAttribute("user_key"));

                model.addAttribute("allAsyncEventInfoResult", allAsyncEventInfoResult);
                model.addAttribute("asyncevent", (String) request.getParameter("asyncName"));
            } else if (asyncAction.equals("ASYNCTABLES")) {
                asyncTables = asyncDAO.getAsyncTables((String) request.getParameter("asyncName"),
                        (String) session.getAttribute("user_key"));

                model.addAttribute("asyncTables", asyncTables);
                model.addAttribute("asyncevent", (String) request.getParameter("asyncName"));
            } else {
                result = null;
                result = asyncDAO.simpleasynceventCommand((String) request.getParameter("asyncName"), asyncAction,
                        (String) session.getAttribute("user_key"));

                model.addAttribute("result", result);
            }
        }

        List<Asyncevent> asyncevents = asyncDAO.retrieveAsynceventList((String) session.getAttribute("schema"),
                null, (String) session.getAttribute("user_key"));

        model.addAttribute("records", asyncevents.size());
        model.addAttribute("estimatedrecords", asyncevents.size());

        UserPref userPref = (UserPref) session.getAttribute("prefs");

        if (asyncevents.size() <= userPref.getRecordsToDisplay()) {
            model.addAttribute("asyncevents", asyncevents);
        } else {
            if (request.getParameter("startAtIndex") != null) {
                startAtIndex = Integer.parseInt(request.getParameter("startAtIndex"));
            }

            if (request.getParameter("endAtIndex") != null) {
                endAtIndex = Integer.parseInt(request.getParameter("endAtIndex"));
                if (endAtIndex > asyncevents.size()) {
                    endAtIndex = asyncevents.size();
                }
            } else {
                endAtIndex = userPref.getRecordsToDisplay();
            }

            List subList = asyncevents.subList(startAtIndex, endAtIndex);
            model.addAttribute("asyncevents", subList);
        }

        model.addAttribute("startAtIndex", startAtIndex);
        model.addAttribute("endAtIndex", endAtIndex);

        // This will resolve to /WEB-INF/jsp/async.jsp
        return "async";
    }

    @RequestMapping(value = "/asyncevent", method = RequestMethod.POST)
    public String performAsyncAction(Model model, HttpServletResponse response, HttpServletRequest request,
            HttpSession session) throws Exception {
        if (session.getAttribute("user_key") == null) {
            logger.debug("user_key is null new Login required");
            response.sendRedirect(request.getContextPath() + "/GemFireXD-Web/login");
            return null;
        } else {
            Connection conn = AdminUtil.getConnection((String) session.getAttribute("user_key"));
            if (conn == null) {
                response.sendRedirect(request.getContextPath() + "/GemFireXD-Web/login");
                return null;
            } else {
                if (conn.isClosed()) {
                    response.sendRedirect(request.getContextPath() + "/GemFireXD-Web/login");
                    return null;
                }
            }

        }

        int startAtIndex = 0, endAtIndex = 0;
        Result result = new Result();
        List<Asyncevent> asyncevents = null;
        String ddlString = null;

        logger.debug("Received request to perform an action on the async events");

        AsynceventDAO asyncDAO = GemFireXDWebDAOFactory.getAsynceventDAO();

        if (request.getParameter("search") != null) {
            asyncevents = asyncDAO.retrieveAsynceventList((String) session.getAttribute("schema"),
                    (String) request.getParameter("search"), (String) session.getAttribute("user_key"));

            model.addAttribute("search", (String) request.getParameter("search"));
        } else {
            String[] tableList = request.getParameterValues("selected_async[]");
            String commandStr = request.getParameter("submit_mult");

            logger.debug("tableList = " + Arrays.toString(tableList));
            logger.debug("command = " + commandStr);

            // start actions now if tableList is not null

            if (tableList != null) {
                List al = new ArrayList<Result>();
                List<String> al2 = new ArrayList<String>();

                for (String asyncName : tableList) {
                    if (commandStr.equalsIgnoreCase("DDL") || commandStr.equalsIgnoreCase("DDL_FILE")) {
                        ddlString = asyncDAO.generateDDL(asyncName, (String) session.getAttribute("user_key"));
                        al2.add(ddlString);
                    } else {
                        result = null;
                        result = asyncDAO.simpleasynceventCommand(asyncName, commandStr,
                                (String) session.getAttribute("user_key"));
                        al.add(result);
                    }
                }

                if (commandStr.equalsIgnoreCase("DDL")) {
                    request.setAttribute("arrayresultddl", al2);
                } else if (commandStr.equalsIgnoreCase("DDL_FILE")) {
                    response.setContentType(SAVE_CONTENT_TYPE);
                    response.setHeader("Content-Disposition",
                            "attachment; filename=" + String.format(FILENAME, "AsyncEventListenerDDL"));

                    ServletOutputStream out = response.getOutputStream();
                    for (String ddl : al2) {
                        out.println(ddl);
                    }

                    out.close();
                    return null;
                } else {
                    model.addAttribute("arrayresult", al);
                }
            }

            asyncevents = asyncDAO.retrieveAsynceventList((String) session.getAttribute("schema"), null,
                    (String) session.getAttribute("user_key"));
        }

        model.addAttribute("records", asyncevents.size());
        model.addAttribute("estimatedrecords", asyncevents.size());

        UserPref userPref = (UserPref) session.getAttribute("prefs");

        if (asyncevents.size() <= userPref.getRecordsToDisplay()) {
            model.addAttribute("asyncevents", asyncevents);
        } else {
            if (request.getParameter("startAtIndex") != null) {
                startAtIndex = Integer.parseInt(request.getParameter("startAtIndex"));
            }

            if (request.getParameter("endAtIndex") != null) {
                endAtIndex = Integer.parseInt(request.getParameter("endAtIndex"));
                if (endAtIndex > asyncevents.size()) {
                    endAtIndex = asyncevents.size();
                }
            } else {
                endAtIndex = userPref.getRecordsToDisplay();
            }

            List subList = asyncevents.subList(startAtIndex, endAtIndex);
            model.addAttribute("asyncevents", subList);
        }

        model.addAttribute("startAtIndex", startAtIndex);
        model.addAttribute("endAtIndex", endAtIndex);

        // This will resolve to /WEB-INF/jsp/async.jsp
        return "async";
    }
}