use of org.pentaho.reporting.libraries.repository.ContentIOException in project pentaho-platform by pentaho.
the class JFreeReportZipHtmlComponent method performExport.
@Override
protected boolean performExport(final MasterReport report, final OutputStream outputStream) {
try {
String dataDirectory = getInputStringValue(AbstractJFreeReportComponent.REPORTDIRECTORYHTML_DATADIR);
if (dataDirectory == null) {
// $NON-NLS-1$
dataDirectory = "data";
}
final ZipRepository zipRepository = new ZipRepository();
final ContentLocation root = zipRepository.getRoot();
final ContentLocation data = // $NON-NLS-1$
RepositoryUtilities.createLocation(zipRepository, RepositoryUtilities.split(dataDirectory, "/"));
final FlowHtmlOutputProcessor outputProcessor = new FlowHtmlOutputProcessor();
final HtmlPrinter printer = new AllItemsHtmlPrinter(report.getResourceManager());
// $NON-NLS-1$
printer.setContentWriter(root, new DefaultNameGenerator(root, "report.html"));
// $NON-NLS-1$
printer.setDataWriter(data, new DefaultNameGenerator(data, "content"));
printer.setUrlRewriter(new SingleRepositoryURLRewriter());
outputProcessor.setPrinter(printer);
final FlowReportProcessor sp = new FlowReportProcessor(report, outputProcessor);
final int yieldRate = getYieldRate();
if (yieldRate > 0) {
sp.addReportProgressListener(new YieldReportListener(yieldRate));
}
sp.processReport();
zipRepository.write(outputStream);
close();
return true;
} catch (ReportProcessingException e) {
// $NON-NLS-1$
error(Messages.getInstance().getString("JFreeReportZipHtmlComponent.ERROR_0046_FAILED_TO_PROCESS_REPORT"), e);
return false;
} catch (IOException e) {
// $NON-NLS-1$
error(Messages.getInstance().getString("JFreeReportZipHtmlComponent.ERROR_0046_FAILED_TO_PROCESS_REPORT"), e);
return false;
} catch (ContentIOException e) {
// $NON-NLS-1$
error(Messages.getInstance().getString("JFreeReportZipHtmlComponent.ERROR_0046_FAILED_TO_PROCESS_REPORT"), e);
return false;
}
}
use of org.pentaho.reporting.libraries.repository.ContentIOException in project pentaho-platform by pentaho.
the class PentahoURLRewriter method rewrite.
public String rewrite(final ContentEntity contentEntry, final ContentEntity dataEntity) throws URLRewriteException {
try {
final ArrayList<String> entityNames = new ArrayList<String>();
entityNames.add(dataEntity.getName());
ContentLocation location = dataEntity.getParent();
while (location != null) {
entityNames.add(location.getName());
location = location.getParent();
}
final ArrayList<String> contentNames = new ArrayList<String>();
location = dataEntity.getRepository().getRoot();
while (location != null) {
contentNames.add(location.getName());
location = location.getParent();
}
// now remove all path elements that are equal ..
while ((contentNames.isEmpty() == false) && (entityNames.isEmpty() == false)) {
final String lastEntity = (String) entityNames.get(entityNames.size() - 1);
final String lastContent = (String) contentNames.get(contentNames.size() - 1);
if (lastContent.equals(lastEntity) == false) {
break;
}
entityNames.remove(entityNames.size() - 1);
contentNames.remove(contentNames.size() - 1);
}
final StringBuffer b = new StringBuffer();
for (int i = entityNames.size() - 1; i >= 0; i--) {
final String name = (String) entityNames.get(i);
b.append(name);
if (i != 0) {
// $NON-NLS-1$
b.append("/");
}
}
if (pattern == null) {
return b.toString();
}
return MessageFormat.format(pattern, new Object[] { b.toString() });
} catch (ContentIOException cioe) {
throw new URLRewriteException();
}
}
Aggregations