/* * Copyright (c) www.bugull.com * * Licensed 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 net.tooan.ynpay.third.mongodb.mapper; import net.tooan.ynpay.third.mongodb.BuguEntity; import net.tooan.ynpay.third.mongodb.annotations.Default; import net.tooan.ynpay.third.mongodb.annotations.Ref; import net.tooan.ynpay.third.mongodb.annotations.RefList; import net.tooan.ynpay.third.mongodb.cache.FieldsCache; import java.lang.reflect.Field; import java.util.ArrayList; import java.util.List; /** * Listener for cascade delete * * @author Frank Wen(xbwen@hotmail.com) */ public class EntityRemovedListener { private boolean hasCascade; private List<Field> refFields = new ArrayList<Field>(); private List<Field> refListFields = new ArrayList<Field>(); public EntityRemovedListener(Class<?> clazz) { Field[] fields = FieldsCache.getInstance().get(clazz); for (Field f : fields) { Ref ref = f.getAnnotation(Ref.class); if (ref != null && ref.cascade().toUpperCase().indexOf(Default.CASCADE_DELETE) != -1) { hasCascade = true; refFields.add(f); continue; } RefList refList = f.getAnnotation(RefList.class); if (refList != null && refList.cascade().toUpperCase().indexOf(Default.CASCADE_DELETE) != -1) { hasCascade = true; refListFields.add(f); continue; } } } public void entityRemove(BuguEntity entity) { DeleteCascadeTask task = new DeleteCascadeTask(refFields, refListFields, entity); CascadeDeleteExecutor.getInstance().getExecutor().execute(task); } public boolean hasCascade() { return hasCascade; } }