Mercurial Hosting > luan
view core/src/luan/Luan.java @ 531:f99c79b0b426
change LuanException.getFullMessage() to not require LuanState
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 27 May 2015 22:01:40 -0600 |
parents | 0dfc01d8d42d |
children | 6cc2f047019b |
line wrap: on
line source
package luan; import java.util.List; import luan.modules.BasicLuan; public final class Luan { public static void main(String[] args) throws LuanException { LuanState luan = LuanState.newInstance(); LuanFunction standalone = (LuanFunction)BasicLuan.load_file(luan,"classpath:luan/cmd_line.luan",null); luan.call(standalone,args); } public static Object first(Object obj) { if( !(obj instanceof Object[]) ) return obj; Object[] a = (Object[])obj; return a.length==0 ? null : a[0]; } public static Object[] array(Object obj) { return obj instanceof Object[] ? (Object[])obj : new Object[]{obj}; } public static String type(Object obj) { if( obj == null ) return "nil"; if( obj instanceof String ) return "string"; if( obj instanceof Boolean ) return "boolean"; if( obj instanceof Number ) return "number"; if( obj instanceof LuanTable ) return "table"; if( obj instanceof LuanFunction ) return "function"; if( obj instanceof byte[] ) return "binary"; return "java"; } public static String toString(Number n) { if( n instanceof Integer ) return n.toString(); int i = n.intValue(); if( i == n.doubleValue() ) return Integer.toString(i); String s = n.toString(); int iE = s.indexOf('E'); String ending = null; if( iE != -1 ) { ending = s.substring(iE); s = s.substring(0,iE); } if( s.endsWith(".0") ) s = s.substring(0,s.length()-2); if( ending != null ) s += ending; return s; } public static Integer asInteger(Object obj) { if( obj instanceof Integer ) return (Integer)obj; if( !(obj instanceof Number) ) return null; Number n = (Number)obj; int i = n.intValue(); return i==n.doubleValue() ? Integer.valueOf(i) : null; } public static String stringEncode(String s) { s = s.replace("\\","\\\\"); s = s.replace("\u0007","\\a"); s = s.replace("\b","\\b"); s = s.replace("\f","\\f"); s = s.replace("\n","\\n"); s = s.replace("\r","\\r"); s = s.replace("\t","\\t"); s = s.replace("\u000b","\\v"); s = s.replace("\"","\\\""); s = s.replace("\'","\\'"); return s; } private Luan() {} // never }