/[svn]/linuxsampler/trunk/src/db/InstrumentsDb.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/db/InstrumentsDb.cpp

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

revision 1200 by iliev, Thu May 24 14:04:18 2007 UTC revision 1781 by iliev, Mon Sep 29 18:21:21 2008 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2   *                                                                         *   *                                                                         *
3   *   Copyright (C) 2007 Grigor Iliev                                       *   *   Copyright (C) 2007, 2008 Grigor Iliev                                 *
4   *                                                                         *   *                                                                         *
5   *   This program is free software; you can redistribute it and/or modify  *   *   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  *   *   it under the terms of the GNU General Public License as published by  *
# Line 20  Line 20 
20    
21  #include "InstrumentsDb.h"  #include "InstrumentsDb.h"
22    
23  #if HAVE_SQLITE3  #include "../common/File.h"
24    #include "../common/global_private.h"
25    
26  #include <iostream>  #include <iostream>
27  #include <sstream>  #include <sstream>
28  #include <vector>  #include <vector>
 #include <dirent.h>  
29  #include <errno.h>  #include <errno.h>
30  #include <fnmatch.h>  #include <fnmatch.h>
31    
# Line 33  Line 33 
33    
34  namespace LinuxSampler {  namespace LinuxSampler {
35    
36      InstrumentsDb* InstrumentsDb::pInstrumentsDb = new InstrumentsDb;      InstrumentsDb InstrumentsDb::instance;
37    
38      void InstrumentsDb::CreateInstrumentsDb(String File) {      void InstrumentsDb::CreateInstrumentsDb(String FilePath) {
39          struct stat statBuf;          File f = File(FilePath);
40          int res = stat(File.c_str(), &statBuf);          if (f.Exist()) {
41          if (!res) {              throw Exception("File exists: " + FilePath);
             throw Exception("File exists: " + File);  
42          }          }
43                    
44          GetInstrumentsDb()->SetDbFile(File);          GetInstrumentsDb()->SetDbFile(FilePath);
45    
46          String sql =          String sql =
47              "  CREATE TABLE instr_dirs (                                      "              "  CREATE TABLE instr_dirs (                                      "
# Line 58  namespace LinuxSampler { Line 57  namespace LinuxSampler {
57                    
58          GetInstrumentsDb()->ExecSql(sql);          GetInstrumentsDb()->ExecSql(sql);
59    
60          sql = "INSERT INTO instr_dirs (dir_id, parent_dir_id, dir_name) VALUES (0, 0, '/');";          sql = "INSERT INTO instr_dirs (dir_id, parent_dir_id, dir_name) VALUES (0, -2, '/');";
61          GetInstrumentsDb()->ExecSql(sql);          GetInstrumentsDb()->ExecSql(sql);
62    
63          sql =          sql =
# Line 95  namespace LinuxSampler { Line 94  namespace LinuxSampler {
94          if (db != NULL) sqlite3_close(db);          if (db != NULL) sqlite3_close(db);
95      }      }
96            
     void InstrumentsDb::Destroy() {  
         if (pInstrumentsDb != NULL) {  
             delete pInstrumentsDb;  
             pInstrumentsDb = NULL;  
         }  
     }  
   
97      void InstrumentsDb::AddInstrumentsDbListener(InstrumentsDb::Listener* l) {      void InstrumentsDb::AddInstrumentsDbListener(InstrumentsDb::Listener* l) {
98          llInstrumentsDbListeners.AddListener(l);          llInstrumentsDbListeners.AddListener(l);
99      }      }
# Line 111  namespace LinuxSampler { Line 103  namespace LinuxSampler {
103      }      }
104            
105      InstrumentsDb* InstrumentsDb::GetInstrumentsDb() {      InstrumentsDb* InstrumentsDb::GetInstrumentsDb() {
106          return pInstrumentsDb;          return &instance;
107      }      }
108            
109      void InstrumentsDb::SetDbFile(String File) {      void InstrumentsDb::SetDbFile(String File) {
# Line 127  namespace LinuxSampler { Line 119  namespace LinuxSampler {
119      sqlite3* InstrumentsDb::GetDb() {      sqlite3* InstrumentsDb::GetDb() {
120          if ( db != NULL) return db;          if ( db != NULL) return db;
121    
122          if (DbFile.empty()) DbFile = "/var/lib/linuxsampler/instruments.db";          if (DbFile.empty()) DbFile = CONFIG_DEFAULT_INSTRUMENTS_DB_LOCATION;
123                    #if defined(__APPLE__)  /* 20071224 Toshi Nagata  */
124                    if (DbFile.find("~") == 0)
125                            DbFile.replace(0, 1, getenv("HOME"));
126                    #endif
127          int rc = sqlite3_open(DbFile.c_str(), &db);          int rc = sqlite3_open(DbFile.c_str(), &db);
128          if (rc) {          if (rc) {
129              sqlite3_close(db);              sqlite3_close(db);
# Line 136  namespace LinuxSampler { Line 132  namespace LinuxSampler {
132          }          }
133          rc = sqlite3_create_function(db, "regexp", 2, SQLITE_UTF8, NULL, Regexp, NULL, NULL);          rc = sqlite3_create_function(db, "regexp", 2, SQLITE_UTF8, NULL, Regexp, NULL, NULL);
134          if (rc) { throw Exception("Failed to add user function for handling regular expressions."); }          if (rc) { throw Exception("Failed to add user function for handling regular expressions."); }
135    
136            // TODO: remove this in the next version
137            try {
138                int i = ExecSqlInt("SELECT parent_dir_id FROM instr_dirs WHERE dir_id=0");
139                // The parent ID of the root directory should be -2 now.
140                if(i != -2) ExecSql("UPDATE instr_dirs SET parent_dir_id=-2 WHERE dir_id=0");
141            } catch(Exception e) { }
142            ////////////////////////////////////////
143                    
144          return db;          return db;
145      }      }
# Line 149  namespace LinuxSampler { Line 153  namespace LinuxSampler {
153                    
154          int count = ExecSqlInt(sql.str());          int count = ExecSqlInt(sql.str());
155    
         // While the root dir has ID 0 and parent ID 0, the directory  
         // count for the root dir will be incorrect, so we should fix it.  
         if (count != -1 && DirId == 0) count--;  
156          return count;          return count;
157      }      }
158    
# Line 173  namespace LinuxSampler { Line 174  namespace LinuxSampler {
174              throw e;              throw e;
175          }          }
176          EndTransaction();          EndTransaction();
177          if (i == -1) throw Exception("Unkown DB directory: " + Dir);          if (i == -1) throw Exception("Unkown DB directory: " + toEscapedPath(Dir));
178                    
179          return i;          return i;
180      }      }
# Line 192  namespace LinuxSampler { Line 193  namespace LinuxSampler {
193          BeginTransaction();          BeginTransaction();
194          try {          try {
195              int dirId = GetDirectoryId(Dir);              int dirId = GetDirectoryId(Dir);
196              if(dirId == -1) throw Exception("Unknown DB directory: " + Dir);              if(dirId == -1) throw Exception("Unknown DB directory: " + toEscapedPath(Dir));
197    
198              StringListPtr pDirs;              StringListPtr pDirs;
199              if (Recursive) {              if (Recursive) {
# Line 215  namespace LinuxSampler { Line 216  namespace LinuxSampler {
216          std::stringstream sql;          std::stringstream sql;
217          sql << "SELECT dir_name FROM instr_dirs ";          sql << "SELECT dir_name FROM instr_dirs ";
218          sql << "WHERE parent_dir_id=" << DirId << " AND dir_id!=0";          sql << "WHERE parent_dir_id=" << DirId << " AND dir_id!=0";
219          return ExecSqlStringList(sql.str());          StringListPtr dirs = ExecSqlStringList(sql.str());
220    
221            for (int i = 0; i < dirs->size(); i++) {
222                for (int j = 0; j < dirs->at(i).length(); j++) {
223                    if (dirs->at(i).at(j) == '/') dirs->at(i).at(j) = '\0';
224                }
225            }
226    
227            return dirs;
228      }      }
229    
230      int InstrumentsDb::GetDirectoryId(String Dir) {      int InstrumentsDb::GetDirectoryId(String Dir) {
# Line 244  namespace LinuxSampler { Line 253  namespace LinuxSampler {
253    
254      int InstrumentsDb::GetDirectoryId(int ParentDirId, String DirName) {      int InstrumentsDb::GetDirectoryId(int ParentDirId, String DirName) {
255          dmsg(2,("InstrumentsDb: GetDirectoryId(ParentDirId=%d, DirName=%s)\n", ParentDirId, DirName.c_str()));          dmsg(2,("InstrumentsDb: GetDirectoryId(ParentDirId=%d, DirName=%s)\n", ParentDirId, DirName.c_str()));
256            DirName = toDbName(DirName);
257          std::stringstream sql;          std::stringstream sql;
258          sql << "SELECT dir_id FROM instr_dirs WHERE parent_dir_id=";          sql << "SELECT dir_id FROM instr_dirs WHERE parent_dir_id=";
259          sql << ParentDirId << " AND dir_name=?";          sql << ParentDirId << " AND dir_name=?";
260          return ExecSqlInt(sql.str(), DirName);          return ExecSqlInt(sql.str(), DirName);
261      }      }
262    
263        int InstrumentsDb::GetDirectoryId(int InstrId) {
264            dmsg(2,("InstrumentsDb: GetDirectoryId(InstrId=%d)\n", InstrId));
265            std::stringstream sql;
266            sql << "SELECT dir_id FROM instruments WHERE instr_id=" << InstrId;
267            return ExecSqlInt(sql.str());
268        }
269    
270      String InstrumentsDb::GetDirectoryName(int DirId) {      String InstrumentsDb::GetDirectoryName(int DirId) {
271          String sql = "SELECT dir_name FROM instr_dirs WHERE dir_id=" + ToString(DirId);          String sql = "SELECT dir_name FROM instr_dirs WHERE dir_id=" + ToString(DirId);
272          String name = ExecSqlString(sql);          String name = ExecSqlString(sql);
# Line 274  namespace LinuxSampler { Line 291  namespace LinuxSampler {
291                  path = "/" + path;                  path = "/" + path;
292                  break;                  break;
293              }              }
294              path = GetDirectoryName(DirId) + path;              path = GetDirectoryName(DirId) + "/" + path;
295              DirId = GetParentDirectoryId(DirId);              DirId = GetParentDirectoryId(DirId);
296          }          }
297    
# Line 282  namespace LinuxSampler { Line 299  namespace LinuxSampler {
299    
300          return path;          return path;
301      }      }
302        
303        StringListPtr InstrumentsDb::GetInstrumentsByFile(String File) {
304            dmsg(2,("InstrumentsDb: GetInstrumentsByFile(File=%s)\n", File.c_str()));
305    
306            StringListPtr instrs(new std::vector<String>);
307            
308            BeginTransaction();
309            try {
310                File = toEscapedFsPath(File);
311                IntListPtr ids = ExecSqlIntList("SELECT instr_id FROM instruments WHERE instr_file=?", File);
312                
313                for (int i = 0; i < ids->size(); i++) {
314                    String name = GetInstrumentName(ids->at(i));
315                    String dir = GetDirectoryPath(GetDirectoryId(ids->at(i)));
316                    instrs->push_back(dir + name);
317                }
318            } catch (Exception e) {
319                EndTransaction();
320                throw e;
321            }
322            EndTransaction();
323            
324            return instrs;
325        }
326    
327      void InstrumentsDb::AddDirectory(String Dir) {      void InstrumentsDb::AddDirectory(String Dir) {
328          dmsg(2,("InstrumentsDb: AddDirectory(Dir=%s)\n", Dir.c_str()));          dmsg(2,("InstrumentsDb: AddDirectory(Dir=%s)\n", Dir.c_str()));
# Line 296  namespace LinuxSampler { Line 337  namespace LinuxSampler {
337    
338              String dirName = GetFileName(Dir);              String dirName = GetFileName(Dir);
339              if(ParentDir.empty() || dirName.empty()) {              if(ParentDir.empty() || dirName.empty()) {
340                  throw Exception("Failed to add DB directory: " + Dir);                  throw Exception("Failed to add DB directory: " + toEscapedPath(Dir));
341              }              }
342    
343              int id = GetDirectoryId(ParentDir);              int id = GetDirectoryId(ParentDir);
344              if (id == -1) throw Exception("DB directory doesn't exist: " + ParentDir);              if (id == -1) throw Exception("DB directory doesn't exist: " + toEscapedPath(ParentDir));
345              int id2 = GetDirectoryId(id, dirName);              int id2 = GetDirectoryId(id, dirName);
346              if (id2 != -1) throw Exception("DB directory already exist: " + Dir);              if (id2 != -1) throw Exception("DB directory already exist: " + toEscapedPath(Dir));
347              id2 = GetInstrumentId(id, dirName);              id2 = GetInstrumentId(id, dirName);
348              if (id2 != -1) throw Exception("Instrument with that name exist: " + Dir);              if (id2 != -1) throw Exception("Instrument with that name exist: " + toEscapedPath(Dir));
349    
350              std::stringstream sql;              std::stringstream sql;
351              sql << "INSERT INTO instr_dirs (parent_dir_id, dir_name) VALUES (";              sql << "INSERT INTO instr_dirs (parent_dir_id, dir_name) VALUES (";
352              sql << id << ", ?)";              sql << id << ", ?)";
353    
354              ExecSql(sql.str(), dirName);              ExecSql(sql.str(), toDbName(dirName));
355          } catch (Exception e) {          } catch (Exception e) {
356              EndTransaction();              EndTransaction();
357              throw e;              throw e;
# Line 329  namespace LinuxSampler { Line 370  namespace LinuxSampler {
370          BeginTransaction();          BeginTransaction();
371          try {          try {
372              int dirId = GetDirectoryId(Dir);              int dirId = GetDirectoryId(Dir);
373              if (dirId == -1) throw Exception("Unknown DB directory: " + Dir);              if (dirId == -1) throw Exception("Unknown DB directory: " + toEscapedPath(Dir));
374              if (dirId == 0) throw Exception("Cannot delete the root directory: " + Dir);              if (dirId == 0) throw Exception("Cannot delete the root directory: " + Dir);
375              if(ParentDir.empty()) throw Exception("Unknown parent directory");              if(ParentDir.empty()) throw Exception("Unknown parent directory");
376              if (Force) RemoveDirectoryContent(dirId);              if (Force) RemoveDirectoryContent(dirId);
# Line 416  namespace LinuxSampler { Line 457  namespace LinuxSampler {
457    
458          try {          try {
459              int id = GetDirectoryId(Dir);              int id = GetDirectoryId(Dir);
460              if(id == -1) throw Exception("Unknown DB directory: " + Dir);              if(id == -1) throw Exception("Unknown DB directory: " + toEscapedPath(Dir));
461    
462              sqlite3_stmt *pStmt = NULL;              sqlite3_stmt *pStmt = NULL;
463              std::stringstream sql;              std::stringstream sql;
# Line 439  namespace LinuxSampler { Line 480  namespace LinuxSampler {
480                  if (res != SQLITE_DONE) {                  if (res != SQLITE_DONE) {
481                      throw Exception("DB error: " + ToString(sqlite3_errmsg(db)));                      throw Exception("DB error: " + ToString(sqlite3_errmsg(db)));
482                  } else {                  } else {
483                      throw Exception("Unknown DB directory: " + Dir);                      throw Exception("Unknown DB directory: " + toEscapedPath(Dir));
484                  }                  }
485              }              }
486                            
# Line 456  namespace LinuxSampler { Line 497  namespace LinuxSampler {
497      void InstrumentsDb::RenameDirectory(String Dir, String Name) {      void InstrumentsDb::RenameDirectory(String Dir, String Name) {
498          dmsg(2,("InstrumentsDb: RenameDirectory(Dir=%s,Name=%s)\n", Dir.c_str(), Name.c_str()));          dmsg(2,("InstrumentsDb: RenameDirectory(Dir=%s,Name=%s)\n", Dir.c_str(), Name.c_str()));
499          CheckFileName(Name);          CheckFileName(Name);
500            String dbName = toDbName(Name);
501    
502          BeginTransaction();          BeginTransaction();
503          try {          try {
504              int dirId = GetDirectoryId(Dir);              int dirId = GetDirectoryId(Dir);
505              if (dirId == -1) throw Exception("Unknown DB directory: " + Dir);              if (dirId == -1) throw Exception("Unknown DB directory: " + toEscapedText(Dir));
506    
507              std::stringstream sql;              std::stringstream sql;
508              sql << "SELECT parent_dir_id FROM instr_dirs WHERE dir_id=" <<  dirId;              sql << "SELECT parent_dir_id FROM instr_dirs WHERE dir_id=" <<  dirId;
509    
510              int parent = ExecSqlInt(sql.str());              int parent = ExecSqlInt(sql.str());
511              if (parent == -1) throw Exception("Unknown parent directory: " + Dir);              if (parent == -1) throw Exception("Unknown parent directory: " + toEscapedPath(Dir));
512              if (GetDirectoryId(parent, Name) != -1) {  
513                  throw Exception("Cannot rename. Directory with that name already exists: " + Name);              if (GetDirectoryId(parent, dbName) != -1) {
514                    String s = toEscapedPath(Name);
515                    throw Exception("Cannot rename. Directory with that name already exists: " + s);
516              }              }
517    
518              if (GetInstrumentId(parent, Name) != -1) {              if (GetInstrumentId(parent, dbName) != -1) {
519                  throw Exception("Cannot rename. Instrument with that name exist: " + Dir);                  throw Exception("Cannot rename. Instrument with that name exist: " + toEscapedPath(Dir));
520              }              }
521    
522              sql.str("");              sql.str("");
523              sql << "UPDATE instr_dirs SET dir_name=? WHERE dir_id=" << dirId;              sql << "UPDATE instr_dirs SET dir_name=? WHERE dir_id=" << dirId;
524              ExecSql(sql.str(), Name);              ExecSql(sql.str(), dbName);
525          } catch (Exception e) {          } catch (Exception e) {
526              EndTransaction();              EndTransaction();
527              throw e;              throw e;
528          }          }
529    
530          EndTransaction();          EndTransaction();
531          FireDirectoryNameChanged(Dir, Name);          FireDirectoryNameChanged(Dir, toAbstractName(Name));
532      }      }
533    
534      void InstrumentsDb::MoveDirectory(String Dir, String Dst) {      void InstrumentsDb::MoveDirectory(String Dir, String Dst) {
# Line 497  namespace LinuxSampler { Line 541  namespace LinuxSampler {
541          BeginTransaction();          BeginTransaction();
542          try {          try {
543              int dirId = GetDirectoryId(Dir);              int dirId = GetDirectoryId(Dir);
544              if (dirId == -1) throw Exception("Unknown DB directory: " + Dir);              if (dirId == -1) throw Exception("Unknown DB directory: " + toEscapedPath(Dir));
545              int dstId = GetDirectoryId(Dst);              int dstId = GetDirectoryId(Dst);
546              if (dstId == -1) throw Exception("Unknown DB directory: " + Dst);              if (dstId == -1) throw Exception("Unknown DB directory: " + toEscapedPath(Dst));
547              if (dirId == dstId) {              if (dirId == dstId) {
548                  throw Exception("Cannot move directory to itself");                  throw Exception("Cannot move directory to itself");
549              }              }
# Line 515  namespace LinuxSampler { Line 559  namespace LinuxSampler {
559              String dirName = GetFileName(Dir);              String dirName = GetFileName(Dir);
560    
561              int id2 = GetDirectoryId(dstId, dirName);              int id2 = GetDirectoryId(dstId, dirName);
562              if (id2 != -1) throw Exception("DB directory already exist: " + dirName);              if (id2 != -1) throw Exception("DB directory already exist: " + toEscapedPath(dirName));
563              id2 = GetInstrumentId(dstId, dirName);              id2 = GetInstrumentId(dstId, dirName);
564              if (id2 != -1) throw Exception("Instrument with that name exist: " + dirName);              if (id2 != -1) throw Exception("Instrument with that name exist: " + toEscapedPath(dirName));
565    
566              std::stringstream sql;              std::stringstream sql;
567              sql << "UPDATE instr_dirs SET parent_dir_id=" << dstId;              sql << "UPDATE instr_dirs SET parent_dir_id=" << dstId;
# Line 543  namespace LinuxSampler { Line 587  namespace LinuxSampler {
587          BeginTransaction();          BeginTransaction();
588          try {          try {
589              int dirId = GetDirectoryId(Dir);              int dirId = GetDirectoryId(Dir);
590              if (dirId == -1) throw Exception("Unknown DB directory: " + Dir);              if (dirId == -1) throw Exception("Unknown DB directory: " + toEscapedPath(Dir));
591              int dstId = GetDirectoryId(Dst);              int dstId = GetDirectoryId(Dst);
592              if (dstId == -1) throw Exception("Unknown DB directory: " + Dst);              if (dstId == -1) throw Exception("Unknown DB directory: " + toEscapedPath(Dst));
593              if (dirId == dstId) {              if (dirId == dstId) {
594                  throw Exception("Cannot copy directory to itself");                  throw Exception("Cannot copy directory to itself");
595              }              }
# Line 561  namespace LinuxSampler { Line 605  namespace LinuxSampler {
605              String dirName = GetFileName(Dir);              String dirName = GetFileName(Dir);
606    
607              int id2 = GetDirectoryId(dstId, dirName);              int id2 = GetDirectoryId(dstId, dirName);
608              if (id2 != -1) throw Exception("DB directory already exist: " + dirName);              if (id2 != -1) throw Exception("DB directory already exist: " + toEscapedPath(dirName));
609              id2 = GetInstrumentId(dstId, dirName);              id2 = GetInstrumentId(dstId, dirName);
610              if (id2 != -1) throw Exception("Instrument with that name exist: " + dirName);              if (id2 != -1) throw Exception("Instrument with that name exist: " + toEscapedPath(dirName));
611    
612              DirectoryCopier directoryCopier(ParentDir, Dst);              DirectoryCopier directoryCopier(ParentDir, Dst);
613              DirectoryTreeWalk(Dir, &directoryCopier);              DirectoryTreeWalk(Dir, &directoryCopier);
# Line 581  namespace LinuxSampler { Line 625  namespace LinuxSampler {
625          BeginTransaction();          BeginTransaction();
626          try {          try {
627              int id = GetDirectoryId(Dir);              int id = GetDirectoryId(Dir);
628              if(id == -1) throw Exception("Unknown DB directory: " + Dir);              if(id == -1) throw Exception("Unknown DB directory: " + toEscapedPath(Dir));
629    
630              std::stringstream sql;              std::stringstream sql;
631              sql << "UPDATE instr_dirs SET description=?,modified=CURRENT_TIMESTAMP ";              sql << "UPDATE instr_dirs SET description=?,modified=CURRENT_TIMESTAMP ";
# Line 597  namespace LinuxSampler { Line 641  namespace LinuxSampler {
641          FireDirectoryInfoChanged(Dir);          FireDirectoryInfoChanged(Dir);
642      }      }
643    
644      int InstrumentsDb::AddInstruments(ScanMode Mode, String DbDir, String FsDir, bool bBackground) {      int InstrumentsDb::AddInstruments(ScanMode Mode, String DbDir, String FsDir, bool bBackground, bool insDir) {
645          dmsg(2,("InstrumentsDb: AddInstruments(Mode=%d,DbDir=%s,FsDir=%s,bBackground=%d)\n", Mode, DbDir.c_str(), FsDir.c_str(), bBackground));          dmsg(2,("InstrumentsDb: AddInstruments(Mode=%d,DbDir=%s,FsDir=%s,bBackground=%d,insDir=%d)\n", Mode, DbDir.c_str(), FsDir.c_str(), bBackground, insDir));
646          if(!bBackground) {          if(!bBackground) {
647              switch (Mode) {              switch (Mode) {
648                  case NON_RECURSIVE:                  case NON_RECURSIVE:
649                      AddInstrumentsNonrecursive(DbDir, FsDir);                      AddInstrumentsNonrecursive(DbDir, FsDir, insDir);
650                      break;                      break;
651                  case RECURSIVE:                  case RECURSIVE:
652                      AddInstrumentsRecursive(DbDir, FsDir);                      AddInstrumentsRecursive(DbDir, FsDir, false, insDir);
653                      break;                      break;
654                  case FLAT:                  case FLAT:
655                      AddInstrumentsRecursive(DbDir, FsDir, true);                      AddInstrumentsRecursive(DbDir, FsDir, true, insDir);
656                      break;                      break;
657                  default:                  default:
658                      throw Exception("Unknown scan mode");                      throw Exception("Unknown scan mode");
# Line 619  namespace LinuxSampler { Line 663  namespace LinuxSampler {
663    
664          ScanJob job;          ScanJob job;
665          int jobId = Jobs.AddJob(job);          int jobId = Jobs.AddJob(job);
666          InstrumentsDbThread.Execute(new AddInstrumentsJob(jobId, Mode, DbDir, FsDir));          InstrumentsDbThread.Execute(new AddInstrumentsJob(jobId, Mode, DbDir, FsDir, insDir));
667    
668          return jobId;          return jobId;
669      }      }
# Line 627  namespace LinuxSampler { Line 671  namespace LinuxSampler {
671      int InstrumentsDb::AddInstruments(String DbDir, String FilePath, int Index, bool bBackground) {      int InstrumentsDb::AddInstruments(String DbDir, String FilePath, int Index, bool bBackground) {
672          dmsg(2,("InstrumentsDb: AddInstruments(DbDir=%s,FilePath=%s,Index=%d,bBackground=%d)\n", DbDir.c_str(), FilePath.c_str(), Index, bBackground));          dmsg(2,("InstrumentsDb: AddInstruments(DbDir=%s,FilePath=%s,Index=%d,bBackground=%d)\n", DbDir.c_str(), FilePath.c_str(), Index, bBackground));
673          if(!bBackground) {          if(!bBackground) {
674              AddInstruments(DbDir, FilePath, Index);              AddInstruments(DbDir, false, FilePath, Index);
675              return -1;              return -1;
676          }          }
677    
678          ScanJob job;          ScanJob job;
679          int jobId = Jobs.AddJob(job);          int jobId = Jobs.AddJob(job);
680          InstrumentsDbThread.Execute(new AddInstrumentsFromFileJob(jobId, DbDir, FilePath, Index));          InstrumentsDbThread.Execute(new AddInstrumentsFromFileJob(jobId, DbDir, FilePath, Index, false));
681    
682          return jobId;          return jobId;
683      }      }
684    
685      void InstrumentsDb::AddInstruments(String DbDir, String FilePath, int Index, ScanProgress* pProgress) {      void InstrumentsDb::AddInstruments(String DbDir, bool insDir, String FilePath, int Index, ScanProgress* pProgress) {
686          dmsg(2,("InstrumentsDb: AddInstruments(DbDir=%s,FilePath=%s,Index=%d)\n", DbDir.c_str(), FilePath.c_str(), Index));          dmsg(2,("InstrumentsDb: AddInstruments(DbDir=%s,insDir=%d,FilePath=%s,Index=%d)\n", DbDir.c_str(), insDir, FilePath.c_str(), Index));
687          if (DbDir.empty() || FilePath.empty()) return;          if (DbDir.empty() || FilePath.empty()) return;
688                    
689          DbInstrumentsMutex.Lock();          DbInstrumentsMutex.Lock();
690          try {          try {
691              int dirId = GetDirectoryId(DbDir);              int dirId = GetDirectoryId(DbDir);
692              if (dirId == -1) throw Exception("Invalid DB directory: " + DbDir);              if (dirId == -1) throw Exception("Invalid DB directory: " + toEscapedText(DbDir));
693    
694              struct stat statBuf;              File f = File(FilePath);
695              int res = stat(FilePath.c_str(), &statBuf);              if (!f.Exist()) {
             if (res) {  
696                  std::stringstream ss;                  std::stringstream ss;
697                  ss << "Fail to stat `" << FilePath << "`: " << strerror(errno);                  ss << "Fail to stat `" << FilePath << "`: " << f.GetErrorMsg();
698                  throw Exception(ss.str());                  throw Exception(ss.str());
699              }              }
700    
701              if (!S_ISREG(statBuf.st_mode)) {              if (!f.IsFile()) {
702                  std::stringstream ss;                  std::stringstream ss;
703                  ss << "`" << FilePath << "` is not an instrument file";                  ss << "`" << FilePath << "` is not an instrument file";
704                  throw Exception(ss.str());                  throw Exception(ss.str());
705              }              }
706    
707              AddInstrumentsFromFile(DbDir, FilePath, Index, pProgress);                          if(insDir) {
708                                    std::string tmp = f.basename(FilePath, ".");
709                                    String gigDir;
710                                    if(DbDir.length() == 1 && DbDir.at(0) == '/') //DbDir is /
711                                            gigDir = DbDir + (String)tmp + "/";
712                                    else
713                                            gigDir = DbDir +"/"+ (String)tmp + "/";
714                                    dmsg(2,("InstrumentsDb: AddInstrumentsNonrecursive(Dir from file mode=%d, Created SubDir=%s)\n",insDir, gigDir.c_str()));
715                    DbInstrumentsMutex.Unlock();
716                                    AddDirectory(gigDir);//TODO: Add some error checking here to make sure the dir is created
717                    DbInstrumentsMutex.Lock();
718                    AddInstrumentsFromFile(gigDir, FilePath, Index, pProgress);
719                            } else {
720                    AddInstrumentsFromFile(DbDir, FilePath, Index, pProgress);
721                            }
722          } catch (Exception e) {          } catch (Exception e) {
723              DbInstrumentsMutex.Unlock();              DbInstrumentsMutex.Unlock();
724              throw e;              throw e;
# Line 670  namespace LinuxSampler { Line 727  namespace LinuxSampler {
727          DbInstrumentsMutex.Unlock();          DbInstrumentsMutex.Unlock();
728      }      }
729    
730      void InstrumentsDb::AddInstrumentsNonrecursive(String DbDir, String FsDir, ScanProgress* pProgress) {      void InstrumentsDb::AddInstrumentsNonrecursive(String DbDir, String FsDir, bool insDir, ScanProgress* pProgress) {
731          dmsg(2,("InstrumentsDb: AddInstrumentsNonrecursive(DbDir=%s,FsDir=%s)\n", DbDir.c_str(), FsDir.c_str()));          dmsg(2,("InstrumentsDb: AddInstrumentsNonrecursive(DbDir=%s,FsDir=%s,insDir=%d)\n", DbDir.c_str(), FsDir.c_str(), insDir));
732          if (DbDir.empty() || FsDir.empty()) return;          if (DbDir.empty() || FsDir.empty()) return;
733                    
734          DbInstrumentsMutex.Lock();          DbInstrumentsMutex.Lock();
735          try {          try {
736              int dirId = GetDirectoryId(DbDir);              int dirId = GetDirectoryId(DbDir);
737              if (dirId == -1) throw Exception("Invalid DB directory: " + DbDir);              if (dirId == -1) throw Exception("Invalid DB directory: " + toEscapedPath(DbDir));
738    
739              struct stat statBuf;              File f = File(FsDir);
740              int res = stat(FsDir.c_str(), &statBuf);              if (!f.Exist()) {
             if (res) {  
741                  std::stringstream ss;                  std::stringstream ss;
742                  ss << "Fail to stat `" << FsDir << "`: " << strerror(errno);                  ss << "Fail to stat `" << FsDir << "`: " << f.GetErrorMsg();
743                  throw Exception(ss.str());                  throw Exception(ss.str());
744              }              }
745    
746              if (!S_ISDIR(statBuf.st_mode)) {              if (!f.IsDirectory()) {
747                  throw Exception("Directory expected");                  throw Exception("Directory expected: " + FsDir);
748              }              }
749                            
750              if (FsDir.at(FsDir.length() - 1) != '/') FsDir.append("/");              if (FsDir.at(FsDir.length() - 1) != File::DirSeparator) {
751                    FsDir.push_back(File::DirSeparator);
             DIR* pDir = opendir(FsDir.c_str());  
             if (pDir == NULL) {  
                 std::stringstream ss;  
                 ss << "The scanning of directory `" << FsDir << "` failed: ";  
                 ss << strerror(errno);  
                 std::cerr << ss.str();  
                 DbInstrumentsMutex.Unlock();  
                 return;  
752              }              }
753                
754              struct dirent* pEnt = readdir(pDir);              try {
755              while (pEnt != NULL) {                  FileListPtr fileList = File::GetFiles(FsDir);
756                  if (pEnt->d_type != DT_REG) {                  for (int i = 0; i < fileList->size(); i++) {
757                      pEnt = readdir(pDir);                                          if(insDir)
758                      continue;                                          {
759                                                    //File gFile = File(fileList->at(i));
760                                                    String gigDir;
761                                                    if(DbDir.length() == 1 && DbDir.at(0) == '/') //DbDir is /
762                                                            gigDir  = DbDir + f.basename(fileList->at(i),".") + "/";
763                                                    else
764                                                            gigDir  = DbDir +"/"+ f.basename(fileList->at(i),".") + "/";
765                                                    dmsg(2,("InstrumentsDb: AddInstrumentsNonrecursive(Dir from file mode=%d, Created SubDir=%s)\n",insDir, gigDir.c_str()));
766                                    DbInstrumentsMutex.Unlock(); // UnLock the db so we can add our extra directory
767                                                    AddDirectory(gigDir);//TODO: Add some error checking here to make sure the dir is created
768                                            DbInstrumentsMutex.Lock(); //Lock and carry on
769                            AddInstrumentsFromFile(gigDir, FsDir + fileList->at(i), -1, pProgress);
770                                            }
771                                            else
772                                            {
773                            AddInstrumentsFromFile(DbDir, FsDir + fileList->at(i), -1, pProgress);
774                                            }
775                  }                  }
776                } catch(Exception e) {
777                  AddInstrumentsFromFile(DbDir, FsDir + String(pEnt->d_name), -1, pProgress);                  e.PrintMessage();
778                  pEnt = readdir(pDir);                  DbInstrumentsMutex.Unlock();
779              }                  return;
   
             if (closedir(pDir)) {  
                 std::stringstream ss;  
                 ss << "Failed to close directory `" << FsDir << "`: ";  
                 ss << strerror(errno);  
                 std::cerr << ss.str();  
780              }              }
781          } catch (Exception e) {          } catch (Exception e) {
782              DbInstrumentsMutex.Unlock();              DbInstrumentsMutex.Unlock();
# Line 728  namespace LinuxSampler { Line 786  namespace LinuxSampler {
786          DbInstrumentsMutex.Unlock();          DbInstrumentsMutex.Unlock();
787      }      }
788    
789      void InstrumentsDb::AddInstrumentsRecursive(String DbDir, String FsDir, bool Flat, ScanProgress* pProgress) {      void InstrumentsDb::AddInstrumentsRecursive(String DbDir, String FsDir, bool Flat, bool insDir, ScanProgress* pProgress) {
790          dmsg(2,("InstrumentsDb: AddInstrumentsRecursive(DbDir=%s,FsDir=%s,Flat=%d)\n", DbDir.c_str(), FsDir.c_str(), Flat));          dmsg(2,("InstrumentsDb: AddInstrumentsRecursive(DbDir=%s,FsDir=%s,Flat=%d,insDir=%d)\n", DbDir.c_str(), FsDir.c_str(), Flat, insDir));
791          if (pProgress != NULL) {          if (pProgress != NULL) {
792              pProgress->SetTotalFileCount(InstrumentFileCounter::Count(FsDir));              InstrumentFileCounter c;
793                pProgress->SetTotalFileCount(c.Count(FsDir));
794          }          }
795    
796          DirectoryScanner::Scan(DbDir, FsDir, Flat, pProgress);          DirectoryScanner d;
797            d.Scan(DbDir, FsDir, Flat, insDir, pProgress);
798      }      }
799    
800      int InstrumentsDb::GetInstrumentCount(int DirId) {      int InstrumentsDb::GetInstrumentCount(int DirId) {
# Line 766  namespace LinuxSampler { Line 826  namespace LinuxSampler {
826          }          }
827          EndTransaction();          EndTransaction();
828    
829          if (i == -1) throw Exception("Unknown Db directory: " + Dir);          if (i == -1) throw Exception("Unknown Db directory: " + toEscapedPath(Dir));
830          return i;          return i;
831      }      }
832    
# Line 782  namespace LinuxSampler { Line 842  namespace LinuxSampler {
842          BeginTransaction();          BeginTransaction();
843          try {          try {
844              int dirId = GetDirectoryId(Dir);              int dirId = GetDirectoryId(Dir);
845              if(dirId == -1) throw Exception("Unknown DB directory: " + Dir);              if(dirId == -1) throw Exception("Unknown DB directory: " + toEscapedPath(Dir));
846    
847              StringListPtr pInstrs;              StringListPtr pInstrs;
848    
# Line 796  namespace LinuxSampler { Line 856  namespace LinuxSampler {
856                  sql << "SELECT instr_name FROM instruments WHERE dir_id=" << dirId;                  sql << "SELECT instr_name FROM instruments WHERE dir_id=" << dirId;
857    
858                  pInstrs = ExecSqlStringList(sql.str());                  pInstrs = ExecSqlStringList(sql.str());
859                    // Converting to abstract names
860                    for (int i = 0; i < pInstrs->size(); i++) {
861                        for (int j = 0; j < pInstrs->at(i).length(); j++) {
862                            if (pInstrs->at(i).at(j) == '/') pInstrs->at(i).at(j) = '\0';
863                        }
864                    }
865              }              }
866              EndTransaction();              EndTransaction();
867              return pInstrs;              return pInstrs;
# Line 820  namespace LinuxSampler { Line 886  namespace LinuxSampler {
886          std::stringstream sql;          std::stringstream sql;
887          sql << "SELECT instr_id FROM instruments WHERE dir_id=";          sql << "SELECT instr_id FROM instruments WHERE dir_id=";
888          sql << DirId << " AND instr_name=?";          sql << DirId << " AND instr_name=?";
889          return ExecSqlInt(sql.str(), InstrName);          return ExecSqlInt(sql.str(), toDbName(InstrName));
890      }      }
891    
892      String InstrumentsDb::GetInstrumentName(int InstrId) {      String InstrumentsDb::GetInstrumentName(int InstrId) {
893          dmsg(2,("InstrumentsDb: GetInstrumentName(InstrId=%d)\n", InstrId));          dmsg(2,("InstrumentsDb: GetInstrumentName(InstrId=%d)\n", InstrId));
894          std::stringstream sql;          std::stringstream sql;
895          sql << "SELECT instr_name FROM instruments WHERE instr_id=" << InstrId;          sql << "SELECT instr_name FROM instruments WHERE instr_id=" << InstrId;
896          return ExecSqlString(sql.str());          return toAbstractName(ExecSqlString(sql.str()));
897      }      }
898            
899      void InstrumentsDb::RemoveInstrument(String Instr) {      void InstrumentsDb::RemoveInstrument(String Instr) {
# Line 839  namespace LinuxSampler { Line 905  namespace LinuxSampler {
905          try {          try {
906              int instrId = GetInstrumentId(Instr);              int instrId = GetInstrumentId(Instr);
907              if(instrId == -1) {              if(instrId == -1) {
908                  throw Exception("The specified instrument does not exist: " + Instr);                  throw Exception("The specified instrument does not exist: " + toEscapedPath(Instr));
909              }              }
910              RemoveInstrument(instrId);              RemoveInstrument(instrId);
911          } catch (Exception e) {          } catch (Exception e) {
# Line 874  namespace LinuxSampler { Line 940  namespace LinuxSampler {
940          BeginTransaction();          BeginTransaction();
941          try {          try {
942              int id = GetInstrumentId(Instr);              int id = GetInstrumentId(Instr);
943              if(id == -1) throw Exception("Unknown DB instrument: " + Instr);              if(id == -1) throw Exception("Unknown DB instrument: " + toEscapedPath(Instr));
944              i = GetInstrumentInfo(id);              i = GetInstrumentInfo(id);
945          } catch (Exception e) {          } catch (Exception e) {
946              EndTransaction();              EndTransaction();
# Line 933  namespace LinuxSampler { Line 999  namespace LinuxSampler {
999          BeginTransaction();          BeginTransaction();
1000          try {          try {
1001              int dirId = GetDirectoryId(GetDirectoryPath(Instr));              int dirId = GetDirectoryId(GetDirectoryPath(Instr));
1002              if (dirId == -1) throw Exception("Unknown DB instrument: " + Instr);              if (dirId == -1) throw Exception("Unknown DB instrument: " + toEscapedPath(Instr));
1003    
1004              int instrId = GetInstrumentId(dirId, GetFileName(Instr));              int instrId = GetInstrumentId(dirId, GetFileName(Instr));
1005              if (instrId == -1) throw Exception("Unknown DB instrument: " + Instr);              if (instrId == -1) throw Exception("Unknown DB instrument: " + toEscapedPath(Instr));
1006    
1007              if (GetInstrumentId(dirId, Name) != -1) {              if (GetInstrumentId(dirId, Name) != -1) {
1008                  throw Exception("Cannot rename. Instrument with that name already exists: " + Name);                  String s = toEscapedPath(Name);
1009                    throw Exception("Cannot rename. Instrument with that name already exists: " + s);
1010              }              }
1011    
1012              if (GetDirectoryId(dirId, Name) != -1) {              if (GetDirectoryId(dirId, Name) != -1) {
1013                  throw Exception("Cannot rename. Directory with that name already exists: " + Name);                  String s = toEscapedPath(Name);
1014                    throw Exception("Cannot rename. Directory with that name already exists: " + s);
1015              }              }
1016    
1017              std::stringstream sql;              std::stringstream sql;
1018              sql << "UPDATE instruments SET instr_name=? WHERE instr_id=" << instrId;              sql << "UPDATE instruments SET instr_name=? WHERE instr_id=" << instrId;
1019              ExecSql(sql.str(), Name);              ExecSql(sql.str(), toDbName(Name));
1020          } catch (Exception e) {          } catch (Exception e) {
1021              EndTransaction();              EndTransaction();
1022              throw e;              throw e;
1023          }          }
1024          EndTransaction();          EndTransaction();
1025          FireInstrumentNameChanged(Instr, Name);          FireInstrumentNameChanged(Instr, toAbstractName(Name));
1026      }      }
1027    
1028      void InstrumentsDb::MoveInstrument(String Instr, String Dst) {      void InstrumentsDb::MoveInstrument(String Instr, String Dst) {
# Line 964  namespace LinuxSampler { Line 1032  namespace LinuxSampler {
1032    
1033          BeginTransaction();          BeginTransaction();
1034          try {          try {
1035              int dirId = GetDirectoryId(GetDirectoryPath(Instr));              int dirId = GetDirectoryId(ParentDir);
1036              if (dirId == -1) throw Exception("Unknown DB instrument: " + Instr);              if (dirId == -1) throw Exception("Unknown DB instrument: " + toEscapedPath(Instr));
1037    
1038              String instrName = GetFileName(Instr);              String instrName = GetFileName(Instr);
1039              int instrId = GetInstrumentId(dirId, instrName);              int instrId = GetInstrumentId(dirId, instrName);
1040              if (instrId == -1) throw Exception("Unknown DB instrument: " + Instr);              if (instrId == -1) throw Exception("Unknown DB instrument: " + toEscapedPath(Instr));
1041    
1042              int dstId = GetDirectoryId(Dst);              int dstId = GetDirectoryId(Dst);
1043              if (dstId == -1) throw Exception("Unknown DB directory: " + Dst);              if (dstId == -1) throw Exception("Unknown DB directory: " + toEscapedPath(Dst));
1044              if (dirId == dstId) {              if (dirId == dstId) {
1045                  EndTransaction();                  EndTransaction();
1046                  return;                  return;
1047              }              }
1048    
1049              if (GetInstrumentId(dstId, instrName) != -1) {              if (GetInstrumentId(dstId, instrName) != -1) {
1050                  throw Exception("Cannot move. Instrument with that name already exists: " + instrName);                  String s = toEscapedPath(instrName);
1051                    throw Exception("Cannot move. Instrument with that name already exists: " + s);
1052              }              }
1053    
1054              if (GetDirectoryId(dstId, instrName) != -1) {              if (GetDirectoryId(dstId, instrName) != -1) {
1055                  throw Exception("Cannot move. Directory with that name already exists: " + instrName);                  String s = toEscapedPath(instrName);
1056                    throw Exception("Cannot move. Directory with that name already exists: " + s);
1057              }              }
1058    
1059              std::stringstream sql;              std::stringstream sql;
# Line 1007  namespace LinuxSampler { Line 1077  namespace LinuxSampler {
1077          BeginTransaction();          BeginTransaction();
1078          try {          try {
1079              int dirId = GetDirectoryId(GetDirectoryPath(Instr));              int dirId = GetDirectoryId(GetDirectoryPath(Instr));
1080              if (dirId == -1) throw Exception("Unknown DB instrument: " + Instr);              if (dirId == -1) throw Exception("Unknown DB instrument: " + toEscapedPath(Instr));
1081    
1082              String instrName = GetFileName(Instr);              String instrName = GetFileName(Instr);
1083              int instrId = GetInstrumentId(dirId, instrName);              int instrId = GetInstrumentId(dirId, instrName);
1084              if (instrId == -1) throw Exception("Unknown DB instrument: " + Instr);              if (instrId == -1) throw Exception("Unknown DB instrument: " + toEscapedPath(Instr));
1085    
1086              int dstId = GetDirectoryId(Dst);              int dstId = GetDirectoryId(Dst);
1087              if (dstId == -1) throw Exception("Unknown DB directory: " + Dst);              if (dstId == -1) throw Exception("Unknown DB directory: " + toEscapedPath(Dst));
1088              if (dirId == dstId) {              if (dirId == dstId) {
1089                  EndTransaction();                  EndTransaction();
1090                  return;                  return;
1091              }              }
1092    
             if (GetInstrumentId(dstId, instrName) != -1) {  
                 throw Exception("Cannot copy. Instrument with that name already exists: " + instrName);  
             }  
   
             if (GetDirectoryId(dstId, instrName) != -1) {  
                 throw Exception("Cannot copy. Directory with that name already exists: " + instrName);  
             }  
   
1093              CopyInstrument(instrId, instrName, dstId, Dst);              CopyInstrument(instrId, instrName, dstId, Dst);
1094          } catch (Exception e) {          } catch (Exception e) {
1095              EndTransaction();              EndTransaction();
# Line 1038  namespace LinuxSampler { Line 1100  namespace LinuxSampler {
1100      }      }
1101    
1102      void InstrumentsDb::CopyInstrument(int InstrId, String InstrName, int DstDirId, String DstDir) {      void InstrumentsDb::CopyInstrument(int InstrId, String InstrName, int DstDirId, String DstDir) {
1103            if (GetInstrumentId(DstDirId, InstrName) != -1) {
1104                String s = toEscapedPath(InstrName);
1105                throw Exception("Cannot copy. Instrument with that name already exists: " + s);
1106            }
1107    
1108            if (GetDirectoryId(DstDirId, InstrName) != -1) {
1109                String s = toEscapedPath(InstrName);
1110                throw Exception("Cannot copy. Directory with that name already exists: " + s);
1111            }
1112    
1113          DbInstrument i = GetInstrumentInfo(InstrId);          DbInstrument i = GetInstrumentInfo(InstrId);
1114          sqlite3_stmt *pStmt = NULL;          sqlite3_stmt *pStmt = NULL;
1115          std::stringstream sql;          std::stringstream sql;
# Line 1051  namespace LinuxSampler { Line 1123  namespace LinuxSampler {
1123              throw Exception("DB error: " + ToString(sqlite3_errmsg(db)));              throw Exception("DB error: " + ToString(sqlite3_errmsg(db)));
1124          }          }
1125    
1126          BindTextParam(pStmt, 1, InstrName);          String s = toDbName(InstrName);
1127            BindTextParam(pStmt, 1, s);
1128          BindTextParam(pStmt, 2, i.InstrFile);          BindTextParam(pStmt, 2, i.InstrFile);
1129          BindTextParam(pStmt, 3, i.FormatFamily);          BindTextParam(pStmt, 3, i.FormatFamily);
1130          BindTextParam(pStmt, 4, i.FormatVersion);          BindTextParam(pStmt, 4, i.FormatVersion);
# Line 1076  namespace LinuxSampler { Line 1149  namespace LinuxSampler {
1149          BeginTransaction();          BeginTransaction();
1150          try {          try {
1151              int id = GetInstrumentId(Instr);              int id = GetInstrumentId(Instr);
1152              if(id == -1) throw Exception("Unknown DB instrument: " + Instr);              if(id == -1) throw Exception("Unknown DB instrument: " + toEscapedPath(Instr));
1153    
1154              std::stringstream sql;              std::stringstream sql;
1155              sql << "UPDATE instruments SET description=?,modified=CURRENT_TIMESTAMP ";              sql << "UPDATE instruments SET description=?,modified=CURRENT_TIMESTAMP ";
# Line 1110  namespace LinuxSampler { Line 1183  namespace LinuxSampler {
1183                  }                  }
1184              }              }
1185          } catch(Exception e) {          } catch(Exception e) {
1186              std::cerr << e.Message() << std::endl;              e.PrintMessage();
1187          }          }
1188      }      }
1189    
1190      void InstrumentsDb::AddGigInstruments(String DbDir, String File, int Index, ScanProgress* pProgress) {      void InstrumentsDb::AddGigInstruments(String DbDir, String FilePath, int Index, ScanProgress* pProgress) {
1191          dmsg(2,("InstrumentsDb: AddGigInstruments(DbDir=%s,File=%s,Index=%d)\n", DbDir.c_str(), File.c_str(), Index));          dmsg(2,("InstrumentsDb: AddGigInstruments(DbDir=%s,FilePath=%s,Index=%d)\n", DbDir.c_str(), FilePath.c_str(), Index));
1192          int dirId = GetDirectoryId(DbDir);          int dirId = GetDirectoryId(DbDir);
1193          if (dirId == -1) throw Exception("Invalid DB directory: " + DbDir);          if (dirId == -1) throw Exception("Invalid DB directory: " + toEscapedPath(DbDir));
1194    
1195          struct stat statBuf;          File f = File(FilePath);
1196          int res = stat(File.c_str(), &statBuf);          if (!f.Exist()) {
         if (res) {  
1197              std::stringstream ss;              std::stringstream ss;
1198              ss << "Fail to stat `" << File << "`: " << strerror(errno);              ss << "Fail to stat `" << FilePath << "`: " << f.GetErrorMsg();
1199              throw Exception(ss.str());              throw Exception(ss.str());
1200          }          }
1201    
1202          if (!S_ISREG(statBuf.st_mode)) {          if (!f.IsFile()) {
1203              std::stringstream ss;              std::stringstream ss;
1204              ss << "`" << File << "` is not a regular file";              ss << "`" << FilePath << "` is not a regular file";
1205              throw Exception(ss.str());              throw Exception(ss.str());
1206          }          }
1207    
1208          RIFF::File* riff = NULL;          RIFF::File* riff = NULL;
1209          gig::File* gig = NULL;          gig::File* gig = NULL;
1210          try {          try {
1211              riff = new RIFF::File(File);              riff = new RIFF::File(FilePath);
1212              gig::File* gig = new gig::File(riff);              gig::File* gig = new gig::File(riff);
1213                gig->SetAutoLoad(false); // avoid time consuming samples scanning
1214    
1215              std::stringstream sql;              std::stringstream sql;
1216              sql << "INSERT INTO instruments (dir_id,instr_name,instr_file,";              sql << "INSERT INTO instruments (dir_id,instr_name,instr_file,";
1217              sql << "instr_nr,format_family,format_version,instr_size,";              sql << "instr_nr,format_family,format_version,instr_size,";
1218              sql << "description,is_drum,product,artists,keywords) VALUES (";              sql << "description,is_drum,product,artists,keywords) VALUES (";
1219              sql << dirId << ",?,?,?,'GIG',?," << statBuf.st_size << ",?,?,?,?,?)";              sql << dirId << ",?,?,?,'GIG',?," << f.GetSize() << ",?,?,?,?,?)";
1220    
1221              sqlite3_stmt* pStmt = NULL;              sqlite3_stmt* pStmt = NULL;
1222    
# Line 1152  namespace LinuxSampler { Line 1225  namespace LinuxSampler {
1225                  throw Exception("DB error: " + ToString(sqlite3_errmsg(db)));                  throw Exception("DB error: " + ToString(sqlite3_errmsg(db)));
1226              }              }
1227    
1228              BindTextParam(pStmt, 2, File);              String s = toEscapedFsPath(FilePath);
1229                BindTextParam(pStmt, 2, s);
1230              String ver = "";              String ver = "";
1231              if (gig->pVersion != NULL) ver = ToString(gig->pVersion->major);              if (gig->pVersion != NULL) ver = ToString(gig->pVersion->major);
1232              BindTextParam(pStmt, 4, ver);              BindTextParam(pStmt, 4, ver);
# Line 1165  namespace LinuxSampler { Line 1239  namespace LinuxSampler {
1239                      BindTextParam(pStmt, 7, gig->pInfo->Product);                      BindTextParam(pStmt, 7, gig->pInfo->Product);
1240                      BindTextParam(pStmt, 8, gig->pInfo->Artists);                      BindTextParam(pStmt, 8, gig->pInfo->Artists);
1241                      BindTextParam(pStmt, 9, gig->pInfo->Keywords);                      BindTextParam(pStmt, 9, gig->pInfo->Keywords);
1242                      AddGigInstrument(pStmt, DbDir, dirId, File, pInstrument, instrIndex);                      AddGigInstrument(pStmt, DbDir, dirId, FilePath, pInstrument, instrIndex);
1243    
1244                      instrIndex++;                      instrIndex++;
1245                      pInstrument = gig->GetNextInstrument();                      pInstrument = gig->GetNextInstrument();
# Line 1178  namespace LinuxSampler { Line 1252  namespace LinuxSampler {
1252                      BindTextParam(pStmt, 7, gig->pInfo->Product);                      BindTextParam(pStmt, 7, gig->pInfo->Product);
1253                      BindTextParam(pStmt, 8, gig->pInfo->Artists);                      BindTextParam(pStmt, 8, gig->pInfo->Artists);
1254                      BindTextParam(pStmt, 9, gig->pInfo->Keywords);                      BindTextParam(pStmt, 9, gig->pInfo->Keywords);
1255                      AddGigInstrument(pStmt, DbDir, dirId, File, pInstrument, Index);                      AddGigInstrument(pStmt, DbDir, dirId, FilePath, pInstrument, Index);
1256                  }                  }
1257              }              }
1258    
# Line 1189  namespace LinuxSampler { Line 1263  namespace LinuxSampler {
1263              if (gig != NULL) delete gig;              if (gig != NULL) delete gig;
1264              if (riff != NULL) delete riff;              if (riff != NULL) delete riff;
1265              std::stringstream ss;              std::stringstream ss;
1266              ss << "Failed to scan `" << File << "`: " << e.Message;              ss << "Failed to scan `" << FilePath << "`: " << e.Message;
1267                            
1268              throw Exception(ss.str());              throw Exception(ss.str());
1269          } catch (Exception e) {          } catch (Exception e) {
# Line 1199  namespace LinuxSampler { Line 1273  namespace LinuxSampler {
1273          } catch (...) {          } catch (...) {
1274              if (gig != NULL) delete gig;              if (gig != NULL) delete gig;
1275              if (riff != NULL) delete riff;              if (riff != NULL) delete riff;
1276              throw Exception("Failed to scan `" + File + "`");              throw Exception("Failed to scan `" + FilePath + "`");
1277          }          }
1278      }      }
1279    
1280      void InstrumentsDb::AddGigInstrument(sqlite3_stmt* pStmt, String DbDir, int DirId, String File, gig::Instrument* pInstrument, int Index) {      void InstrumentsDb::AddGigInstrument(sqlite3_stmt* pStmt, String DbDir, int DirId, String File, gig::Instrument* pInstrument, int Index) {
1281            dmsg(2,("InstrumentsDb: AddGigInstrument(DbDir=%s,DirId=%d,File=%s,Index=%d)\n", DbDir.c_str(), DirId, File.c_str(), Index));
1282          String name = pInstrument->pInfo->Name;          String name = pInstrument->pInfo->Name;
1283          if (name == "") return;          if (name == "") return;
1284          name = GetUniqueInstrumentName(DirId, name);          name = GetUniqueInstrumentName(DirId, name);
# Line 1211  namespace LinuxSampler { Line 1286  namespace LinuxSampler {
1286          std::stringstream sql2;          std::stringstream sql2;
1287          sql2 << "SELECT COUNT(*) FROM instruments WHERE instr_file=? AND ";          sql2 << "SELECT COUNT(*) FROM instruments WHERE instr_file=? AND ";
1288          sql2 << "instr_nr=" << Index;          sql2 << "instr_nr=" << Index;
1289          if (ExecSqlInt(sql2.str(), File) > 0) return;          String s = toEscapedFsPath(File);
1290            if (ExecSqlInt(sql2.str(), s) > 0) return;
1291    
1292          BindTextParam(pStmt, 1, name);          BindTextParam(pStmt, 1, name);
1293          BindIntParam(pStmt, 3, Index);          BindIntParam(pStmt, 3, Index);
# Line 1240  namespace LinuxSampler { Line 1316  namespace LinuxSampler {
1316          FireInstrumentCountChanged(DbDir);          FireInstrumentCountChanged(DbDir);
1317      }      }
1318    
1319      void InstrumentsDb::DirectoryTreeWalk(String Path, DirectoryHandler* pHandler) {      void InstrumentsDb::DirectoryTreeWalk(String AbstractPath, DirectoryHandler* pHandler) {
1320          int DirId = GetDirectoryId(Path);          int DirId = GetDirectoryId(AbstractPath);
1321          if(DirId == -1) throw Exception("Unknown DB directory: " + Path);          if(DirId == -1) throw Exception("Unknown DB directory: " + toEscapedPath(AbstractPath));
1322          DirectoryTreeWalk(pHandler, Path, DirId, 0);          DirectoryTreeWalk(pHandler, AbstractPath, DirId, 0);
1323      }      }
1324    
1325      void InstrumentsDb::DirectoryTreeWalk(DirectoryHandler* pHandler, String Path, int DirId, int Level) {      void InstrumentsDb::DirectoryTreeWalk(DirectoryHandler* pHandler, String AbstractPath, int DirId, int Level) {
1326          if(Level == 1000) throw Exception("Possible infinite loop detected");          if(Level == 1000) throw Exception("Possible infinite loop detected");
1327          pHandler->ProcessDirectory(Path, DirId);          pHandler->ProcessDirectory(AbstractPath, DirId);
1328                    
1329          String s;          String s;
1330          StringListPtr pDirs = GetDirectories(DirId);          StringListPtr pDirs = GetDirectories(DirId);
1331          for(int i = 0; i < pDirs->size(); i++) {          for(int i = 0; i < pDirs->size(); i++) {
1332              if (Path.length() == 1 && Path.at(0) == '/') s = "/" + pDirs->at(i);              if (AbstractPath.length() == 1 && AbstractPath.at(0) == '/') {
1333              else s = Path + "/" + pDirs->at(i);                  s = "/" + pDirs->at(i);
1334                } else {
1335                    s = AbstractPath + "/" + pDirs->at(i);
1336                }
1337              DirectoryTreeWalk(pHandler, s, GetDirectoryId(DirId, pDirs->at(i)), Level + 1);              DirectoryTreeWalk(pHandler, s, GetDirectoryId(DirId, pDirs->at(i)), Level + 1);
1338          }          }
1339      }      }
# Line 1266  namespace LinuxSampler { Line 1345  namespace LinuxSampler {
1345          BeginTransaction();          BeginTransaction();
1346          try {          try {
1347              int DirId = GetDirectoryId(Dir);              int DirId = GetDirectoryId(Dir);
1348              if(DirId == -1) throw Exception("Unknown DB directory: " + Dir);              if(DirId == -1) throw Exception("Unknown DB directory: " + toEscapedPath(Dir));
1349    
1350              if (Recursive) DirectoryTreeWalk(Dir, &directoryFinder);              if (Recursive) DirectoryTreeWalk(Dir, &directoryFinder);
1351              else directoryFinder.ProcessDirectory(Dir, DirId);              else directoryFinder.ProcessDirectory(Dir, DirId);
# Line 1286  namespace LinuxSampler { Line 1365  namespace LinuxSampler {
1365          BeginTransaction();          BeginTransaction();
1366          try {          try {
1367              int DirId = GetDirectoryId(Dir);              int DirId = GetDirectoryId(Dir);
1368              if(DirId == -1) throw Exception("Unknown DB directory: " + Dir);              if(DirId == -1) throw Exception("Unknown DB directory: " + toEscapedPath(Dir));
1369    
1370              if (Recursive) DirectoryTreeWalk(Dir, &instrumentFinder);              if (Recursive) DirectoryTreeWalk(Dir, &instrumentFinder);
1371              else instrumentFinder.ProcessDirectory(Dir, DirId);              else instrumentFinder.ProcessDirectory(Dir, DirId);
# Line 1298  namespace LinuxSampler { Line 1377  namespace LinuxSampler {
1377    
1378          return instrumentFinder.GetInstruments();          return instrumentFinder.GetInstruments();
1379      }      }
1380        
1381        StringListPtr InstrumentsDb::FindLostInstrumentFiles() {
1382            dmsg(2,("InstrumentsDb: FindLostInstrumentFiles()\n"));
1383    
1384            BeginTransaction();
1385            try {
1386                StringListPtr files = ExecSqlStringList("SELECT DISTINCT instr_file FROM instruments");
1387                StringListPtr result(new std::vector<String>);
1388                for (int i = 0; i < files->size(); i++) {
1389                    File f(toNonEscapedFsPath(files->at(i)));
1390                    if (!f.Exist()) result->push_back(files->at(i));
1391                }
1392                return result;
1393            } catch (Exception e) {
1394                EndTransaction();
1395                throw e;
1396            }
1397            EndTransaction();
1398        }
1399        
1400        void InstrumentsDb::SetInstrumentFilePath(String OldPath, String NewPath) {
1401            if (OldPath == NewPath) return;
1402            StringListPtr instrs;
1403            BeginTransaction();
1404            try {
1405                std::vector<String> params(2);
1406                params[0] = toEscapedFsPath(NewPath);
1407                params[1] = toEscapedFsPath(OldPath);
1408                instrs = GetInstrumentsByFile(OldPath);
1409                ExecSql("UPDATE instruments SET instr_file=? WHERE instr_file=?", params);
1410            } catch (Exception e) {
1411                EndTransaction();
1412                throw e;
1413            }
1414            EndTransaction();
1415            
1416            for (int i = 0; i < instrs->size(); i++) {
1417                FireInstrumentInfoChanged(instrs->at(i));
1418            }
1419        }
1420    
1421      void InstrumentsDb::BeginTransaction() {      void InstrumentsDb::BeginTransaction() {
1422          dmsg(2,("InstrumentsDb: BeginTransaction(InTransaction=%d)\n", InTransaction));          dmsg(2,("InstrumentsDb: BeginTransaction(InTransaction=%d)\n", InTransaction));
# Line 1359  namespace LinuxSampler { Line 1478  namespace LinuxSampler {
1478    
1479      void InstrumentsDb::ExecSql(String Sql) {      void InstrumentsDb::ExecSql(String Sql) {
1480          dmsg(2,("InstrumentsDb: ExecSql(Sql=%s)\n", Sql.c_str()));          dmsg(2,("InstrumentsDb: ExecSql(Sql=%s)\n", Sql.c_str()));
1481          sqlite3_stmt *pStmt = NULL;          std::vector<String> Params;
1482                    ExecSql(Sql, Params);
         int res = sqlite3_prepare(GetDb(), Sql.c_str(), -1, &pStmt, NULL);  
         if (res != SQLITE_OK) {  
             throw Exception("DB error: " + ToString(sqlite3_errmsg(db)));  
         }  
           
         res = sqlite3_step(pStmt);  
         if(res != SQLITE_DONE) {  
             sqlite3_finalize(pStmt);  
             throw Exception("DB error: " + ToString(sqlite3_errmsg(db)));  
         }  
   
         sqlite3_finalize(pStmt);  
1483      }      }
1484    
1485      void InstrumentsDb::ExecSql(String Sql, String Param) {      void InstrumentsDb::ExecSql(String Sql, String Param) {
1486          dmsg(2,("InstrumentsDb: ExecSql(Sql=%s,Param=%s)\n", Sql.c_str(), Param.c_str()));          dmsg(2,("InstrumentsDb: ExecSql(Sql=%s,Param=%s)\n", Sql.c_str(), Param.c_str()));
1487            std::vector<String> Params;
1488            Params.push_back(Param);
1489            ExecSql(Sql, Params);
1490        }
1491    
1492        void InstrumentsDb::ExecSql(String Sql, std::vector<String>& Params) {
1493            dmsg(2,("InstrumentsDb: ExecSql(Sql=%s,Params)\n", Sql.c_str()));
1494          sqlite3_stmt *pStmt = NULL;          sqlite3_stmt *pStmt = NULL;
1495                    
1496          int res = sqlite3_prepare(GetDb(), Sql.c_str(), -1, &pStmt, NULL);          int res = sqlite3_prepare(GetDb(), Sql.c_str(), -1, &pStmt, NULL);
# Line 1385  namespace LinuxSampler { Line 1499  namespace LinuxSampler {
1499              throw Exception("DB error: " + ToString(sqlite3_errmsg(db)));              throw Exception("DB error: " + ToString(sqlite3_errmsg(db)));
1500          }          }
1501    
1502          BindTextParam(pStmt, 1, Param);          for(int i = 0; i < Params.size(); i++) {
1503                BindTextParam(pStmt, i + 1, Params[i]);
1504            }
1505    
1506          res = sqlite3_step(pStmt);          res = sqlite3_step(pStmt);
1507          if (res != SQLITE_DONE) {          if (res != SQLITE_DONE) {
# Line 1467  namespace LinuxSampler { Line 1583  namespace LinuxSampler {
1583      }      }
1584    
1585      IntListPtr InstrumentsDb::ExecSqlIntList(String Sql) {      IntListPtr InstrumentsDb::ExecSqlIntList(String Sql) {
1586            dmsg(2,("InstrumentsDb: ExecSqlIntList(Sql=%s)\n", Sql.c_str()));
1587            std::vector<String> Params;
1588            return ExecSqlIntList(Sql, Params);
1589        }
1590    
1591        IntListPtr InstrumentsDb::ExecSqlIntList(String Sql, String Param) {
1592            dmsg(2,("InstrumentsDb: ExecSqlIntList(Sql=%s,Param=%s)\n", Sql.c_str(), Param.c_str()));
1593            std::vector<String> Params;
1594            Params.push_back(Param);
1595            return ExecSqlIntList(Sql, Params);
1596        }
1597    
1598        IntListPtr InstrumentsDb::ExecSqlIntList(String Sql, std::vector<String>& Params) {
1599            dmsg(2,("InstrumentsDb: ExecSqlIntList(Sql=%s)\n", Sql.c_str()));
1600          IntListPtr intList(new std::vector<int>);          IntListPtr intList(new std::vector<int>);
1601                    
1602          sqlite3_stmt *pStmt = NULL;          sqlite3_stmt *pStmt = NULL;
# Line 1476  namespace LinuxSampler { Line 1606  namespace LinuxSampler {
1606              throw Exception("DB error: " + ToString(sqlite3_errmsg(db)));              throw Exception("DB error: " + ToString(sqlite3_errmsg(db)));
1607          }          }
1608                    
1609            for(int i = 0; i < Params.size(); i++) {
1610                BindTextParam(pStmt, i + 1, Params[i]);
1611            }
1612            
1613          res = sqlite3_step(pStmt);          res = sqlite3_step(pStmt);
1614          while(res == SQLITE_ROW) {          while(res == SQLITE_ROW) {
1615              intList->push_back(sqlite3_column_int(pStmt, 0));              intList->push_back(sqlite3_column_int(pStmt, 0));
# Line 1493  namespace LinuxSampler { Line 1627  namespace LinuxSampler {
1627      }      }
1628            
1629      StringListPtr InstrumentsDb::ExecSqlStringList(String Sql) {      StringListPtr InstrumentsDb::ExecSqlStringList(String Sql) {
1630            dmsg(2,("InstrumentsDb: ExecSqlStringList(Sql=%s)\n", Sql.c_str()));
1631          StringListPtr stringList(new std::vector<String>);          StringListPtr stringList(new std::vector<String>);
1632                    
1633          sqlite3_stmt *pStmt = NULL;          sqlite3_stmt *pStmt = NULL;
# Line 1588  namespace LinuxSampler { Line 1723  namespace LinuxSampler {
1723          return Dir.substr(0, i);          return Dir.substr(0, i);
1724      }      }
1725    
1726        void InstrumentsDb::Format() {
1727            DbInstrumentsMutex.Lock();
1728            if (db != NULL) {
1729                sqlite3_close(db);
1730                db = NULL;
1731            }
1732    
1733            if (DbFile.empty()) DbFile = CONFIG_DEFAULT_INSTRUMENTS_DB_LOCATION;
1734            String bkp = DbFile + ".bkp";
1735            remove(bkp.c_str());
1736            if (rename(DbFile.c_str(), bkp.c_str()) && errno != ENOENT) {
1737                DbInstrumentsMutex.Unlock();
1738                throw Exception(String("Failed to backup database: ") + strerror(errno));
1739            }
1740            
1741            String f = DbFile;
1742            DbFile = "";
1743            try { CreateInstrumentsDb(f); }
1744            catch(Exception e) {
1745                DbInstrumentsMutex.Unlock();
1746                throw e;
1747            }
1748            DbInstrumentsMutex.Unlock();
1749            
1750            FireDirectoryCountChanged("/");
1751            FireInstrumentCountChanged("/");
1752        }
1753    
1754      void InstrumentsDb::CheckFileName(String File) {      void InstrumentsDb::CheckFileName(String File) {
1755          if (File.empty()) throw Exception("Invalid file name: " + File);          if (File.empty()) throw Exception("Invalid file name: " + File);
         if (File.find('/') != std::string::npos) {  
             throw Exception("Invalid file name: " + File);  
         }  
1756      }      }
1757    
1758      String InstrumentsDb::GetUniqueInstrumentName(int DirId, String Name) {      String InstrumentsDb::GetUniqueInstrumentName(int DirId, String Name) {
# Line 1611  namespace LinuxSampler { Line 1771  namespace LinuxSampler {
1771          throw Exception("Unable to find an unique name: " + Name);          throw Exception("Unable to find an unique name: " + Name);
1772      }      }
1773    
1774        String InstrumentsDb::toDbName(String AbstractName) {
1775            for (int i = 0; i < AbstractName.length(); i++) {
1776                if (AbstractName.at(i) == '\0') AbstractName.at(i) = '/';
1777            }
1778            return AbstractName;
1779        }
1780    
1781        String InstrumentsDb::toEscapedPath(String AbstractName) {
1782            for (int i = 0; i < AbstractName.length(); i++) {
1783                if (AbstractName.at(i) == '\0')      AbstractName.replace(i++, 1, "\\x2f");
1784                else if (AbstractName.at(i) == '\\') AbstractName.replace(i++, 1, "\\\\");
1785                else if (AbstractName.at(i) == '\'') AbstractName.replace(i++, 1, "\\'");
1786                else if (AbstractName.at(i) == '"')  AbstractName.replace(i++, 1, "\\\"");
1787                else if (AbstractName.at(i) == '\r') AbstractName.replace(i++, 1, "\\r");
1788                else if (AbstractName.at(i) == '\n') AbstractName.replace(i++, 1, "\\n");
1789            }
1790            return AbstractName;
1791        }
1792        
1793        String InstrumentsDb::toEscapedText(String text) {
1794            for (int i = 0; i < text.length(); i++) {
1795                if (text.at(i) == '\\')      text.replace(i++, 1, "\\\\");
1796                else if (text.at(i) == '\'') text.replace(i++, 1, "\\'");
1797                else if (text.at(i) == '"')  text.replace(i++, 1, "\\\"");
1798                else if (text.at(i) == '\r') text.replace(i++, 1, "\\r");
1799                else if (text.at(i) == '\n') text.replace(i++, 1, "\\n");
1800            }
1801            return text;
1802        }
1803        
1804        String InstrumentsDb::toNonEscapedText(String text) {
1805            String sb;
1806            for (int i = 0; i < text.length(); i++) {
1807                char c = text.at(i);
1808                            if(c == '\\') {
1809                                    if(i >= text.length()) {
1810                                            std::cerr << "Broken escape sequence!" << std::endl;
1811                                            break;
1812                                    }
1813                                    char c2 = text.at(++i);
1814                                    if(c2 == '\'')      sb.push_back('\'');
1815                                    else if(c2 == '"')  sb.push_back('"');
1816                                    else if(c2 == '\\') sb.push_back('\\');
1817                                    else if(c2 == 'r')  sb.push_back('\r');
1818                                    else if(c2 == 'n')  sb.push_back('\n');
1819                                    else std::cerr << "Unknown escape sequence \\" << c2 << std::endl;
1820                            } else {
1821                                    sb.push_back(c);
1822                            }
1823            }
1824            return sb;
1825        }
1826        
1827        String InstrumentsDb::toEscapedFsPath(String FsPath) {
1828            return toEscapedText(FsPath);
1829        }
1830        
1831        String InstrumentsDb::toNonEscapedFsPath(String FsPath) {
1832            return toNonEscapedText(FsPath);
1833        }
1834        
1835        String InstrumentsDb::toAbstractName(String DbName) {
1836            for (int i = 0; i < DbName.length(); i++) {
1837                if (DbName.at(i) == '/') DbName.at(i) = '\0';
1838            }
1839            return DbName;
1840        }
1841    
1842      void InstrumentsDb::FireDirectoryCountChanged(String Dir) {      void InstrumentsDb::FireDirectoryCountChanged(String Dir) {
1843          for (int i = 0; i < llInstrumentsDbListeners.GetListenerCount(); i++) {          for (int i = 0; i < llInstrumentsDbListeners.GetListenerCount(); i++) {
1844              llInstrumentsDbListeners.GetListener(i)->DirectoryCountChanged(Dir);              llInstrumentsDbListeners.GetListener(i)->DirectoryCountChanged(Dir);
# Line 1654  namespace LinuxSampler { Line 1882  namespace LinuxSampler {
1882      }      }
1883    
1884  } // namespace LinuxSampler  } // namespace LinuxSampler
   
 #endif // HAVE_SQLITE3  

Legend:
Removed from v.1200  
changed lines
  Added in v.1781

  ViewVC Help
Powered by ViewVC