/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xwiki.observation.remote.internal.converter; import java.io.Serializable; import javax.inject.Singleton; import org.xwiki.component.annotation.Component; import org.xwiki.observation.event.Event; import org.xwiki.observation.remote.LocalEventData; import org.xwiki.observation.remote.RemoteEventData; import org.xwiki.observation.remote.converter.AbstractEventConverter; /** * Default implementation of {@link org.xwiki.observation.remote.converter.LocalEventConverter}. Support any * serializable event. * * @version $Id: 27e4b08a64d1f65389705b3d8a3aacf91fb68fe8 $ * @since 2.0M3 */ @Component @Singleton public class SerializableEventConverter extends AbstractEventConverter { @Override public int getPriority() { // SerializableEventConverter is used only if no other converter could be found so we make sure it has a very // low priority return 2000; } @Override public boolean fromRemote(RemoteEventData remoteEvent, LocalEventData localEvent) { if (remoteEvent.getEvent() instanceof Event) { localEvent.setEvent((Event) remoteEvent.getEvent()); if (remoteEvent.getSource() != null) { localEvent.setSource(remoteEvent.getSource()); } if (remoteEvent.getData() != null) { localEvent.setData(remoteEvent.getData()); } return true; } return false; } @Override public boolean toRemote(LocalEventData localEvent, RemoteEventData remoteEvent) { if (isSerializable(localEvent)) { remoteEvent.setEvent((Serializable) localEvent.getEvent()); remoteEvent.setSource((Serializable) localEvent.getSource()); remoteEvent.setData((Serializable) localEvent.getData()); return true; } return false; } /** * Indicate if a local event is fully serializable. * * @param localEvent the local event * @return true is the local event is fully serializable, false otherwise. */ private boolean isSerializable(LocalEventData localEvent) { return localEvent.getEvent() instanceof Serializable && isSerializable(localEvent.getData()) && isSerializable(localEvent.getSource()); } /** * Indicate if an object is serializable. * * @param obj the object to test * @return true is the object is serializable, false otherwise. */ private boolean isSerializable(Object obj) { return obj instanceof Serializable || obj == null; } }