110 lines
5.5 KiB
HTML
110 lines
5.5 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>TaskManager.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">GSE2TaskTracker</a> > <a href="index.source.html" class="el_package">hhn.temp.project</a> > <span class="el_source">TaskManager.java</span></div><h1>TaskManager.java</h1><pre class="source lang-java linenums">package hhn.temp.project;
|
|
|
|
import hhn.temp.project.expections.TaskAlreadyExistsException;
|
|
import hhn.temp.project.provider.MySql;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public class TaskManager {
|
|
|
|
private Map<Integer, Task> taskMap;
|
|
private MySql mysql;
|
|
|
|
<span class="fc" id="L16"> public TaskManager(String user, String password, String port, String host) {</span>
|
|
<span class="fc" id="L17"> taskMap = new HashMap<>();</span>
|
|
<span class="fc" id="L18"> this.mysql = new MySql(user, password, port, host);</span>
|
|
<span class="fc" id="L19"> this.mysql.connect();</span>
|
|
<span class="fc" id="L20"> }</span>
|
|
/**
|
|
* only for Testing
|
|
*/
|
|
public void resetTest() {
|
|
<span class="fc" id="L25"> this.mysql.reset();</span>
|
|
<span class="fc" id="L26"> }</span>
|
|
|
|
public Task createTask(String name, String description) {
|
|
<span class="fc bfc" id="L29" title="All 4 branches covered."> if (name == null || description == null ) {</span>
|
|
|
|
<span class="fc" id="L31"> throw new IllegalArgumentException("Name/Description is null!");</span>
|
|
}
|
|
<span class="fc bfc" id="L33" title="All 2 branches covered."> if(name.isEmpty()) {</span>
|
|
<span class="fc" id="L34"> throw new IllegalArgumentException("Name is empty!");</span>
|
|
}
|
|
|
|
<span class="fc bfc" id="L37" title="All 2 branches covered."> if(!checkOnlyLetterOrDigit(name)) {</span>
|
|
<span class="fc" id="L38"> throw new IllegalArgumentException("Only Letters or Digit are allowed in the name: " + name);</span>
|
|
}
|
|
|
|
<span class="fc" id="L41"> boolean taskExited = this.mysql.existTask(name);</span>
|
|
<span class="fc bfc" id="L42" title="All 2 branches covered."> if(taskExited) {</span>
|
|
<span class="fc" id="L43"> throw new TaskAlreadyExistsException("Task already exits, with the name: " + name);</span>
|
|
}
|
|
|
|
<span class="fc" id="L46"> int taskId = this.mysql.createTask(name, description);</span>
|
|
<span class="fc" id="L47"> Task task = this.mysql.getTask(taskId);</span>
|
|
|
|
//taskMap.put(task.getTaskID(), task);
|
|
<span class="fc" id="L50"> return task;</span>
|
|
}
|
|
|
|
public List<Task> getTaskList() {
|
|
|
|
<span class="fc" id="L55"> return this.mysql.getTaskList();</span>
|
|
}
|
|
|
|
public Task getTask(String name) {
|
|
<span class="fc bfc" id="L59" title="All 2 branches covered."> if(!this.mysql.existTask(name)) {</span>
|
|
<span class="fc" id="L60"> throw new IllegalArgumentException("Wrong name");</span>
|
|
}
|
|
|
|
<span class="fc" id="L63"> return this.mysql.getTask(name);</span>
|
|
}
|
|
public Task getTask(int taskID) {
|
|
<span class="fc bfc" id="L66" title="All 2 branches covered."> if(!this.mysql.existTask(taskID)) {</span>
|
|
<span class="fc" id="L67"> throw new IllegalArgumentException("Wrong id");</span>
|
|
}
|
|
<span class="fc" id="L69"> return this.mysql.getTask(taskID);</span>
|
|
}
|
|
|
|
public void deleteTask(String name) {
|
|
<span class="fc bfc" id="L73" title="All 2 branches covered."> if (name == null ) {</span>
|
|
|
|
<span class="fc" id="L75"> throw new IllegalArgumentException("Name is null!");</span>
|
|
}
|
|
<span class="fc bfc" id="L77" title="All 4 branches covered."> if(name.isEmpty() || !this.mysql.existTask(name)) {</span>
|
|
<span class="fc" id="L78"> throw new IllegalArgumentException("Wrong name!");</span>
|
|
}
|
|
|
|
<span class="fc" id="L81"> this.mysql.deleteTask(name);</span>
|
|
|
|
<span class="fc" id="L83"> }</span>
|
|
|
|
private boolean checkOnlyLetterOrDigit(String text) {
|
|
<span class="fc" id="L86"> boolean result = true;</span>
|
|
|
|
<span class="fc bfc" id="L88" title="All 2 branches covered."> for(int i = 0; i < text.length(); i++) {</span>
|
|
<span class="fc" id="L89"> char c = text.charAt(i);</span>
|
|
<span class="fc bfc" id="L90" title="All 2 branches covered."> if(!Character.isLetterOrDigit(c)) {</span>
|
|
<span class="fc" id="L91"> result = false;</span>
|
|
<span class="fc" id="L92"> break;</span>
|
|
}
|
|
}
|
|
<span class="fc" id="L95"> return result;</span>
|
|
}
|
|
// private boolean checkOnlyLetter(String text) {
|
|
// boolean result = true;
|
|
//
|
|
// for(int i = 0; i < text.length(); i++) {
|
|
// char c = text.charAt(i);
|
|
// if(!Character.isLetter(c)) {
|
|
// result = false;
|
|
// break;
|
|
// }
|
|
// }
|
|
// return result;
|
|
// }
|
|
}
|
|
</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.13.202504020838</span></div></body></html> |