/* * jlscp - a java LinuxSampler control protocol API * * Copyright (C) 2005-2006 Grigor Iliev * * This file is part of jlscp. * * jlscp is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 * as published by the Free Software Foundation. * * jlscp 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with jlscp; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */ package org.linuxsampler.lscp; /** * This class implements the Parameter<Boolean[]> interface. * @author Grigor Iliev */ public class BoolListParameter extends AbstractParameter { private boolean[] val = null; private boolean[] dflt = null; private boolean[] possibilities = null; /** Creates a new instance of BoolListParameter */ public BoolListParameter() { setType(ParameterType.BOOL_LIST); setMultiplicity(true); } /** * Creates a BoolListParameter instance with the specified name. * @param name The parameter name. */ public BoolListParameter(String name) { this(name, null); } /** * Creates a BoolListParameter instance with the specified name and value. * @param name The parameter name. * @param value The parameter value. */ public BoolListParameter(String name, Boolean[] value) { this(); setName(name); setValue(value); } /** * Creates a new instance of BoolListParameter * and parses the specified lines. * @param lnS A String array with lines to be parsed. * @throws LscpException If the parse fail. */ protected BoolListParameter(String[] lnS) throws LscpException { this(); parseLines(lnS); } /** * Parses a line of text. * @param s The string to be parsed. * @return true if the line has been processed, false otherwise. * @throws LscpException If some error occurs. */ public boolean parse(String s) throws LscpException { if(super.parse(s)) return true; else if(s.startsWith("DEFAULT: ")) { s = s.substring("DEFAULT: ".length(), s.length()); setDefault(Parser.parseBoolList(s)); return true; } else if(s.startsWith("POSSIBILITIES: ")) { // Possible problems here??? s = s.substring("POSSIBILITIES: ".length(), s.length()); String[] sS = Parser.parseStringList(s); Boolean[][] b2S = new Boolean[sS.length][]; for(int i = 0; i < sS.length; i++) b2S[i] = Parser.parseBoolList(sS[i]); setPossibilities(b2S); return true; } return false; } /** * Parses the specified character string and sets the value of this parameter * with the parsed result. * @param s A character string containing the value to be parsed. */ public void parseValue(String s) { setValue(Parser.parseBoolList(s)); } /** * Gets a character string representation of the parameter's value. * @return A character string representation of the parameter's value. */ public String getStringValue() { Boolean[] ar = getValue(); if(ar == null || ar.length == 0) return ""; StringBuffer sb = new StringBuffer(); sb.append(ar[0]); for(int i = 1; i < ar.length; i++) sb.append(',').append(ar[i]); return sb.toString(); } }