use of com.ibm.xsp.registry.UpdatableLibrary in project org.openntf.nsfodp by OpenNTF.
the class ODPCompiler method compileCustomControls.
// *******************************************************************************
// * XSP compilation methods
// *******************************************************************************
private Map<CustomControl, XSPCompilationResult> compileCustomControls(JavaSourceClassLoader classLoader) throws Exception {
subTask(Messages.ODPCompiler_compilingCustomControls);
ConfigParser configParser = ConfigParserFactory.getParserInstance();
FacesClassLoader facesClassLoader = new DynamicFacesClassLoader(dynamicXPageBean, classLoader);
Map<CustomControl, XSPCompilationResult> result = new LinkedHashMap<>();
List<CustomControl> ccs = odp.getCustomControls();
for (CustomControl cc : ccs) {
Document xspConfig = cc.getXspConfig().get();
// $NON-NLS-1$
String namespace = StringUtil.trim(NSFODPDomUtil.node(xspConfig, "/faces-config/faces-config-extension/namespace-uri/text()").get().getTextContent());
Path fileName = odp.getBaseDirectory().relativize(cc.getXspConfigFile());
LibraryFragmentImpl fragment = (LibraryFragmentImpl) configParser.createFacesLibraryFragment(facesProject, facesClassLoader, fileName.toString(), xspConfig.getDocumentElement(), resourceBundleSource, iconUrlSource, namespace);
UpdatableLibrary library = getLibrary(namespace);
library.addLibraryFragment(fragment);
// Load the definition to refresh its parent ref
CompositeComponentDefinitionImpl def = (CompositeComponentDefinitionImpl) library.getDefinition(cc.getControlName());
def.refreshReferences();
}
// Now that they're all defined, try to compile them in a queue
for (CustomControl cc : ccs) {
XSPCompilationResult compilationResult = compileXSP(cc, classLoader);
result.put(cc, compilationResult);
}
return result;
}
use of com.ibm.xsp.registry.UpdatableLibrary in project org.openntf.nsfodp by OpenNTF.
the class AbstractCompilationEnvironment method getLibrary.
protected UpdatableLibrary getLibrary(String namespace) {
SharableRegistryImpl facesRegistry = (SharableRegistryImpl) facesProject.getRegistry();
UpdatableLibrary library = (UpdatableLibrary) facesRegistry.getLocalLibrary(namespace);
if (library == null) {
try {
library = new FacesLibraryImpl(facesRegistry, namespace);
// TODO this is probably properly done by creating a FacesProjectImpl
// - it can then register the library fragments itself
// Note: my first attempt at this ended with an infinite loop, so it's trickier than that
// $NON-NLS-1$
Field localLibsField = facesRegistry.getClass().getDeclaredField("_localLibs");
localLibsField.setAccessible(true);
@SuppressWarnings("unchecked") Map<String, UpdatableLibrary> localLibs = (Map<String, UpdatableLibrary>) localLibsField.get(facesRegistry);
localLibs.put(namespace, library);
} catch (NoSuchFieldException | IllegalArgumentException | IllegalAccessException e) {
throw new RuntimeException(e);
}
}
return library;
}
Aggregations