net.sf.mpxj.primavera.MapRow Maven / Gradle / Ivy
/*
* file: MapRow.java
* author: Jon Iles
* copyright: (c) Packwood Software 2010
* date: 22/03/2010
*/
/*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation; either version 2.1 of the License, or (at your
* option) any later version.
*
* This library 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 Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/
package net.sf.mpxj.primavera;
import java.util.Date;
import java.util.Map;
import java.util.UUID;
import net.sf.mpxj.Duration;
import net.sf.mpxj.TimeUnit;
import net.sf.mpxj.common.BooleanHelper;
import net.sf.mpxj.common.NumberHelper;
/**
* Implementation of the Row interface, wrapping a Map.
*/
class MapRow implements Row
{
/**
* Constructor.
*
* @param map map to be wrapped by this instance
*/
public MapRow(Map map)
{
m_map = map;
}
/**
* {@inheritDoc}
*/
@Override public final String getString(String name)
{
Object value = getObject(name);
String result;
if (value == null)
{
result = null;
}
else
{
if (value instanceof byte[])
{
result = new String((byte[]) value);
}
else
{
result = value.toString();
}
}
return result;
}
/**
* {@inheritDoc}
*/
@Override public final Integer getInteger(String name)
{
Object result = getObject(name);
if (result != null)
{
if (result instanceof Integer == false)
{
result = Integer.valueOf(((Number) result).intValue());
}
}
return ((Integer) result);
}
/**
* {@inheritDoc}
*/
@Override public final Double getDouble(String name)
{
Object result = getObject(name);
if (result != null)
{
if (result instanceof Double == false)
{
result = Double.valueOf(((Number) result).doubleValue());
}
}
return ((Double) result);
}
/**
* {@inheritDoc}
*/
@Override public final boolean getBoolean(String name)
{
boolean result = false;
Object value = getObject(name);
if (value != null)
{
if (value instanceof Boolean)
{
result = BooleanHelper.getBoolean((Boolean) value);
}
else
{
if (value instanceof Number)
{
// generally all non-zero numbers are treated as truthy
result = ((Number) value).doubleValue() != 0.0;
}
else
{
if (value instanceof String)
{
result = parseBoolean((String) value);
}
}
}
}
return result;
}
/**
* {@inheritDoc}
*/
@Override public final int getInt(String name)
{
return (NumberHelper.getInt((Number) getObject(name)));
}
/**
* {@inheritDoc}
*/
@Override public final Date getDate(String name)
{
return ((Date) getObject(name));
}
/**
* {@inheritDoc}
*/
@Override public final Duration getDuration(String name)
{
return (Duration.getInstance(NumberHelper.getDouble(getDouble(name)), TimeUnit.HOURS));
}
/**
* {@inheritDoc}
*/
@Override public final UUID getUUID(String name)
{
return DatatypeConverter.parseUUID(getString(name));
}
/**
* Retrieve a value from the map.
*
* @param name column name
* @return column value
*/
private final Object getObject(String name)
{
return m_map.get(name);
}
/**
* Parse a string representation of a Boolean value.
* XER files sometimes have "N" and "Y" to indicate boolean
*
* @param value string representation
* @return Boolean value
*/
private final boolean parseBoolean(String value)
{
return value != null && (value.equalsIgnoreCase("true") || value.equalsIgnoreCase("y") || value.equalsIgnoreCase("yes"));
}
protected Map m_map;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy