view core/src/luan/modules/TableLuan.java @ 407:7fd9f1b7b878

replace LuanPropertyTable with LuanPropertyMeta
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 29 Apr 2015 13:01:00 -0600
parents 899253043270
children 23b99a5039b5
line wrap: on
line source

package luan.modules;

import java.util.Comparator;
import java.util.List;
import java.util.ArrayList;
import java.util.Arrays;
import luan.Luan;
import luan.LuanState;
import luan.LuanTable;
import luan.LuanFunction;
import luan.LuanException;
import luan.LuanRuntimeException;
import luan.LuanMethod;
import luan.LuanPropertyMeta;


public final class TableLuan {

	public static String concat(LuanState luan,LuanTable list,String sep,Integer i,Integer j) throws LuanException {
		int first = i==null ? 1 : i;
		int last = j==null ? list.length() : j;
		StringBuilder buf = new StringBuilder();
		for( int k=first; k<=last; k++ ) {
			Object val = list.get(k);
			if( val==null )
				break;
			if( sep!=null && k > first )
				buf.append(sep);
			String s = Luan.asString(val);
			if( s==null )
				throw luan.exception( "invalid value ("+Luan.type(val)+") at index "+k+" in table for 'concat'" );
			buf.append(val);
		}
		return buf.toString();
	}

	public static void insert(LuanTable list,int pos,Object value){
		list.insert(pos,value);
	}

	public static Object remove(LuanTable list,int pos) {
		return list.remove(pos);
	}

	private static interface LessThan {
		public boolean isLessThan(Object o1,Object o2);
	}

	public static void sort(final LuanState luan,LuanTable list,final LuanFunction comp) throws LuanException {
		final LessThan lt;
		if( comp==null ) {
			lt = new LessThan() {
				public boolean isLessThan(Object o1,Object o2) {
					try {
						return luan.isLessThan(o1,o2);
					} catch(LuanException e) {
						throw new LuanRuntimeException(e);
					}
				}
			};
		} else {
			lt = new LessThan() {
				public boolean isLessThan(Object o1,Object o2) {
					try {
						return Luan.toBoolean(Luan.first(luan.call(comp,"comp-arg",new Object[]{o1,o2})));
					} catch(LuanException e) {
						throw new LuanRuntimeException(e);
					}
				}
			};
		}
		try {
			list.sort( new Comparator<Object>() {
				public int compare(Object o1,Object o2) {
					return lt.isLessThan(o1,o2) ? -1 : lt.isLessThan(o2,o1) ? 1 : 0;
				}
			} );
		} catch(LuanRuntimeException e) {
			throw (LuanException)e.getCause();
		}
	}

	public static LuanTable pack(Object... args) {
		LuanTable tbl = Luan.newTable();
		boolean hasNull = false;
		for( int i=0; i<args.length; i++ ) {
			Object v = args[i];
			if( v==null ) {
				hasNull = true;
			} else if( !hasNull ) {
				tbl.add(v);
			} else {
				tbl.put(i+1,v);
			}
		}
		tbl.put( "n", args.length );
		return tbl;
	}

	@LuanMethod public static Object[] unpack(LuanTable tbl,Integer iFrom,Integer iTo) {
		int from = iFrom!=null ? iFrom : 1;
		int to = iTo!=null ? iTo : tbl.length();
		List<Object> list = new ArrayList<Object>();
		for( int i=from; i<=to; i++ ) {
			list.add( tbl.get(i) );
		}
		return list.toArray();
	}

	public static LuanTable sub_list(LuanTable list,int from,int to) {
		return list.subList(from,to);
	}

	public static LuanTable clone(LuanTable tbl) {
		return tbl.cloneTable();
	}

	public static LuanTable new_property_table() {
		return LuanPropertyMeta.newInstance().newTable();
	}
}