Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
201 changes: 114 additions & 87 deletions java/src/main/java/com/genexus/GXWebReport.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,37 @@
import com.genexus.internet.HttpContext;
import com.genexus.reports.*;
import com.genexus.webpanels.GXWebProcedure;
import org.apache.logging.log4j.Logger;

import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;

public abstract class GXWebReport extends GXWebProcedure {
private static Logger log = org.apache.logging.log4j.LogManager.getLogger(GXWebReport.class);

public abstract class GXWebReport extends GXWebProcedure
{
public static final int OUTPUT_RVIEWER = 1;
public static final int OUTPUT_PDF = 2;
public static final int OUTPUT_PDF = 2;

// Tiene que ser protected porque se pasa como par�metro en los reports
protected GXReportMetadata reportMetadata;
protected IReportHandler reportHandler;

protected int lineHeight;
protected int Gx_line;
protected int P_lines;
protected int gxXPage;
protected int gxYPage;
protected int Gx_page;
protected String Gx_out = ""; // Esto est� asi porque no me pude deshacer de una comparacion contra Gx_out antes del ask.
protected int Gx_line;
protected int P_lines;
protected int gxXPage;
protected int gxYPage;
protected int Gx_page;
protected String Gx_out = ""; // Esto est� asi porque no me pude deshacer de una comparacion contra Gx_out antes del ask.
protected String filename;
protected String filetype;

public GXWebReport(HttpContext httpContext)
{
public GXWebReport(HttpContext httpContext) {
super(httpContext);
}

protected void initState(ModelContext context, UserInformation ui)
{
protected void initState(ModelContext context, UserInformation ui) {
super.initState(context, ui);

httpContext.setResponseBufferMode(HttpContext.ResponseBufferMode.ENABLED);
Expand All @@ -45,140 +49,163 @@ else if (implementation.equals("ITEXT8"))
initValues();
}

protected void preExecute()
{
protected void preExecute() {
httpContext.setContentType("application/pdf");
httpContext.setStream();
((GXReportPDFCommons) reportHandler).setOutputStream(httpContext.getOutputStream());
}

protected void setOutputFileName(String outputFileName){
protected void setOutputFileName(String outputFileName) {
filename = outputFileName;
}
protected void setOutputType(String outputType){
protected void setOutputType(String outputType) {
filetype = outputType.toLowerCase();
}
private void initValues()
{
Gx_line = 0;
P_lines = 0;
gxXPage = 0;
gxYPage = 0;
Gx_page = 0;
Gx_out = ""; // Esto est� asi porque no me pude deshacer de una comparacion contra Gx_out antes del ask.
lineHeight = 0;
private void initValues() {
Gx_line = 0;
P_lines = 0;
gxXPage = 0;
gxYPage = 0;
Gx_page = 0;
Gx_out = ""; // Esto est� asi porque no me pude deshacer de una comparacion contra Gx_out antes del ask.
lineHeight = 0;
}

public void setPrinter(IReportHandler reportHandler)
{
public void setPrinter(IReportHandler reportHandler) {
this.reportHandler = reportHandler;
}

public IReportHandler getPrinter()
{
public IReportHandler getPrinter() {
return reportHandler;
}

protected void GxEndPage() throws ProcessInterruptedException
{
if (reportHandler != null)
protected void GxEndPage() throws ProcessInterruptedException {
if (reportHandler != null)
reportHandler.GxEndPage();
}

protected boolean initTextPrinter(String output, int gxXPage, int gxYPage, String iniFile, String form, String printer, int mode, int nPaperLength, int nPaperWidth, int nGridX, int nGridY, int nPageLines)
{
int x[] = {gxXPage};
int y[] = {gxYPage};
protected boolean initTextPrinter(String output, int gxXPage, int gxYPage, String iniFile, String form, String printer, int mode, int nPaperLength, int nPaperWidth, int nGridX, int nGridY, int nPageLines) {
int x[] = {
gxXPage
};
int y[] = {
gxYPage
};

getPrinter().GxRVSetLanguage(localUtil._language);
boolean ret = getPrinter().GxPrTextInit(output, x, y, iniFile, form, printer, mode, nPaperLength, nPaperWidth, nGridX, nGridY, nPageLines);
boolean ret = getPrinter().GxPrTextInit(output, x, y, iniFile, form, printer, mode, nPaperLength, nPaperWidth, nGridX, nGridY, nPageLines);

this.gxXPage = x[0];
this.gxYPage = y[0];

return ret;
}

protected boolean initPrinter(String output, int gxXPage, int gxYPage, String iniFile, String form, String printer, int mode, int orientation, int pageSize, int pageLength, int pageWidth, int scale, int copies, int defSrc, int quality, int color, int duplex)
{
int x[] = {gxXPage};
int y[] = {gxYPage};
setResponseOuputFileName();
protected boolean initPrinter(String output, int gxXPage, int gxYPage, String iniFile, String form, String printer, int mode, int orientation, int pageSize, int pageLength, int pageWidth, int scale, int copies, int defSrc, int quality, int color, int duplex) {
int x[] = {
gxXPage
};
int y[] = {
gxYPage
};
setResponseOutputFileName();

getPrinter().GxRVSetLanguage(localUtil._language);
boolean ret = getPrinter().GxPrintInit(output, x, y, iniFile, form, printer, mode, orientation, pageSize, pageLength, pageWidth, scale, copies, defSrc, quality, color, duplex);
boolean ret = getPrinter().GxPrintInit(output, x, y, iniFile, form, printer, mode, orientation, pageSize, pageLength, pageWidth, scale, copies, defSrc, quality, color, duplex);

this.gxXPage = x[0];
this.gxYPage = y[0];

return ret;
}

private void setResponseOuputFileName(){
String outputFileName = filename!=null ? filename : getClass().getSimpleName();
String outputFileType = filetype!=null ? "." + filetype.toLowerCase(): ".pdf";
httpContext.getResponse().addHeader("content-disposition", "inline; filename=" + outputFileName + outputFileType);
}

protected void endPrinter()
{
private void setResponseOutputFileName() {
String outputFileName = (filename != null ? filename : getClass().getSimpleName());
String outputFileType = (filetype != null ? "." + filetype.toLowerCase() : ".pdf");

try {
String encodedFileName = URLEncoder.encode(outputFileName, "UTF-8").replace("+", "%20");
boolean isAscii = StandardCharsets.US_ASCII.newEncoder().canEncode(outputFileName);
String fallbackFileName = outputFileName;
if (!isAscii) {
fallbackFileName = outputFileName.replaceAll("[^\\p{ASCII}]", "");
if (fallbackFileName.isEmpty()) {
fallbackFileName = "download";
}
}
String contentDispositionValue =
"inline; filename=\"" + fallbackFileName + outputFileType + "\"; " +
"filename*=UTF-8''" + encodedFileName + outputFileType;

httpContext.getResponse().addHeader("Content-Disposition", contentDispositionValue);
} catch (UnsupportedEncodingException e) {
httpContext.getResponse().addHeader("Content-Disposition", "inline; filename=\"download" + outputFileType + "\"");
}
}

/**
* Returns an ASCII version of the filename.
* Non-ASCII characters are replaced with underscore to ensure ASCII compliance.
*/
private String asciiFileName(String fileName) {
StringBuilder asciiFileName = new StringBuilder();
for (char character: fileName.toCharArray()) {
if ((character <= 127)) {
asciiFileName.append(character);
} else {
asciiFileName.append("_");
}
}
return asciiFileName.toString();
}

protected void endPrinter() {
getPrinter().GxEndPrinter();
}

protected int getOutputType()
{
protected int getOutputType() {
return OUTPUT_RVIEWER;
}

protected java.io.OutputStream getOutputStream()
{
protected java.io.OutputStream getOutputStream() {
throw new RuntimeException("Output stream not set");
}

//M�todos para la implementaci�n de reportes din�micos
protected void loadReportMetadata(String name)
{
protected void loadReportMetadata(String name) {
reportMetadata = new GXReportMetadata(name, reportHandler);
reportMetadata.load();
}

protected int GxDrawDynamicGetPrintBlockHeight(int printBlock)
{

protected int GxDrawDynamicGetPrintBlockHeight(int printBlock) {
return reportMetadata.GxDrawGetPrintBlockHeight(printBlock);
}

protected void GxDrawDynamicText(int printBlock, int controlId, int Gx_line)
{
}

protected void GxDrawDynamicText(int printBlock, int controlId, int Gx_line) {
reportMetadata.GxDrawText(printBlock, controlId, Gx_line);
}

protected void GxDrawDynamicText(int printBlock, int controlId, String value, int Gx_line)
{

protected void GxDrawDynamicText(int printBlock, int controlId, String value, int Gx_line) {
reportMetadata.GxDrawText(printBlock, controlId, Gx_line, value);
}

protected void GxDrawDynamicLine(int printBlock, int controlId, int Gx_line)
{

protected void GxDrawDynamicLine(int printBlock, int controlId, int Gx_line) {
reportMetadata.GxDrawLine(printBlock, controlId, Gx_line);
}

protected void GxDrawDynamicRect(int printBlock, int controlId, int Gx_line)
{

protected void GxDrawDynamicRect(int printBlock, int controlId, int Gx_line) {
reportMetadata.GxDrawRect(printBlock, controlId, Gx_line);
}

protected void GxDrawDynamicBitMap(int printBlock, int controlId, String value, int Gx_line)
{
}

protected void GxDrawDynamicBitMap(int printBlock, int controlId, String value, int Gx_line) {
reportMetadata.GxDrawBitMap(printBlock, controlId, Gx_line, value, 0);
}

protected void GxDrawDynamicBitMap(int printBlock, int controlId, String value, int aspectRatio, int Gx_line)
{

protected void GxDrawDynamicBitMap(int printBlock, int controlId, String value, int aspectRatio, int Gx_line) {
reportMetadata.GxDrawBitMap(printBlock, controlId, Gx_line, value, aspectRatio);
}

protected void cleanup( )
{
}

protected void cleanup() {
super.cleanup();
}
}
}
Loading