Package org.apache.myfaces.tobago.example.test

Source Code of org.apache.myfaces.tobago.example.test.ExportUIDataToWorkbookUtil

package org.apache.myfaces.tobago.example.test;

/*
* 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.
*/

import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.myfaces.tobago.component.UIColumnSelector;
import org.apache.myfaces.tobago.component.UICommand;
import org.apache.myfaces.tobago.renderkit.RenderUtil;
import org.apache.commons.lang.StringUtils;

import javax.faces.component.UIComponent;
import javax.faces.component.UIColumn;
import javax.faces.component.ValueHolder;
import javax.faces.component.UIData;
import javax.faces.context.FacesContext;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
import java.util.ArrayList;
import java.io.IOException;


public class ExportUIDataToWorkbookUtil {

  public static void writeWorkbook(UIData data, String attachmentName, FacesContext context) throws IOException {
    HSSFWorkbook workbook = createWorkbook(data, context);
    Object response = context.getExternalContext().getResponse();
    if (response instanceof HttpServletResponse) {
      HttpServletResponse servletResponse = (HttpServletResponse) response;
      servletResponse.setContentType("application/vnd.ms-excel");
      if (StringUtils.isNotEmpty(attachmentName)) {
        servletResponse.setHeader("Content-Disposition", "attachment; filename=" + attachmentName);
      }
      workbook.write(servletResponse.getOutputStream());
    } else {
      //TODO PortletResponse
    }
  }

  private static HSSFWorkbook createWorkbook(UIData table, FacesContext context) {
    HSSFWorkbook workbook = new HSSFWorkbook();
    HSSFSheet sheet = workbook.createSheet(table.getId());
    List<UIColumn> columns = getColumns(table);
    int currentRowIndex = table.getRowIndex();
    addColumnHeaders(sheet, columns, context);
    addColumnValues(sheet, columns, table, context);
    table.setRowIndex(currentRowIndex);
    return workbook;
  }

  private static List<UIColumn> getColumns(UIData table) {
    List<UIColumn> columns = new ArrayList<UIColumn>();
    for (int i = 0; i < table.getChildCount(); i++) {
      UIComponent child = (UIComponent) table.getChildren().get(i);
      if (child instanceof UIColumn && !(child instanceof UIColumnSelector)) {
        columns.add((UIColumn) child);
      }
    }
    return columns;
  }

  private static void addColumnValue(HSSFRow rowHeader, UIComponent component, int index, FacesContext context) {
    HSSFCell cell = rowHeader.createCell((short) index);
    cell.setEncoding(HSSFCell.ENCODING_UTF_16);
    if (component instanceof ValueHolder) {
      String stringValue = RenderUtil.getFormattedValue(context, component);
      cell.setCellValue(stringValue);
    } else if (component instanceof org.apache.myfaces.tobago.component.UIColumn
        || component instanceof UICommand) {
      String value = component.getAttributes().get("label") != null
          ? component.getAttributes().get("label").toString() : "";
      cell.setCellValue(value);
    }
  }

  private static void addColumnHeaders(HSSFSheet sheet, List<UIColumn> columns, FacesContext context) {
    HSSFRow rowHeader = sheet.createRow(0);
    for (int i = 0; i < columns.size(); i++) {
      UIColumn column = columns.get(i);
      addColumnValue(rowHeader, column, i, context);
    }
  }

  private static void addColumnValues(HSSFSheet sheet, List<UIColumn> columns, UIData table, FacesContext context) {
    int rowCount = table.getRowCount();
    if (rowCount == -1) {
      int index = 0;
      table.setRowIndex(index);
      while (table.isRowAvailable()) {
        addRow(sheet, index, columns, context);
        table.setRowIndex(++index);
      }
    } else {
      for (int i = 0; i < table.getRowCount(); i++) {
        table.setRowIndex(i);
        addRow(sheet, i, columns, context);
      }
    }
  }

  private static void addRow(HSSFSheet sheet, int index, List<UIColumn> columns, FacesContext context) {
    HSSFRow row = sheet.createRow(1 + index);
    for (int j = 0; j < columns.size(); j++) {
      UIColumn column = columns.get(j);
      addColumnValue(row, (UIComponent) column.getChildren().get(0), j, context);
    }
  }
}
TOP

Related Classes of org.apache.myfaces.tobago.example.test.ExportUIDataToWorkbookUtil

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.