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

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

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

revision 33 by schoenebeck, Mon Feb 16 19:30:42 2004 UTC revision 2306 by iliev, Tue Jan 24 13:00:40 2012 UTC
# Line 2  Line 2 
2   *                                                                         *   *                                                                         *
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003 by Benno Senoner and Christian Schoenebeck         *   *   Copyright (C) 2003-2004 by Benno Senoner and Christian Schoenebeck    *
6     *   Copyright (C) 2005-2011 Christian Schoenebeck                         *
7   *                                                                         *   *                                                                         *
8   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
9   *   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 21 
21   *   MA  02111-1307  USA                                                   *   *   MA  02111-1307  USA                                                   *
22   ***************************************************************************/   ***************************************************************************/
23    
 #include <stdio.h>  
 #include <stdlib.h>  
 #include <unistd.h>  
24  #include <getopt.h>  #include <getopt.h>
25  #include <signal.h>  #include <signal.h>
26  #include <pthread.h>  #include <sys/stat.h>
27    
28  #include "global.h"  #if defined(WIN32)
29  #include "diskthread.h"  // require at least Windows 2000 for the GlobalMemoryStatusEx() call
30  #include "audiothread.h"  #if _WIN32_WINNT < 0x0500
31  #include "alsaio.h"  #ifdef _WIN32_WINNT
32  #include "jackio.h"  #undef _WIN32_WINNT
33  #include "midiin.h"  #endif
34  #include "stream.h"  #define _WIN32_WINNT 0x0500
35  #include "RIFF.h"  #endif
36  #include "gig.h"  #endif
37    
38  #define AUDIO_CHANNELS          2     // stereo  #include "Sampler.h"
39  #define AUDIO_FRAGMENTS         3     // 3 fragments, if it does not work set it to 2  #include "common/global_private.h"
40  #define AUDIO_FRAGMENTSIZE      512   // each fragment has 512 frames  #include "engines/EngineFactory.h"
41  #define AUDIO_SAMPLERATE        44100 // Hz  #include "plugins/InstrumentEditorFactory.h"
42    #include "drivers/midi/MidiInputDeviceFactory.h"
43  enum patch_format_t {  #include "drivers/audio/AudioOutputDeviceFactory.h"
44      patch_format_unknown,  #include "effects/EffectFactory.h"
45      patch_format_gig,  #include "engines/gig/Profiler.h"
46      patch_format_dls  #include "network/lscpserver.h"
47  } patch_format;  #include "common/stacktrace.h"
48    #include "common/Features.h"
49  AudioIO*         pAudioIO;  #include "common/atomic.h"
50  DiskThread*      pDiskThread;  
51  AudioThread*     pAudioThread;  using namespace LinuxSampler;
52  MidiIn*          pMidiInThread;  
53  RIFF::File*      pRIFF;  Sampler*    pSampler    = NULL;
54  gig::File*       pGig;  LSCPServer* pLSCPServer = NULL;
55  gig::Instrument* pInstrument;  #if defined(WIN32)
56  uint             instrument_index;  // inet_aton seems missing under WIN32
57  double           volume;  #ifndef INADDR_NONE
58  int              num_fragments;  #define INADDR_NONE 0xffffffff
59  int              fragmentsize;  #endif
60  String           input_client;  
61  String           alsaout;  int inet_aton(const char *cp, struct in_addr *addr)
62  String           jack_playback[2];  {
63  bool             use_jack;      addr->s_addr = inet_addr(cp);
64  pthread_t        signalhandlerthread;      return (addr->s_addr == INADDR_NONE) ? 0 : 1;
65  uint             samplerate;  }
66    
67    #else
68    pid_t       main_pid;
69    #endif
70    bool bPrintStatistics = false;
71    bool profile = false;
72    bool tune = true;
73    static bool bShowStackTrace = false;
74    unsigned long int lscp_addr;
75    unsigned short int lscp_port;
76    String ExecAfterInit;
77    
78  void parse_options(int argc, char **argv);  void parse_options(int argc, char **argv);
79  void signal_handler(int signal);  void signal_handler(int signal);
80    void kill_app();
81    static atomic_t running = ATOMIC_INIT(1);
82    
83  int main(int argc, char **argv) {  int main(int argc, char **argv) {
     pAudioIO = NULL;  
     pRIFF    = NULL;  
     pGig     = NULL;  
84    
85      // setting signal handler for catching SIGINT (thus e.g. <CTRL><C>)      lscp_addr = htonl(LSCP_ADDR);
86      signalhandlerthread = pthread_self();      lscp_port = htons(LSCP_PORT);
     signal(SIGINT, signal_handler);  
87    
88      patch_format      = patch_format_unknown;      #if !defined(WIN32)
89      instrument_index  = 0;      main_pid = getpid();
90      num_fragments     = AUDIO_FRAGMENTS;      #endif
     fragmentsize      = AUDIO_FRAGMENTSIZE;  
     volume            = 0.25; // default volume  
     alsaout           = "0,0"; // default card  
     jack_playback[0]  = "";  
     jack_playback[1]  = "";  
     samplerate        = AUDIO_SAMPLERATE;  
     use_jack          = true;  
91    
92      // parse and assign command line options      // parse and assign command line options
93      parse_options(argc, argv);      parse_options(argc, argv);
94    
95      if (patch_format != patch_format_gig) {      // setting signal handler for catching SIGINT (thus e.g. <CTRL><C>)
96          printf("Sorry only Gigasampler loading migrated in LinuxSampler so far, use --gig to load a .gig file!\n");      signal(SIGINT, signal_handler);
         printf("Use 'linuxsampler --help' to see all available options.\n");  
         return EXIT_FAILURE;  
     }  
97    
98      int error = 1;      // initialize the stack trace mechanism with our binary file
99  #if HAVE_JACK      // (if requested by command line option)
100      if (use_jack) {      if (bShowStackTrace) {
101          dmsg(1,("Initializing audio output (Jack)..."));          #if defined(WIN32)
102          pAudioIO = new JackIO();          // FIXME: sigaction() not supported on WIN32, we ignore it for now
103          error = ((JackIO*)pAudioIO)->Initialize(AUDIO_CHANNELS, jack_playback);          #else
104          if (error) dmsg(1,("Trying Alsa output instead.\n"));          StackTraceInit(argv[0], -1);
105      }          // register signal handler for all unusual signals
106  #endif // HAVE_JACK          // (we will print the stack trace and exit)
107      if (error) {          struct sigaction sact;
108          dmsg(1,("Initializing audio output (Alsa)..."));          sigemptyset(&sact.sa_mask);
109          pAudioIO = new AlsaIO();          sact.sa_flags   = 0;
110          int error = ((AlsaIO*)pAudioIO)->Initialize(AUDIO_CHANNELS, samplerate, num_fragments, fragmentsize, alsaout);          sact.sa_handler = signal_handler;
111          if (error) return EXIT_FAILURE;          sigaction(SIGSEGV, &sact, NULL);
112            sigaction(SIGBUS,  &sact, NULL);
113            sigaction(SIGILL,  &sact, NULL);
114            sigaction(SIGFPE,  &sact, NULL);
115            sigaction(SIGUSR1, &sact, NULL);
116            sigaction(SIGUSR2, &sact, NULL);
117            #endif
118      }      }
     dmsg(1,("OK\n"));  
119    
120      // Loading gig file      dmsg(1,("LinuxSampler %s\n", VERSION));
121      try {      dmsg(1,("Copyright (C) 2003,2004 by Benno Senoner and Christian Schoenebeck\n"));
122          printf("Loading gig file...");      dmsg(1,("Copyright (C) 2005-2011 Christian Schoenebeck\n"));
123          fflush(stdout);  
124          pRIFF       = new RIFF::File(argv[argc - 1]);      #if defined(WIN32)
125          pGig        = new gig::File(pRIFF);      #if 0
126          pInstrument = pGig->GetInstrument(instrument_index);      // some WIN32 memory info code which tries to determine the maximum lockable amount of memory (for debug purposes)
127          if (!pInstrument) {      SYSTEM_INFO siSysInfo;
128              printf("there's no instrument with index %d.\n", instrument_index);      long physical_memory;
129              exit(EXIT_FAILURE);      GetSystemInfo(&siSysInfo);
130        dmsg(2,("page size=%d\n", siSysInfo.dwPageSize));
131    
132        MEMORYSTATUSEX statex;
133            statex.dwLength = sizeof (statex);
134        GlobalMemoryStatusEx (&statex);
135        dmsg(2, ("There are %*I64d total Kbytes of physical memory.\n",
136              8, statex.ullTotalPhys));
137        dmsg(2, ("There are %*I64d free Kbytes of physical memory.\n",
138              8, statex.ullAvailPhys));
139        physical_memory = statex.ullTotalPhys;
140    
141        HANDLE hProcess = GetCurrentProcess();
142    
143        unsigned long MinimumWorkingSetSize, MaximumWorkingSetSize;
144        unsigned long DefaultMinimumWorkingSetSize, DefaultMaximumWorkingSetSize;
145        unsigned long RequestedMinimumWorkingSetSize, RequestedMaximumWorkingSetSize;
146        int res;
147    
148        res = GetProcessWorkingSetSize(hProcess, &DefaultMinimumWorkingSetSize, &DefaultMaximumWorkingSetSize);
149    
150        RequestedMaximumWorkingSetSize = physical_memory - 2*1024*1024;
151        RequestedMinimumWorkingSetSize = RequestedMaximumWorkingSetSize;
152    
153        for(;;) {
154            dmsg(2,("TRYING VALUES  RequestedMinimumWorkingSetSize=%d, RequestedMaximumWorkingSetSize=%d\n", RequestedMinimumWorkingSetSize, RequestedMaximumWorkingSetSize));
155            res = SetProcessWorkingSetSize(hProcess, RequestedMinimumWorkingSetSize, RequestedMaximumWorkingSetSize);
156            dmsg(2,("AFTER SET: res = %d  RequestedMinimumWorkingSetSize=%d, RequestedMaximumWorkingSetSize=%d\n", res,RequestedMinimumWorkingSetSize, RequestedMaximumWorkingSetSize));
157    
158            res = GetProcessWorkingSetSize(hProcess, &MinimumWorkingSetSize, &MaximumWorkingSetSize);
159            dmsg(2,("AFTER GET: res = %d  MinimumWorkingSetSize=%d, MaximumWorkingSetSize=%d\n", res,MinimumWorkingSetSize, MaximumWorkingSetSize));
160    
161            if( RequestedMinimumWorkingSetSize == MinimumWorkingSetSize ) {
162                dmsg(2,("RequestedMinimumWorkingSetSize == MinimumWorkingSetSize. OK !\n"));
163                break;
164          }          }
165          pGig->GetFirstSample(); // just to complete instrument loading before we enter the realtime part  
166          printf("OK\n");          RequestedMinimumWorkingSetSize -=  10*1024*1024;
167          fflush(stdout);          if(RequestedMinimumWorkingSetSize < DefaultMinimumWorkingSetSize) break;
     }  
     catch (RIFF::Exception e) {  
         e.PrintMessage();  
         return EXIT_FAILURE;  
168      }      }
169      catch (...) {  
170          printf("Unknown exception while trying to parse gig file.\n");      dmsg(2,("AFTER GetProcessWorkingSetSize: res = %d  MinimumWorkingSetSize=%d, MaximumWorkingSetSize=%d\n", res,MinimumWorkingSetSize, MaximumWorkingSetSize));
171          return EXIT_FAILURE;      #endif
172        #endif // WIN32
173    
174        if (tune) {
175            // detect and print system / CPU specific features
176            Features::detect();
177            dmsg(1,("Detected features: %s\n", Features::featuresAsString().c_str()));
178            // prevent slow denormal FPU modes
179            Features::enableDenormalsAreZeroMode();
180      }      }
181    
182      DiskThread*  pDiskThread   = new DiskThread(((pAudioIO->MaxSamplesPerCycle() << MAX_PITCH) << 1) + 6); //FIXME: assuming stereo      dmsg(1,("Automatic Stacktrace: %s\n", (bShowStackTrace) ? "On" : "Off"));
     AudioThread* pAudioThread  = new AudioThread(pAudioIO, pDiskThread, pInstrument);  
     MidiIn*      pMidiInThread = new MidiIn(pAudioThread);  
183    
184      dmsg(1,("Starting disk thread..."));      // create LinuxSampler instance
185      pDiskThread->StartThread();      dmsg(1,("Creating Sampler..."));
186      dmsg(1,("OK\n"));      pSampler = new Sampler;
     dmsg(1,("Starting MIDI in thread..."));  
     if (input_client.size() > 0) pMidiInThread->SubscribeToClient(input_client.c_str());  
     pMidiInThread->StartThread();  
187      dmsg(1,("OK\n"));      dmsg(1,("OK\n"));
188    
189      sleep(1);      dmsg(1,("Registered sampler engines: %s\n", EngineFactory::AvailableEngineTypesAsString().c_str()));
190      dmsg(1,("Starting audio thread..."));      dmsg(1,("Registered MIDI input drivers: %s\n", MidiInputDeviceFactory::AvailableDriversAsString().c_str()));
191      pAudioThread->Volume = volume;      dmsg(1,("Registered audio output drivers: %s\n", AudioOutputDeviceFactory::AvailableDriversAsString().c_str()));
192      pAudioIO->AssignEngine(pAudioThread);      dmsg(1,("Registered instrument editors: %s\n", InstrumentEditorFactory::AvailableEditorsAsString().c_str()));
193      pAudioIO->Activate();      dmsg(1,("Registered internal effect systems: %s\n", EffectFactory::AvailableEffectSystemsAsString().c_str()));
194        dmsg(1,("Registered internal effects: %d\n", EffectFactory::AvailableEffectsCount()));
195    
196        // start LSCP network server
197        struct in_addr addr;
198        addr.s_addr = lscp_addr;
199        dmsg(1,("Starting LSCP network server (%s:%d)...", inet_ntoa(addr), ntohs(lscp_port)));
200        pLSCPServer = new LSCPServer(pSampler, lscp_addr, lscp_port);
201        pLSCPServer->StartThread();
202        pLSCPServer->WaitUntilInitialized();
203      dmsg(1,("OK\n"));      dmsg(1,("OK\n"));
204    
205      printf("LinuxSampler initialization completed.\n");      if (profile)
206        {
207            dmsg(1,("Calibrating profiler..."));
208            LinuxSampler::gig::Profiler::Calibrate();
209            LinuxSampler::gig::Profiler::Reset();
210            LinuxSampler::gig::Profiler::enable();
211            dmsg(1,("OK\n"));
212        }
213    
214      while(true)  {      printf("LinuxSampler initialization completed. :-)\n\n");
215        printf("Voices: %3.3d (Max: %3.3d) Streams: %3.3d (Max: %3.3d, Unused: %3.3d)\r",      
216              pAudioThread->ActiveVoiceCount, pAudioThread->ActiveVoiceCountMax,      if (ExecAfterInit != "") {
217              pDiskThread->ActiveStreamCount, pDiskThread->ActiveStreamCountMax, Stream::GetUnusedStreams());          printf("Executing command: %s\n\n", ExecAfterInit.c_str());
218        fflush(stdout);          if (system(ExecAfterInit.c_str()) == -1) {
219        usleep(500000);              std::cerr << "Failed to execute the command" << std::endl;
220            }
221      }      }
222    
223        while (atomic_read(&running)) {
224            if (bPrintStatistics) {
225                const std::set<Engine*>& engines = EngineFactory::EngineInstances();
226                std::set<Engine*>::iterator itEngine = engines.begin();
227                for (int i = 0; itEngine != engines.end(); itEngine++, i++) {
228                    Engine* pEngine = *itEngine;
229                    printf("Engine %d) Voices: %3.3d (Max: %3.3d) Streams: %3.3d (Max: %3.3d)\n", i,
230                        pEngine->VoiceCount(), pEngine->VoiceCountMax(),
231                        pEngine->DiskStreamCount(), pEngine->DiskStreamCountMax()
232                    );
233                    fflush(stdout);
234                }
235            }
236    
237            sleep(1);
238            if (profile)
239            {
240                unsigned int samplingFreq = 48000; //FIXME: hardcoded for now
241                unsigned int bv = LinuxSampler::gig::Profiler::GetBogoVoices(samplingFreq);
242                if (bv != 0)
243                {
244                    printf("       BogoVoices: %i         \r", bv);
245                    fflush(stdout);
246                }
247            }
248    
249            pSampler->fireStatistics();
250        }
251        if (pLSCPServer) pLSCPServer->StopThread();
252        // the delete order here is important: the Sampler
253        // destructor sends notifications to the lscpserver
254        if (pSampler) delete pSampler;
255        if (pLSCPServer) delete pLSCPServer;
256        printf("LinuxSampler stopped due to SIGINT.\n");
257      return EXIT_SUCCESS;      return EXIT_SUCCESS;
258  }  }
259    
260  void signal_handler(int signal) {  void signal_handler(int iSignal) {
261      if (pthread_equal(pthread_self(), signalhandlerthread) && signal == SIGINT) {      switch (iSignal) {
262          // stop all threads          case SIGINT:
263          if (pAudioIO)      pAudioIO->Close();              atomic_set(&running, 0);
264          if (pMidiInThread) pMidiInThread->StopThread();              return;
265          if (pDiskThread)   pDiskThread->StopThread();          #if defined(WIN32)
266            // FIXME: under WIN32 we ignore the signals below due to the missing sigaction call
267          // free all resources          #else
268          if (pMidiInThread) delete pMidiInThread;          case SIGSEGV:
269          if (pAudioThread)  delete pAudioThread;              std::cerr << ">>> FATAL ERROR: Segmentation fault (SIGSEGV) occured! <<<\n" << std::flush;
270          if (pDiskThread)   delete pDiskThread;              break;
271          if (pGig)          delete pGig;          case SIGBUS:
272          if (pRIFF)         delete pRIFF;              std::cerr << ">>> FATAL ERROR: Access to undefined portion of a memory object (SIGBUS) occured! <<<\n" << std::flush;
273          if (pAudioIO)      delete pAudioIO;              break;
274            case SIGILL:
275          printf("LinuxSampler stopped due to SIGINT\n");              std::cerr << ">>> FATAL ERROR: Illegal instruction (SIGILL) occured! <<<\n" << std::flush;
276          exit(EXIT_SUCCESS);              break;
277            case SIGFPE:
278                std::cerr << ">>> FATAL ERROR: Erroneous arithmetic operation (SIGFPE) occured! <<<\n" << std::flush;
279                break;
280            case SIGUSR1:
281                std::cerr << ">>> User defined signal 1 (SIGUSR1) received <<<\n" << std::flush;
282                break;
283            case SIGUSR2:
284                std::cerr << ">>> User defined signal 2 (SIGUSR2) received <<<\n" << std::flush;
285                break;
286            #endif
287            default: { // this should never happen, as we register for the signals we want
288                std::cerr << ">>> FATAL ERROR: Unknown signal received! <<<\n" << std::flush;
289                break;
290            }
291      }      }
292        signal(iSignal, SIG_DFL); // Reinstall default handler to prevent race conditions
293        if (bShowStackTrace) {
294            std::cerr << "Showing stack trace...\n" << std::flush;
295            StackTrace();
296            sleep(2);
297        }
298        std::cerr << "Killing LinuxSampler...\n" << std::flush;
299        kill_app(); // Use abort() if we want to generate a core dump.
300    }
301    
302    void kill_app() {
303        #if defined(WIN32)
304        // FIXME: do we need to do anything at this point under WIN32 ?  is exit(0) ok ?
305        exit(0);
306        #else
307        kill(main_pid, SIGKILL);
308        #endif
309  }  }
310    
311  void parse_options(int argc, char **argv) {  void parse_options(int argc, char **argv) {
# Line 196  void parse_options(int argc, char **argv Line 313  void parse_options(int argc, char **argv
313      int option_index = 0;      int option_index = 0;
314      static struct option long_options[] =      static struct option long_options[] =
315          {          {
             {"numfragments",1,0,0},  
             {"fragmentsize",1,0,0},  
             {"volume",1,0,0},  
             {"dls",0,0,0},  
             {"gig",0,0,0},  
             {"instrument",1,0,0},  
             {"inputclient",1,0,0},  
             {"alsaout",1,0,0},  
             {"jackout",1,0,0},  
             {"samplerate",1,0,0},  
316              {"help",0,0,0},              {"help",0,0,0},
317                {"version",0,0,0},
318                {"profile",0,0,0},
319                {"no-tune",0,0,0},
320                {"statistics",0,0,0},
321                {"instruments-db-location",1,0,0},
322                {"create-instruments-db",1,0,0},
323                {"lscp-addr",1,0,0},
324                {"lscp-port",1,0,0},
325                {"stacktrace",0,0,0},
326                {"exec-after-init",1,0,0},
327              {0,0,0,0}              {0,0,0,0}
328          };          };
329    
330      while (true) {      while (true) {
331          res = getopt_long_only(argc, argv, "", long_options, &option_index);          /*
332              Stephane Letz : letz@grame.fr
333              getopt_long_only does not exist on OSX : replaced by getopt_long for now.
334            */
335            res = getopt_long(argc, argv, "", long_options, &option_index);
336          if(res == -1) break;          if(res == -1) break;
337          if (res == 0) {          if (res == 0) {
338              switch(option_index) {              switch(option_index) {
339                  case 0: // --numfragments                  case 0: // --help
340                      num_fragments = atoi(optarg);                      printf("usage: linuxsampler [OPTIONS]\n\n");
341                      break;                      printf("--help                      prints this message\n");
342                  case 1: // --fragmentsize                      printf("--version                   prints version information\n");
343                      fragmentsize = atoi(optarg);                      printf("--profile                   profile synthesis algorithms\n");
344                      break;                      printf("--no-tune                   disable assembly optimization\n");
345                  case 2: // --volume                      printf("--statistics                periodically prints statistics\n");
346                      volume = atof(optarg);                      printf("--lscp-addr                 set LSCP address (default: any)\n");
347                      break;                      printf("--lscp-port                 set LSCP port (default: 8888)\n");
348                  case 3: // --dls                      printf("--create-instruments-db     creates an instruments DB\n");
349                      patch_format = patch_format_dls;                      printf("--instruments-db-location   specifies the instruments DB file\n");
350                        printf("--stacktrace                automatically shows stacktrace if crashes\n");
351                        printf("                            (broken on most systems at the moment)\n");
352                        printf("--exec-after-init           executes a command after initialization\n");
353                        exit(EXIT_SUCCESS);
354                      break;                      break;
355                  case 4: // --gig                  case 1: // --version
356                      patch_format = patch_format_gig;                      printf("LinuxSampler %s\n", VERSION);
357                        exit(EXIT_SUCCESS);
358                      break;                      break;
359                  case 5: // --instrument                  case 2: // --profile
360                      instrument_index = atoi(optarg);                      profile = true;
361                        //FIXME: profiling code is currently broken!
362                        std::cerr << "Option '--profile' is currently not supported, since the profiling code is currently broken!"  << std::endl;
363                        exit(EXIT_FAILURE);
364                      break;                      break;
365                  case 6: // --inputclient                  case 3: // --no-tune
366                      input_client = optarg;                      tune = false;
367                      break;                      break;
368                  case 7: // --alsaout                  case 4: // --statistics
369                      alsaout = optarg;                      bPrintStatistics = true;
                     use_jack = false; // If this option is specified do not connect to jack  
370                      break;                      break;
371                  case 8: { // --jackout                  case 5: // --instruments-db-location
372    #if HAVE_SQLITE3
373                      try {                      try {
374                          String arg(optarg);                          if (optarg) {
375                          // remove outer apostrophes                              struct stat statBuf;
376                          arg = arg.substr(arg.find('\'') + 1, arg.rfind('\'') - (arg.find('\'') + 1));                              int res = stat(optarg, &statBuf);
377                          // split in two arguments  
378                          jack_playback[0] = arg.substr(0, arg.find("\' "));                              if (res) {
379                          jack_playback[1] = arg.substr(arg.find("\' ") + 2, arg.size() - (arg.find("\' ") + 2));                                  std::stringstream ss;
380                          // remove inner apostrophes                                  ss << "Failed to stat `" << optarg << "`: " << strerror(errno);
381                          jack_playback[0] = jack_playback[0].substr(0, jack_playback[0].find('\''));                                  throw Exception(ss.str());
382                          jack_playback[1] = jack_playback[1].substr(jack_playback[1].find('\'') + 1, jack_playback[1].size() - jack_playback[1].find('\''));                              }
383                          // this is the default but set it up anyway in case alsa_card was also used.  
384                          use_jack = true;                              if (!S_ISREG(statBuf.st_mode)) {
385                                    std::stringstream ss;
386                                    ss << "`" << optarg << "` is not a regular file";
387                                    throw Exception(ss.str());
388                                }
389    
390                                InstrumentsDb::GetInstrumentsDb()->SetDbFile(String(optarg));
391                            }
392                        } catch(Exception e) {
393                            std::cerr << "Could not open instruments DB file: "
394                                      << e.Message() << std::endl;
395                            exit(EXIT_FAILURE);
396                      }                      }
397                      catch (...) {                      break;
398                          fprintf(stderr, "Invalid argument '%s' for parameter --jackout\n", optarg);  #else
399                        std::cerr << "LinuxSampler was not build with ";
400                        std::cerr << "instruments database support!\n";
401                        exit(EXIT_FAILURE);
402                        break;
403    #endif
404                    case 6: // --create-instruments-db
405    #if HAVE_SQLITE3
406                        try {
407                            if (optarg) {
408                                std::cout << "Creating instruments database..." << std::endl;
409                                InstrumentsDb::CreateInstrumentsDb(String(optarg));
410                                std::cout << "Done" << std::endl;
411                            }
412                        } catch(Exception e) {
413                            std::cerr << e.Message() << std::endl;
414                          exit(EXIT_FAILURE);                          exit(EXIT_FAILURE);
415                            return;
416                      }                      }
417    
418                        exit(EXIT_SUCCESS);
419                        return;
420    #else
421                        std::cerr << "Failed to create the database. LinuxSampler was ";
422                        std::cerr << "not build with instruments database support!\n";
423                        exit(EXIT_FAILURE);
424                        return;
425    #endif
426                    case 7: { // --lscp-addr
427                        struct in_addr addr;
428                        if (inet_aton(optarg, &addr) == 0)
429                            printf("WARNING: Failed to parse lscp-addr argument, ignoring!\n");
430                        else
431                            lscp_addr = addr.s_addr;
432                      break;                      break;
433                  }                  }
434                  case 9: // --samplerate                  case 8: {// --lscp-port
435                      samplerate = atoi(optarg);                      long unsigned int port = 0;
436                        if ((sscanf(optarg, "%u", &port) != 1) || (port == 0) || (port > 65535))
437                            printf("WARNING: Failed to parse lscp-port argument, ignoring!\n");
438                        else
439                            lscp_port = htons(port);
440                      break;                      break;
441                  case 10: // --help                  }
442                      printf("usage: linuxsampler [OPTIONS] <INSTRUMENTFILE>\n\n");                  case 9: // --stacktrace
443                      printf("--gig              loads a Gigasampler instrument\n");                      bShowStackTrace = true;
444                      printf("--dls              loads a DLS instrument\n");                      break;
445                      printf("--instrument       index of the instrument in the instrument file if it\n");                  case 10: // --exec-after-init
446                      printf("                   contains more than one (default: 0)\n");                      ExecAfterInit = optarg;
                     printf("--numfragments     sets the number of audio fragments\n");  
                     printf("--fragmentsize     sets the fragment size\n");  
                     printf("--volume           sets global volume gain factor (a value > 1.0 means\n");  
                     printf("                   amplification, a value < 1.0 means attenuation,\n");  
                     printf("                   default: 0.25)\n");  
                     printf("--inputclient      connects to an Alsa sequencer input client on startup\n");  
                     printf("                   (e.g. 64:0 to connect to a client with ID 64 and port 0)\n");  
                     printf("--alsaout          connects to the given Alsa sound device on startup\n");  
                     printf("                   (e.g. 0,0 to connect to hw:0,0 or plughw:0,0)\n");  
                     printf("--jackout          connects to the given Jack playback ports on startup\n");  
                     printf("                   (e.g. \"\'alsa_pcm:playback_1\' \'alsa_pcm:playback_2\'\"\n");  
                     printf("                   in case of stereo output)\n");  
                     printf("--samplerate       sets sample rate if supported by audio output system\n");  
                     printf("                   (e.g. 44100)\n");  
                     exit(EXIT_SUCCESS);  
447                      break;                      break;
448              }              }
449          }          }

Legend:
Removed from v.33  
changed lines
  Added in v.2306

  ViewVC Help
Powered by ViewVC