added XmlIntervalAdapter

This commit is contained in:
Sebastian Sdorra
2011-03-12 12:03:21 +01:00
parent 0fc52ec104
commit 5ef764d1db
4 changed files with 163 additions and 1 deletions

View File

@@ -112,6 +112,66 @@ public class Util
return result;
}
/**
* Method description
*
*
* @param time
*
* @return
*/
public static String convertTime(long time)
{
String suffix = "ms";
if (time > 1000)
{
time /= 1000;
suffix = "s";
if (time > 60)
{
time /= 60;
suffix = "m";
if (time > 60)
{
time /= 60;
suffix = "h";
}
}
}
return time + suffix;
}
/**
* Method description
*
*
* @param timeString
*
* @return
*/
public static long convertTime(String timeString)
{
char suffix = timeString.charAt(timeString.length() - 1);
long time = Long.parseLong(timeString.substring(0,
timeString.length() - 1));
switch (suffix)
{
case 'h' :
time *= 60;
case 'm' :
time *= 60;
case 's' :
time *= 1000;
}
return time;
}
/**
* Method description
*

View File

@@ -0,0 +1,82 @@
/**
* Copyright (c) 2010, Sebastian Sdorra
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of SCM-Manager; nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* http://bitbucket.org/sdorra/scm-manager
*
*/
package sonia.scm.xml;
//~--- non-JDK imports --------------------------------------------------------
import sonia.scm.util.Util;
//~--- JDK imports ------------------------------------------------------------
import javax.xml.bind.annotation.adapters.XmlAdapter;
/**
*
* @author Sebastian Sdorra
*/
public class XmlIntervalAdapter extends XmlAdapter<String, Long>
{
/**
* Method description
*
*
* @param longValue
*
* @return
*
* @throws Exception
*/
@Override
public String marshal(Long longValue) throws Exception
{
return Util.convertTime(longValue);
}
/**
* Method description
*
*
* @param stringValue
*
* @return
*
* @throws Exception
*/
@Override
public Long unmarshal(String stringValue) throws Exception
{
return Util.convertTime(stringValue);
}
}