/[svn]/linuxsampler/trunk/src/network/lscp.l
ViewVC logotype

Contents of /linuxsampler/trunk/src/network/lscp.l

Parent Directory Parent Directory | Revision Log Revision Log


Revision 123 - (show annotations) (download)
Mon Jun 14 19:33:16 2004 UTC (19 years, 10 months ago) by schoenebeck
File size: 4897 byte(s)
* src/common: added template class 'optional<>' which can be used e.g. as
  return type whenever a value might be returned, but don't has to; this
  template class pretty much acts like a pointer of the given type, but is
  much more safer than a simple pointer
* src/audiodriver: added static class AudioDeviceFactory to create audio
  devices at runtime by using a string and to obtain driver informations
  of drivers at runtime, driver classes should simply use the macro
  REGISTER_AUDIO_OUTPUT_DRIVER(DriverName,DriverClass) in their cpp file
  to register the driver to LinuxSampler (no changes needed anymore in the
  LS code to add a new audio output driver)
* src/drivers: added classes to dynamically manage driver parameters; there
  are two different kinds of parameters: parameters which are need to
  create a new device (DeviceCreationParameterX) used to e.g. create an
  audio output device or a MIDI input device and parameters which are only
  available at runtime, means when a device is already created
  (DeviceRuntimeParameterX) which will be e.g. used as audio channel
  parameters and MIDI port parameters
* src/linuxsampler.cpp: all registered audio output drivers will be shown
  on the console on startup
* src/network: implemented configuration of audio output devices via LSCP

1 /***************************************************************************
2 * *
3 * LinuxSampler - modular, streaming capable sampler *
4 * *
5 * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6 * *
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
11 * *
12 * This program is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program; if not, write to the Free Software *
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
20 * MA 02111-1307 USA *
21 ***************************************************************************/
22
23 %{
24
25 #include "lscpparser.h"
26 #include "lscpsymbols.h"
27
28 /// handle for a client connection (FIXME: doesn't work for more than one network connections of course)
29 int hSession;
30
31 %}
32
33 %option reentrant
34
35 DIGIT [0-9]
36
37 %%
38
39 " " { return SP; }
40 \n { return LF; }
41 \r { return CR; }
42 "#" { return HASH; }
43 "=" { return EQ; }
44 ("+"|"-")?{DIGIT}+"."{DIGIT}+ { yylval->Dotnum = atof(yytext); return DOTNUM; }
45 ADD { return ADD; }
46 GET { return GET; }
47 CREATE { return CREATE; }
48 DESTROY { return DESTROY; }
49 LIST { return LIST; }
50 LOAD { return LOAD; }
51 REMOVE { return REMOVE; }
52 SET { return SET; }
53 SUBSCRIBE { return SUBSCRIBE; }
54 UNSUBSCRIBE { return UNSUBSCRIBE; }
55 CHANNEL { return CHANNEL; }
56 NOTIFICATION { return NOTIFICATION; }
57 AVAILABLE_ENGINES { return AVAILABLE_ENGINES; }
58 AVAILABLE_AUDIO_OUTPUT_DRIVERS { return AVAILABLE_AUDIO_OUTPUT_DRIVERS; }
59 CHANNELS { return CHANNELS; }
60 INFO { return INFO; }
61 BUFFER_FILL { return BUFFER_FILL; }
62 STREAM_COUNT { return STREAM_COUNT; }
63 VOICE_COUNT { return VOICE_COUNT; }
64 INSTRUMENT { return INSTRUMENT; }
65 ENGINE { return ENGINE; }
66 AUDIO_OUTPUT_DEVICE { return AUDIO_OUTPUT_DEVICE; }
67 AUDIO_OUTPUT_DEVICES { return AUDIO_OUTPUT_DEVICES; }
68 AUDIO_OUTPUT_DEVICE_PARAMETER { return AUDIO_OUTPUT_DEVICE_PARAMETER; }
69 AUDIO_OUTPUT_DRIVER { return AUDIO_OUTPUT_DRIVER; }
70 AUDIO_OUTPUT_DRIVER_PARAMETER { return AUDIO_OUTPUT_DRIVER_PARAMETER; }
71 AUDIO_OUTPUT_CHANNEL { return AUDIO_OUTPUT_CHANNEL; }
72 AUDIO_OUTPUT_CHANNEL_PARAMETER { return AUDIO_OUTPUT_CHANNEL_PARAMETER; }
73 MIDI_INPUT_PORT { return MIDI_INPUT_PORT; }
74 MIDI_INPUT_CHANNEL { return MIDI_INPUT_CHANNEL; }
75 MIDI_INPUT_TYPE { return MIDI_INPUT_TYPE; }
76 VOLUME { return VOLUME; }
77 BYTES { return BYTES; }
78 PERCENTAGE { return PERCENTAGE; }
79 RESET { return RESET; }
80 QUIT { return QUIT; }
81 0|([1-9]{DIGIT}*) { yylval->Number = atoi(yytext); return NUMBER; }
82 . { yylval->Char = yytext[0]; return CHAR; }
83
84 %%
85
86 /**
87 * We provide our own version of yywrap() so we don't have to link against
88 * the lex library.
89 */
90 int yywrap(yyscan_t yyscanner) {
91 return 1; // continue scanning
92 }

  ViewVC Help
Powered by ViewVC