/*
* This code was written by Bear Giles <bgiles@coyotesong.com> and he
* 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
*
* Any contributions made by others are licensed to this project under
* one or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.
*
* 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.
*
* Copyright (c) 2013 Bear Giles <bgiles@coyotesong.com>
*/
package com.invariantproperties.project.student.business;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import org.apache.log4j.Logger;
import com.invariantproperties.project.student.domain.Course;
import com.invariantproperties.project.student.domain.TestRun;
public class DummyCourseService implements CourseFinderService, CourseManagerService {
private static final Logger log = Logger.getLogger(DummyCourseService.class);
private Map<String, Course> cache = Collections.synchronizedMap(new HashMap<String, Course>());
@Override
public long count() {
log.debug("CourseServer: count()");
return countByTestRun(null);
}
@Override
public long countByTestRun(TestRun testRun) {
log.debug("CourseServer: countByTestRun()");
long count = 0;
for (Course classroom : cache.values()) {
if (testRun.equals(classroom.getTestRun())) {
count++;
}
}
return count;
}
@Override
public List<Course> findAllCourses() {
log.debug("CourseServer: findAllCourses()");
final List<Course> results = new ArrayList<Course>();
for (Course course : cache.values()) {
if (course.getTestRun() == null) {
results.add(course);
}
}
return results;
}
@Override
public Course findCourseById(Integer id) {
throw new ObjectNotFoundException(id);
}
@Override
public Course findCourseByUuid(String uuid) {
log.debug("CourseServer: findCourseByUuid()");
if (!cache.containsKey(uuid)) {
throw new ObjectNotFoundException(uuid);
}
return cache.get(uuid);
}
@Override
public Course findCourseByCode(String code) {
log.debug("CourseServer: findCourseByCode()");
if (!cache.containsKey(code)) {
throw new ObjectNotFoundException(code);
}
return cache.get(code);
}
@Override
public List<Course> findCoursesByTestRun(TestRun testRun) {
log.debug("CourseServer: findCoursesByTestRun()");
final List<Course> results = new ArrayList<Course>();
for (Course course : cache.values()) {
if (testRun.equals(course.getTestRun())) {
results.add(course);
}
}
return results;
}
@Override
public Course createCourse(String code, String name, String summary, String description, Integer creditHours) {
log.debug("CourseServer: createCourse()");
final Course course = new Course();
course.setUuid(UUID.randomUUID().toString());
course.setCode(code);
course.setName(name);
course.setSummary(summary);
course.setDescription(description);
course.setCreditHours(creditHours);
cache.put(course.getUuid(), course);
return course;
}
@Override
public Course createCourseForTesting(String code, String name, String summary, String description,
Integer creditHours, TestRun testRun) {
log.debug("CourseServer: createCourseForTesting()");
final Course course = createCourse(code, name, summary, description, creditHours);
course.setTestRun(course.getTestRun());
return course;
}
@Override
public Course updateCourse(Course oldCourse, String name, String summary, String description, Integer creditHours) {
log.debug("CourseServer: updateCourse()");
if (!cache.containsKey(oldCourse.getUuid())) {
throw new ObjectNotFoundException(oldCourse.getUuid());
}
Course course = cache.get(oldCourse.getUuid());
course.setName(name);
course.setSummary(summary);
course.setDescription(description);
course.setCreditHours(creditHours);
course.setUuid(oldCourse.getUuid());
course.setTestRun(oldCourse.getTestRun());
return course;
}
@Override
public void deleteCourse(String uuid, Integer version) {
log.debug("CourseServer: deleteCourse()");
if (cache.containsKey(uuid)) {
cache.remove(uuid);
}
}
}