use of com.servoy.j2db.persistence.Solution in project servoy-client by Servoy.
the class PersistIndexCache method getPersistIndex.
public static IPersistIndex getPersistIndex(Solution solution, Solution[] modules) {
boolean isCloned = solution.getRuntimeProperty(AbstractBase.Cloned) != null && solution.getRuntimeProperty(AbstractBase.Cloned).booleanValue();
IPersistIndex index = isCloned ? null : persistIndexCache.get(solution.getUUID());
if (index == null) {
List<Solution> solutions = new ArrayList<>();
solutions.add(solution);
if (modules != null) {
for (Solution mod : modules) {
solutions.add(mod);
}
}
index = new PersistIndex(solutions).createIndex();
if (!isCloned) {
IPersistIndex alreadyCreated = persistIndexCache.putIfAbsent(solution.getUUID(), index);
if (alreadyCreated != null)
index = alreadyCreated;
LOG.debug("Persist Index Cache entry created for " + solution + " with modules " + (modules != null ? Arrays.asList(modules) : Collections.emptyList()));
}
}
return index;
}
use of com.servoy.j2db.persistence.Solution in project servoy-client by Servoy.
the class WebClient method onBeginRequest.
public void onBeginRequest(WebClientSession webClientSession) {
Solution solution = getSolution();
if (solution != null) {
synchronized (onBeginRequestLock) {
long solutionLastModifiedTime = webClientSession.getSolutionLastModifiedTime(solution);
if (solutionLastModifiedTime != -1 && solutionLastModifiedTime != solution.getLastModifiedTime()) {
if (isClosing() || isShutDown()) {
if (((WebRequest) RequestCycle.get().getRequest()).isAjax())
throw new AbortException();
else
throw new RestartResponseException(Application.get().getHomePage());
}
refreshI18NMessages(true);
((IScriptSupport) getScriptEngine()).reload();
((WebFormManager) getFormManager()).reload();
MainPage page = (MainPage) ((WebFormManager) getFormManager()).getMainContainer(null);
throw new RestartResponseException(page);
}
executeEvents();
}
}
}
use of com.servoy.j2db.persistence.Solution in project servoy-client by Servoy.
the class TemplateGenerator method getFormHTMLAndCSS.
public static Pair<String, String> getFormHTMLAndCSS(int solution_id, int form_id) throws RepositoryException, RemoteException {
final IRepository repository = ApplicationServerRegistry.get().getLocalRepository();
Solution solution = (Solution) repository.getActiveRootObject(solution_id);
Form form = solution.getForm(form_id);
IServiceProvider sp = null;
if (WebClientSession.get() != null) {
sp = WebClientSession.get().getWebClient();
}
return getFormHTMLAndCSS(solution, form, sp, form.getName());
}
use of com.servoy.j2db.persistence.Solution in project servoy-client by Servoy.
the class DebugClientHandler method executeMethod.
/**
* @param persist
* @param elementName
*/
public void executeMethod(final ISupportChilds persist, final String scopeName, final String methodname) {
final IApplication serviceProvider = getDebugReadyClient();
if (serviceProvider != null) {
final Runnable run = new Runnable() {
public void run() {
if (persist instanceof Solution) {
try {
serviceProvider.getScriptEngine().getScopesScope().executeGlobalFunction(scopeName, methodname, null, false, false);
} catch (Exception e) {
Debug.log(e);
}
} else if (persist instanceof Form) {
try {
IFormController fp = serviceProvider.getFormManager().leaseFormPanel(((Form) persist).getName());
if (fp != null) {
fp.initForJSUsage();
fp.setView(fp.getView());
fp.executeOnLoadMethod();
fp.executeFunction(methodname, null, false, null, false, null);
}
} catch (Exception e) {
Debug.log(e);
}
}
}
};
if (serviceProvider == getDebugHeadlessClient() || serviceProvider == getDebugAuthenticator()) {
ApplicationServerRegistry.get().getExecutor().execute(new Runnable() {
public void run() {
serviceProvider.invokeLater(run);
}
});
} else if (serviceProvider == getDebugWebClient()) {
ApplicationServerRegistry.get().getExecutor().execute(new Runnable() {
public void run() {
RequestCycle rc = null;
try {
// fake a request as much as possible
WebClientsApplication fakeApplication = ((WebClient) serviceProvider).getFakeApplication();
Application.set(fakeApplication);
rc = new WebRequestCycle(fakeApplication, new EmptyRequest(), new WebResponse());
serviceProvider.invokeAndWait(run);
} finally {
Application.unset();
rc.detach();
}
}
});
} else {
serviceProvider.invokeLater(run);
}
}
}
use of com.servoy.j2db.persistence.Solution in project servoy-client by Servoy.
the class DebugUtils method getScopesAndFormsToReload.
public static Set<IFormController>[] getScopesAndFormsToReload(final ClientState clientState, Collection<IPersist> changes) {
Set<IFormController> scopesToReload = new HashSet<IFormController>();
final Set<IFormController> formsToReload = new HashSet<IFormController>();
final SpecProviderState specProviderState = WebComponentSpecProvider.getSpecProviderState();
final Set<Form> formsUpdated = new HashSet<Form>();
for (IPersist persist : changes) {
clientState.getFlattenedSolution().updatePersistInSolutionCopy(persist);
if (persist instanceof ScriptMethod) {
if (persist.getParent() instanceof Form) {
Form form = (Form) persist.getParent();
List<IFormController> cachedFormControllers = clientState.getFormManager().getCachedFormControllers(form);
for (IFormController formController : cachedFormControllers) {
scopesToReload.add(formController);
}
} else if (persist.getParent() instanceof Solution) {
LazyCompilationScope scope = clientState.getScriptEngine().getScopesScope().getGlobalScope(((ScriptMethod) persist).getScopeName());
scope.remove((IScriptProvider) persist);
scope.put((IScriptProvider) persist, (IScriptProvider) persist);
} else if (persist.getParent() instanceof TableNode) {
clientState.getFoundSetManager().reloadFoundsetMethod(((TableNode) persist.getParent()).getDataSource(), (IScriptProvider) persist);
}
if (clientState instanceof DebugJ2DBClient) {
// ((DebugJ2DBClient)clientState).clearUserWindows(); no need for this as window API was refactored and it allows users to clean up dialogs
((DebugSwingFormMananger) ((DebugJ2DBClient) clientState).getFormManager()).fillScriptMenu();
}
} else if (persist instanceof ScriptVariable) {
ScriptVariable sv = (ScriptVariable) persist;
if (persist.getParent() instanceof Solution) {
clientState.getScriptEngine().getScopesScope().getGlobalScope(sv.getScopeName()).put(sv);
}
if (persist.getParent() instanceof Form) {
Form form = (Form) persist.getParent();
List<IFormController> cachedFormControllers = clientState.getFormManager().getCachedFormControllers(form);
for (IFormController formController : cachedFormControllers) {
FormScope scope = formController.getFormScope();
scope.put(sv);
}
}
} else if (persist.getAncestor(IRepository.FORMS) != null) {
final Form form = (Form) persist.getAncestor(IRepository.FORMS);
if (form != null && form.isFormComponent().booleanValue()) {
// if the changed form is a reference form we need to check if that is referenced by a loaded form..
List<IFormController> cachedFormControllers = clientState.getFormManager().getCachedFormControllers();
for (IFormController fc : cachedFormControllers) {
fc.getForm().acceptVisitor(new IPersistVisitor() {
@Override
public Object visit(IPersist o) {
if (o instanceof WebComponent) {
WebComponent wc = (WebComponent) o;
WebObjectSpecification spec = FormTemplateGenerator.getWebObjectSpecification(wc);
Collection<PropertyDescription> properties = spec != null ? spec.getProperties(FormComponentPropertyType.INSTANCE) : null;
if (properties != null && properties.size() > 0) {
Form persistForm = (Form) wc.getAncestor(IRepository.FORMS);
for (PropertyDescription pd : properties) {
Form frm = FormComponentPropertyType.INSTANCE.getForm(wc.getProperty(pd.getName()), clientState.getFlattenedSolution());
if (frm != null && (form.equals(frm) || FlattenedForm.hasFormInHierarchy(frm, form) || isReferenceFormUsedInForm(clientState, form, frm)) && !formsUpdated.contains(persistForm)) {
formsUpdated.add(persistForm);
List<IFormController> cfc = clientState.getFormManager().getCachedFormControllers(persistForm);
for (IFormController formController : cfc) {
formsToReload.add(formController);
}
}
}
}
}
return IPersistVisitor.CONTINUE_TRAVERSAL;
}
});
}
} else if (!formsUpdated.contains(form)) {
formsUpdated.add(form);
List<IFormController> cachedFormControllers = clientState.getFormManager().getCachedFormControllers(form);
for (IFormController formController : cachedFormControllers) {
formsToReload.add(formController);
}
}
if (persist instanceof Form && clientState.getFormManager() instanceof DebugUtils.DebugUpdateFormSupport) {
((DebugUtils.DebugUpdateFormSupport) clientState.getFormManager()).updateForm((Form) persist);
}
} else if (persist instanceof ScriptCalculation) {
ScriptCalculation sc = (ScriptCalculation) persist;
if (((RemoteDebugScriptEngine) clientState.getScriptEngine()).recompileScriptCalculation(sc)) {
List<String> al = new ArrayList<String>();
al.add(sc.getDataProviderID());
try {
String dataSource = clientState.getFoundSetManager().getDataSource(sc.getTable());
((FoundSetManager) clientState.getFoundSetManager()).getRowManager(dataSource).clearCalcs(null, al);
((FoundSetManager) clientState.getFoundSetManager()).flushSQLSheet(dataSource);
} catch (Exception e) {
Debug.error(e);
}
}
// if (clientState instanceof DebugJ2DBClient)
// {
// ((DebugJ2DBClient)clientState).clearUserWindows(); no need for this as window API was refactored and it allows users to clean up dialogs
// }
} else if (persist instanceof Relation) {
((FoundSetManager) clientState.getFoundSetManager()).flushSQLSheet((Relation) persist);
List<IFormController> cachedFormControllers = clientState.getFormManager().getCachedFormControllers();
try {
String primary = ((Relation) persist).getPrimaryDataSource();
for (IFormController formController : cachedFormControllers) {
if (primary.equals(formController.getDataSource())) {
final IFormController finalController = formController;
final Relation finalRelation = (Relation) persist;
formController.getForm().acceptVisitor(new IPersistVisitor() {
@Override
public Object visit(IPersist o) {
if (o instanceof Tab && Utils.equalObjects(finalRelation.getName(), ((Tab) o).getRelationName())) {
formsToReload.add(finalController);
return o;
}
if (o instanceof Field && ((Field) o).getValuelistID() > 0) {
ValueList vl = clientState.getFlattenedSolution().getValueList(((Field) o).getValuelistID());
if (vl != null && Utils.equalObjects(finalRelation.getName(), vl.getRelationName())) {
formsToReload.add(finalController);
return o;
}
}
if (o instanceof WebComponent) {
WebComponent webComponent = (WebComponent) o;
WebObjectSpecification spec = specProviderState == null ? null : specProviderState.getWebComponentSpecification(webComponent.getTypeName());
if (spec != null) {
Collection<PropertyDescription> properties = spec.getProperties(RelationPropertyType.INSTANCE);
for (PropertyDescription pd : properties) {
if (Utils.equalObjects(webComponent.getFlattenedJson().opt(pd.getName()), finalRelation.getName())) {
formsToReload.add(finalController);
return o;
}
}
}
}
return CONTINUE_TRAVERSAL;
}
});
}
}
} catch (Exception e) {
Debug.error(e);
}
} else if (persist instanceof ValueList) {
ComponentFactory.flushValueList(clientState, (ValueList) persist);
List<IFormController> cachedFormControllers = clientState.getFormManager().getCachedFormControllers();
for (IFormController formController : cachedFormControllers) {
final IFormController finalController = formController;
final ValueList finalValuelist = (ValueList) persist;
formController.getForm().acceptVisitor(new IPersistVisitor() {
@Override
public Object visit(IPersist o) {
if (o instanceof Field && ((Field) o).getValuelistID() > 0 && ((Field) o).getValuelistID() == finalValuelist.getID()) {
formsToReload.add(finalController);
return o;
}
if (o instanceof WebComponent) {
WebComponent webComponent = (WebComponent) o;
WebObjectSpecification spec = specProviderState == null ? null : specProviderState.getWebComponentSpecification(webComponent.getTypeName());
if (spec != null) {
Collection<PropertyDescription> properties = spec.getProperties(ValueListPropertyType.INSTANCE);
for (PropertyDescription pd : properties) {
if (Utils.equalObjects(webComponent.getFlattenedJson().opt(pd.getName()), finalValuelist.getUUID().toString())) {
formsToReload.add(finalController);
return o;
}
}
}
}
return CONTINUE_TRAVERSAL;
}
});
}
} else if (persist instanceof Style) {
ComponentFactory.flushStyle(null, ((Style) persist));
List<IFormController> cachedFormControllers = clientState.getFormManager().getCachedFormControllers();
String styleName = ((Style) persist).getName();
for (IFormController formController : cachedFormControllers) {
if (styleName.equals(formController.getForm().getStyleName())) {
formsToReload.add(formController);
}
}
}
}
return new Set[] { scopesToReload, formsToReload };
}
Aggregations