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

Legend:
Removed from v.10  
changed lines
  Added in v.1908

  ViewVC Help
Powered by ViewVC