/[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 361 by schoenebeck, Wed Feb 9 01:22:18 2005 UTC revision 425 by persson, Sat Mar 5 07:27:48 2005 UTC
# Line 3  Line 3 
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 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 24  Line 25 
25  #include <signal.h>  #include <signal.h>
26    
27  #include "Sampler.h"  #include "Sampler.h"
28    #include "engines/EngineFactory.h"
29  #include "drivers/midi/MidiInputDeviceFactory.h"  #include "drivers/midi/MidiInputDeviceFactory.h"
30  #include "drivers/audio/AudioOutputDeviceFactory.h"  #include "drivers/audio/AudioOutputDeviceFactory.h"
31  #include "engines/gig/Profiler.h"  #include "engines/gig/Profiler.h"
# Line 36  using namespace LinuxSampler; Line 38  using namespace LinuxSampler;
38  Sampler*    pSampler    = NULL;  Sampler*    pSampler    = NULL;
39  LSCPServer* pLSCPServer = NULL;  LSCPServer* pLSCPServer = NULL;
40  pthread_t   main_thread;  pthread_t   main_thread;
41    bool bPrintStatistics = false;
42  bool profile = false;  bool profile = false;
43  bool tune = true;  bool tune = true;
44    
# Line 71  int main(int argc, char **argv) { Line 74  int main(int argc, char **argv) {
74    
75      dmsg(1,("LinuxSampler %s\n", VERSION));      dmsg(1,("LinuxSampler %s\n", VERSION));
76      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"));
77        dmsg(1,("Copyright (C) 2005 Christian Schoenebeck\n"));
78    
79      if (tune)      if (tune)
80      {      {
81              // detect and print system / CPU specific features          // detect and print system / CPU specific features
82              String sFeatures;          String sFeatures;
83              Features::detect();          Features::detect();
84  #if ARCH_X86  #if ARCH_X86
85              if (Features::supportsMMX()) sFeatures += " MMX";          if (Features::supportsMMX()) sFeatures += " MMX";
86              if (Features::supportsSSE()) sFeatures += " SSE";          if (Features::supportsSSE()) sFeatures += " SSE";
87            if (Features::supportsSSE2()) {
88                sFeatures += " SSE2";
89    
90                // enable denormals-are-zeros mode
91                int x;
92                __asm__ __volatile__ (
93                    "stmxcsr %0\n\t"
94                    "movl    %0, %%eax\n\t"
95                    "orl     $0x40, %%eax\n\t"
96                    "movl    %%eax, %0\n\t"
97                    "ldmxcsr %0\n\t"
98                    :: "m" (x)
99                    : "%eax"
100                    );
101            }
102  #endif // ARCH_X86  #endif // ARCH_X86
103              if (!sFeatures.size()) sFeatures = " None";          if (!sFeatures.size()) sFeatures = " None";
104              dmsg(1,("Detected features:%s\n",sFeatures.c_str()));          dmsg(1,("Detected features:%s\n",sFeatures.c_str()));
105      }      }
106    
107      // create LinuxSampler instance      // create LinuxSampler instance
# Line 102  int main(int argc, char **argv) { Line 121  int main(int argc, char **argv) {
121    
122      if (profile)      if (profile)
123      {      {
124              dmsg(1,("Calibrating profiler..."));          dmsg(1,("Calibrating profiler..."));
125              gig::Profiler::Calibrate();          gig::Profiler::Calibrate();
126              gig::Profiler::Reset();          gig::Profiler::Reset();
127              dmsg(1,("OK\n"));          dmsg(1,("OK\n"));
128      }      }
129    
130      printf("LinuxSampler initialization completed.\n");      printf("LinuxSampler initialization completed.\n");
# Line 115  int main(int argc, char **argv) { Line 134  int main(int argc, char **argv) {
134      rtEvents.push_back(LSCPEvent::event_stream_count);      rtEvents.push_back(LSCPEvent::event_stream_count);
135      rtEvents.push_back(LSCPEvent::event_buffer_fill);      rtEvents.push_back(LSCPEvent::event_buffer_fill);
136    
137      while(true)      while (true) {
138      {          if (bPrintStatistics) {
139        /*printf("Voices: %3.3d (Max: %3.3d) Streams: %3.3d (Max: %3.3d, Unused: %3.3d)\r",              std::set<Engine*> engines = EngineFactory::EngineInstances();
140              pEngine->ActiveVoiceCount, pEngine->ActiveVoiceCountMax,              std::set<Engine*>::iterator itEngine = engines.begin();
141              pEngine->pDiskThread->ActiveStreamCount, pEngine->pDiskThread->ActiveStreamCountMax, Stream::GetUnusedStreams());              for (int i = 0; itEngine != engines.end(); itEngine++, i++) {
142        fflush(stdout);*/                  Engine* pEngine = *itEngine;
143                    printf("Engine %d) Voices: %3.3d (Max: %3.3d) Streams: %3.3d (Max: %3.3d)\n", i,
144                        pEngine->VoiceCount(), pEngine->VoiceCountMax(),
145                        pEngine->DiskStreamCount(), pEngine->DiskStreamCountMax()
146                    );
147                    fflush(stdout);
148                }
149            }
150    
151        sleep(1);        sleep(1);
152        if (profile)        if (profile)
153        {        {
154                unsigned int samplingFreq = 48000; //FIXME: hardcoded for now            unsigned int samplingFreq = 48000; //FIXME: hardcoded for now
155                unsigned int bv = gig::Profiler::GetBogoVoices(samplingFreq);            unsigned int bv = gig::Profiler::GetBogoVoices(samplingFreq);
156                if (bv != 0)            if (bv != 0)
157                {            {
158                        printf("       BogoVoices: %i         \r", bv);                printf("       BogoVoices: %i         \r", bv);
159                        fflush(stdout);                fflush(stdout);
160                }            }
161        }        }
162          
163        if (LSCPServer::EventSubscribers(rtEvents))        if (LSCPServer::EventSubscribers(rtEvents))
164        {        {
165                LSCPServer::LockRTNotify();            LSCPServer::LockRTNotify();
166                std::map<uint,SamplerChannel*> channels = pSampler->GetSamplerChannels();            std::map<uint,SamplerChannel*> channels = pSampler->GetSamplerChannels();
167                std::map<uint,SamplerChannel*>::iterator iter = channels.begin();            std::map<uint,SamplerChannel*>::iterator iter = channels.begin();
168                for (; iter != channels.end(); iter++) {            for (; iter != channels.end(); iter++) {
169                        SamplerChannel* pSamplerChannel = iter->second;                SamplerChannel* pSamplerChannel = iter->second;
170                        Engine* pEngine = pSamplerChannel->GetEngine();                EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();
171                        if (!pEngine) continue;                if (!pEngineChannel) continue;
172                        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_voice_count, iter->first, pEngine->VoiceCount()));                Engine* pEngine = pEngineChannel->GetEngine();
173                        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_stream_count, iter->first, pEngine->DiskStreamCount()));                if (!pEngine) continue;
174                        LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_buffer_fill, iter->first, pEngine->DiskStreamBufferFillPercentage()));                LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_voice_count, iter->first, pEngine->VoiceCount()));
175                }                LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_stream_count, iter->first, pEngine->DiskStreamCount()));
176                LSCPServer::UnlockRTNotify();                LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_buffer_fill, iter->first, pEngine->DiskStreamBufferFillPercentage()));
177              }
178              LSCPServer::UnlockRTNotify();
179        }        }
180    
181      }      }
# Line 212  void parse_options(int argc, char **argv Line 241  void parse_options(int argc, char **argv
241              {"version",0,0,0},              {"version",0,0,0},
242              {"profile",0,0,0},              {"profile",0,0,0},
243              {"no-tune",0,0,0},              {"no-tune",0,0,0},
244                {"statistics",0,0,0},
245              {0,0,0,0}              {0,0,0,0}
246          };          };
247    
# Line 230  void parse_options(int argc, char **argv Line 260  void parse_options(int argc, char **argv
260                      printf("--version          prints version information\n");                      printf("--version          prints version information\n");
261                      printf("--profile          profile synthesis algorithms\n");                      printf("--profile          profile synthesis algorithms\n");
262                      printf("--no-tune          disable assembly optimization\n");                      printf("--no-tune          disable assembly optimization\n");
263                        printf("--statistics       prints periodically statistics\n");
264                      exit(EXIT_SUCCESS);                      exit(EXIT_SUCCESS);
265                      break;                      break;
266                  case 1: // --version                  case 1: // --version
# Line 237  void parse_options(int argc, char **argv Line 268  void parse_options(int argc, char **argv
268                      exit(EXIT_SUCCESS);                      exit(EXIT_SUCCESS);
269                      break;                      break;
270                  case 2: // --profile                  case 2: // --profile
271                      profile = true;                      profile = true;
272                      break;                      break;
273                  case 3: // --no-tune                  case 3: // --no-tune
274                      tune = false;                      tune = false;
275                        break;
276                    case 4: // --statistics
277                        bPrintStatistics = true;
278                      break;                      break;
279              }              }
280          }          }

Legend:
Removed from v.361  
changed lines
  Added in v.425

  ViewVC Help
Powered by ViewVC