blob: e073f765dc8523a334d6c083ddf6051f92d56f36 [file] [log] [blame]
/*
* 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 org.apache.syncope.core.persistence.jpa.entity.task;
import java.util.HashMap;
import java.util.Map;
import org.apache.syncope.common.lib.to.TaskTO;
import org.apache.syncope.common.lib.to.NotificationTaskTO;
import org.apache.syncope.common.lib.to.PropagationTaskTO;
import org.apache.syncope.common.lib.to.PushTaskTO;
import org.apache.syncope.common.lib.to.SchedTaskTO;
import org.apache.syncope.common.lib.to.PullTaskTO;
import org.apache.syncope.common.lib.types.TaskType;
import org.apache.syncope.core.persistence.api.entity.EntityFactory;
import org.apache.syncope.core.persistence.api.entity.task.NotificationTask;
import org.apache.syncope.core.persistence.api.entity.task.PropagationTask;
import org.apache.syncope.core.persistence.api.entity.task.PushTask;
import org.apache.syncope.core.persistence.api.entity.task.SchedTask;
import org.apache.syncope.core.persistence.api.entity.task.Task;
import org.apache.syncope.core.persistence.api.entity.task.TaskUtils;
import org.apache.syncope.core.persistence.api.entity.task.TaskUtilsFactory;
import org.apache.syncope.core.persistence.api.entity.task.PullTask;
import org.apache.syncope.core.spring.ApplicationContextProvider;
public class JPATaskUtilsFactory implements TaskUtilsFactory {
protected final EntityFactory entityFactory;
protected final Map<TaskType, TaskUtils> instances = new HashMap<>(5);
public JPATaskUtilsFactory(final EntityFactory entityFactory) {
this.entityFactory = entityFactory;
}
@Override
public TaskUtils getInstance(final TaskType type) {
TaskUtils instance;
synchronized (instances) {
instance = instances.get(type);
if (instance == null) {
instance = new JPATaskUtils(entityFactory, type);
ApplicationContextProvider.getBeanFactory().autowireBean(instance);
instances.put(type, instance);
}
}
return instance;
}
@Override
public TaskUtils getInstance(final Task task) {
TaskType type;
if (task instanceof PullTask) {
type = TaskType.PULL;
} else if (task instanceof PushTask) {
type = TaskType.PUSH;
} else if (task instanceof SchedTask) {
type = TaskType.SCHEDULED;
} else if (task instanceof PropagationTask) {
type = TaskType.PROPAGATION;
} else if (task instanceof NotificationTask) {
type = TaskType.NOTIFICATION;
} else {
throw new IllegalArgumentException("Invalid task: " + task);
}
return getInstance(type);
}
@Override
public TaskUtils getInstance(final Class<? extends TaskTO> taskClass) {
TaskType type;
if (taskClass == PropagationTaskTO.class) {
type = TaskType.PROPAGATION;
} else if (taskClass == NotificationTaskTO.class) {
type = TaskType.NOTIFICATION;
} else if (taskClass == SchedTaskTO.class) {
type = TaskType.SCHEDULED;
} else if (taskClass == PullTaskTO.class) {
type = TaskType.PULL;
} else if (taskClass == PushTaskTO.class) {
type = TaskType.PUSH;
} else {
throw new IllegalArgumentException("Invalid TaskTO class: " + taskClass.getName());
}
return getInstance(type);
}
@Override
public TaskUtils getInstance(final TaskTO taskTO) {
return getInstance(taskTO.getClass());
}
}