/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package de.unioninvestment.eai.portal.portlet.crud.domain.model; import com.vaadin.data.util.sqlcontainer.RowId; import com.vaadin.data.util.sqlcontainer.RowItem; import com.vaadin.data.util.sqlcontainer.SQLContainer; import com.vaadin.data.util.sqlcontainer.TemporaryRowId; import com.vaadin.data.util.sqlcontainer.query.QueryDelegate; import de.unioninvestment.eai.portal.portlet.crud.domain.container.IndexResolver; import de.unioninvestment.eai.portal.portlet.crud.domain.events.CreateEvent; import de.unioninvestment.eai.portal.portlet.crud.domain.events.CreateEventHandler; import de.unioninvestment.eai.portal.portlet.crud.domain.exception.BusinessException; import de.unioninvestment.eai.portal.portlet.crud.domain.exception.TechnicalCrudPortletException; import de.unioninvestment.eai.portal.support.vaadin.mvp.EventRouter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.sql.SQLException; import java.util.List; /** * Wrapper zum Feuern von {@link CreateEvent}'s. Er wird nur die * {@link SQLContainer#addItem()}-Methode überschrieben. * * @author max.hartmann * * @see {@link SQLContainer} */ public class SQLContainerEventWrapper extends SQLContainer implements Filterable { private static final long serialVersionUID = 42L; private static Logger LOGGER = LoggerFactory .getLogger(SQLContainerEventWrapper.class); private EventRouter<CreateEventHandler, CreateEvent> onCreateEventRouter; private final DataContainer databaseContainer; /** * Konstruktor mit Parametern. * * @param delegate * QueryDelegate * @param databaseContainer * DatabaseContainer * @param onCreateEventRouter * EventRouter * * @throws SQLException * SQL-Fehler */ public SQLContainerEventWrapper(QueryDelegate delegate, DataContainer databaseContainer, EventRouter<CreateEventHandler, CreateEvent> onCreateEventRouter) throws SQLException { super(delegate); this.databaseContainer = databaseContainer; this.onCreateEventRouter = onCreateEventRouter; } @Override public Object addItem() throws UnsupportedOperationException { Object rowId = super.addItem(); RowItem rowItem = (RowItem) this.getItem(rowId); onCreateEventRouter.fireEvent(new CreateEvent(databaseContainer, databaseContainer.convertItemToRow(rowItem, false, false))); return rowId; } /** * Sichtbarkeit erhöhen. Erlaubt das Anstoßen des Rerenderings bei Table * ohne dass die Datenbank gepollt wird. */ @Override public void fireContentsChange() { super.fireContentsChange(); } /** * Mark item as modified (for blobs and clobs) * * @param itemId * modified item */ public void markRowAsModified(Object itemId) { try { RowItem item = (RowItem) getItemUnfiltered(itemId); Method method = SQLContainer.class.getDeclaredMethod( "itemChangeNotification", RowItem.class); method.setAccessible(true); method.invoke(this, item); } catch (NoSuchMethodException e) { throw new TechnicalCrudPortletException( "Error finding super.itemChangeNotification(RowItem) via reflection", e); } catch (IllegalAccessException e) { throw new TechnicalCrudPortletException( "Error calling super.itemChangeNotification(RowItem) via reflection", e); } catch (InvocationTargetException e) { throw new TechnicalCrudPortletException( "Error calling super.itemChangeNotification(RowItem) via reflection", e); } } @Override public int indexOfId(Object itemId) { if (itemId instanceof TemporaryRowId || getItemUnfiltered(itemId) != null || !(getQueryDelegate() instanceof IndexResolver)) { return super.indexOfId(itemId); } if (itemId != null) { IndexResolver tableQuery = (IndexResolver) getQueryDelegate(); Integer index = tableQuery.getIndexById((RowId) itemId); if (index != null) { getIdByIndex(index); return index; } } return -1; } public void replaceContainerFilter(Filter filter) { clearFiltersWithoutRefresh(); addContainerFilter(filter); } @SuppressWarnings("unchecked") private void clearFiltersWithoutRefresh() { try { Field filtersField = SQLContainer.class.getDeclaredField("filters"); filtersField.setAccessible(true); List<Filter> filters = (List<Filter>) filtersField.get(this); filters.clear(); } catch (Exception e) { throw new TechnicalCrudPortletException( "'filters' field not accessible", e); } } public void setSizeValidMilliSeconds(int i) { try { Field field = SQLContainer.class .getDeclaredField("sizeValidMilliSeconds"); field.setAccessible(true); field.set(this, i); } catch (SecurityException e) { throw new TechnicalCrudPortletException( "Error setting sizeValidMilliSeconds", e); } catch (NoSuchFieldException e) { throw new TechnicalCrudPortletException( "Error setting sizeValidMilliSeconds", e); } catch (IllegalArgumentException e) { throw new TechnicalCrudPortletException( "Error setting sizeValidMilliSeconds", e); } catch (IllegalAccessException e) { throw new TechnicalCrudPortletException( "Error setting sizeValidMilliSeconds", e); } } /* * (non-Javadoc) * * More descriptive error message for Mantis 8387 "scrollable error" * * @see com.vaadin.data.util.sqlcontainer.SQLContainer#getItemIds(int, int) */ @Override public List<Object> getItemIds(int startIndex, int numberOfIds) { try { return super.getItemIds(startIndex, numberOfIds); } catch (IndexOutOfBoundsException e) { LOGGER.info("Error getting item ids - database content may have changed", e); throw new BusinessException("portlet.crud.error.scrollingInconsistency"); } } }