/** * * Copyright * 2009-2015 Jayway Products AB * 2016-2017 Föreningen Sambruk * * Licensed under AGPL, Version 3.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.gnu.org/licenses/agpl.txt * * 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 se.streamsource.streamflow.web.domain.structure.group; import org.qi4j.api.common.Optional; import org.qi4j.api.entity.association.ManyAssociation; import org.qi4j.api.injection.scope.Structure; import org.qi4j.api.injection.scope.This; import org.qi4j.api.mixin.Mixins; import org.qi4j.api.sideeffect.SideEffectOf; import org.qi4j.api.sideeffect.SideEffects; import org.qi4j.api.structure.Module; import se.streamsource.streamflow.infrastructure.event.domain.DomainEvent; import se.streamsource.streamflow.web.domain.Removable; /** * JAVADOC */ @SideEffects(Participants.RemovableSideEffect.class) @Mixins(Participants.Mixin.class) public interface Participants { void addParticipant( Participant newParticipant ); void removeParticipant( Participant participant ); /** * Check if given participant is a participant of this collection. * The check is recursive, so if any participant is a collection, * check that collection as well. * * @param participant the participant to check * @return true if participant is a member of this collection or any collection herein */ boolean isParticipant( Participant participant ); interface Data { ManyAssociation<Participant> participants(); void addedParticipant( @Optional DomainEvent event, Participant participant ); void removedParticipant( @Optional DomainEvent event, Participant participant ); } class Mixin implements Participants { @Structure Module module; @This Group group; @This Data data; public void addParticipant( Participant participant ) { if (!data.participants().contains( participant )) { data.addedParticipant( null, participant ); participant.joinGroup( group ); } } public void removeParticipant( Participant participant ) { if (data.participants().contains( participant )) { data.removedParticipant( null, participant ); participant.leaveGroup( group ); } } public boolean isParticipant( Participant participant ) { for (Participant participant1 : data.participants()) { if (participant.equals(participant1)) return true; if (participant1 instanceof Participants) { Participants participants = (Participants) participant1; if (participants.isParticipant( participant )) return true; } } return false; } } class RemovableSideEffect extends SideEffectOf<Removable> implements Removable { @This Participants.Data state; @This Participants participants; public boolean removeEntity() { if (result.removeEntity()) { // Make participants leave for (Participant participant : state.participants().toList()) { participants.removeParticipant( participant ); } } return true; } public boolean reinstate() { return result.reinstate(); } public void deleteEntity() { result.deleteEntity(); } } }