Statistics
| Revision:

gvsig-tools / org.gvsig.tools / library / trunk / org.gvsig.tools / org.gvsig.tools.lib / src / main / java / org / gvsig / tools / dataTypes / impl / coercion / CoerceToLong.java @ 2650

History | View | Annotate | Download (3.7 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or modify it under
7
 * the terms of the GNU General Public License as published by the Free Software
8
 * Foundation; either version 2 of the License, or (at your option) any later
9
 * version.
10
 *
11
 * This program is distributed in the hope that it will be useful, but WITHOUT
12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14
 * details.
15
 *
16
 * You should have received a copy of the GNU General Public License along with
17
 * this program; if not, write to the Free Software Foundation, Inc., 51
18
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
 *
20
 * For any additional information, do not hesitate to contact us at info AT
21
 * gvsig.com, or visit our website www.gvsig.com.
22
 */
23
package org.gvsig.tools.dataTypes.impl.coercion;
24

    
25
import java.text.DecimalFormat;
26
import java.text.NumberFormat;
27
import java.text.ParsePosition;
28
import java.util.Date;
29
import org.apache.commons.lang3.BooleanUtils;
30
import org.gvsig.tools.dataTypes.AbstractCoercion;
31
import org.gvsig.tools.dataTypes.CoercionException;
32
import org.gvsig.tools.dataTypes.CoercionContext;
33
import org.gvsig.tools.dataTypes.CoercionContextLocale;
34
import org.gvsig.tools.dataTypes.DataTypeUtils;
35

    
36
@SuppressWarnings("UseSpecificCatch")
37
public class CoerceToLong extends AbstractCoercion {
38

    
39
    @Override
40
    public Object coerce(Object value, CoercionContext context) throws CoercionException {
41
        if (value == null || value instanceof Long) {
42
            return value;
43
        }
44
        CoercionContextLocale theContext;
45
        if (context instanceof CoercionContextLocale) {
46
            theContext = (CoercionContextLocale) context;
47
        } else {
48
            theContext = DataTypeUtils.coerceContextDefaultLocale();
49
        }
50
        Number num;
51
        try {
52
            if (value instanceof Number) {
53
                num = (Number) value;
54

    
55
            } else if (value instanceof Boolean) {
56
                num = ((boolean) value ? 1l : 0l);
57

    
58
            } else if (value instanceof Date) {
59
                num = ((Date) value).getTime();
60

    
61
            } else {
62
                String s = value.toString();
63
                if (s == null) {
64
                    return null;
65
                }
66
                s = s.trim().toLowerCase();
67
                if (s.length() == 0) {
68
                    return null;
69
                }
70
                if (s.startsWith("0x")) {
71
                    num = Long.valueOf(s.substring(2), 16);
72

    
73
                } else {
74
                    Boolean bool = BooleanUtils.toBooleanObject(s);
75
                    if (bool != null) {
76
                        num = ((boolean) bool ? 1l : 0l);
77
                    } else {
78
                        if (s.startsWith("+")) {
79
                            s = s.substring(1);
80
                        }
81
                        ParsePosition p = new ParsePosition(0);
82
                        DecimalFormat nf = (DecimalFormat) NumberFormat.getInstance(theContext.locale());
83
                        num = nf.parse(s, p);
84
                        if (p.getErrorIndex() > 0 || p.getIndex() < s.length()) {
85
                            throw new CoercionException("Can't coerce '" + s + "' to long with locale " + theContext.locale().getLanguage() + "(error index " + p.getErrorIndex() + ", index " + p.getIndex() + ").");
86
                        }
87
                    }
88
                }
89
            }
90
            return num.longValue();
91
        } catch (Exception e) {
92
            throw new CoercionException("Can't coerce '" + value.toString() + "' to long.", e);
93
        }
94
    }
95
}