/[svn]/jlscp/trunk/src/org/linuxsampler/lscp/Client.java
ViewVC logotype

Diff of /jlscp/trunk/src/org/linuxsampler/lscp/Client.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1345 by iliev, Mon Sep 10 21:26:10 2007 UTC revision 1346 by iliev, Thu Sep 13 22:02:03 2007 UTC
# Line 542  public class Client { Line 542  public class Client {
542                          if(s.startsWith("NAME ")) {                          if(s.startsWith("NAME ")) {
543                                  String[] list;                                  String[] list;
544                                  try {                                  try {
545                                          list = parseQuotedStringList(s.substring("NAME ".length()), ' ');                                          s = s.substring("NAME ".length());
546                                            list = parseEscapedStringList(s, ' ');
547                                          if(list.length != 2) throw new LscpException();                                          if(list.length != 2) throw new LscpException();
548                                            list[1] = toNonEscapedText(list[1]);
549                                          e = new InstrumentsDbEvent(this, list[0], list[1]);                                          e = new InstrumentsDbEvent(this, list[0], list[1]);
550                                          for(InstrumentsDbListener l : llID) {                                          for(InstrumentsDbListener l : llID) {
551                                                  l.directoryNameChanged(e);                                                  l.directoryNameChanged(e);
# Line 569  public class Client { Line 571  public class Client {
571                          if(s.startsWith("NAME ")) {                          if(s.startsWith("NAME ")) {
572                                  String[] list;                                  String[] list;
573                                  try {                                  try {
574                                          list = parseQuotedStringList(s.substring("NAME ".length()), ' ');                                          s = s.substring("NAME ".length());
575                                            list = parseEscapedStringList(s, ' ');
576                                          if(list.length != 2) throw new LscpException();                                          if(list.length != 2) throw new LscpException();
577                                            list[1] = toNonEscapedText(list[1]);
578                                          e = new InstrumentsDbEvent(this, list[0], list[1]);                                          e = new InstrumentsDbEvent(this, list[0], list[1]);
579                                          for(InstrumentsDbListener l : llID) {                                          for(InstrumentsDbListener l : llID) {
580                                                  l.instrumentNameChanged(e);                                                  l.instrumentNameChanged(e);
# Line 2857  public class Client { Line 2861  public class Client {
2861          loadInstrument(String filename, int instrIdx, int samplerChn, boolean nonModal)          loadInstrument(String filename, int instrIdx, int samplerChn, boolean nonModal)
2862                                                  throws IOException, LscpException, LSException {                                                  throws IOException, LscpException, LSException {
2863                                    
2864                  filename = getEscapedString(filename);                  filename = toEscapedString(filename);
2865                  String cmd = nonModal ? "LOAD INSTRUMENT NON_MODAL " : "LOAD INSTRUMENT ";                  String cmd = nonModal ? "LOAD INSTRUMENT NON_MODAL " : "LOAD INSTRUMENT ";
2866                  String args = '\'' + filename + "' " + instrIdx + ' ' + samplerChn;                  String args = '\'' + filename + "' " + instrIdx + ' ' + samplerChn;
2867                                    
# Line 3753  public class Client { Line 3757  public class Client {
3757                    
3758          /**          /**
3759           * Adds the specified directory to the instruments database.           * Adds the specified directory to the instruments database.
3760           * @param dir The absolute path name of the directory to add.           * @param dir The absolute (escaped) path name of the directory to add.
3761           * @throws IOException If some I/O error occurs.           * @throws IOException If some I/O error occurs.
3762           * @throws LSException If the creation of the directory failed.           * @throws LSException If the creation of the directory failed.
3763           * @throws LscpException If LSCP protocol corruption occurs.           * @throws LscpException If LSCP protocol corruption occurs.
# Line 3769  public class Client { Line 3773  public class Client {
3773                    
3774          /**          /**
3775           * Removes the specified directory from the instruments database.           * Removes the specified directory from the instruments database.
3776           * @param dir The absolute path name of the directory to remove.           * @param dir The absolute (escaped) path name of the directory to remove.
3777           * @throws IOException If some I/O error occurs.           * @throws IOException If some I/O error occurs.
3778           * @throws LscpException If LSCP protocol corruption occurs.           * @throws LscpException If LSCP protocol corruption occurs.
3779           * @throws LSException If the specified directory is not           * @throws LSException If the specified directory is not
# Line 3804  public class Client { Line 3808  public class Client {
3808                    
3809          /**          /**
3810           * Removes the specified directories from the instruments database.           * Removes the specified directories from the instruments database.
3811           * @param dirs The absolute path names of the directories to remove.           * @param dirs The absolute (escaped) path names of the directories to remove.
3812           * @param force If <code>true</code> forces the removal of non-empty           * @param force If <code>true</code> forces the removal of non-empty
3813           * directories.           * directories.
3814           * @throws IOException If some I/O error occurs.           * @throws IOException If some I/O error occurs.
# Line 3879  public class Client { Line 3883  public class Client {
3883                  out.writeLine("LIST DB_INSTRUMENT_DIRECTORIES '" + dir + "'");                  out.writeLine("LIST DB_INSTRUMENT_DIRECTORIES '" + dir + "'");
3884                  if(getPrintOnlyMode()) return null;                  if(getPrintOnlyMode()) return null;
3885                                    
3886                  return parseQuotedStringList(getSingleLineResultSet().getResult());                  String[] names = parseEscapedStringList(getSingleLineResultSet().getResult());
3887                    for(int i = 0; i < names.length; i++) {
3888                            names[i] = toNonEscapedText(names[i]);
3889                    }
3890                    return names;
3891          }          }
3892                    
3893          /**          /**
# Line 3901  public class Client { Line 3909  public class Client {
3909                  DbDirectoryInfo info = new DbDirectoryInfo(rs.getMultiLineResult());                  DbDirectoryInfo info = new DbDirectoryInfo(rs.getMultiLineResult());
3910                  if(dir.equals("/")) {                  if(dir.equals("/")) {
3911                          info.setName("/");                          info.setName("/");
3912                  } else if(dir.length() > 1 && dir.charAt(dir.length() - 1) == '/') {                  } else {
3913                          dir = dir.substring(0, dir.length() - 1);                          dir = removeEndingFileSeparator(dir);
                 }  
                 int i = dir.lastIndexOf('/');  
                 if(i != -1 && i < dir.length() - 1) {  
                         info.setName(dir.substring(i + 1));  
                         if(i == 0) info.setParentDirectoryPath("/");  
                         else info.setParentDirectoryPath(dir.substring(0, i));  
3914                  }                  }
3915                    String s = getFileName(dir);
3916                    if(s != null) info.setName(toNonEscapedFileName(s));
3917                    s = getParentDirectory(dir);
3918                    if(s != null) info.setParentDirectoryPath(s);
3919                                    
3920                  return info;                  return info;
3921          }          }
# Line 3926  public class Client { Line 3932  public class Client {
3932          public synchronized DbDirectoryInfo[]          public synchronized DbDirectoryInfo[]
3933          getDbDirectories(String dir) throws IOException, LscpException, LSException {          getDbDirectories(String dir) throws IOException, LscpException, LSException {
3934                  String[] dirS = getDbDirectoryNames(dir);                  String[] dirS = getDbDirectoryNames(dir);
3935                  if(dir.charAt(dir.length() - 1) != '/') dir += "/";                  if(!hasEndingFileSeparator(dir)) dir += "/";
3936                  DbDirectoryInfo[] infoS = new DbDirectoryInfo[dirS.length];                  DbDirectoryInfo[] infoS = new DbDirectoryInfo[dirS.length];
3937                  for(int i = 0; i < dirS.length; i++) infoS[i] = getDbDirectoryInfo(dir + dirS[i]);                  for(int i = 0; i < dirS.length; i++) {
3938                            infoS[i] = getDbDirectoryInfo(dir + toEscapedFileName(dirS[i]));
3939                    }
3940                  return infoS;                  return infoS;
3941          }          }
3942                    
# Line 3993  public class Client { Line 4001  public class Client {
4001          public synchronized void          public synchronized void
4002          renameDbDirectory(String dir, String name) throws IOException, LSException, LscpException {          renameDbDirectory(String dir, String name) throws IOException, LSException, LscpException {
4003                  verifyConnection();                  verifyConnection();
4004                    name = toEscapedString(name);
4005                  out.writeLine("SET DB_INSTRUMENT_DIRECTORY NAME '" + dir + "' '" + name + "'");                  out.writeLine("SET DB_INSTRUMENT_DIRECTORY NAME '" + dir + "' '" + name + "'");
4006                  if(getPrintOnlyMode()) return;                  if(getPrintOnlyMode()) return;
4007                                    
# Line 4085  public class Client { Line 4094  public class Client {
4094                                    
4095                  verifyConnection();                  verifyConnection();
4096                  String s = "SET DB_INSTRUMENT_DIRECTORY DESCRIPTION '";                  String s = "SET DB_INSTRUMENT_DIRECTORY DESCRIPTION '";
4097                  out.writeLine(s + dir + "' '" + desc + "'");                  out.writeLine(s + dir + "' '" + toEscapedString(desc) + "'");
4098                  if(getPrintOnlyMode()) return;                  if(getPrintOnlyMode()) return;
4099                                    
4100                  ResultSet rs = getEmptyResultSet();                  ResultSet rs = getEmptyResultSet();
# Line 4134  public class Client { Line 4143  public class Client {
4143                  verifyConnection();                  verifyConnection();
4144                  String s = "ADD DB_INSTRUMENTS";                  String s = "ADD DB_INSTRUMENTS";
4145                  if(background) s += " NON_MODAL";                  if(background) s += " NON_MODAL";
4146                  s += " '" + dbDir + "' '" + filePath + "' ";                  s += " '" + dbDir + "' '" + toEscapedString(filePath) + "' ";
4147                  out.writeLine(s + String.valueOf(instrIndex));                  out.writeLine(s + String.valueOf(instrIndex));
4148                  if(getPrintOnlyMode()) return -1;                  if(getPrintOnlyMode()) return -1;
4149                                    
# Line 4181  public class Client { Line 4190  public class Client {
4190                  verifyConnection();                  verifyConnection();
4191                  String s = "ADD DB_INSTRUMENTS";                  String s = "ADD DB_INSTRUMENTS";
4192                  if(background) s += " NON_MODAL";                  if(background) s += " NON_MODAL";
4193                  out.writeLine(s + " '" + dbDir + "' '" + filePath + "'");                  out.writeLine(s + " '" + dbDir + "' '" + toEscapedString(filePath) + "'");
4194                  if(getPrintOnlyMode()) return -1;                  if(getPrintOnlyMode()) return -1;
4195                                    
4196                  ResultSet rs = getEmptyResultSet();                  ResultSet rs = getEmptyResultSet();
# Line 4264  public class Client { Line 4273  public class Client {
4273                                  break;                                  break;
4274                  }                  }
4275                                    
4276                  sb.append(" '").append(dbDir).append("' '").append(fsDir).append("'");                  sb.append(" '").append(dbDir).append("' '");
4277                    sb.append(toEscapedString(fsDir)).append("'");
4278                  out.writeLine(sb.toString());                  out.writeLine(sb.toString());
4279                  if(getPrintOnlyMode()) return -1;                  if(getPrintOnlyMode()) return -1;
4280                                    
# Line 4360  public class Client { Line 4370  public class Client {
4370                  out.writeLine("LIST DB_INSTRUMENTS '" + dir + "'");                  out.writeLine("LIST DB_INSTRUMENTS '" + dir + "'");
4371                  if(getPrintOnlyMode()) return null;                  if(getPrintOnlyMode()) return null;
4372                                    
4373                  return parseQuotedStringList(getSingleLineResultSet().getResult());                  String[] names = parseEscapedStringList(getSingleLineResultSet().getResult());
4374                    for(int i = 0; i < names.length; i++) {
4375                            names[i] = toNonEscapedText(names[i]);
4376                    }
4377                    return names;
4378          }          }
4379                    
4380          /**          /**
# Line 4380  public class Client { Line 4394  public class Client {
4394                                    
4395                  ResultSet rs = getMultiLineResultSet();                  ResultSet rs = getMultiLineResultSet();
4396                  DbInstrumentInfo info = new DbInstrumentInfo(rs.getMultiLineResult());                  DbInstrumentInfo info = new DbInstrumentInfo(rs.getMultiLineResult());
4397                  int i = instr.lastIndexOf('/');                  String s = getParentDirectory(instr);
4398                  if(i != -1 && i < instr.length() - 1) {                  if(s != null) info.setDirectoryPath(s);
4399                          info.setName(instr.substring(i + 1));                  s = getFileName(instr);
4400                          if(i == 0) info.setDirectoryPath("/");                  if(s != null) info.setName(toNonEscapedFileName(s));
                         else info.setDirectoryPath(instr.substring(0, i));  
                 }  
4401                                    
4402                  return info;                  return info;
4403          }          }
# Line 4402  public class Client { Line 4414  public class Client {
4414          public synchronized DbInstrumentInfo[]          public synchronized DbInstrumentInfo[]
4415          getDbInstruments(String dir) throws IOException, LscpException, LSException {          getDbInstruments(String dir) throws IOException, LscpException, LSException {
4416                  String[] instrS = getDbInstrumentNames(dir);                  String[] instrS = getDbInstrumentNames(dir);
4417                  if(dir.charAt(dir.length() - 1) != '/') dir += "/";                  if(!hasEndingFileSeparator(dir)) dir += "/";
4418                                    
4419                  DbInstrumentInfo[] infoS = new DbInstrumentInfo[instrS.length];                  DbInstrumentInfo[] infoS = new DbInstrumentInfo[instrS.length];
4420                  for(int i = 0; i < instrS.length; i++) {                  for(int i = 0; i < instrS.length; i++) {
4421                          infoS[i] = getDbInstrumentInfo(dir + instrS[i]);                          infoS[i] = getDbInstrumentInfo(dir + toEscapedFileName(instrS[i]));
4422                  }                  }
4423                  return infoS;                  return infoS;
4424          }          }
# Line 4474  public class Client { Line 4486  public class Client {
4486                                  throws IOException, LSException, LscpException {                                  throws IOException, LSException, LscpException {
4487                                    
4488                  verifyConnection();                  verifyConnection();
4489                    name = toEscapedString(name);
4490                  out.writeLine("SET DB_INSTRUMENT NAME '" + instr + "' '" + name + "'");                  out.writeLine("SET DB_INSTRUMENT NAME '" + instr + "' '" + name + "'");
4491                  if(getPrintOnlyMode()) return;                  if(getPrintOnlyMode()) return;
4492                                    
# Line 4565  public class Client { Line 4578  public class Client {
4578                                  throws IOException, LSException, LscpException {                                  throws IOException, LSException, LscpException {
4579                                    
4580                  verifyConnection();                  verifyConnection();
4581                    desc = toEscapedString(desc);
4582                  out.writeLine("SET DB_INSTRUMENT DESCRIPTION '" + instr + "' '" + desc + "'");                  out.writeLine("SET DB_INSTRUMENT DESCRIPTION '" + instr + "' '" + desc + "'");
4583                  if(getPrintOnlyMode()) return;                  if(getPrintOnlyMode()) return;
4584                                    
# Line 4612  public class Client { Line 4626  public class Client {
4626                  sb.append(" '").append(dir).append("'");                  sb.append(" '").append(dir).append("'");
4627                                    
4628                  if(query.name != null && query.name.length() > 0) {                  if(query.name != null && query.name.length() > 0) {
4629                          sb.append(" NAME='").append(query.name).append("'");                          sb.append(" NAME='").append(toEscapedString(query.name)).append("'");
4630                  }                  }
4631                                    
4632                  String s = query.getCreatedAfter();                  String s = query.getCreatedAfter();
# Line 4636  public class Client { Line 4650  public class Client {
4650                  }                  }
4651                                    
4652                  if(query.description != null && query.description.length() > 0) {                  if(query.description != null && query.description.length() > 0) {
4653                          sb.append(" DESCRIPTION='").append(query.description).append("'");                          sb.append(" DESCRIPTION='");
4654                            sb.append(toEscapedString(query.description)).append("'");
4655                  }                  }
4656                                    
4657                  out.writeLine(sb.toString());                  out.writeLine(sb.toString());
4658                  if(getPrintOnlyMode()) return null;                  if(getPrintOnlyMode()) return null;
4659                                    
4660                  String[] dirS = parseQuotedStringList(getSingleLineResultSet().getResult());                  String[] dirS = parseEscapedStringList(getSingleLineResultSet().getResult());
4661                                    
4662                  DbDirectoryInfo[] infoS = new DbDirectoryInfo[dirS.length];                  DbDirectoryInfo[] infoS = new DbDirectoryInfo[dirS.length];
4663                  for(int i = 0; i < dirS.length; i++) {                  for(int i = 0; i < dirS.length; i++) {
# Line 4692  public class Client { Line 4707  public class Client {
4707                  sb.append(" '").append(dir).append("'");                  sb.append(" '").append(dir).append("'");
4708                                    
4709                  if(query.name != null && query.name.length() > 0) {                  if(query.name != null && query.name.length() > 0) {
4710                          sb.append(" NAME='").append(query.name).append("'");                          sb.append(" NAME='").append(toEscapedString(query.name)).append("'");
4711                  }                  }
4712                                    
4713                  if(query.formatFamilies.size() > 0) {                  if(query.formatFamilies.size() > 0) {
# Line 4732  public class Client { Line 4747  public class Client {
4747                  }                  }
4748                                    
4749                  if(query.description != null && query.description.length() > 0) {                  if(query.description != null && query.description.length() > 0) {
4750                          sb.append(" DESCRIPTION='").append(query.description).append("'");                          sb.append(" DESCRIPTION='");
4751                            sb.append(toEscapedString(query.description)).append("'");
4752                  }                  }
4753                                    
4754                  if(query.instrumentType != DbSearchQuery.InstrumentType.BOTH) {                  if(query.instrumentType != DbSearchQuery.InstrumentType.BOTH) {
# Line 4745  public class Client { Line 4761  public class Client {
4761                  }                  }
4762                                    
4763                  if(query.product != null && query.product.length() > 0) {                  if(query.product != null && query.product.length() > 0) {
4764                          sb.append(" PRODUCT='").append(query.product).append("'");                          sb.append(" PRODUCT='").append(toEscapedString(query.product)).append("'");
4765                  }                  }
4766                                    
4767                  if(query.artists != null && query.artists.length() > 0) {                  if(query.artists != null && query.artists.length() > 0) {
4768                          sb.append(" ARTISTS='").append(query.artists).append("'");                          sb.append(" ARTISTS='").append(toEscapedString(query.artists)).append("'");
4769                  }                  }
4770                                    
4771                  if(query.keywords != null && query.keywords.length() > 0) {                  if(query.keywords != null && query.keywords.length() > 0) {
4772                          sb.append(" KEYWORDS='").append(query.keywords).append("'");                          sb.append(" KEYWORDS='");
4773                            sb.append(toEscapedString(query.keywords)).append("'");
4774                  }                  }
4775                                    
4776                  out.writeLine(sb.toString());                  out.writeLine(sb.toString());
4777                  if(getPrintOnlyMode()) return null;                  if(getPrintOnlyMode()) return null;
4778                                    
4779                  String[] instrS = parseQuotedStringList(getSingleLineResultSet().getResult());                  String[] instrS = parseEscapedStringList(getSingleLineResultSet().getResult());
4780                                    
4781                  DbInstrumentInfo[] infoS = new DbInstrumentInfo[instrS.length];                  DbInstrumentInfo[] infoS = new DbInstrumentInfo[instrS.length];
4782                  for(int i = 0; i < instrS.length; i++) {                  for(int i = 0; i < instrS.length; i++) {

Legend:
Removed from v.1345  
changed lines
  Added in v.1346

  ViewVC Help
Powered by ViewVC