/[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 778 by iliev, Fri Sep 23 06:58:26 2005 UTC revision 2326 by persson, Thu Mar 8 19:40:14 2012 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 Christian Schoenebeck                              *   *   Copyright (C) 2005-2012 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 23  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"  #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"  #include "engines/gig/Profiler.h"
46  #include "network/lscpserver.h"  #include "network/lscpserver.h"
47  #include "common/stacktrace.h"  #include "common/stacktrace.h"
48  #include "common/Features.h"  #include "common/Features.h"
49    #include "common/atomic.h"
50    
51  using namespace LinuxSampler;  using namespace LinuxSampler;
52    
53  Sampler*    pSampler    = NULL;  Sampler*    pSampler    = NULL;
54  LSCPServer* pLSCPServer = NULL;  LSCPServer* pLSCPServer = NULL;
55  pthread_t   main_thread;  #if defined(WIN32)
56    // inet_aton seems missing under WIN32
57    #ifndef INADDR_NONE
58    #define INADDR_NONE 0xffffffff
59    #endif
60    
61    int inet_aton(const char *cp, struct in_addr *addr)
62    {
63        addr->s_addr = inet_addr(cp);
64        return (addr->s_addr == INADDR_NONE) ? 0 : 1;
65    }
66    
67    #else
68    pid_t       main_pid;
69    #endif
70  bool bPrintStatistics = false;  bool bPrintStatistics = false;
71  bool profile = false;  bool profile = false;
72  bool tune = true;  bool tune = true;
73    static bool bShowStackTrace = false;
74  unsigned long int lscp_addr;  unsigned long int lscp_addr;
75  unsigned short int lscp_port;  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();  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) {
84    
85      // initialize the stack trace mechanism with our binary file      lscp_addr = htonl(LSCP_ADDR);
86      StackTraceInit(argv[0], -1);      lscp_port = htons(LSCP_PORT);
87    
88      main_thread = pthread_self();      #if !defined(WIN32)
89        main_pid = getpid();
90        #endif
91    
92        // parse and assign command line options
93        parse_options(argc, argv);
94    
95      // setting signal handler for catching SIGINT (thus e.g. <CTRL><C>)      // setting signal handler for catching SIGINT (thus e.g. <CTRL><C>)
96      signal(SIGINT, signal_handler);      signal(SIGINT, signal_handler);
97    
98      // register signal handler for all unusual signals      // initialize the stack trace mechanism with our binary file
99      // (we will print the stack trace and exit)      // (if requested by command line option)
100      struct sigaction sact;      if (bShowStackTrace) {
101      sigemptyset(&sact.sa_mask);          #if defined(WIN32)
102      sact.sa_flags   = 0;          // FIXME: sigaction() not supported on WIN32, we ignore it for now
103      sact.sa_handler = signal_handler;          #else
104      sigaction(SIGSEGV, &sact, NULL);          StackTraceInit(argv[0], -1);
105      sigaction(SIGBUS,  &sact, NULL);          // register signal handler for all unusual signals
106      sigaction(SIGILL,  &sact, NULL);          // (we will print the stack trace and exit)
107      sigaction(SIGFPE,  &sact, NULL);          struct sigaction sact;
108      sigaction(SIGUSR1, &sact, NULL);          sigemptyset(&sact.sa_mask);
109      sigaction(SIGUSR2, &sact, NULL);          sact.sa_flags   = 0;
110            sact.sa_handler = signal_handler;
111            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        }
119    
120      lscp_addr = htonl(LSCP_ADDR);      dmsg(1,("LinuxSampler %s\n", VERSION));
121      lscp_port = htons(LSCP_PORT);      dmsg(1,("Copyright (C) 2003,2004 by Benno Senoner and Christian Schoenebeck\n"));
122        dmsg(1,("Copyright (C) 2005-2012 Christian Schoenebeck\n"));
123    
124      // parse and assign command line options      #if defined(WIN32)
125      parse_options(argc, argv);      #if 0
126        // some WIN32 memory info code which tries to determine the maximum lockable amount of memory (for debug purposes)
127        SYSTEM_INFO siSysInfo;
128        long physical_memory;
129        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      dmsg(1,("LinuxSampler %s\n", VERSION));      res = GetProcessWorkingSetSize(hProcess, &DefaultMinimumWorkingSetSize, &DefaultMaximumWorkingSetSize);
149      dmsg(1,("Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck\n"));  
150      dmsg(1,("Copyright (C) 2005 Christian Schoenebeck\n"));      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    
166            RequestedMinimumWorkingSetSize -=  10*1024*1024;
167            if(RequestedMinimumWorkingSetSize < DefaultMinimumWorkingSetSize) break;
168        }
169    
170        dmsg(2,("AFTER GetProcessWorkingSetSize: res = %d  MinimumWorkingSetSize=%d, MaximumWorkingSetSize=%d\n", res,MinimumWorkingSetSize, MaximumWorkingSetSize));
171        #endif
172        #endif // WIN32
173    
174      if (tune) {      if (tune) {
175          // detect and print system / CPU specific features          // detect and print system / CPU specific features
# Line 89  int main(int argc, char **argv) { Line 179  int main(int argc, char **argv) {
179          Features::enableDenormalsAreZeroMode();          Features::enableDenormalsAreZeroMode();
180      }      }
181    
182        dmsg(1,("Automatic Stacktrace: %s\n", (bShowStackTrace) ? "On" : "Off"));
183    
184      // create LinuxSampler instance      // create LinuxSampler instance
185      dmsg(1,("Creating Sampler..."));      dmsg(1,("Creating Sampler..."));
186      pSampler = new Sampler;      pSampler = new Sampler;
187      dmsg(1,("OK\n"));      dmsg(1,("OK\n"));
188    
189        dmsg(1,("Registered sampler engines: %s\n", EngineFactory::AvailableEngineTypesAsString().c_str()));
190      dmsg(1,("Registered MIDI input drivers: %s\n", MidiInputDeviceFactory::AvailableDriversAsString().c_str()));      dmsg(1,("Registered MIDI input drivers: %s\n", MidiInputDeviceFactory::AvailableDriversAsString().c_str()));
191      dmsg(1,("Registered audio output drivers: %s\n", AudioOutputDeviceFactory::AvailableDriversAsString().c_str()));      dmsg(1,("Registered audio output drivers: %s\n", AudioOutputDeviceFactory::AvailableDriversAsString().c_str()));
192        dmsg(1,("Registered instrument editors: %s\n", InstrumentEditorFactory::AvailableEditorsAsString().c_str()));
193        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      // start LSCP network server
197      struct in_addr addr;      struct in_addr addr;
# Line 109  int main(int argc, char **argv) { Line 205  int main(int argc, char **argv) {
205      if (profile)      if (profile)
206      {      {
207          dmsg(1,("Calibrating profiler..."));          dmsg(1,("Calibrating profiler..."));
208          gig::Profiler::Calibrate();          LinuxSampler::gig::Profiler::Calibrate();
209          gig::Profiler::Reset();          LinuxSampler::gig::Profiler::Reset();
210          gig::Profiler::enable();          LinuxSampler::gig::Profiler::enable();
211          dmsg(1,("OK\n"));          dmsg(1,("OK\n"));
212      }      }
213    
214      printf("LinuxSampler initialization completed. :-)\n\n");      printf("LinuxSampler initialization completed. :-)\n\n");
215        
216        if (ExecAfterInit != "") {
217            printf("Executing command: %s\n\n", ExecAfterInit.c_str());
218            if (system(ExecAfterInit.c_str()) == -1) {
219                std::cerr << "Failed to execute the command" << std::endl;
220            }
221        }
222    
223      std::list<LSCPEvent::event_t> rtEvents;      while (atomic_read(&running)) {
     rtEvents.push_back(LSCPEvent::event_voice_count);  
     rtEvents.push_back(LSCPEvent::event_stream_count);  
     rtEvents.push_back(LSCPEvent::event_buffer_fill);  
     rtEvents.push_back(LSCPEvent::event_total_voice_count);  
   
     while (true) {  
224          if (bPrintStatistics) {          if (bPrintStatistics) {
225              std::set<Engine*> engines = EngineFactory::EngineInstances();              const std::set<Engine*>& engines = EngineFactory::EngineInstances();
226              std::set<Engine*>::iterator itEngine = engines.begin();              std::set<Engine*>::iterator itEngine = engines.begin();
227              for (int i = 0; itEngine != engines.end(); itEngine++, i++) {              for (int i = 0; itEngine != engines.end(); itEngine++, i++) {
228                  Engine* pEngine = *itEngine;                  Engine* pEngine = *itEngine;
# Line 137  int main(int argc, char **argv) { Line 234  int main(int argc, char **argv) {
234              }              }
235          }          }
236    
237        sleep(1);          sleep(1);
238        if (profile)          if (profile)
239        {          {
240            unsigned int samplingFreq = 48000; //FIXME: hardcoded for now              unsigned int samplingFreq = 48000; //FIXME: hardcoded for now
241            unsigned int bv = gig::Profiler::GetBogoVoices(samplingFreq);              unsigned int bv = LinuxSampler::gig::Profiler::GetBogoVoices(samplingFreq);
242            if (bv != 0)              if (bv != 0)
243            {              {
244                printf("       BogoVoices: %i         \r", bv);                  printf("       BogoVoices: %i         \r", bv);
245                fflush(stdout);                  fflush(stdout);
246            }              }
247        }          }
   
       if (LSCPServer::EventSubscribers(rtEvents))  
       {  
           LSCPServer::LockRTNotify();  
           std::map<uint,SamplerChannel*> channels = pSampler->GetSamplerChannels();  
           std::map<uint,SamplerChannel*>::iterator iter = channels.begin();  
           for (; iter != channels.end(); iter++) {  
               SamplerChannel* pSamplerChannel = iter->second;  
               EngineChannel* pEngineChannel = pSamplerChannel->GetEngineChannel();  
               if (!pEngineChannel) continue;  
               Engine* pEngine = pEngineChannel->GetEngine();  
               if (!pEngine) continue;  
               LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_voice_count, iter->first, pEngine->VoiceCount()));  
               LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_stream_count, iter->first, pEngine->DiskStreamCount()));  
               LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_buffer_fill, iter->first, pEngine->DiskStreamBufferFillPercentage()));  
               LSCPServer::SendLSCPNotify(LSCPEvent(LSCPEvent::event_total_voice_count, pSampler->GetVoiceCount()));  
           }  
           LSCPServer::UnlockRTNotify();  
       }  
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 iSignal) {  void signal_handler(int iSignal) {
261      switch (iSignal) {      switch (iSignal) {
262          case SIGINT: {          case SIGINT:
263              if (pthread_equal(pthread_self(), main_thread)) {              atomic_set(&running, 0);
                 if (pLSCPServer) {  
                     pLSCPServer->StopThread();  
                     delete pLSCPServer;  
                 }  
                 if (pSampler) delete pSampler;  
                 printf("LinuxSampler stopped due to SIGINT.\n");  
                 exit(EXIT_SUCCESS);  
             }  
264              return;              return;
265          }          #if defined(WIN32)
266            // FIXME: under WIN32 we ignore the signals below due to the missing sigaction call
267            #else
268          case SIGSEGV:          case SIGSEGV:
269              std::cerr << ">>> FATAL ERROR: Segmentation fault (SIGSEGV) occured! <<<\n" << std::flush;              std::cerr << ">>> FATAL ERROR: Segmentation fault (SIGSEGV) occured! <<<\n" << std::flush;
270              break;              break;
# Line 205  void signal_handler(int iSignal) { Line 283  void signal_handler(int iSignal) {
283          case SIGUSR2:          case SIGUSR2:
284              std::cerr << ">>> User defined signal 2 (SIGUSR2) received <<<\n" << std::flush;              std::cerr << ">>> User defined signal 2 (SIGUSR2) received <<<\n" << std::flush;
285              break;              break;
286            #endif
287          default: { // this should never happen, as we register for the signals we want          default: { // this should never happen, as we register for the signals we want
288              std::cerr << ">>> FATAL ERROR: Unknown signal received! <<<\n" << std::flush;              std::cerr << ">>> FATAL ERROR: Unknown signal received! <<<\n" << std::flush;
289              break;              break;
290          }          }
291      }      }
292      signal(iSignal, SIG_DFL); // Reinstall default handler to prevent race conditions      signal(iSignal, SIG_DFL); // Reinstall default handler to prevent race conditions
293      std::cerr << "Showing stack trace...\n" << std::flush;      if (bShowStackTrace) {
294      StackTrace();          std::cerr << "Showing stack trace...\n" << std::flush;
295      sleep(2);          StackTrace();
296            sleep(2);
297        }
298      std::cerr << "Killing LinuxSampler...\n" << std::flush;      std::cerr << "Killing LinuxSampler...\n" << std::flush;
299      kill_app(); // Use abort() if we want to generate a core dump.      kill_app(); // Use abort() if we want to generate a core dump.
300  }  }
301    
302  void kill_app() {  void kill_app() {
303      kill(main_thread, SIGKILL);      #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 232  void parse_options(int argc, char **argv Line 318  void parse_options(int argc, char **argv
318              {"profile",0,0,0},              {"profile",0,0,0},
319              {"no-tune",0,0,0},              {"no-tune",0,0,0},
320              {"statistics",0,0,0},              {"statistics",0,0,0},
321                {"instruments-db-location",1,0,0},
322                {"create-instruments-db",1,0,0},
323              {"lscp-addr",1,0,0},              {"lscp-addr",1,0,0},
324              {"lscp-port",1,0,0},              {"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    
# Line 248  void parse_options(int argc, char **argv Line 338  void parse_options(int argc, char **argv
338              switch(option_index) {              switch(option_index) {
339                  case 0: // --help                  case 0: // --help
340                      printf("usage: linuxsampler [OPTIONS]\n\n");                      printf("usage: linuxsampler [OPTIONS]\n\n");
341                      printf("--help             prints this message\n");                      printf("--help                      prints this message\n");
342                      printf("--version          prints version information\n");                      printf("--version                   prints version information\n");
343                      printf("--profile          profile synthesis algorithms\n");                      printf("--profile                   profile synthesis algorithms\n");
344                      printf("--no-tune          disable assembly optimization\n");                      printf("--no-tune                   disable assembly optimization\n");
345                      printf("--statistics       periodically prints statistics\n");                      printf("--statistics                periodically prints statistics\n");
346                      printf("--lscp-addr        set LSCP address (default: any)\n");                      printf("--lscp-addr                 set LSCP address (default: any)\n");
347                      printf("--lscp-port        set LSCP port (default: 8888)\n");                      printf("--lscp-port                 set LSCP port (default: 8888)\n");
348                        printf("--create-instruments-db     creates an instruments DB\n");
349                        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);                      exit(EXIT_SUCCESS);
354                      break;                      break;
355                  case 1: // --version                  case 1: // --version
# Line 263  void parse_options(int argc, char **argv Line 358  void parse_options(int argc, char **argv
358                      break;                      break;
359                  case 2: // --profile                  case 2: // --profile
360                      profile = true;                      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 3: // --no-tune                  case 3: // --no-tune
366                      tune = false;                      tune = false;
# Line 270  void parse_options(int argc, char **argv Line 368  void parse_options(int argc, char **argv
368                  case 4: // --statistics                  case 4: // --statistics
369                      bPrintStatistics = true;                      bPrintStatistics = true;
370                      break;                      break;
371                  case 5: // --lscp-addr                  case 5: // --instruments-db-location
372                      struct in_addr addr;  #if HAVE_SQLITE3
373                      if (inet_aton(optarg, &addr) == 0)                      try {
374                              printf("WARNING: Failed to parse lscp-addr argument, ignoring!\n");                          if (optarg) {
375                      else                              struct stat statBuf;
376                              lscp_addr = addr.s_addr;                              int res = stat(optarg, &statBuf);
377                      break;  
378                  case 6: // --lscp-port                              if (res) {
379                      long unsigned int port = 0;                                  std::stringstream ss;
380                      if ((sscanf(optarg, "%u", &port) != 1) || (port == 0) || (port > 65535))                                  ss << "Failed to stat `" << optarg << "`: " << strerror(errno);
381                              printf("WARNING: Failed to parse lscp-port argument, ignoring!\n");                                  throw Exception(ss.str());
382                      else                              }
383                              lscp_port = htons(port);  
384                                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                        break;
398    #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);
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;
433                    }
434                    case 8: {// --lscp-port
435                        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;
441                    }
442                    case 9: // --stacktrace
443                        bShowStackTrace = true;
444                        break;
445                    case 10: // --exec-after-init
446                        ExecAfterInit = optarg;
447                      break;                      break;
448              }              }
449          }          }

Legend:
Removed from v.778  
changed lines
  Added in v.2326

  ViewVC Help
Powered by ViewVC