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

Legend:
Removed from v.207  
changed lines
  Added in v.3058

  ViewVC Help
Powered by ViewVC