/* This file belongs to the Servoy development and deployment environment, Copyright (C) 1997-2014 Servoy BV This program is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program; if not, see http://www.gnu.org/licenses or write to the Free Software Foundation,Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 */ package com.servoy.j2db.server.ngclient.property; import org.json.JSONException; import org.json.JSONObject; import org.json.JSONWriter; import org.mozilla.javascript.Scriptable; import org.sablo.BaseWebObject; import org.sablo.specification.PropertyDescription; import org.sablo.specification.property.CustomJSONPropertyType; import org.sablo.specification.property.IBrowserConverterContext; import org.sablo.specification.property.IConvertedPropertyType; import org.sablo.specification.property.IPushToServerSpecialType; import org.sablo.specification.property.ISupportsGranularUpdates; import org.sablo.util.ValueReference; import org.sablo.websocket.utils.DataConversion; import org.sablo.websocket.utils.JSONUtils; import com.servoy.j2db.FlattenedSolution; import com.servoy.j2db.dataprocessing.IFoundSetInternal; import com.servoy.j2db.scripting.DefaultScope; import com.servoy.j2db.server.ngclient.DataAdapterList; import com.servoy.j2db.server.ngclient.FormElement; import com.servoy.j2db.server.ngclient.FormElementContext; import com.servoy.j2db.server.ngclient.INGFormElement; import com.servoy.j2db.server.ngclient.WebFormComponent; import com.servoy.j2db.server.ngclient.property.types.IDataLinkedType; import com.servoy.j2db.server.ngclient.property.types.NGConversions.IFormElementToSabloComponent; import com.servoy.j2db.server.ngclient.property.types.NGConversions.IFormElementToTemplateJSON; import com.servoy.j2db.server.ngclient.property.types.NGConversions.ISabloComponentToRhino; /** * Implementation for the complex custom type "foundset". * * @author acostescu */ public class FoundsetPropertyType extends CustomJSONPropertyType<FoundsetTypeSabloValue> implements IFormElementToTemplateJSON<JSONObject, FoundsetTypeSabloValue>, IFormElementToSabloComponent<JSONObject, FoundsetTypeSabloValue>, IConvertedPropertyType<FoundsetTypeSabloValue>, ISabloComponentToRhino<FoundsetTypeSabloValue>, ISupportsGranularUpdates<FoundsetTypeSabloValue>, IDataLinkedType<JSONObject, FoundsetTypeSabloValue>, IPushToServerSpecialType { public static final FoundsetPropertyType INSTANCE = new FoundsetPropertyType(null); public static final String TYPE_NAME = "foundset"; public static final String FOUNDSET_SELECTOR = "foundsetSelector"; public static final String LOAD_ALL_RECORDS_FOR_SEPARATE = "loadAllRecords"; public FoundsetPropertyType(PropertyDescription definition) { super("foundset", definition); } @Override public JSONWriter toTemplateJSONValue(JSONWriter writer, String key, JSONObject formElementValue, PropertyDescription pd, DataConversion conversionMarkers, FormElementContext formElementContext) throws JSONException { // this just dumps an empty/dummy value if (conversionMarkers != null) conversionMarkers.convert(TYPE_NAME); // so that the client knows it must use the custom client side JS for what JSON it gets JSONUtils.addKeyIfPresent(writer, key); writer.object(); writer.key(FoundsetTypeSabloValue.SERVER_SIZE).value(0); writer.key(FoundsetTypeSabloValue.SELECTED_ROW_INDEXES).array().endArray(); writer.key(FoundsetTypeSabloValue.MULTI_SELECT).value(false); writer.key(FoundsetTypeSabloValue.HAS_MORE_ROWS).value(false); // viewPort writer.key(FoundsetTypeSabloValue.VIEW_PORT).object().key(FoundsetTypeSabloValue.START_INDEX).value(0).key(FoundsetTypeSabloValue.SIZE).value(0).key( FoundsetTypeSabloValue.ROWS).array().endArray().endObject(); // end viewPort writer.endObject(); return writer; } @Override public FoundsetTypeSabloValue toSabloComponentValue(JSONObject formElementValue, PropertyDescription pd, INGFormElement formElement, WebFormComponent component, DataAdapterList dal) { return new FoundsetTypeSabloValue(formElementValue, pd.getName(), dal, (FoundsetPropertyTypeConfig)pd.getConfig()); } @Override public FoundsetTypeSabloValue fromJSON(Object newJSONValue, FoundsetTypeSabloValue previousSabloValue, PropertyDescription pd, IBrowserConverterContext dataConverterContext, ValueReference<Boolean> returnValueAdjustedIncommingValue) { if (previousSabloValue != null) { previousSabloValue.browserUpdatesReceived(newJSONValue, pd, dataConverterContext); } // else there's nothing to do here / this type can't receive browser updates when server has no value for it return previousSabloValue; } @Override public JSONWriter changesToJSON(JSONWriter writer, String key, FoundsetTypeSabloValue sabloValue, PropertyDescription pd, DataConversion clientConversion, IBrowserConverterContext dataConverterContext) throws JSONException { if (sabloValue != null) { JSONUtils.addKeyIfPresent(writer, key); sabloValue.changesToJSON(writer, clientConversion, dataConverterContext); } return null; } @Override public JSONWriter toJSON(JSONWriter writer, String key, FoundsetTypeSabloValue sabloValue, PropertyDescription pd, DataConversion clientConversion, IBrowserConverterContext dataConverterContext) throws JSONException { if (sabloValue != null) { JSONUtils.addKeyIfPresent(writer, key); sabloValue.toJSON(writer, clientConversion, dataConverterContext); } return null; } @Override public boolean isValueAvailableInRhino(FoundsetTypeSabloValue webComponentValue, PropertyDescription pd, BaseWebObject componentOrService) { return false; } @Override public Object toRhinoValue(FoundsetTypeSabloValue webComponentValue, PropertyDescription pd, BaseWebObject componentOrService, Scriptable startScriptable) { return new FoundsetTypeSableValueWrapper(startScriptable, webComponentValue, pd); } @Override public TargetDataLinks getDataLinks(JSONObject formElementValue, PropertyDescription pd, FlattenedSolution flattenedSolution, FormElement formElement) { return TargetDataLinks.LINKED_TO_ALL; // if you change this you should call this method in FoundsetTypeSabloValue.attach as well when registering as listener to DAL } /** * @author jcompagner */ private final class FoundsetTypeSableValueWrapper extends DefaultScope { private final FoundsetTypeSabloValue webComponentValue; private final PropertyDescription pd; /** * @param parent * @param webComponentValue * @param pd */ private FoundsetTypeSableValueWrapper(Scriptable parent, FoundsetTypeSabloValue webComponentValue, PropertyDescription pd) { super(parent); this.webComponentValue = webComponentValue; this.pd = pd; } @Override public Object get(String name, Scriptable start) { switch (name) { case "foundset" : { return webComponentValue.getFoundset(); } case "dataproviders" : { if (webComponentValue.recordDataLinkedPropertyIDToColumnDP.size() > 0) { return "Foundset bound to a components with dataproviders, can't be set through the foundset property"; } DefaultScope dataproviders = new DefaultScope(start) { @Override public Object get(String nm, Scriptable strt) { return webComponentValue.dataproviders.get(nm); } @Override public void put(String nm, Scriptable strt, Object value) { webComponentValue.dataproviders.put(nm, (String)value); webComponentValue.notifyDataProvidersUpdated(); } @Override public Object[] getIds() { return webComponentValue.dataproviders.keySet().toArray(); } }; return dataproviders; } } return Scriptable.NOT_FOUND; } @Override public void put(String name, Scriptable start, Object value) { switch (name) { case "foundset" : { if (value instanceof IFoundSetInternal) webComponentValue.updateFoundset((IFoundSetInternal)value); else throw new RuntimeException("illegal value '" + value + "' to set on the foundset property " + pd.getName()); break; } case "dataproviders" : { if (webComponentValue.recordDataLinkedPropertyIDToColumnDP.size() > 0) { throw new RuntimeException("Foundset bound to a components with dataproviders, can't be set through the foundset property"); } if (value instanceof Scriptable) { webComponentValue.dataproviders.clear(); Object[] ids = ((Scriptable)value).getIds(); for (Object id : ids) { webComponentValue.dataproviders.put((String)id, (String)((Scriptable)value).get((String)id, ((Scriptable)value))); } webComponentValue.notifyDataProvidersUpdated(); } else throw new RuntimeException("illegal value '" + value + "' to set on the dataprovides property " + pd.getName()); break; } } } @Override public Object[] getIds() { return new Object[] { "foundset", "dataproviders" }; } } @Override public boolean shouldAlwaysAllowIncommingJSON() { return true; } @Override public Object parseConfig(JSONObject config) { return new FoundsetPropertyTypeConfig(config); } }