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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1541 - (show annotations) (download)
Tue Dec 4 18:09:26 2007 UTC (16 years, 4 months ago) by iliev
File size: 63222 byte(s)
- Added support for monitoring the total number of active disk streams
  (new LSCP commands: GET TOTAL_STREAM_COUNT,
  SUBSCRIBE TOTAL_STREAM_COUNT, UNSUBSCRIBE TOTAL_STREAM_COUNT)

1 /***************************************************************************
2 * *
3 * LinuxSampler - modular, streaming capable sampler *
4 * *
5 * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6 * Copyright (C) 2005 - 2007 Christian Schoenebeck *
7 * *
8 * 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 *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the Free Software *
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
21 * MA 02111-1307 USA *
22 ***************************************************************************/
23
24 /*
25 The parser's C++ source files should be automatically (re)generated if
26 this file was modified. If not, or in case you want explicitly
27 regenerate the parser C++ files, run 'make parser'. In both cases you
28 need to have bison or another yacc compatible parser generator
29 installed though.
30 */
31
32 %{
33
34 #include "lscpparser.h"
35 #include "lscpserver.h"
36 #include "lscpevent.h"
37
38 // to save us typing work in the rules action definitions
39 #define LSCPSERVER ((yyparse_param_t*) yyparse_param)->pServer
40 #define SESSION_PARAM ((yyparse_param_t*) yyparse_param)
41 #define INCREMENT_LINE { SESSION_PARAM->iLine++; SESSION_PARAM->iColumn = 0; }
42
43 // clears input buffer
44 void restart(yyparse_param_t* pparam, int& yychar);
45 #define RESTART restart((yyparse_param_t*) YYPARSE_PARAM, yychar)
46
47 // we provide our own version of yyerror() so we don't have to link against the yacc library
48 void yyerror(const char* s);
49
50 static char buf[1024]; // input buffer to feed the parser with new characters
51 static int bytes = 0; // current number of characters in the input buffer
52 static int ptr = 0; // current position in the input buffer
53 static String sLastError; // error message of the last error occured
54
55 // external reference to the function which actually reads from the socket
56 extern int GetLSCPCommand( void *buf, int max_size);
57
58 // external reference to the function in lscpserver.cpp which returns the
59 // current session (only works because the server runs as singleton)
60 extern yyparse_param_t* GetCurrentYaccSession();
61
62 // returns true if supplied characters has an ASCII code of 128 or higher
63 inline bool isExtendedAsciiChar(const char c) {
64 return (c < 0);
65 }
66
67 // custom scanner function which reads from the socket
68 // (bison expects it to return the numerical ID of the next
69 // "recognized token" from the input stream)
70 int yylex(YYSTYPE* yylval) {
71 // check if we have to read new characters
72 if (ptr >= bytes) {
73 bytes = GetLSCPCommand(buf, 1023);
74 ptr = 0;
75 if (bytes < 0) {
76 bytes = 0;
77 return 0;
78 }
79 }
80 // this is the next character in the input stream
81 const char c = buf[ptr++];
82 // increment current reading position (just for verbosity / messages)
83 GetCurrentYaccSession()->iColumn++;
84 // we have to handle "normal" and "extended" ASCII characters separately
85 if (isExtendedAsciiChar(c)) {
86 // workaround for characters with ASCII code higher than 127
87 yylval->Char = c;
88 return EXT_ASCII_CHAR;
89 } else {
90 // simply return the ASCII code as terminal symbol ID
91 return (int) c;
92 }
93 }
94
95 // parser helper functions
96
97 int octalsToNumber(char oct_digit0, char oct_digit1 = '0', char oct_digit2 = '0') {
98 const char d0[] = { oct_digit0, '\0' };
99 const char d1[] = { oct_digit1, '\0' };
100 const char d2[] = { oct_digit2, '\0' };
101 return atoi(d2)*8*8 + atoi(d1)*8 + atoi(d0);
102 }
103
104 %}
105
106 // reentrant parser
107 %pure_parser
108
109 // tell bison to spit out verbose syntax error messages
110 %error-verbose
111
112 %token <Char> EXT_ASCII_CHAR
113
114 %type <Char> char char_base alpha_char digit digit_oct digit_hex escape_seq escape_seq_octal escape_seq_hex
115 %type <Dotnum> dotnum volume_value boolean
116 %type <Number> number sampler_channel instrument_index fx_send_id audio_channel_index device_index midi_input_channel_index midi_input_port_index midi_map midi_bank midi_prog midi_ctrl
117 %type <String> string string_escaped text text_escaped text_escaped_base stringval stringval_escaped digits param_val_list param_val query_val filename db_path map_name entry_name fx_send_name engine_name command add_instruction create_instruction destroy_instruction get_instruction list_instruction load_instruction set_chan_instruction load_instr_args load_engine_args audio_output_type_name midi_input_type_name remove_instruction unmap_instruction set_instruction subscribe_event unsubscribe_event map_instruction reset_instruction clear_instruction find_instruction move_instruction copy_instruction scan_mode edit_instruction format_instruction
118 %type <FillResponse> buffer_size_type
119 %type <KeyValList> key_val_list query_val_list
120 %type <LoadMode> instr_load_mode
121 %type <Bool> modal_arg
122 %type <UniversalPath> path path_base path_prefix path_body
123
124 %start input
125
126 %%
127
128 //TODO: return more meaningful error messages
129
130 /*
131 The LSCP specification document input file (Documentation/lscp.xml) is
132 automatically updated with this file using the scripts/update_grammar.pl
133 script. Do not modify or delete the GRAMMAR_BNF_BEGIN and GRAMMAR_BNF_END
134 lines !
135 */
136
137 // GRAMMAR_BNF_BEGIN - do NOT delete or modify this line !!!
138
139 input : line LF
140 | line CR LF
141 ;
142
143 line : /* epsilon (empty line ignored) */ { INCREMENT_LINE; return LSCP_DONE; }
144 | comment { INCREMENT_LINE; return LSCP_DONE; }
145 | command { INCREMENT_LINE; LSCPSERVER->AnswerClient($1); return LSCP_DONE; }
146 | error { INCREMENT_LINE; LSCPSERVER->AnswerClient("ERR:0:" + sLastError + "\r\n"); RESTART; return LSCP_SYNTAX_ERROR; }
147 ;
148
149 comment : '#'
150 | comment '#'
151 | comment SP
152 | comment number
153 | comment string
154 ;
155
156 command : ADD SP add_instruction { $$ = $3; }
157 | MAP SP map_instruction { $$ = $3; }
158 | UNMAP SP unmap_instruction { $$ = $3; }
159 | GET SP get_instruction { $$ = $3; }
160 | CREATE SP create_instruction { $$ = $3; }
161 | DESTROY SP destroy_instruction { $$ = $3; }
162 | LIST SP list_instruction { $$ = $3; }
163 | LOAD SP load_instruction { $$ = $3; }
164 | REMOVE SP remove_instruction { $$ = $3; }
165 | SET SP set_instruction { $$ = $3; }
166 | SUBSCRIBE SP subscribe_event { $$ = $3; }
167 | UNSUBSCRIBE SP unsubscribe_event { $$ = $3; }
168 | RESET SP reset_instruction { $$ = $3; }
169 | CLEAR SP clear_instruction { $$ = $3; }
170 | FIND SP find_instruction { $$ = $3; }
171 | MOVE SP move_instruction { $$ = $3; }
172 | COPY SP copy_instruction { $$ = $3; }
173 | EDIT SP edit_instruction { $$ = $3; }
174 | FORMAT SP format_instruction { $$ = $3; }
175 | RESET { $$ = LSCPSERVER->ResetSampler(); }
176 | QUIT { LSCPSERVER->AnswerClient("Bye!\r\n"); return LSCP_QUIT; }
177 ;
178
179 add_instruction : CHANNEL { $$ = LSCPSERVER->AddChannel(); }
180 | DB_INSTRUMENT_DIRECTORY SP db_path { $$ = LSCPSERVER->AddDbInstrumentDirectory($3); }
181 | DB_INSTRUMENTS SP NON_MODAL SP scan_mode SP db_path SP filename { $$ = LSCPSERVER->AddDbInstruments($5,$7,$9, true); }
182 | DB_INSTRUMENTS SP scan_mode SP db_path SP filename { $$ = LSCPSERVER->AddDbInstruments($3,$5,$7); }
183 | DB_INSTRUMENTS SP NON_MODAL SP db_path SP filename { $$ = LSCPSERVER->AddDbInstruments($5,$7, -1, true); }
184 | DB_INSTRUMENTS SP NON_MODAL SP db_path SP filename SP instrument_index { $$ = LSCPSERVER->AddDbInstruments($5,$7,$9, true); }
185 | DB_INSTRUMENTS SP db_path SP filename { $$ = LSCPSERVER->AddDbInstruments($3,$5); }
186 | DB_INSTRUMENTS SP db_path SP filename SP instrument_index { $$ = LSCPSERVER->AddDbInstruments($3,$5,$7); }
187 | MIDI_INSTRUMENT_MAP { $$ = LSCPSERVER->AddMidiInstrumentMap(); }
188 | MIDI_INSTRUMENT_MAP SP map_name { $$ = LSCPSERVER->AddMidiInstrumentMap($3); }
189 ;
190
191 subscribe_event : AUDIO_OUTPUT_DEVICE_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_audio_device_count); }
192 | AUDIO_OUTPUT_DEVICE_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_audio_device_info); }
193 | MIDI_INPUT_DEVICE_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_device_count); }
194 | MIDI_INPUT_DEVICE_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_device_info); }
195 | CHANNEL_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_channel_count); }
196 | VOICE_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_voice_count); }
197 | STREAM_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_stream_count); }
198 | BUFFER_FILL { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_buffer_fill); }
199 | CHANNEL_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_channel_info); }
200 | FX_SEND_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_fx_send_count); }
201 | FX_SEND_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_fx_send_info); }
202 | MIDI_INSTRUMENT_MAP_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_instr_map_count); }
203 | MIDI_INSTRUMENT_MAP_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_instr_map_info); }
204 | MIDI_INSTRUMENT_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_instr_count); }
205 | MIDI_INSTRUMENT_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_instr_info); }
206 | DB_INSTRUMENT_DIRECTORY_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_db_instr_dir_count); }
207 | DB_INSTRUMENT_DIRECTORY_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_db_instr_dir_info); }
208 | DB_INSTRUMENT_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_db_instr_count); }
209 | DB_INSTRUMENT_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_db_instr_info); }
210 | DB_INSTRUMENTS_JOB_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_db_instrs_job_info); }
211 | MISCELLANEOUS { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_misc); }
212 | TOTAL_STREAM_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_total_stream_count); }
213 | TOTAL_VOICE_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_total_voice_count); }
214 | GLOBAL_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_global_info); }
215 ;
216
217 unsubscribe_event : AUDIO_OUTPUT_DEVICE_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_audio_device_count); }
218 | AUDIO_OUTPUT_DEVICE_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_audio_device_info); }
219 | MIDI_INPUT_DEVICE_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_device_count); }
220 | MIDI_INPUT_DEVICE_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_device_info); }
221 | CHANNEL_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_channel_count); }
222 | VOICE_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_voice_count); }
223 | STREAM_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_stream_count); }
224 | BUFFER_FILL { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_buffer_fill); }
225 | CHANNEL_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_channel_info); }
226 | FX_SEND_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_fx_send_count); }
227 | FX_SEND_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_fx_send_info); }
228 | MIDI_INSTRUMENT_MAP_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_instr_map_count); }
229 | MIDI_INSTRUMENT_MAP_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_instr_map_info); }
230 | MIDI_INSTRUMENT_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_instr_count); }
231 | MIDI_INSTRUMENT_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_instr_info); }
232 | DB_INSTRUMENT_DIRECTORY_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_db_instr_dir_count); }
233 | DB_INSTRUMENT_DIRECTORY_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_db_instr_dir_info); }
234 | DB_INSTRUMENT_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_db_instr_count); }
235 | DB_INSTRUMENT_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_db_instr_info); }
236 | DB_INSTRUMENTS_JOB_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_db_instrs_job_info); }
237 | MISCELLANEOUS { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_misc); }
238 | TOTAL_STREAM_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_total_stream_count); }
239 | TOTAL_VOICE_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_total_voice_count); }
240 | GLOBAL_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_global_info); }
241 ;
242
243 map_instruction : MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog SP engine_name SP filename SP instrument_index SP volume_value { $$ = LSCPSERVER->AddOrReplaceMIDIInstrumentMapping($4,$6,$8,$10,$12,$14,$16,MidiInstrumentMapper::DONTCARE,"",$3); }
244 | MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog SP engine_name SP filename SP instrument_index SP volume_value SP instr_load_mode { $$ = LSCPSERVER->AddOrReplaceMIDIInstrumentMapping($4,$6,$8,$10,$12,$14,$16,$18,"",$3); }
245 | MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog SP engine_name SP filename SP instrument_index SP volume_value SP entry_name { $$ = LSCPSERVER->AddOrReplaceMIDIInstrumentMapping($4,$6,$8,$10,$12,$14,$16,MidiInstrumentMapper::DONTCARE,$18,$3); }
246 | MIDI_INSTRUMENT SP modal_arg midi_map SP midi_bank SP midi_prog SP engine_name SP filename SP instrument_index SP volume_value SP instr_load_mode SP entry_name { $$ = LSCPSERVER->AddOrReplaceMIDIInstrumentMapping($4,$6,$8,$10,$12,$14,$16,$18,$20,$3); }
247 ;
248
249 unmap_instruction : MIDI_INSTRUMENT SP midi_map SP midi_bank SP midi_prog { $$ = LSCPSERVER->RemoveMIDIInstrumentMapping($3,$5,$7); }
250 ;
251
252 remove_instruction : CHANNEL SP sampler_channel { $$ = LSCPSERVER->RemoveChannel($3); }
253 | MIDI_INSTRUMENT_MAP SP midi_map { $$ = LSCPSERVER->RemoveMidiInstrumentMap($3); }
254 | MIDI_INSTRUMENT_MAP SP ALL { $$ = LSCPSERVER->RemoveAllMidiInstrumentMaps(); }
255 | DB_INSTRUMENT_DIRECTORY SP FORCE SP db_path { $$ = LSCPSERVER->RemoveDbInstrumentDirectory($5, true); }
256 | DB_INSTRUMENT_DIRECTORY SP db_path { $$ = LSCPSERVER->RemoveDbInstrumentDirectory($3); }
257 | DB_INSTRUMENT SP db_path { $$ = LSCPSERVER->RemoveDbInstrument($3); }
258 ;
259
260 get_instruction : AVAILABLE_ENGINES { $$ = LSCPSERVER->GetAvailableEngines(); }
261 | AVAILABLE_MIDI_INPUT_DRIVERS { $$ = LSCPSERVER->GetAvailableMidiInputDrivers(); }
262 | MIDI_INPUT_DRIVER SP INFO SP string { $$ = LSCPSERVER->GetMidiInputDriverInfo($5); }
263 | MIDI_INPUT_DRIVER_PARAMETER SP INFO SP string SP string { $$ = LSCPSERVER->GetMidiInputDriverParameterInfo($5, $7); }
264 | MIDI_INPUT_DRIVER_PARAMETER SP INFO SP string SP string SP key_val_list { $$ = LSCPSERVER->GetMidiInputDriverParameterInfo($5, $7, $9); }
265 | AVAILABLE_AUDIO_OUTPUT_DRIVERS { $$ = LSCPSERVER->GetAvailableAudioOutputDrivers(); }
266 | AUDIO_OUTPUT_DRIVER SP INFO SP string { $$ = LSCPSERVER->GetAudioOutputDriverInfo($5); }
267 | AUDIO_OUTPUT_DRIVER_PARAMETER SP INFO SP string SP string { $$ = LSCPSERVER->GetAudioOutputDriverParameterInfo($5, $7); }
268 | AUDIO_OUTPUT_DRIVER_PARAMETER SP INFO SP string SP string SP key_val_list { $$ = LSCPSERVER->GetAudioOutputDriverParameterInfo($5, $7, $9); }
269 | AUDIO_OUTPUT_DEVICES { $$ = LSCPSERVER->GetAudioOutputDeviceCount(); }
270 | MIDI_INPUT_DEVICES { $$ = LSCPSERVER->GetMidiInputDeviceCount(); }
271 | AUDIO_OUTPUT_DEVICE SP INFO SP number { $$ = LSCPSERVER->GetAudioOutputDeviceInfo($5); }
272 | MIDI_INPUT_DEVICE SP INFO SP number { $$ = LSCPSERVER->GetMidiInputDeviceInfo($5); }
273 | MIDI_INPUT_PORT SP INFO SP number SP number { $$ = LSCPSERVER->GetMidiInputPortInfo($5, $7); }
274 | MIDI_INPUT_PORT_PARAMETER SP INFO SP number SP number SP string { $$ = LSCPSERVER->GetMidiInputPortParameterInfo($5, $7, $9); }
275 | AUDIO_OUTPUT_CHANNEL SP INFO SP number SP number { $$ = LSCPSERVER->GetAudioOutputChannelInfo($5, $7); }
276 | AUDIO_OUTPUT_CHANNEL_PARAMETER SP INFO SP number SP number SP string { $$ = LSCPSERVER->GetAudioOutputChannelParameterInfo($5, $7, $9); }
277 | CHANNELS { $$ = LSCPSERVER->GetChannels(); }
278 | CHANNEL SP INFO SP sampler_channel { $$ = LSCPSERVER->GetChannelInfo($5); }
279 | CHANNEL SP BUFFER_FILL SP buffer_size_type SP sampler_channel { $$ = LSCPSERVER->GetBufferFill($5, $7); }
280 | CHANNEL SP STREAM_COUNT SP sampler_channel { $$ = LSCPSERVER->GetStreamCount($5); }
281 | CHANNEL SP VOICE_COUNT SP sampler_channel { $$ = LSCPSERVER->GetVoiceCount($5); }
282 | ENGINE SP INFO SP engine_name { $$ = LSCPSERVER->GetEngineInfo($5); }
283 | SERVER SP INFO { $$ = LSCPSERVER->GetServerInfo(); }
284 | TOTAL_STREAM_COUNT { $$ = LSCPSERVER->GetTotalStreamCount(); }
285 | TOTAL_VOICE_COUNT { $$ = LSCPSERVER->GetTotalVoiceCount(); }
286 | TOTAL_VOICE_COUNT_MAX { $$ = LSCPSERVER->GetTotalVoiceCountMax(); }
287 | MIDI_INSTRUMENTS SP midi_map { $$ = LSCPSERVER->GetMidiInstrumentMappings($3); }
288 | MIDI_INSTRUMENTS SP ALL { $$ = LSCPSERVER->GetAllMidiInstrumentMappings(); }
289 | MIDI_INSTRUMENT SP INFO SP midi_map SP midi_bank SP midi_prog { $$ = LSCPSERVER->GetMidiInstrumentMapping($5,$7,$9); }
290 | MIDI_INSTRUMENT_MAPS { $$ = LSCPSERVER->GetMidiInstrumentMaps(); }
291 | MIDI_INSTRUMENT_MAP SP INFO SP midi_map { $$ = LSCPSERVER->GetMidiInstrumentMap($5); }
292 | FX_SENDS SP sampler_channel { $$ = LSCPSERVER->GetFxSends($3); }
293 | FX_SEND SP INFO SP sampler_channel SP fx_send_id { $$ = LSCPSERVER->GetFxSendInfo($5,$7); }
294 | DB_INSTRUMENT_DIRECTORIES SP RECURSIVE SP db_path { $$ = LSCPSERVER->GetDbInstrumentDirectoryCount($5, true); }
295 | DB_INSTRUMENT_DIRECTORIES SP db_path { $$ = LSCPSERVER->GetDbInstrumentDirectoryCount($3, false); }
296 | DB_INSTRUMENT_DIRECTORY SP INFO SP db_path { $$ = LSCPSERVER->GetDbInstrumentDirectoryInfo($5); }
297 | DB_INSTRUMENTS SP RECURSIVE SP db_path { $$ = LSCPSERVER->GetDbInstrumentCount($5, true); }
298 | DB_INSTRUMENTS SP db_path { $$ = LSCPSERVER->GetDbInstrumentCount($3, false); }
299 | DB_INSTRUMENT SP INFO SP db_path { $$ = LSCPSERVER->GetDbInstrumentInfo($5); }
300 | DB_INSTRUMENTS_JOB SP INFO SP number { $$ = LSCPSERVER->GetDbInstrumentsJobInfo($5); }
301 | VOLUME { $$ = LSCPSERVER->GetGlobalVolume(); }
302 | FILE SP INSTRUMENTS SP filename { $$ = LSCPSERVER->GetFileInstruments($5); }
303 | FILE SP INSTRUMENT SP INFO SP filename SP instrument_index { $$ = LSCPSERVER->GetFileInstrumentInfo($7,$9); }
304 ;
305
306 set_instruction : AUDIO_OUTPUT_DEVICE_PARAMETER SP number SP string '=' param_val_list { $$ = LSCPSERVER->SetAudioOutputDeviceParameter($3, $5, $7); }
307 | AUDIO_OUTPUT_CHANNEL_PARAMETER SP number SP number SP string '=' param_val_list { $$ = LSCPSERVER->SetAudioOutputChannelParameter($3, $5, $7, $9); }
308 | MIDI_INPUT_DEVICE_PARAMETER SP number SP string '=' param_val_list { $$ = LSCPSERVER->SetMidiInputDeviceParameter($3, $5, $7); }
309 | MIDI_INPUT_PORT_PARAMETER SP number SP number SP string '=' NONE { $$ = LSCPSERVER->SetMidiInputPortParameter($3, $5, $7, ""); }
310 | MIDI_INPUT_PORT_PARAMETER SP number SP number SP string '=' param_val_list { $$ = LSCPSERVER->SetMidiInputPortParameter($3, $5, $7, $9); }
311 | CHANNEL SP set_chan_instruction { $$ = $3; }
312 | MIDI_INSTRUMENT_MAP SP NAME SP midi_map SP map_name { $$ = LSCPSERVER->SetMidiInstrumentMapName($5, $7); }
313 | FX_SEND SP NAME SP sampler_channel SP fx_send_id SP fx_send_name { $$ = LSCPSERVER->SetFxSendName($5,$7,$9); }
314 | FX_SEND SP AUDIO_OUTPUT_CHANNEL SP sampler_channel SP fx_send_id SP audio_channel_index SP audio_channel_index { $$ = LSCPSERVER->SetFxSendAudioOutputChannel($5,$7,$9,$11); }
315 | FX_SEND SP MIDI_CONTROLLER SP sampler_channel SP fx_send_id SP midi_ctrl { $$ = LSCPSERVER->SetFxSendMidiController($5,$7,$9); }
316 | FX_SEND SP LEVEL SP sampler_channel SP fx_send_id SP volume_value { $$ = LSCPSERVER->SetFxSendLevel($5,$7,$9); }
317 | DB_INSTRUMENT_DIRECTORY SP NAME SP db_path SP stringval_escaped { $$ = LSCPSERVER->SetDbInstrumentDirectoryName($5,$7); }
318 | DB_INSTRUMENT_DIRECTORY SP DESCRIPTION SP db_path SP stringval_escaped { $$ = LSCPSERVER->SetDbInstrumentDirectoryDescription($5,$7); }
319 | DB_INSTRUMENT SP NAME SP db_path SP stringval_escaped { $$ = LSCPSERVER->SetDbInstrumentName($5,$7); }
320 | DB_INSTRUMENT SP DESCRIPTION SP db_path SP stringval_escaped { $$ = LSCPSERVER->SetDbInstrumentDescription($5,$7); }
321 | ECHO SP boolean { $$ = LSCPSERVER->SetEcho((yyparse_param_t*) yyparse_param, $3); }
322 | VOLUME SP volume_value { $$ = LSCPSERVER->SetGlobalVolume($3); }
323 ;
324
325 create_instruction : AUDIO_OUTPUT_DEVICE SP string SP key_val_list { $$ = LSCPSERVER->CreateAudioOutputDevice($3,$5); }
326 | AUDIO_OUTPUT_DEVICE SP string { $$ = LSCPSERVER->CreateAudioOutputDevice($3); }
327 | MIDI_INPUT_DEVICE SP string SP key_val_list { $$ = LSCPSERVER->CreateMidiInputDevice($3,$5); }
328 | MIDI_INPUT_DEVICE SP string { $$ = LSCPSERVER->CreateMidiInputDevice($3); }
329 | FX_SEND SP sampler_channel SP midi_ctrl { $$ = LSCPSERVER->CreateFxSend($3,$5); }
330 | FX_SEND SP sampler_channel SP midi_ctrl SP fx_send_name { $$ = LSCPSERVER->CreateFxSend($3,$5,$7); }
331 ;
332
333 reset_instruction : CHANNEL SP sampler_channel { $$ = LSCPSERVER->ResetChannel($3); }
334 ;
335
336 clear_instruction : MIDI_INSTRUMENTS SP midi_map { $$ = LSCPSERVER->ClearMidiInstrumentMappings($3); }
337 | MIDI_INSTRUMENTS SP ALL { $$ = LSCPSERVER->ClearAllMidiInstrumentMappings(); }
338 ;
339
340 find_instruction : DB_INSTRUMENTS SP NON_RECURSIVE SP db_path SP query_val_list { $$ = LSCPSERVER->FindDbInstruments($5,$7, false); }
341 | DB_INSTRUMENTS SP db_path SP query_val_list { $$ = LSCPSERVER->FindDbInstruments($3,$5, true); }
342 | DB_INSTRUMENT_DIRECTORIES SP NON_RECURSIVE SP db_path SP query_val_list { $$ = LSCPSERVER->FindDbInstrumentDirectories($5,$7, false); }
343 | DB_INSTRUMENT_DIRECTORIES SP db_path SP query_val_list { $$ = LSCPSERVER->FindDbInstrumentDirectories($3,$5, true); }
344 ;
345
346 move_instruction : DB_INSTRUMENT_DIRECTORY SP db_path SP db_path { $$ = LSCPSERVER->MoveDbInstrumentDirectory($3,$5); }
347 | DB_INSTRUMENT SP db_path SP db_path { $$ = LSCPSERVER->MoveDbInstrument($3,$5); }
348 ;
349
350 copy_instruction : DB_INSTRUMENT_DIRECTORY SP db_path SP db_path { $$ = LSCPSERVER->CopyDbInstrumentDirectory($3,$5); }
351 | DB_INSTRUMENT SP db_path SP db_path { $$ = LSCPSERVER->CopyDbInstrument($3,$5); }
352 ;
353
354 destroy_instruction : AUDIO_OUTPUT_DEVICE SP number { $$ = LSCPSERVER->DestroyAudioOutputDevice($3); }
355 | MIDI_INPUT_DEVICE SP number { $$ = LSCPSERVER->DestroyMidiInputDevice($3); }
356 | FX_SEND SP sampler_channel SP fx_send_id { $$ = LSCPSERVER->DestroyFxSend($3,$5); }
357 ;
358
359 load_instruction : INSTRUMENT SP load_instr_args { $$ = $3; }
360 | ENGINE SP load_engine_args { $$ = $3; }
361 ;
362
363 set_chan_instruction : AUDIO_OUTPUT_DEVICE SP sampler_channel SP device_index { $$ = LSCPSERVER->SetAudioOutputDevice($5, $3); }
364 | AUDIO_OUTPUT_CHANNEL SP sampler_channel SP audio_channel_index SP audio_channel_index { $$ = LSCPSERVER->SetAudioOutputChannel($5, $7, $3); }
365 | AUDIO_OUTPUT_TYPE SP sampler_channel SP audio_output_type_name { $$ = LSCPSERVER->SetAudioOutputType($5, $3); }
366 | MIDI_INPUT SP sampler_channel SP device_index SP midi_input_port_index SP midi_input_channel_index { $$ = LSCPSERVER->SetMIDIInput($5, $7, $9, $3); }
367 | MIDI_INPUT_DEVICE SP sampler_channel SP device_index { $$ = LSCPSERVER->SetMIDIInputDevice($5, $3); }
368 | MIDI_INPUT_PORT SP sampler_channel SP midi_input_port_index { $$ = LSCPSERVER->SetMIDIInputPort($5, $3); }
369 | MIDI_INPUT_CHANNEL SP sampler_channel SP midi_input_channel_index { $$ = LSCPSERVER->SetMIDIInputChannel($5, $3); }
370 | MIDI_INPUT_TYPE SP sampler_channel SP midi_input_type_name { $$ = LSCPSERVER->SetMIDIInputType($5, $3); }
371 | VOLUME SP sampler_channel SP volume_value { $$ = LSCPSERVER->SetVolume($5, $3); }
372 | MUTE SP sampler_channel SP boolean { $$ = LSCPSERVER->SetChannelMute($5, $3); }
373 | SOLO SP sampler_channel SP boolean { $$ = LSCPSERVER->SetChannelSolo($5, $3); }
374 | MIDI_INSTRUMENT_MAP SP sampler_channel SP midi_map { $$ = LSCPSERVER->SetChannelMap($3, $5); }
375 | MIDI_INSTRUMENT_MAP SP sampler_channel SP NONE { $$ = LSCPSERVER->SetChannelMap($3, -1); }
376 | MIDI_INSTRUMENT_MAP SP sampler_channel SP DEFAULT { $$ = LSCPSERVER->SetChannelMap($3, -2); }
377 ;
378
379 edit_instruction : CHANNEL SP INSTRUMENT SP sampler_channel { $$ = LSCPSERVER->EditSamplerChannelInstrument($5); }
380 ;
381
382 format_instruction : INSTRUMENTS_DB { $$ = LSCPSERVER->FormatInstrumentsDb(); }
383 ;
384
385 modal_arg : /* epsilon (empty argument) */ { $$ = true; }
386 | NON_MODAL SP { $$ = false; }
387 ;
388
389 key_val_list : string '=' param_val_list { $$[$1] = $3; }
390 | key_val_list SP string '=' param_val_list { $$ = $1; $$[$3] = $5; }
391 ;
392
393 buffer_size_type : BYTES { $$ = fill_response_bytes; }
394 | PERCENTAGE { $$ = fill_response_percentage; }
395 ;
396
397 list_instruction : AUDIO_OUTPUT_DEVICES { $$ = LSCPSERVER->GetAudioOutputDevices(); }
398 | MIDI_INPUT_DEVICES { $$ = LSCPSERVER->GetMidiInputDevices(); }
399 | CHANNELS { $$ = LSCPSERVER->ListChannels(); }
400 | AVAILABLE_ENGINES { $$ = LSCPSERVER->ListAvailableEngines(); }
401 | AVAILABLE_MIDI_INPUT_DRIVERS { $$ = LSCPSERVER->ListAvailableMidiInputDrivers(); }
402 | AVAILABLE_AUDIO_OUTPUT_DRIVERS { $$ = LSCPSERVER->ListAvailableAudioOutputDrivers(); }
403 | MIDI_INSTRUMENTS SP midi_map { $$ = LSCPSERVER->ListMidiInstrumentMappings($3); }
404 | MIDI_INSTRUMENTS SP ALL { $$ = LSCPSERVER->ListAllMidiInstrumentMappings(); }
405 | MIDI_INSTRUMENT_MAPS { $$ = LSCPSERVER->ListMidiInstrumentMaps(); }
406 | FX_SENDS SP sampler_channel { $$ = LSCPSERVER->ListFxSends($3); }
407 | DB_INSTRUMENT_DIRECTORIES SP RECURSIVE SP db_path { $$ = LSCPSERVER->GetDbInstrumentDirectories($5, true); }
408 | DB_INSTRUMENT_DIRECTORIES SP db_path { $$ = LSCPSERVER->GetDbInstrumentDirectories($3); }
409 | DB_INSTRUMENTS SP RECURSIVE SP db_path { $$ = LSCPSERVER->GetDbInstruments($5, true); }
410 | DB_INSTRUMENTS SP db_path { $$ = LSCPSERVER->GetDbInstruments($3); }
411 | FILE SP INSTRUMENTS SP filename { $$ = LSCPSERVER->ListFileInstruments($5); }
412 ;
413
414 load_instr_args : filename SP instrument_index SP sampler_channel { $$ = LSCPSERVER->LoadInstrument($1, $3, $5); }
415 | NON_MODAL SP filename SP instrument_index SP sampler_channel { $$ = LSCPSERVER->LoadInstrument($3, $5, $7, true); }
416 ;
417
418 load_engine_args : engine_name SP sampler_channel { $$ = LSCPSERVER->SetEngineType($1, $3); }
419 ;
420
421 instr_load_mode : ON_DEMAND { $$ = MidiInstrumentMapper::ON_DEMAND; }
422 | ON_DEMAND_HOLD { $$ = MidiInstrumentMapper::ON_DEMAND_HOLD; }
423 | PERSISTENT { $$ = MidiInstrumentMapper::PERSISTENT; }
424 ;
425
426 device_index : number
427 ;
428
429 audio_channel_index : number
430 ;
431
432 audio_output_type_name : string
433 ;
434
435 midi_input_port_index : number
436 ;
437
438 midi_input_channel_index : number
439 | ALL { $$ = 16; }
440 ;
441
442 midi_input_type_name : string
443 ;
444
445 midi_map : number
446 ;
447
448 midi_bank : number
449 ;
450
451 midi_prog : number
452 ;
453
454 midi_ctrl : number
455 ;
456
457 volume_value : dotnum
458 | number { $$ = $1; }
459 ;
460
461 sampler_channel : number
462 ;
463
464 instrument_index : number
465 ;
466
467 fx_send_id : number
468 ;
469
470 engine_name : string
471 ;
472
473 filename : path {
474 #if WIN32
475 $$ = $1.toWindows();
476 #else
477 // assuming POSIX
478 $$ = $1.toPosix();
479 #endif
480 }
481 ;
482
483 db_path : path { $$ = $1.toDbPath(); }
484 ;
485
486 map_name : stringval_escaped
487 ;
488
489 entry_name : stringval_escaped
490 ;
491
492 fx_send_name : stringval_escaped
493 ;
494
495 param_val_list : param_val
496 | param_val_list','param_val { $$ = $1 + "," + $3; }
497 ;
498
499 //TODO: the re-encapsulation into apostrophes for string and strinval here is a hack, since we need a way for __parse_strings() (DeviceParameters.cpp) to distinguish a comma separated list of strings and a string which contains commas. A clean solution would be to move those parser jobs over here to lscp.y
500 param_val : string { $$ = "\'" + $1 + "\'"; }
501 | stringval { $$ = "\'" + $1 + "\'"; }
502 | number { std::stringstream ss; ss << "\'" << $1 << "\'"; $$ = ss.str(); }
503 | dotnum { std::stringstream ss; ss << "\'" << $1 << "\'"; $$ = ss.str(); }
504 ;
505
506 query_val_list : string '=' query_val { $$[$1] = $3; }
507 | query_val_list SP string '=' query_val { $$ = $1; $$[$3] = $5; }
508 ;
509
510 query_val : text_escaped
511 | stringval_escaped
512 ;
513
514 scan_mode : RECURSIVE { $$ = "RECURSIVE"; }
515 | NON_RECURSIVE { $$ = "NON_RECURSIVE"; }
516 | FLAT { $$ = "FLAT"; }
517 ;
518
519 // GRAMMAR_BNF_END - do NOT delete or modify this line !!!
520
521
522 // atomic variable symbol rules
523
524 boolean : number { $$ = $1; }
525 | string { $$ = -1; }
526 ;
527
528 dotnum : digits '.' digits { std::stringstream ss($1 + "." + $3); ss.imbue(std::locale::classic()); ss >> $$; }
529 | '+' digits '.' digits { std::stringstream ss($2 + "." + $4); ss.imbue(std::locale::classic()); ss >> $$; }
530 | '-' digits '.' digits { std::stringstream ss("-" + $2 + "." + $4); ss.imbue(std::locale::classic()); ss >> $$; }
531 ;
532
533
534 digits : digit { $$ = $1; }
535 | digits digit { $$ = $1 + $2; }
536 ;
537
538 digit : '0' { $$ = '0'; }
539 | '1' { $$ = '1'; }
540 | '2' { $$ = '2'; }
541 | '3' { $$ = '3'; }
542 | '4' { $$ = '4'; }
543 | '5' { $$ = '5'; }
544 | '6' { $$ = '6'; }
545 | '7' { $$ = '7'; }
546 | '8' { $$ = '8'; }
547 | '9' { $$ = '9'; }
548 ;
549
550 digit_oct : '0' { $$ = '0'; }
551 | '1' { $$ = '1'; }
552 | '2' { $$ = '2'; }
553 | '3' { $$ = '3'; }
554 | '4' { $$ = '4'; }
555 | '5' { $$ = '5'; }
556 | '6' { $$ = '6'; }
557 | '7' { $$ = '7'; }
558 ;
559
560 digit_hex : '0' { $$ = '0'; }
561 | '1' { $$ = '1'; }
562 | '2' { $$ = '2'; }
563 | '3' { $$ = '3'; }
564 | '4' { $$ = '4'; }
565 | '5' { $$ = '5'; }
566 | '6' { $$ = '6'; }
567 | '7' { $$ = '7'; }
568 | '8' { $$ = '8'; }
569 | '9' { $$ = '9'; }
570 | 'a' { $$ = 'a'; }
571 | 'b' { $$ = 'b'; }
572 | 'c' { $$ = 'c'; }
573 | 'd' { $$ = 'd'; }
574 | 'e' { $$ = 'e'; }
575 | 'f' { $$ = 'f'; }
576 | 'A' { $$ = 'a'; }
577 | 'B' { $$ = 'b'; }
578 | 'C' { $$ = 'c'; }
579 | 'D' { $$ = 'd'; }
580 | 'E' { $$ = 'e'; }
581 | 'F' { $$ = 'f'; }
582 ;
583
584 number : digit { $$ = atoi(String(1, $1).c_str()); }
585 | '1' digits { $$ = atoi(String(String("1") + $2).c_str()); }
586 | '2' digits { $$ = atoi(String(String("2") + $2).c_str()); }
587 | '3' digits { $$ = atoi(String(String("3") + $2).c_str()); }
588 | '4' digits { $$ = atoi(String(String("4") + $2).c_str()); }
589 | '5' digits { $$ = atoi(String(String("5") + $2).c_str()); }
590 | '6' digits { $$ = atoi(String(String("6") + $2).c_str()); }
591 | '7' digits { $$ = atoi(String(String("7") + $2).c_str()); }
592 | '8' digits { $$ = atoi(String(String("8") + $2).c_str()); }
593 | '9' digits { $$ = atoi(String(String("9") + $2).c_str()); }
594 ;
595
596 path : '\'' path_base '\'' { $$ = $2; }
597 | '\"' path_base '\"' { $$ = $2; }
598 ;
599
600 path_base : path_prefix path_body { $$ = $1 + $2; }
601 ;
602
603 path_prefix : '/' { $$ = Path(); }
604 | alpha_char ':' '/' { Path p; p.setDrive($1); $$ = p; }
605 ;
606
607 path_body : /* epsilon (empty argument) */ { $$ = Path(); }
608 | path_body '/' { $$ = $1; }
609 | path_body text_escaped_base { Path p; p.appendNode($2); $$ = $1 + p; }
610 ;
611
612 stringval : '\'' text '\'' { $$ = $2; }
613 | '\"' text '\"' { $$ = $2; }
614 ;
615
616 stringval_escaped : '\'' text_escaped '\'' { $$ = $2; }
617 | '\"' text_escaped '\"' { $$ = $2; }
618 ;
619
620 text : SP { $$ = " "; }
621 | string
622 | text SP { $$ = $1 + " "; }
623 | text string { $$ = $1 + $2; }
624 ;
625
626 // like text_escaped, but missing the slash ('/') character
627 text_escaped_base : SP { $$ = " "; }
628 | string_escaped
629 | text_escaped_base SP { $$ = $1 + " "; }
630 | text_escaped_base string_escaped { $$ = $1 + $2; }
631 ;
632
633 text_escaped : '/' { $$ = "/"; }
634 | text_escaped_base
635 | text_escaped '/' { $$ = $1 + "/"; }
636 | text_escaped text_escaped_base { $$ = $1 + $2; }
637 ;
638
639 string : char { std::string s; s = $1; $$ = s; }
640 | string char { $$ = $1 + $2; }
641 ;
642
643 string_escaped : char_base { std::string s; s = $1; $$ = s; }
644 | escape_seq { std::string s; s = $1; $$ = s; }
645 | string_escaped char_base { $$ = $1 + $2; }
646 | string_escaped escape_seq { $$ = $1 + $2; }
647 ;
648
649 // full ASCII character set except space, quotation mark and apostrophe
650 char : char_base
651 | '\\' { $$ = '\\'; }
652 | '/' { $$ = '/'; }
653 ;
654
655 // characters A..Z and a..z
656 alpha_char : 'A' { $$ = 'A'; } | 'B' { $$ = 'B'; } | 'C' { $$ = 'C'; } | 'D' { $$ = 'D'; } | 'E' { $$ = 'E'; } | 'F' { $$ = 'F'; } | 'G' { $$ = 'G'; } | 'H' { $$ = 'H'; } | 'I' { $$ = 'I'; } | 'J' { $$ = 'J'; } | 'K' { $$ = 'K'; } | 'L' { $$ = 'L'; } | 'M' { $$ = 'M'; } | 'N' { $$ = 'N'; } | 'O' { $$ = 'O'; } | 'P' { $$ = 'P'; } | 'Q' { $$ = 'Q'; } | 'R' { $$ = 'R'; } | 'S' { $$ = 'S'; } | 'T' { $$ = 'T'; } | 'U' { $$ = 'U'; } | 'V' { $$ = 'V'; } | 'W' { $$ = 'W'; } | 'X' { $$ = 'X'; } | 'Y' { $$ = 'Y'; } | 'Z' { $$ = 'Z'; }
657 | 'a' { $$ = 'a'; } | 'b' { $$ = 'b'; } | 'c' { $$ = 'c'; } | 'd' { $$ = 'd'; } | 'e' { $$ = 'e'; } | 'f' { $$ = 'f'; } | 'g' { $$ = 'g'; } | 'h' { $$ = 'h'; } | 'i' { $$ = 'i'; } | 'j' { $$ = 'j'; } | 'k' { $$ = 'k'; } | 'l' { $$ = 'l'; } | 'm' { $$ = 'm'; } | 'n' { $$ = 'n'; } | 'o' { $$ = 'o'; } | 'p' { $$ = 'p'; } | 'q' { $$ = 'q'; } | 'r' { $$ = 'r'; } | 's' { $$ = 's'; } | 't' { $$ = 't'; } | 'u' { $$ = 'u'; } | 'v' { $$ = 'v'; } | 'w' { $$ = 'w'; } | 'x' { $$ = 'x'; } | 'y' { $$ = 'y'; } | 'z' { $$ = 'z'; }
658 ;
659
660 // ASCII characters except space, quotation mark, apostrophe, backslash and slash
661 char_base : alpha_char
662 | '0' { $$ = '0'; } | '1' { $$ = '1'; } | '2' { $$ = '2'; } | '3' { $$ = '3'; } | '4' { $$ = '4'; } | '5' { $$ = '5'; } | '6' { $$ = '6'; } | '7' { $$ = '7'; } | '8' { $$ = '8'; } | '9' { $$ = '9'; }
663 | '!' { $$ = '!'; } | '#' { $$ = '#'; } | '$' { $$ = '$'; } | '%' { $$ = '%'; } | '&' { $$ = '&'; } | '(' { $$ = '('; } | ')' { $$ = ')'; } | '*' { $$ = '*'; } | '+' { $$ = '+'; } | '-' { $$ = '-'; } | '.' { $$ = '.'; } | ',' { $$ = ','; }
664 | ':' { $$ = ':'; } | ';' { $$ = ';'; } | '<' { $$ = '<'; } | '=' { $$ = '='; } | '>' { $$ = '>'; } | '?' { $$ = '?'; } | '@' { $$ = '@'; }
665 | '[' { $$ = '['; } | ']' { $$ = ']'; } | '^' { $$ = '^'; } | '_' { $$ = '_'; }
666 | '{' { $$ = '{'; } | '|' { $$ = '|'; } | '}' { $$ = '}'; } | '~' { $$ = '~'; }
667 | EXT_ASCII_CHAR
668 ;
669
670 escape_seq : '\\' '\'' { $$ = '\''; }
671 | '\\' '\"' { $$ = '\"'; }
672 | '\\' '\\' { $$ = '\\'; }
673 | '\\' '/' { $$ = '/'; }
674 | '\\' 'n' { $$ = '\n'; }
675 | '\\' 'r' { $$ = '\r'; }
676 | '\\' 'f' { $$ = '\f'; }
677 | '\\' 't' { $$ = '\t'; }
678 | '\\' 'v' { $$ = '\v'; }
679 | escape_seq_octal
680 | escape_seq_hex
681 ;
682
683 escape_seq_octal : '\\' digit_oct { $$ = (char) octalsToNumber($2); }
684 | '\\' digit_oct digit_oct { $$ = (char) octalsToNumber($3,$2); }
685 | '\\' digit_oct digit_oct digit_oct { $$ = (char) octalsToNumber($4,$3,$2); }
686 ;
687
688 escape_seq_hex : '\\' 'x' digit_hex { $$ = (char) hexsToNumber($3); }
689 | '\\' 'x' digit_hex digit_hex { $$ = (char) hexsToNumber($4,$3); }
690 ;
691
692 // rules which are more or less just terminal symbols
693
694 SP : ' '
695 ;
696
697 LF : '\n'
698 ;
699
700 CR : '\r'
701 ;
702
703 ADD : 'A''D''D'
704 ;
705
706 GET : 'G''E''T'
707 ;
708
709 MAP : 'M''A''P'
710 ;
711
712 UNMAP : 'U''N''M''A''P'
713 ;
714
715 CLEAR : 'C''L''E''A''R'
716 ;
717
718 FIND : 'F''I''N''D'
719 ;
720
721 MOVE : 'M''O''V''E'
722 ;
723
724 COPY : 'C''O''P''Y'
725 ;
726
727 CREATE : 'C''R''E''A''T''E'
728 ;
729
730 DESTROY : 'D''E''S''T''R''O''Y'
731 ;
732
733 LIST : 'L''I''S''T'
734 ;
735
736 LOAD : 'L''O''A''D'
737 ;
738
739 ALL : 'A''L''L'
740 ;
741
742 NONE : 'N''O''N''E'
743 ;
744
745 DEFAULT : 'D''E''F''A''U''L''T'
746 ;
747
748 NON_MODAL : 'N''O''N''_''M''O''D''A''L'
749 ;
750
751 REMOVE : 'R''E''M''O''V''E'
752 ;
753
754 SET : 'S''E''T'
755 ;
756
757 SUBSCRIBE : 'S''U''B''S''C''R''I''B''E'
758 ;
759
760 UNSUBSCRIBE : 'U''N''S''U''B''S''C''R''I''B''E'
761 ;
762
763 CHANNEL : 'C''H''A''N''N''E''L'
764 ;
765
766 AVAILABLE_ENGINES : 'A''V''A''I''L''A''B''L''E''_''E''N''G''I''N''E''S'
767 ;
768
769 AVAILABLE_AUDIO_OUTPUT_DRIVERS : 'A''V''A''I''L''A''B''L''E''_''A''U''D''I''O''_''O''U''T''P''U''T''_''D''R''I''V''E''R''S'
770 ;
771
772 CHANNELS : 'C''H''A''N''N''E''L''S'
773 ;
774
775 INFO : 'I''N''F''O'
776 ;
777
778 AUDIO_OUTPUT_DEVICE_COUNT : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''E''V''I''C''E''_''C''O''U''N''T'
779 ;
780
781 AUDIO_OUTPUT_DEVICE_INFO : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''E''V''I''C''E''_''I''N''F''O'
782 ;
783
784 MIDI_INPUT_DEVICE_COUNT : 'M''I''D''I''_''I''N''P''U''T''_''D''E''V''I''C''E''_''C''O''U''N''T'
785 ;
786
787 MIDI_INPUT_DEVICE_INFO : 'M''I''D''I''_''I''N''P''U''T''_''D''E''V''I''C''E''_''I''N''F''O'
788 ;
789
790 MIDI_INSTRUMENT_MAP_COUNT : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''M''A''P''_''C''O''U''N''T'
791 ;
792
793 MIDI_INSTRUMENT_MAP_INFO : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''M''A''P''_''I''N''F''O'
794 ;
795
796 MIDI_INSTRUMENT_COUNT : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''C''O''U''N''T'
797 ;
798
799 MIDI_INSTRUMENT_INFO : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''I''N''F''O'
800 ;
801
802 DB_INSTRUMENT_DIRECTORY_COUNT : 'D''B''_''I''N''S''T''R''U''M''E''N''T''_''D''I''R''E''C''T''O''R''Y''_''C''O''U''N''T'
803 ;
804
805 DB_INSTRUMENT_DIRECTORY_INFO : 'D''B''_''I''N''S''T''R''U''M''E''N''T''_''D''I''R''E''C''T''O''R''Y''_''I''N''F''O'
806 ;
807
808 DB_INSTRUMENT_COUNT : 'D''B''_''I''N''S''T''R''U''M''E''N''T''_''C''O''U''N''T'
809 ;
810
811 DB_INSTRUMENT_INFO : 'D''B''_''I''N''S''T''R''U''M''E''N''T''_''I''N''F''O'
812 ;
813
814 DB_INSTRUMENTS_JOB_INFO : 'D''B''_''I''N''S''T''R''U''M''E''N''T''S''_''J''O''B''_''I''N''F''O'
815 ;
816
817 CHANNEL_COUNT : 'C''H''A''N''N''E''L''_''C''O''U''N''T'
818 ;
819
820 CHANNEL_INFO : 'C''H''A''N''N''E''L''_''I''N''F''O'
821 ;
822
823 FX_SEND_COUNT : 'F''X''_''S''E''N''D''_''C''O''U''N''T'
824 ;
825
826 FX_SEND_INFO : 'F''X''_''S''E''N''D''_''I''N''F''O'
827 ;
828
829 BUFFER_FILL : 'B''U''F''F''E''R''_''F''I''L''L'
830 ;
831
832 STREAM_COUNT : 'S''T''R''E''A''M''_''C''O''U''N''T'
833 ;
834
835 VOICE_COUNT : 'V''O''I''C''E''_''C''O''U''N''T'
836 ;
837
838 TOTAL_STREAM_COUNT : 'T''O''T''A''L''_''S''T''R''E''A''M''_''C''O''U''N''T'
839 ;
840
841 TOTAL_VOICE_COUNT : 'T''O''T''A''L''_''V''O''I''C''E''_''C''O''U''N''T'
842 ;
843
844 TOTAL_VOICE_COUNT_MAX: 'T''O''T''A''L''_''V''O''I''C''E''_''C''O''U''N''T''_''M''A''X'
845 ;
846
847 GLOBAL_INFO : 'G''L''O''B''A''L''_''I''N''F''O'
848 ;
849
850 INSTRUMENT : 'I''N''S''T''R''U''M''E''N''T'
851 ;
852
853 INSTRUMENTS : 'I''N''S''T''R''U''M''E''N''T''S'
854 ;
855
856 ENGINE : 'E' 'N' 'G' 'I' 'N' 'E'
857 ;
858
859 ON_DEMAND : 'O''N''_''D''E''M''A''N''D'
860 ;
861
862 ON_DEMAND_HOLD : 'O''N''_''D''E''M''A''N''D''_''H''O''L''D'
863 ;
864
865 PERSISTENT : 'P''E''R''S''I''S''T''E''N''T'
866 ;
867
868 AUDIO_OUTPUT_DEVICE_PARAMETER : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''E''V''I''C''E''_''P''A''R''A''M''E''T''E''R'
869 ;
870
871 AUDIO_OUTPUT_DEVICES : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''E''V''I''C''E''S'
872 ;
873
874 AUDIO_OUTPUT_DEVICE : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''E''V''I''C''E'
875 ;
876
877 AUDIO_OUTPUT_DRIVER_PARAMETER : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''R''I''V''E''R''_''P''A''R''A''M''E''T''E''R'
878 ;
879
880 AUDIO_OUTPUT_DRIVER : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''R''I''V''E''R'
881 ;
882
883 AUDIO_OUTPUT_CHANNEL_PARAMETER : 'A''U''D''I''O''_''O''U''T''P''U''T''_''C''H''A''N''N''E''L''_''P''A''R''A''M''E''T''E''R'
884 ;
885
886 AUDIO_OUTPUT_CHANNEL : 'A''U''D''I''O''_''O''U''T''P''U''T''_''C''H''A''N''N''E''L'
887 ;
888
889 AUDIO_OUTPUT_TYPE : 'A''U''D''I''O''_''O''U''T''P''U''T''_''T''Y''P''E'
890 ;
891
892 AVAILABLE_MIDI_INPUT_DRIVERS : 'A''V''A''I''L''A''B''L''E''_''M''I''D''I''_''I''N''P''U''T''_''D''R''I''V''E''R''S'
893 ;
894
895 MIDI_INPUT_DEVICE_PARAMETER : 'M''I''D''I''_''I''N''P''U''T''_''D''E''V''I''C''E''_''P''A''R''A''M''E''T''E''R'
896 ;
897
898 MIDI_INPUT_PORT_PARAMETER : 'M''I''D''I''_''I''N''P''U''T''_''P''O''R''T''_''P''A''R''A''M''E''T''E''R'
899 ;
900
901 MIDI_INPUT_DEVICES : 'M''I''D''I''_''I''N''P''U''T''_''D''E''V''I''C''E''S'
902 ;
903
904 MIDI_INPUT_DEVICE : 'M''I''D''I''_''I''N''P''U''T''_''D''E''V''I''C''E'
905 ;
906
907 MIDI_INPUT_DRIVER_PARAMETER : 'M''I''D''I''_''I''N''P''U''T''_''D''R''I''V''E''R''_''P''A''R''A''M''E''T''E''R'
908 ;
909
910 MIDI_INSTRUMENT : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T'
911 ;
912
913 MIDI_INSTRUMENTS : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''S'
914 ;
915
916 MIDI_INSTRUMENT_MAP : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''M''A''P'
917 ;
918
919 MIDI_INSTRUMENT_MAPS : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''M''A''P''S'
920 ;
921
922 MIDI_INPUT_DRIVER : 'M''I''D''I''_''I''N''P''U''T''_''D''R''I''V''E''R'
923 ;
924
925 MIDI_INPUT_PORT : 'M''I''D''I''_''I''N''P''U''T''_''P''O''R''T'
926 ;
927
928 MIDI_INPUT_CHANNEL : 'M''I''D''I''_''I''N''P''U''T''_''C''H''A''N''N''E''L'
929 ;
930
931 MIDI_INPUT_TYPE : 'M''I''D''I''_''I''N''P''U''T''_''T''Y''P''E'
932 ;
933
934 MIDI_INPUT : 'M''I''D''I''_''I''N''P''U''T'
935 ;
936
937 MIDI_CONTROLLER : 'M''I''D''I''_''C''O''N''T''R''O''L''L''E''R'
938 ;
939
940 FX_SEND : 'F''X''_''S''E''N''D'
941 ;
942
943 FX_SENDS : 'F''X''_''S''E''N''D''S'
944 ;
945
946 DB_INSTRUMENT_DIRECTORY : 'D''B''_''I''N''S''T''R''U''M''E''N''T''_''D''I''R''E''C''T''O''R''Y'
947 ;
948
949 DB_INSTRUMENT_DIRECTORIES : 'D''B''_''I''N''S''T''R''U''M''E''N''T''_''D''I''R''E''C''T''O''R''I''E''S'
950 ;
951
952 DB_INSTRUMENTS : 'D''B''_''I''N''S''T''R''U''M''E''N''T''S'
953 ;
954
955 DB_INSTRUMENT : 'D''B''_''I''N''S''T''R''U''M''E''N''T'
956 ;
957
958 DB_INSTRUMENTS_JOB : 'D''B''_''I''N''S''T''R''U''M''E''N''T''S''_''J''O''B'
959 ;
960
961 INSTRUMENTS_DB : 'I''N''S''T''R''U''M''E''N''T''S''_''D''B'
962 ;
963
964 DESCRIPTION : 'D''E''S''C''R''I''P''T''I''O''N'
965 ;
966
967 FORCE : 'F''O''R''C''E'
968 ;
969
970 FLAT : 'F''L''A''T'
971 ;
972
973 RECURSIVE : 'R''E''C''U''R''S''I''V''E'
974 ;
975
976 NON_RECURSIVE : 'N''O''N''_''R''E''C''U''R''S''I''V''E'
977 ;
978
979 SERVER : 'S''E''R''V''E''R'
980 ;
981
982 VOLUME : 'V''O''L''U''M''E'
983 ;
984
985 LEVEL : 'L''E''V''E''L'
986 ;
987
988 MUTE : 'M''U''T''E'
989 ;
990
991 SOLO : 'S''O''L''O'
992 ;
993
994 BYTES : 'B''Y''T''E''S'
995 ;
996
997 PERCENTAGE : 'P''E''R''C''E''N''T''A''G''E'
998 ;
999
1000 FILE : 'F''I''L''E'
1001 ;
1002
1003 EDIT : 'E''D''I''T'
1004 ;
1005
1006 FORMAT : 'F''O''R''M''A''T'
1007 ;
1008
1009 RESET : 'R''E''S''E''T'
1010 ;
1011
1012 MISCELLANEOUS : 'M''I''S''C''E''L''L''A''N''E''O''U''S'
1013 ;
1014
1015 NAME : 'N''A''M''E'
1016 ;
1017
1018 ECHO : 'E''C''H''O'
1019 ;
1020
1021 QUIT : 'Q''U''I''T'
1022 ;
1023
1024 %%
1025
1026 /**
1027 * Will be called when an error occured (usually syntax error).
1028 */
1029 void yyerror(const char* s) {
1030 yyparse_param_t* param = GetCurrentYaccSession();
1031 String msg = s
1032 + (" (line:" + ToString(param->iLine+1))
1033 + ( ",column:" + ToString(param->iColumn))
1034 + ")";
1035 dmsg(2,("LSCPParser: %s\n", msg.c_str()));
1036 sLastError = msg;
1037 }
1038
1039 /**
1040 * Clears input buffer.
1041 */
1042 void restart(yyparse_param_t* pparam, int& yychar) {
1043 bytes = 0;
1044 ptr = 0;
1045 sLastError = "";
1046 }

  ViewVC Help
Powered by ViewVC