javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/ConvertTypes.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 03 Apr 2013 10:20:17 +0200
branchmodel
changeset 920 e2977ec1ef6e
parent 906 22358b42ec2a
child 934 19b4ddc302a6
permissions -rw-r--r--
Convert wild characters to something more sane
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.htmlpage;
    19 
    20 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    21 
    22 /**
    23  *
    24  * @author Jaroslav Tulach <jtulach@netbeans.org>
    25  */
    26 public final class ConvertTypes {
    27     ConvertTypes() {
    28     }
    29     
    30     public static String toString(Object object, String property) {
    31         Object ret = getProperty(object, property);
    32         return ret == null ? null : ret.toString();
    33     }
    34 
    35     public static double toDouble(Object object, String property) {
    36         Object ret = getProperty(object, property);
    37         return ret instanceof Number ? ((Number)ret).doubleValue() : Double.NaN;
    38     }
    39 
    40     public static int toInt(Object object, String property) {
    41         Object ret = getProperty(object, property);
    42         return ret instanceof Number ? ((Number)ret).intValue() : Integer.MIN_VALUE;
    43     }
    44 
    45     public static <T> T toModel(Class<T> modelClass, Object object, String property) {
    46         Object ret = getProperty(object, property);
    47         if (ret == null || modelClass.isInstance(ret)) {
    48             return modelClass.cast(ret);
    49         }
    50         throw new IllegalStateException("Value " + ret + " is not of type " + modelClass);
    51     }
    52     
    53     public static String toJSON(Object value) {
    54         if (value == null) {
    55             return "null";
    56         }
    57         if (value instanceof String) {
    58             return '"' + 
    59                 ((String)value).
    60                     replace("\"", "\\\"").
    61                     replace("\n", "\\n").
    62                     replace("\r", "\\r").
    63                     replace("\t", "\\t")
    64                 + '"';
    65         }
    66         return value.toString();
    67     }
    68     
    69     @JavaScriptBody(args = { "object", "property" },
    70         body = "if (property === null) return object;\n"
    71         + "var p = object[property]; return p ? p : null;"
    72     )
    73     private static Object getProperty(Object object, String property) {
    74         return null;
    75     }
    76 }