net.sourceforge.javadpkg.impl.ChangeLogUrgencyParserImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dpkg Show documentation
Show all versions of dpkg Show documentation
The library for reading and writing Debian Packages.
/*
* dpkg - Debian Package library and the Debian Package Maven plugin
* (c) Copyright 2016 Gerrit Hohl
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package net.sourceforge.javadpkg.impl;
import java.util.Map;
import java.util.TreeMap;
import net.sourceforge.javadpkg.ChangeLogUrgency;
import net.sourceforge.javadpkg.ChangeLogUrgencyParser;
import net.sourceforge.javadpkg.Context;
import net.sourceforge.javadpkg.ParseException;
/**
*
* A {@link ChangeLogUrgencyParser} implementation.
*
*
* @author Gerrit Hohl ([email protected])
* @version 1.0, 04.05.2016 by Gerrit Hohl
*/
public class ChangeLogUrgencyParserImpl implements ChangeLogUrgencyParser {
/** The urgency. */
private Map urgency;
/**
*
* Creates a parser.
*
*/
public ChangeLogUrgencyParserImpl() {
super();
this.urgency = new TreeMap<>();
this.addUrgency("low");
this.addUrgency("medium");
this.addUrgency("high");
this.addUrgency("emergency");
this.addUrgency("critical");
}
/**
*
* Adds an urgency.
*
*
* @param text
* The text.
*/
private void addUrgency(String text) {
this.urgency.put(text.toLowerCase(), new ChangeLogUrgencyImpl(text));
}
@Override
public ChangeLogUrgency parseChangeLogUrgency(String value, Context context) throws ParseException {
ChangeLogUrgency urgency;
if (value == null)
throw new IllegalArgumentException("Argument value is null.");
if (context == null)
throw new IllegalArgumentException("Argument context is null.");
urgency = this.urgency.get(value.toLowerCase());
if (urgency == null) {
urgency = new ChangeLogUrgencyImpl(value);
context.addWarning(new ChangeLogUrgencyUnsupportedWarning(value));
}
return urgency;
}
/* **********************************************************************
* **********************************************************************
* **********************************************************************
* **********************************************************************
* **********************************************************************
*/
/**
*
* The {@link ChangeLogUrgency} implementation of this clas.
*
*
* @author Gerrit Hohl ([email protected])
* @version 1.0, 06.05.2016 by Gerrit Hohl
*/
private class ChangeLogUrgencyImpl implements ChangeLogUrgency {
/** The text. */
private String text;
/**
*
* Creates an urgency.
*
*
* @param text
* The text.
*/
public ChangeLogUrgencyImpl(String text) {
super();
this.text = text;
}
@Override
public String getText() {
return this.text;
}
}
}