use of org.openntf.nsfodp.commons.odp.OnDiskProject in project org.openntf.nsfodp by OpenNTF.
the class ODPExporter method createClasspathDirectories.
/**
* Creates any directories expected by default and specified by the project classpath that
* don't exist in the NSF, to smooth Java compilation downstream.
*
* @param baseDir the base directory for export operations
* @throws IOException if there is a problem creating directories
* @throws FileNotFoundException if there is a problem creating directories
* @since 2.5.0
*/
private void createClasspathDirectories(Path baseDir) throws FileNotFoundException, IOException {
OnDiskProject odp = new OnDiskProject(baseDir);
for (Path path : odp.getResourcePaths()) {
Files.createDirectories(path);
}
// Resources/Files and Code/Java may not be in the programmatic list
// $NON-NLS-1$ //$NON-NLS-2$
Files.createDirectories(baseDir.resolve("Resources").resolve("Files"));
// $NON-NLS-1$ //$NON-NLS-2$
Files.createDirectories(baseDir.resolve("Code").resolve("Java"));
}
use of org.openntf.nsfodp.commons.odp.OnDiskProject in project org.openntf.nsfodp by OpenNTF.
the class ODPCompilerServlet method doPost.
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
Principal user = req.getUserPrincipal();
resp.setBufferSize(0);
resp.setStatus(HttpServletResponse.SC_OK);
ServletOutputStream os = resp.getOutputStream();
Set<Path> cleanup = new HashSet<>();
try {
if (!ALLOW_ANONYMOUS && "Anonymous".equalsIgnoreCase(user.getName())) {
// $NON-NLS-1$
resp.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
// $NON-NLS-1$
resp.setContentType("text/plain");
os.println(Messages.ODPCompilerServlet_anonymousDisallowed);
return;
}
// Developer's note: multipart/form-data with files broken out would be nice,
// but Domino as of 9.0.1FP10 behaves poorly with them; for now, it's safer
// to use a combined ZIP and pass options in headers
String contentType = req.getContentType();
if (!"application/zip".equals(contentType)) {
// $NON-NLS-1$
throw new IllegalArgumentException(Messages.ODPCompilerServlet_contentMustBeZip);
}
// $NON-NLS-1$ //$NON-NLS-2$
Path packageFile = Files.createTempFile(NSFODPUtil.getTempDirectory(), "package", ".zip");
cleanup.add(packageFile);
try (InputStream reqInputStream = req.getInputStream()) {
Files.copy(reqInputStream, packageFile, StandardCopyOption.REPLACE_EXISTING);
}
// Look for an ODP item
Path odpZip = null;
List<Path> siteZips = new ArrayList<>();
List<Path> classPathJars = new ArrayList<>();
try (ZipFile packageZip = new ZipFile(packageFile.toFile(), StandardCharsets.UTF_8)) {
// $NON-NLS-1$
ZipEntry odpEntry = packageZip.getEntry("odp.zip");
if (odpEntry == null) {
// Then the package is itself the ODP
odpZip = packageFile;
} else {
// Then extract the ODP
// $NON-NLS-1$ //$NON-NLS-2$
odpZip = Files.createTempFile(NSFODPUtil.getTempDirectory(), "odp", ".zip");
cleanup.add(odpZip);
try (InputStream odpIs = packageZip.getInputStream(odpEntry)) {
Files.copy(odpIs, odpZip, StandardCopyOption.REPLACE_EXISTING);
}
// Look for any embedded update sites and classpath entries
packageZip.stream().forEach(entry -> {
try {
if (SITE_ZIP_PATTERN.matcher(entry.getName()).matches()) {
// Then add it as an update site
// $NON-NLS-1$ //$NON-NLS-2$
Path siteZip = Files.createTempFile(NSFODPUtil.getTempDirectory(), "site", ".zip");
cleanup.add(siteZip);
try (InputStream siteIs = packageZip.getInputStream(entry)) {
Files.copy(siteIs, siteZip, StandardCopyOption.REPLACE_EXISTING);
}
siteZips.add(siteZip);
} else if (entry.getName().startsWith("classpath/")) {
// $NON-NLS-1$
// Then add it as an individual JAR
// $NON-NLS-1$ //$NON-NLS-2$
Path cpJar = Files.createTempFile(NSFODPUtil.getTempDirectory(), "classpathJar", ".jar");
cleanup.add(cpJar);
try (InputStream jarIs = packageZip.getInputStream(entry)) {
Files.copy(jarIs, cpJar, StandardCopyOption.REPLACE_EXISTING);
}
classPathJars.add(cpJar);
}
} catch (IOException e) {
throw new RuntimeException(e);
}
});
}
}
IProgressMonitor mon = new LineDelimitedJsonProgressMonitor(os);
Path nsf;
try (FileSystem fs = NSFODPUtil.openZipPath(odpZip)) {
// $NON-NLS-1$
Path odpFile = fs.getPath("/");
OnDiskProject odp = new OnDiskProject(odpFile);
ODPCompiler compiler = new ODPCompiler(ODPCompilerActivator.instance.getBundle().getBundleContext(), odp, mon);
// See if the client requested a specific compiler level
String compilerLevel = req.getHeader(NSFODPConstants.HEADER_COMPILER_LEVEL);
if (StringUtil.isNotEmpty(compilerLevel)) {
compiler.setCompilerLevel(compilerLevel);
}
String appendTimestamp = req.getHeader(NSFODPConstants.HEADER_APPEND_TIMESTAMP);
if ("true".equals(appendTimestamp)) {
// $NON-NLS-1$
compiler.setAppendTimestampToTitle(true);
}
String templateName = req.getHeader(NSFODPConstants.HEADER_TEMPLATE_NAME);
if (StringUtil.isNotEmpty(templateName)) {
compiler.setTemplateName(templateName);
String templateVersion = req.getHeader(NSFODPConstants.HEADER_TEMPLATE_VERSION);
if (StringUtil.isNotEmpty(templateVersion)) {
compiler.setTemplateVersion(templateVersion);
}
}
String setXspOptions = req.getHeader(NSFODPConstants.HEADER_SET_PRODUCTION_XSP);
if ("true".equals(setXspOptions)) {
// $NON-NLS-1$
compiler.setSetProductionXspOptions(true);
}
String odsRelease = req.getHeader(NSFODPConstants.HEADER_ODS_RELEASE);
if (StringUtil.isNotEmpty(odsRelease)) {
compiler.setOdsRelease(odsRelease);
}
String compileBasicLs = req.getHeader(NSFODPConstants.HEADER_COMPILE_BASICLS);
if ("true".equals(compileBasicLs)) {
// $NON-NLS-1$
compiler.setCompileBasicElementLotusScript(true);
}
if (siteZips != null && !siteZips.isEmpty()) {
for (Path siteZip : siteZips) {
Path siteFile = NSFODPUtil.expandZip(siteZip);
cleanup.add(siteFile);
UpdateSite updateSite = new FilesystemUpdateSite(siteFile);
compiler.addUpdateSite(updateSite);
}
}
classPathJars.forEach(compiler::addClassPathEntry);
nsf = this.exec.submit(() -> {
Path result = compiler.compile();
mon.done();
return result;
}).get();
}
// Now stream the NSF
cleanup.add(nsf);
try (OutputStream gzos = new GZIPOutputStream(os)) {
Files.copy(nsf, gzos);
}
resp.flushBuffer();
// Delete the NSF via the Notes API
try (NotesAPI api = NotesAPI.get()) {
api.deleteDatabase(nsf.toString());
}
} catch (Throwable e) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
PrintWriter out = new PrintWriter(baos);
e.printStackTrace(out);
out.flush();
os.println(LineDelimitedJsonProgressMonitor.message(// $NON-NLS-1$ //$NON-NLS-2$
"type", // $NON-NLS-1$ //$NON-NLS-2$
"error", // $NON-NLS-1$
"stackTrace", // $NON-NLS-1$
baos.toString()));
} finally {
NSFODPUtil.deltree(cleanup);
}
}
use of org.openntf.nsfodp.commons.odp.OnDiskProject in project org.openntf.nsfodp by OpenNTF.
the class CompilerApplication method start.
@Override
public Object start(IApplicationContext context) throws Exception {
String notesIni = System.getenv(NSFODPConstants.PROP_NOTESINI);
if (notesIni != null && !notesIni.isEmpty()) {
// $NON-NLS-1$
String execDir = System.getenv("Notes_ExecDirectory");
try (NotesAPI api = NotesAPI.get()) {
// $NON-NLS-1$
api.NotesInitExtended(execDir, "=" + notesIni);
}
}
try {
NotesThread.sinitThread();
} catch (Exception e) {
// Known exception message during Notes initialization - error code 0x0102
if (String.valueOf(e.getMessage()).endsWith(" - err 258")) {
// $NON-NLS-1$
throw new Exception("Encountered Notes exception ERR_PROTECTED (0x0102): Cannot write or create file (file or disk is read-only)");
}
throw e;
}
try {
Path odpDirectory = toPath(System.getenv(NSFODPConstants.PROP_ODPDIRECTORY));
List<Path> updateSites = toPaths(System.getenv(NSFODPConstants.PROP_UPDATESITE));
Path outputFile = toPath(System.getenv(NSFODPConstants.PROP_OUTPUTFILE));
IProgressMonitor mon = new PrintStreamProgressMonitor(System.out);
OnDiskProject odp = new OnDiskProject(odpDirectory);
ODPCompiler compiler = new ODPCompiler(ODPCompilerActivator.instance.getBundle().getBundleContext(), odp, mon);
// See if the client requested a specific compiler level
String compilerLevel = System.getenv(NSFODPConstants.PROP_COMPILERLEVEL);
if (StringUtil.isNotEmpty(compilerLevel)) {
compiler.setCompilerLevel(compilerLevel);
}
String appendTimestamp = System.getenv(NSFODPConstants.PROP_APPENDTIMESTAMPTOTITLE);
if ("true".equals(appendTimestamp)) {
// $NON-NLS-1$
compiler.setAppendTimestampToTitle(true);
}
String templateName = System.getenv(NSFODPConstants.PROP_TEMPLATENAME);
if (StringUtil.isNotEmpty(templateName)) {
compiler.setTemplateName(templateName);
String templateVersion = System.getenv(NSFODPConstants.PROP_TEMPLATEVERSION);
if (StringUtil.isNotEmpty(templateVersion)) {
compiler.setTemplateVersion(templateVersion);
}
}
String setXspOptions = System.getenv(NSFODPConstants.PROP_SETPRODUCTIONXSPOPTIONS);
if ("true".equals(setXspOptions)) {
// $NON-NLS-1$
compiler.setSetProductionXspOptions(true);
}
String odsRelease = System.getenv(NSFODPConstants.PROP_ODSRELEASE);
if (StringUtil.isNotEmpty(odsRelease)) {
compiler.setOdsRelease(odsRelease);
}
String compileBasicLs = System.getenv(NSFODPConstants.PROP_COMPILEBASICLS);
if ("true".equals(compileBasicLs)) {
// $NON-NLS-1$
compiler.setCompileBasicElementLotusScript(true);
}
if (updateSites != null && !updateSites.isEmpty()) {
updateSites.stream().map(FilesystemUpdateSite::new).forEach(compiler::addUpdateSite);
}
exec.submit(() -> {
try {
Path nsf = compiler.compile();
Files.move(nsf, outputFile, StandardCopyOption.REPLACE_EXISTING);
mon.done();
} catch (RuntimeException e) {
throw e;
} catch (Exception e) {
throw new RuntimeException(e);
}
}).get();
// $NON-NLS-1$
System.out.println(getClass().getName() + "#end");
exec.shutdownNow();
exec.awaitTermination(30, TimeUnit.SECONDS);
return EXIT_OK;
} finally {
NotesThread.stermThread();
}
}
Aggregations