/[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 2500 - (show annotations) (download)
Fri Jan 10 12:20:05 2014 UTC (10 years, 2 months ago) by schoenebeck
File size: 75369 byte(s)
* Added support for multiple MIDI input ports per sampler channel (added
  various new C++ API methods for this new feature/design, old C++ API
  methods are now marked as deprecated but should still provide full
  behavior backward compatibility).
* LSCP Network interface: Added the following new LSCP commands for the new
  feature mentioned above: "ADD CHANNEL MIDI_INPUT",
  "REMOVE CHANNEL MIDI_INPUT" and "LIST CHANNEL MIDI_INPUTS". As with the
  C++ API changes, the old LSCP commands for MIDI input management are now
  marked as deprecated, but are still there and should provide full behavior
  backward compatibility.
* New LSCP specification document (LSCP v1.6).
* AbstractEngine::GSCheckSum(): don't allocate memory on the stack (was
  unsafe and caused compilation error with old clang 2.x).
* Bumped version (1.0.0.svn25).

1 /***************************************************************************
2 * *
3 * LinuxSampler - modular, streaming capable sampler *
4 * *
5 * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6 * Copyright (C) 2005 - 2014 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 #include "lscpsymbols.h"
38
39 namespace LinuxSampler {
40
41 // to save us typing work in the rules action definitions
42 #define LSCPSERVER ((yyparse_param_t*) yyparse_param)->pServer
43 #define SESSION_PARAM ((yyparse_param_t*) yyparse_param)
44 #define INCREMENT_LINE { SESSION_PARAM->iLine++; SESSION_PARAM->iColumn = 0; }
45
46 // clears input buffer
47 void restart(yyparse_param_t* pparam, int& yychar);
48 #define RESTART restart((yyparse_param_t*) YYPARSE_PARAM, yychar)
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 // we provide our own version of yyerror() so we don't have to link against the yacc library
107 void yyerror(const char* s);
108 void yyerror(void* x, const char* s) { yyerror(s); }
109
110 using namespace LinuxSampler;
111
112 %}
113
114 // reentrant parser
115 %pure-parser
116
117 %parse-param {void* yyparse_param}
118
119 // tell bison to spit out verbose syntax error messages
120 %error-verbose
121
122 %token <Char> EXT_ASCII_CHAR
123
124 %type <Char> char char_base alpha_char digit digit_oct digit_hex escape_seq escape_seq_octal escape_seq_hex
125 %type <Dotnum> real dotnum volume_value boolean control_value
126 %type <Number> number sampler_channel instrument_index fx_send_id audio_channel_index device_index effect_index effect_instance effect_chain chain_pos input_control midi_input_channel_index midi_input_port_index midi_map midi_bank midi_prog midi_ctrl
127 %type <String> string string_escaped text text_escaped text_escaped_base stringval stringval_escaped digits param_val_list param_val query_val filename module effect_system db_path map_name entry_name fx_send_name effect_name engine_name command add_instruction create_instruction destroy_instruction get_instruction list_instruction load_instruction send_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 append_instruction insert_instruction
128 %type <FillResponse> buffer_size_type
129 %type <KeyValList> key_val_list query_val_list
130 %type <LoadMode> instr_load_mode
131 %type <Bool> modal_arg
132 %type <UniversalPath> path path_base path_prefix path_body
133
134 %start input
135
136 %%
137
138 //TODO: return more meaningful error messages
139
140 /*
141 The LSCP specification document input file (Documentation/lscp.xml) is
142 automatically updated with this file using the scripts/update_grammar.pl
143 script. Do not modify or delete the GRAMMAR_BNF_BEGIN and GRAMMAR_BNF_END
144 lines !
145 */
146
147 // GRAMMAR_BNF_BEGIN - do NOT delete or modify this line !!!
148
149 input : line LF
150 | line CR LF
151 ;
152
153 line : /* epsilon (empty line ignored) */ { INCREMENT_LINE; return LSCP_DONE; }
154 | comment { INCREMENT_LINE; return LSCP_DONE; }
155 | command { INCREMENT_LINE; LSCPSERVER->AnswerClient($1); return LSCP_DONE; }
156 | error { INCREMENT_LINE; LSCPSERVER->AnswerClient("ERR:0:" + sLastError + "\r\n"); RESTART; return LSCP_SYNTAX_ERROR; }
157 ;
158
159 comment : '#'
160 | comment '#'
161 | comment SP
162 | comment number
163 | comment string
164 ;
165
166 command : ADD SP add_instruction { $$ = $3; }
167 | MAP SP map_instruction { $$ = $3; }
168 | UNMAP SP unmap_instruction { $$ = $3; }
169 | GET SP get_instruction { $$ = $3; }
170 | CREATE SP create_instruction { $$ = $3; }
171 | DESTROY SP destroy_instruction { $$ = $3; }
172 | LIST SP list_instruction { $$ = $3; }
173 | LOAD SP load_instruction { $$ = $3; }
174 | REMOVE SP remove_instruction { $$ = $3; }
175 | SET SP set_instruction { $$ = $3; }
176 | SUBSCRIBE SP subscribe_event { $$ = $3; }
177 | UNSUBSCRIBE SP unsubscribe_event { $$ = $3; }
178 | RESET SP reset_instruction { $$ = $3; }
179 | CLEAR SP clear_instruction { $$ = $3; }
180 | FIND SP find_instruction { $$ = $3; }
181 | MOVE SP move_instruction { $$ = $3; }
182 | COPY SP copy_instruction { $$ = $3; }
183 | EDIT SP edit_instruction { $$ = $3; }
184 | FORMAT SP format_instruction { $$ = $3; }
185 | SEND SP send_instruction { $$ = $3; }
186 | APPEND SP append_instruction { $$ = $3; }
187 | INSERT SP insert_instruction { $$ = $3; }
188 | RESET { $$ = LSCPSERVER->ResetSampler(); }
189 | QUIT { LSCPSERVER->AnswerClient("Bye!\r\n"); return LSCP_QUIT; }
190 ;
191
192 add_instruction : CHANNEL { $$ = LSCPSERVER->AddChannel(); }
193 | CHANNEL SP MIDI_INPUT SP sampler_channel SP device_index { $$ = LSCPSERVER->AddChannelMidiInput($5,$7); }
194 | CHANNEL SP MIDI_INPUT SP sampler_channel SP device_index SP midi_input_port_index { $$ = LSCPSERVER->AddChannelMidiInput($5,$7,$9); }
195 | DB_INSTRUMENT_DIRECTORY SP db_path { $$ = LSCPSERVER->AddDbInstrumentDirectory($3); }
196 | DB_INSTRUMENTS SP NON_MODAL SP scan_mode SP db_path SP filename { $$ = LSCPSERVER->AddDbInstruments($5,$7,$9, true); }
197 | DB_INSTRUMENTS SP NON_MODAL SP scan_mode SP FILE_AS_DIR SP db_path SP filename { $$ = LSCPSERVER->AddDbInstruments($5,$9,$11, true, true); }
198 | DB_INSTRUMENTS SP scan_mode SP db_path SP filename { $$ = LSCPSERVER->AddDbInstruments($3,$5,$7); }
199 | DB_INSTRUMENTS SP scan_mode SP FILE_AS_DIR SP db_path SP filename { $$ = LSCPSERVER->AddDbInstruments($3,$7,$9, false, true); }
200 | DB_INSTRUMENTS SP NON_MODAL SP db_path SP filename { $$ = LSCPSERVER->AddDbInstruments($5,$7, -1, true); }
201 | DB_INSTRUMENTS SP NON_MODAL SP db_path SP filename SP instrument_index { $$ = LSCPSERVER->AddDbInstruments($5,$7,$9, true); }
202 | DB_INSTRUMENTS SP db_path SP filename { $$ = LSCPSERVER->AddDbInstruments($3,$5); }
203 | DB_INSTRUMENTS SP db_path SP filename SP instrument_index { $$ = LSCPSERVER->AddDbInstruments($3,$5,$7); }
204 | MIDI_INSTRUMENT_MAP { $$ = LSCPSERVER->AddMidiInstrumentMap(); }
205 | MIDI_INSTRUMENT_MAP SP map_name { $$ = LSCPSERVER->AddMidiInstrumentMap($3); }
206 | SEND_EFFECT_CHAIN SP device_index { $$ = LSCPSERVER->AddSendEffectChain($3); }
207 ;
208
209 subscribe_event : AUDIO_OUTPUT_DEVICE_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_audio_device_count); }
210 | AUDIO_OUTPUT_DEVICE_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_audio_device_info); }
211 | MIDI_INPUT_DEVICE_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_device_count); }
212 | MIDI_INPUT_DEVICE_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_device_info); }
213 | CHANNEL_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_channel_count); }
214 | CHANNEL_MIDI { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_channel_midi); }
215 | DEVICE_MIDI { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_device_midi); }
216 | VOICE_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_voice_count); }
217 | STREAM_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_stream_count); }
218 | BUFFER_FILL { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_buffer_fill); }
219 | CHANNEL_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_channel_info); }
220 | FX_SEND_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_fx_send_count); }
221 | FX_SEND_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_fx_send_info); }
222 | MIDI_INSTRUMENT_MAP_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_instr_map_count); }
223 | MIDI_INSTRUMENT_MAP_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_instr_map_info); }
224 | MIDI_INSTRUMENT_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_instr_count); }
225 | MIDI_INSTRUMENT_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_midi_instr_info); }
226 | DB_INSTRUMENT_DIRECTORY_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_db_instr_dir_count); }
227 | DB_INSTRUMENT_DIRECTORY_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_db_instr_dir_info); }
228 | DB_INSTRUMENT_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_db_instr_count); }
229 | DB_INSTRUMENT_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_db_instr_info); }
230 | DB_INSTRUMENTS_JOB_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_db_instrs_job_info); }
231 | MISCELLANEOUS { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_misc); }
232 | TOTAL_STREAM_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_total_stream_count); }
233 | TOTAL_VOICE_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_total_voice_count); }
234 | GLOBAL_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_global_info); }
235 | EFFECT_INSTANCE_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_fx_instance_count); }
236 | EFFECT_INSTANCE_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_fx_instance_info); }
237 | SEND_EFFECT_CHAIN_COUNT { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_send_fx_chain_count); }
238 | SEND_EFFECT_CHAIN_INFO { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_send_fx_chain_info); }
239 ;
240
241 unsubscribe_event : AUDIO_OUTPUT_DEVICE_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_audio_device_count); }
242 | AUDIO_OUTPUT_DEVICE_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_audio_device_info); }
243 | MIDI_INPUT_DEVICE_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_device_count); }
244 | MIDI_INPUT_DEVICE_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_device_info); }
245 | CHANNEL_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_channel_count); }
246 | CHANNEL_MIDI { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_channel_midi); }
247 | DEVICE_MIDI { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_device_midi); }
248 | VOICE_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_voice_count); }
249 | STREAM_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_stream_count); }
250 | BUFFER_FILL { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_buffer_fill); }
251 | CHANNEL_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_channel_info); }
252 | FX_SEND_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_fx_send_count); }
253 | FX_SEND_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_fx_send_info); }
254 | MIDI_INSTRUMENT_MAP_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_instr_map_count); }
255 | MIDI_INSTRUMENT_MAP_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_instr_map_info); }
256 | MIDI_INSTRUMENT_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_instr_count); }
257 | MIDI_INSTRUMENT_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_midi_instr_info); }
258 | DB_INSTRUMENT_DIRECTORY_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_db_instr_dir_count); }
259 | DB_INSTRUMENT_DIRECTORY_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_db_instr_dir_info); }
260 | DB_INSTRUMENT_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_db_instr_count); }
261 | DB_INSTRUMENT_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_db_instr_info); }
262 | DB_INSTRUMENTS_JOB_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_db_instrs_job_info); }
263 | MISCELLANEOUS { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_misc); }
264 | TOTAL_STREAM_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_total_stream_count); }
265 | TOTAL_VOICE_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_total_voice_count); }
266 | GLOBAL_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_global_info); }
267 | EFFECT_INSTANCE_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_fx_instance_count); }
268 | EFFECT_INSTANCE_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_fx_instance_info); }
269 | SEND_EFFECT_CHAIN_COUNT { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_send_fx_chain_count); }
270 | SEND_EFFECT_CHAIN_INFO { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_send_fx_chain_info); }
271 ;
272
273 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); }
274 | 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); }
275 | 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); }
276 | 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); }
277 ;
278
279 unmap_instruction : MIDI_INSTRUMENT SP midi_map SP midi_bank SP midi_prog { $$ = LSCPSERVER->RemoveMIDIInstrumentMapping($3,$5,$7); }
280 ;
281
282 remove_instruction : CHANNEL SP sampler_channel { $$ = LSCPSERVER->RemoveChannel($3); }
283 | CHANNEL SP MIDI_INPUT SP sampler_channel { $$ = LSCPSERVER->RemoveChannelMidiInput($5); }
284 | CHANNEL SP MIDI_INPUT SP sampler_channel SP device_index { $$ = LSCPSERVER->RemoveChannelMidiInput($5,$7); }
285 | CHANNEL SP MIDI_INPUT SP sampler_channel SP device_index SP midi_input_port_index { $$ = LSCPSERVER->RemoveChannelMidiInput($5,$7,$9); }
286 | MIDI_INSTRUMENT_MAP SP midi_map { $$ = LSCPSERVER->RemoveMidiInstrumentMap($3); }
287 | MIDI_INSTRUMENT_MAP SP ALL { $$ = LSCPSERVER->RemoveAllMidiInstrumentMaps(); }
288 | SEND_EFFECT_CHAIN SP device_index SP effect_chain { $$ = LSCPSERVER->RemoveSendEffectChain($3,$5); }
289 | SEND_EFFECT_CHAIN SP EFFECT SP device_index SP effect_chain SP chain_pos { $$ = LSCPSERVER->RemoveSendEffectChainEffect($5,$7,$9); }
290 | FX_SEND SP EFFECT SP sampler_channel SP fx_send_id { $$ = LSCPSERVER->SetFxSendEffect($5,$7,-1,-1); }
291 | DB_INSTRUMENT_DIRECTORY SP FORCE SP db_path { $$ = LSCPSERVER->RemoveDbInstrumentDirectory($5, true); }
292 | DB_INSTRUMENT_DIRECTORY SP db_path { $$ = LSCPSERVER->RemoveDbInstrumentDirectory($3); }
293 | DB_INSTRUMENT SP db_path { $$ = LSCPSERVER->RemoveDbInstrument($3); }
294 ;
295
296 get_instruction : AVAILABLE_ENGINES { $$ = LSCPSERVER->GetAvailableEngines(); }
297 | AVAILABLE_EFFECTS { $$ = LSCPSERVER->GetAvailableEffects(); }
298 | EFFECT_INSTANCES { $$ = LSCPSERVER->GetEffectInstances(); }
299 | EFFECT SP INFO SP effect_index { $$ = LSCPSERVER->GetEffectInfo($5); }
300 | EFFECT_INSTANCE SP INFO SP effect_instance { $$ = LSCPSERVER->GetEffectInstanceInfo($5); }
301 | EFFECT_INSTANCE_INPUT_CONTROL SP INFO SP effect_instance SP input_control { $$ = LSCPSERVER->GetEffectInstanceInputControlInfo($5,$7); }
302 | SEND_EFFECT_CHAINS SP device_index { $$ = LSCPSERVER->GetSendEffectChains($3); }
303 | SEND_EFFECT_CHAIN SP INFO SP device_index SP effect_chain { $$ = LSCPSERVER->GetSendEffectChainInfo($5,$7); }
304 | AVAILABLE_MIDI_INPUT_DRIVERS { $$ = LSCPSERVER->GetAvailableMidiInputDrivers(); }
305 | MIDI_INPUT_DRIVER SP INFO SP string { $$ = LSCPSERVER->GetMidiInputDriverInfo($5); }
306 | MIDI_INPUT_DRIVER_PARAMETER SP INFO SP string SP string { $$ = LSCPSERVER->GetMidiInputDriverParameterInfo($5, $7); }
307 | MIDI_INPUT_DRIVER_PARAMETER SP INFO SP string SP string SP key_val_list { $$ = LSCPSERVER->GetMidiInputDriverParameterInfo($5, $7, $9); }
308 | AVAILABLE_AUDIO_OUTPUT_DRIVERS { $$ = LSCPSERVER->GetAvailableAudioOutputDrivers(); }
309 | AUDIO_OUTPUT_DRIVER SP INFO SP string { $$ = LSCPSERVER->GetAudioOutputDriverInfo($5); }
310 | AUDIO_OUTPUT_DRIVER_PARAMETER SP INFO SP string SP string { $$ = LSCPSERVER->GetAudioOutputDriverParameterInfo($5, $7); }
311 | AUDIO_OUTPUT_DRIVER_PARAMETER SP INFO SP string SP string SP key_val_list { $$ = LSCPSERVER->GetAudioOutputDriverParameterInfo($5, $7, $9); }
312 | AUDIO_OUTPUT_DEVICES { $$ = LSCPSERVER->GetAudioOutputDeviceCount(); }
313 | MIDI_INPUT_DEVICES { $$ = LSCPSERVER->GetMidiInputDeviceCount(); }
314 | AUDIO_OUTPUT_DEVICE SP INFO SP number { $$ = LSCPSERVER->GetAudioOutputDeviceInfo($5); }
315 | MIDI_INPUT_DEVICE SP INFO SP number { $$ = LSCPSERVER->GetMidiInputDeviceInfo($5); }
316 | MIDI_INPUT_PORT SP INFO SP number SP number { $$ = LSCPSERVER->GetMidiInputPortInfo($5, $7); }
317 | MIDI_INPUT_PORT_PARAMETER SP INFO SP number SP number SP string { $$ = LSCPSERVER->GetMidiInputPortParameterInfo($5, $7, $9); }
318 | AUDIO_OUTPUT_CHANNEL SP INFO SP number SP number { $$ = LSCPSERVER->GetAudioOutputChannelInfo($5, $7); }
319 | AUDIO_OUTPUT_CHANNEL_PARAMETER SP INFO SP number SP number SP string { $$ = LSCPSERVER->GetAudioOutputChannelParameterInfo($5, $7, $9); }
320 | CHANNELS { $$ = LSCPSERVER->GetChannels(); }
321 | CHANNEL SP INFO SP sampler_channel { $$ = LSCPSERVER->GetChannelInfo($5); }
322 | CHANNEL SP BUFFER_FILL SP buffer_size_type SP sampler_channel { $$ = LSCPSERVER->GetBufferFill($5, $7); }
323 | CHANNEL SP STREAM_COUNT SP sampler_channel { $$ = LSCPSERVER->GetStreamCount($5); }
324 | CHANNEL SP VOICE_COUNT SP sampler_channel { $$ = LSCPSERVER->GetVoiceCount($5); }
325 | ENGINE SP INFO SP engine_name { $$ = LSCPSERVER->GetEngineInfo($5); }
326 | SERVER SP INFO { $$ = LSCPSERVER->GetServerInfo(); }
327 | TOTAL_STREAM_COUNT { $$ = LSCPSERVER->GetTotalStreamCount(); }
328 | TOTAL_VOICE_COUNT { $$ = LSCPSERVER->GetTotalVoiceCount(); }
329 | TOTAL_VOICE_COUNT_MAX { $$ = LSCPSERVER->GetTotalVoiceCountMax(); }
330 | MIDI_INSTRUMENTS SP midi_map { $$ = LSCPSERVER->GetMidiInstrumentMappings($3); }
331 | MIDI_INSTRUMENTS SP ALL { $$ = LSCPSERVER->GetAllMidiInstrumentMappings(); }
332 | MIDI_INSTRUMENT SP INFO SP midi_map SP midi_bank SP midi_prog { $$ = LSCPSERVER->GetMidiInstrumentMapping($5,$7,$9); }
333 | MIDI_INSTRUMENT_MAPS { $$ = LSCPSERVER->GetMidiInstrumentMaps(); }
334 | MIDI_INSTRUMENT_MAP SP INFO SP midi_map { $$ = LSCPSERVER->GetMidiInstrumentMap($5); }
335 | FX_SENDS SP sampler_channel { $$ = LSCPSERVER->GetFxSends($3); }
336 | FX_SEND SP INFO SP sampler_channel SP fx_send_id { $$ = LSCPSERVER->GetFxSendInfo($5,$7); }
337 | DB_INSTRUMENT_DIRECTORIES SP RECURSIVE SP db_path { $$ = LSCPSERVER->GetDbInstrumentDirectoryCount($5, true); }
338 | DB_INSTRUMENT_DIRECTORIES SP db_path { $$ = LSCPSERVER->GetDbInstrumentDirectoryCount($3, false); }
339 | DB_INSTRUMENT_DIRECTORY SP INFO SP db_path { $$ = LSCPSERVER->GetDbInstrumentDirectoryInfo($5); }
340 | DB_INSTRUMENTS SP RECURSIVE SP db_path { $$ = LSCPSERVER->GetDbInstrumentCount($5, true); }
341 | DB_INSTRUMENTS SP db_path { $$ = LSCPSERVER->GetDbInstrumentCount($3, false); }
342 | DB_INSTRUMENT SP INFO SP db_path { $$ = LSCPSERVER->GetDbInstrumentInfo($5); }
343 | DB_INSTRUMENTS_JOB SP INFO SP number { $$ = LSCPSERVER->GetDbInstrumentsJobInfo($5); }
344 | VOLUME { $$ = LSCPSERVER->GetGlobalVolume(); }
345 | VOICES { $$ = LSCPSERVER->GetGlobalMaxVoices(); }
346 | STREAMS { $$ = LSCPSERVER->GetGlobalMaxStreams(); }
347 | FILE SP INSTRUMENTS SP filename { $$ = LSCPSERVER->GetFileInstruments($5); }
348 | FILE SP INSTRUMENT SP INFO SP filename SP instrument_index { $$ = LSCPSERVER->GetFileInstrumentInfo($7,$9); }
349 ;
350
351 set_instruction : AUDIO_OUTPUT_DEVICE_PARAMETER SP number SP string '=' param_val_list { $$ = LSCPSERVER->SetAudioOutputDeviceParameter($3, $5, $7); }
352 | AUDIO_OUTPUT_CHANNEL_PARAMETER SP number SP number SP string '=' param_val_list { $$ = LSCPSERVER->SetAudioOutputChannelParameter($3, $5, $7, $9); }
353 | MIDI_INPUT_DEVICE_PARAMETER SP number SP string '=' param_val_list { $$ = LSCPSERVER->SetMidiInputDeviceParameter($3, $5, $7); }
354 | MIDI_INPUT_PORT_PARAMETER SP number SP number SP string '=' NONE { $$ = LSCPSERVER->SetMidiInputPortParameter($3, $5, $7, ""); }
355 | MIDI_INPUT_PORT_PARAMETER SP number SP number SP string '=' param_val_list { $$ = LSCPSERVER->SetMidiInputPortParameter($3, $5, $7, $9); }
356 | EFFECT_INSTANCE_INPUT_CONTROL SP VALUE SP effect_instance SP input_control SP control_value { $$ = LSCPSERVER->SetEffectInstanceInputControlValue($5, $7, $9); }
357 | CHANNEL SP set_chan_instruction { $$ = $3; }
358 | MIDI_INSTRUMENT_MAP SP NAME SP midi_map SP map_name { $$ = LSCPSERVER->SetMidiInstrumentMapName($5, $7); }
359 | FX_SEND SP NAME SP sampler_channel SP fx_send_id SP fx_send_name { $$ = LSCPSERVER->SetFxSendName($5,$7,$9); }
360 | 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); }
361 | FX_SEND SP MIDI_CONTROLLER SP sampler_channel SP fx_send_id SP midi_ctrl { $$ = LSCPSERVER->SetFxSendMidiController($5,$7,$9); }
362 | FX_SEND SP LEVEL SP sampler_channel SP fx_send_id SP volume_value { $$ = LSCPSERVER->SetFxSendLevel($5,$7,$9); }
363 | FX_SEND SP EFFECT SP sampler_channel SP fx_send_id SP effect_chain SP chain_pos { $$ = LSCPSERVER->SetFxSendEffect($5,$7,$9,$11); }
364 | DB_INSTRUMENT_DIRECTORY SP NAME SP db_path SP stringval_escaped { $$ = LSCPSERVER->SetDbInstrumentDirectoryName($5,$7); }
365 | DB_INSTRUMENT_DIRECTORY SP DESCRIPTION SP db_path SP stringval_escaped { $$ = LSCPSERVER->SetDbInstrumentDirectoryDescription($5,$7); }
366 | DB_INSTRUMENT SP NAME SP db_path SP stringval_escaped { $$ = LSCPSERVER->SetDbInstrumentName($5,$7); }
367 | DB_INSTRUMENT SP DESCRIPTION SP db_path SP stringval_escaped { $$ = LSCPSERVER->SetDbInstrumentDescription($5,$7); }
368 | DB_INSTRUMENT SP FILE_PATH SP filename SP filename { $$ = LSCPSERVER->SetDbInstrumentFilePath($5,$7); }
369 | ECHO SP boolean { $$ = LSCPSERVER->SetEcho((yyparse_param_t*) yyparse_param, $3); }
370 | VOLUME SP volume_value { $$ = LSCPSERVER->SetGlobalVolume($3); }
371 | VOICES SP number { $$ = LSCPSERVER->SetGlobalMaxVoices($3); }
372 | STREAMS SP number { $$ = LSCPSERVER->SetGlobalMaxStreams($3); }
373 ;
374
375 create_instruction : AUDIO_OUTPUT_DEVICE SP string SP key_val_list { $$ = LSCPSERVER->CreateAudioOutputDevice($3,$5); }
376 | AUDIO_OUTPUT_DEVICE SP string { $$ = LSCPSERVER->CreateAudioOutputDevice($3); }
377 | MIDI_INPUT_DEVICE SP string SP key_val_list { $$ = LSCPSERVER->CreateMidiInputDevice($3,$5); }
378 | MIDI_INPUT_DEVICE SP string { $$ = LSCPSERVER->CreateMidiInputDevice($3); }
379 | FX_SEND SP sampler_channel SP midi_ctrl { $$ = LSCPSERVER->CreateFxSend($3,$5); }
380 | FX_SEND SP sampler_channel SP midi_ctrl SP fx_send_name { $$ = LSCPSERVER->CreateFxSend($3,$5,$7); }
381 | EFFECT_INSTANCE SP effect_index { $$ = LSCPSERVER->CreateEffectInstance($3); }
382 | EFFECT_INSTANCE SP effect_system SP module SP effect_name { $$ = LSCPSERVER->CreateEffectInstance($3,$5,$7); }
383 ;
384
385 reset_instruction : CHANNEL SP sampler_channel { $$ = LSCPSERVER->ResetChannel($3); }
386 ;
387
388 clear_instruction : MIDI_INSTRUMENTS SP midi_map { $$ = LSCPSERVER->ClearMidiInstrumentMappings($3); }
389 | MIDI_INSTRUMENTS SP ALL { $$ = LSCPSERVER->ClearAllMidiInstrumentMappings(); }
390 ;
391
392 find_instruction : DB_INSTRUMENTS SP NON_RECURSIVE SP db_path SP query_val_list { $$ = LSCPSERVER->FindDbInstruments($5,$7, false); }
393 | DB_INSTRUMENTS SP db_path SP query_val_list { $$ = LSCPSERVER->FindDbInstruments($3,$5, true); }
394 | DB_INSTRUMENT_DIRECTORIES SP NON_RECURSIVE SP db_path SP query_val_list { $$ = LSCPSERVER->FindDbInstrumentDirectories($5,$7, false); }
395 | DB_INSTRUMENT_DIRECTORIES SP db_path SP query_val_list { $$ = LSCPSERVER->FindDbInstrumentDirectories($3,$5, true); }
396 | LOST SP DB_INSTRUMENT_FILES { $$ = LSCPSERVER->FindLostDbInstrumentFiles(); }
397 ;
398
399 move_instruction : DB_INSTRUMENT_DIRECTORY SP db_path SP db_path { $$ = LSCPSERVER->MoveDbInstrumentDirectory($3,$5); }
400 | DB_INSTRUMENT SP db_path SP db_path { $$ = LSCPSERVER->MoveDbInstrument($3,$5); }
401 ;
402
403 copy_instruction : DB_INSTRUMENT_DIRECTORY SP db_path SP db_path { $$ = LSCPSERVER->CopyDbInstrumentDirectory($3,$5); }
404 | DB_INSTRUMENT SP db_path SP db_path { $$ = LSCPSERVER->CopyDbInstrument($3,$5); }
405 ;
406
407 destroy_instruction : AUDIO_OUTPUT_DEVICE SP number { $$ = LSCPSERVER->DestroyAudioOutputDevice($3); }
408 | MIDI_INPUT_DEVICE SP number { $$ = LSCPSERVER->DestroyMidiInputDevice($3); }
409 | FX_SEND SP sampler_channel SP fx_send_id { $$ = LSCPSERVER->DestroyFxSend($3,$5); }
410 | EFFECT_INSTANCE SP number { $$ = LSCPSERVER->DestroyEffectInstance($3); }
411 ;
412
413 load_instruction : INSTRUMENT SP load_instr_args { $$ = $3; }
414 | ENGINE SP load_engine_args { $$ = $3; }
415 ;
416
417 append_instruction : SEND_EFFECT_CHAIN SP EFFECT SP device_index SP effect_chain SP effect_instance { $$ = LSCPSERVER->AppendSendEffectChainEffect($5,$7,$9); }
418 ;
419
420 insert_instruction : SEND_EFFECT_CHAIN SP EFFECT SP device_index SP effect_chain SP chain_pos SP effect_instance { $$ = LSCPSERVER->InsertSendEffectChainEffect($5,$7,$9,$11); }
421 ;
422
423 set_chan_instruction : AUDIO_OUTPUT_DEVICE SP sampler_channel SP device_index { $$ = LSCPSERVER->SetAudioOutputDevice($5, $3); }
424 | AUDIO_OUTPUT_CHANNEL SP sampler_channel SP audio_channel_index SP audio_channel_index { $$ = LSCPSERVER->SetAudioOutputChannel($5, $7, $3); }
425 | AUDIO_OUTPUT_TYPE SP sampler_channel SP audio_output_type_name { $$ = LSCPSERVER->SetAudioOutputType($5, $3); }
426 | MIDI_INPUT SP sampler_channel SP device_index SP midi_input_port_index SP midi_input_channel_index { $$ = LSCPSERVER->SetMIDIInput($5, $7, $9, $3); }
427 | MIDI_INPUT_DEVICE SP sampler_channel SP device_index { $$ = LSCPSERVER->SetMIDIInputDevice($5, $3); }
428 | MIDI_INPUT_PORT SP sampler_channel SP midi_input_port_index { $$ = LSCPSERVER->SetMIDIInputPort($5, $3); }
429 | MIDI_INPUT_CHANNEL SP sampler_channel SP midi_input_channel_index { $$ = LSCPSERVER->SetMIDIInputChannel($5, $3); }
430 | MIDI_INPUT_TYPE SP sampler_channel SP midi_input_type_name { $$ = LSCPSERVER->SetMIDIInputType($5, $3); }
431 | VOLUME SP sampler_channel SP volume_value { $$ = LSCPSERVER->SetVolume($5, $3); }
432 | MUTE SP sampler_channel SP boolean { $$ = LSCPSERVER->SetChannelMute($5, $3); }
433 | SOLO SP sampler_channel SP boolean { $$ = LSCPSERVER->SetChannelSolo($5, $3); }
434 | MIDI_INSTRUMENT_MAP SP sampler_channel SP midi_map { $$ = LSCPSERVER->SetChannelMap($3, $5); }
435 | MIDI_INSTRUMENT_MAP SP sampler_channel SP NONE { $$ = LSCPSERVER->SetChannelMap($3, -1); }
436 | MIDI_INSTRUMENT_MAP SP sampler_channel SP DEFAULT { $$ = LSCPSERVER->SetChannelMap($3, -2); }
437 ;
438
439 edit_instruction : CHANNEL SP INSTRUMENT SP sampler_channel { $$ = LSCPSERVER->EditSamplerChannelInstrument($5); }
440 ;
441
442 format_instruction : INSTRUMENTS_DB { $$ = LSCPSERVER->FormatInstrumentsDb(); }
443 ;
444
445 modal_arg : /* epsilon (empty argument) */ { $$ = true; }
446 | NON_MODAL SP { $$ = false; }
447 ;
448
449 key_val_list : string '=' param_val_list { $$[$1] = $3; }
450 | key_val_list SP string '=' param_val_list { $$ = $1; $$[$3] = $5; }
451 ;
452
453 buffer_size_type : BYTES { $$ = fill_response_bytes; }
454 | PERCENTAGE { $$ = fill_response_percentage; }
455 ;
456
457 list_instruction : AUDIO_OUTPUT_DEVICES { $$ = LSCPSERVER->GetAudioOutputDevices(); }
458 | MIDI_INPUT_DEVICES { $$ = LSCPSERVER->GetMidiInputDevices(); }
459 | CHANNELS { $$ = LSCPSERVER->ListChannels(); }
460 | CHANNEL SP MIDI_INPUTS SP sampler_channel { $$ = LSCPSERVER->ListChannelMidiInputs($5); }
461 | AVAILABLE_ENGINES { $$ = LSCPSERVER->ListAvailableEngines(); }
462 | AVAILABLE_EFFECTS { $$ = LSCPSERVER->ListAvailableEffects(); }
463 | EFFECT_INSTANCES { $$ = LSCPSERVER->ListEffectInstances(); }
464 | SEND_EFFECT_CHAINS SP number { $$ = LSCPSERVER->ListSendEffectChains($3); }
465 | AVAILABLE_MIDI_INPUT_DRIVERS { $$ = LSCPSERVER->ListAvailableMidiInputDrivers(); }
466 | AVAILABLE_AUDIO_OUTPUT_DRIVERS { $$ = LSCPSERVER->ListAvailableAudioOutputDrivers(); }
467 | MIDI_INSTRUMENTS SP midi_map { $$ = LSCPSERVER->ListMidiInstrumentMappings($3); }
468 | MIDI_INSTRUMENTS SP ALL { $$ = LSCPSERVER->ListAllMidiInstrumentMappings(); }
469 | MIDI_INSTRUMENT_MAPS { $$ = LSCPSERVER->ListMidiInstrumentMaps(); }
470 | FX_SENDS SP sampler_channel { $$ = LSCPSERVER->ListFxSends($3); }
471 | DB_INSTRUMENT_DIRECTORIES SP RECURSIVE SP db_path { $$ = LSCPSERVER->GetDbInstrumentDirectories($5, true); }
472 | DB_INSTRUMENT_DIRECTORIES SP db_path { $$ = LSCPSERVER->GetDbInstrumentDirectories($3); }
473 | DB_INSTRUMENTS SP RECURSIVE SP db_path { $$ = LSCPSERVER->GetDbInstruments($5, true); }
474 | DB_INSTRUMENTS SP db_path { $$ = LSCPSERVER->GetDbInstruments($3); }
475 | FILE SP INSTRUMENTS SP filename { $$ = LSCPSERVER->ListFileInstruments($5); }
476 ;
477
478 send_instruction : CHANNEL SP MIDI_DATA SP string SP sampler_channel SP number SP number { $$ = LSCPSERVER->SendChannelMidiData($5, $7, $9, $11); }
479 ;
480
481 load_instr_args : filename SP instrument_index SP sampler_channel { $$ = LSCPSERVER->LoadInstrument($1, $3, $5); }
482 | NON_MODAL SP filename SP instrument_index SP sampler_channel { $$ = LSCPSERVER->LoadInstrument($3, $5, $7, true); }
483 ;
484
485 load_engine_args : engine_name SP sampler_channel { $$ = LSCPSERVER->SetEngineType($1, $3); }
486 ;
487
488 instr_load_mode : ON_DEMAND { $$ = MidiInstrumentMapper::ON_DEMAND; }
489 | ON_DEMAND_HOLD { $$ = MidiInstrumentMapper::ON_DEMAND_HOLD; }
490 | PERSISTENT { $$ = MidiInstrumentMapper::PERSISTENT; }
491 ;
492
493 effect_instance : number
494 ;
495
496 device_index : number
497 ;
498
499 audio_channel_index : number
500 ;
501
502 audio_output_type_name : string
503 ;
504
505 midi_input_port_index : number
506 ;
507
508 midi_input_channel_index : number
509 | ALL { $$ = 16; }
510 ;
511
512 midi_input_type_name : string
513 ;
514
515 midi_map : number
516 ;
517
518 midi_bank : number
519 ;
520
521 midi_prog : number
522 ;
523
524 midi_ctrl : number
525 ;
526
527 volume_value : dotnum
528 | number { $$ = $1; }
529 ;
530
531 control_value : real
532 ;
533
534 sampler_channel : number
535 ;
536
537 instrument_index : number
538 ;
539
540 fx_send_id : number
541 ;
542
543 engine_name : string
544 ;
545
546 filename : path {
547 #if WIN32
548 $$ = $1.toWindows();
549 #else
550 // assuming POSIX
551 $$ = $1.toPosix();
552 #endif
553 }
554 ;
555
556 db_path : path { $$ = $1.toDbPath(); }
557 ;
558
559 map_name : stringval_escaped
560 ;
561
562 entry_name : stringval_escaped
563 ;
564
565 fx_send_name : stringval_escaped
566 ;
567
568 effect_name : stringval_escaped
569 ;
570
571 effect_index : number
572 ;
573
574 effect_chain : number
575 ;
576
577 chain_pos : number
578 ;
579
580 input_control : number
581 ;
582
583 param_val_list : param_val
584 | param_val_list','param_val { $$ = $1 + "," + $3; }
585 ;
586
587 //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
588 param_val : string { $$ = "\'" + $1 + "\'"; }
589 | stringval { $$ = "\'" + $1 + "\'"; }
590 | number { std::stringstream ss; ss << "\'" << $1 << "\'"; $$ = ss.str(); }
591 | dotnum { std::stringstream ss; ss << "\'" << $1 << "\'"; $$ = ss.str(); } //TODO: maybe better using 'real' instead of 'number' and 'dotnum' rules
592 ;
593
594 query_val_list : string '=' query_val { $$[$1] = $3; }
595 | query_val_list SP string '=' query_val { $$ = $1; $$[$3] = $5; }
596 ;
597
598 query_val : text_escaped
599 | stringval_escaped
600 ;
601
602 scan_mode : RECURSIVE { $$ = "RECURSIVE"; }
603 | NON_RECURSIVE { $$ = "NON_RECURSIVE"; }
604 | FLAT { $$ = "FLAT"; }
605 ;
606
607 effect_system : string
608 ;
609
610 module : filename
611 ;
612
613 // GRAMMAR_BNF_END - do NOT delete or modify this line !!!
614
615
616 // atomic variable symbol rules
617
618 boolean : number { $$ = $1; }
619 | string { $$ = -1; }
620 ;
621
622 dotnum : digits '.' digits { std::stringstream ss($1 + "." + $3); ss.imbue(std::locale::classic()); ss >> $$; }
623 | '+' digits '.' digits { std::stringstream ss($2 + "." + $4); ss.imbue(std::locale::classic()); ss >> $$; }
624 | '-' digits '.' digits { std::stringstream ss("-" + $2 + "." + $4); ss.imbue(std::locale::classic()); ss >> $$; }
625 ;
626
627 real : digits '.' digits { std::stringstream ss($1 + "." + $3); ss.imbue(std::locale::classic()); ss >> $$; }
628 | '+' digits '.' digits { std::stringstream ss($2 + "." + $4); ss.imbue(std::locale::classic()); ss >> $$; }
629 | '-' digits '.' digits { std::stringstream ss("-" + $2 + "." + $4); ss.imbue(std::locale::classic()); ss >> $$; }
630 | digits { std::stringstream ss($1); ss.imbue(std::locale::classic()); ss >> $$; }
631 | '+' digits { std::stringstream ss($2); ss.imbue(std::locale::classic()); ss >> $$; }
632 | '-' digits { std::stringstream ss("-" + $2); ss.imbue(std::locale::classic()); ss >> $$; }
633 ;
634
635
636 digits : digit { $$ = $1; }
637 | digits digit { $$ = $1 + $2; }
638 ;
639
640 digit : '0' { $$ = '0'; }
641 | '1' { $$ = '1'; }
642 | '2' { $$ = '2'; }
643 | '3' { $$ = '3'; }
644 | '4' { $$ = '4'; }
645 | '5' { $$ = '5'; }
646 | '6' { $$ = '6'; }
647 | '7' { $$ = '7'; }
648 | '8' { $$ = '8'; }
649 | '9' { $$ = '9'; }
650 ;
651
652 digit_oct : '0' { $$ = '0'; }
653 | '1' { $$ = '1'; }
654 | '2' { $$ = '2'; }
655 | '3' { $$ = '3'; }
656 | '4' { $$ = '4'; }
657 | '5' { $$ = '5'; }
658 | '6' { $$ = '6'; }
659 | '7' { $$ = '7'; }
660 ;
661
662 digit_hex : '0' { $$ = '0'; }
663 | '1' { $$ = '1'; }
664 | '2' { $$ = '2'; }
665 | '3' { $$ = '3'; }
666 | '4' { $$ = '4'; }
667 | '5' { $$ = '5'; }
668 | '6' { $$ = '6'; }
669 | '7' { $$ = '7'; }
670 | '8' { $$ = '8'; }
671 | '9' { $$ = '9'; }
672 | 'a' { $$ = 'a'; }
673 | 'b' { $$ = 'b'; }
674 | 'c' { $$ = 'c'; }
675 | 'd' { $$ = 'd'; }
676 | 'e' { $$ = 'e'; }
677 | 'f' { $$ = 'f'; }
678 | 'A' { $$ = 'a'; }
679 | 'B' { $$ = 'b'; }
680 | 'C' { $$ = 'c'; }
681 | 'D' { $$ = 'd'; }
682 | 'E' { $$ = 'e'; }
683 | 'F' { $$ = 'f'; }
684 ;
685
686 number : digit { $$ = atoi(String(1, $1).c_str()); }
687 | '1' digits { $$ = atoi(String(String("1") + $2).c_str()); }
688 | '2' digits { $$ = atoi(String(String("2") + $2).c_str()); }
689 | '3' digits { $$ = atoi(String(String("3") + $2).c_str()); }
690 | '4' digits { $$ = atoi(String(String("4") + $2).c_str()); }
691 | '5' digits { $$ = atoi(String(String("5") + $2).c_str()); }
692 | '6' digits { $$ = atoi(String(String("6") + $2).c_str()); }
693 | '7' digits { $$ = atoi(String(String("7") + $2).c_str()); }
694 | '8' digits { $$ = atoi(String(String("8") + $2).c_str()); }
695 | '9' digits { $$ = atoi(String(String("9") + $2).c_str()); }
696 ;
697
698 path : '\'' path_base '\'' { $$ = $2; }
699 | '\"' path_base '\"' { $$ = $2; }
700 ;
701
702 path_base : path_prefix path_body { $$ = $1 + $2; }
703 ;
704
705 path_prefix : '/' { $$ = Path(); }
706 | alpha_char ':' '/' { Path p; p.setDrive($1); $$ = p; }
707 ;
708
709 path_body : /* epsilon (empty argument) */ { $$ = Path(); }
710 | path_body '/' { $$ = $1; }
711 | path_body text_escaped_base { Path p; p.appendNode($2); $$ = $1 + p; }
712 ;
713
714 stringval : '\'' text '\'' { $$ = $2; }
715 | '\"' text '\"' { $$ = $2; }
716 ;
717
718 stringval_escaped : '\'' text_escaped '\'' { $$ = $2; }
719 | '\"' text_escaped '\"' { $$ = $2; }
720 ;
721
722 text : SP { $$ = " "; }
723 | string
724 | text SP { $$ = $1 + " "; }
725 | text string { $$ = $1 + $2; }
726 ;
727
728 // like text_escaped, but missing the slash ('/') character
729 text_escaped_base : SP { $$ = " "; }
730 | string_escaped
731 | text_escaped_base SP { $$ = $1 + " "; }
732 | text_escaped_base string_escaped { $$ = $1 + $2; }
733 ;
734
735 text_escaped : '/' { $$ = "/"; }
736 | text_escaped_base
737 | text_escaped '/' { $$ = $1 + "/"; }
738 | text_escaped text_escaped_base { $$ = $1 + $2; }
739 ;
740
741 string : char { std::string s; s = $1; $$ = s; }
742 | string char { $$ = $1 + $2; }
743 ;
744
745 string_escaped : char_base { std::string s; s = $1; $$ = s; }
746 | escape_seq { std::string s; s = $1; $$ = s; }
747 | string_escaped char_base { $$ = $1 + $2; }
748 | string_escaped escape_seq { $$ = $1 + $2; }
749 ;
750
751 // full ASCII character set except space, quotation mark and apostrophe
752 char : char_base
753 | '\\' { $$ = '\\'; }
754 | '/' { $$ = '/'; }
755 ;
756
757 // characters A..Z and a..z
758 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'; }
759 | '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'; }
760 ;
761
762 // ASCII characters except space, quotation mark, apostrophe, backslash and slash
763 char_base : alpha_char
764 | '0' { $$ = '0'; } | '1' { $$ = '1'; } | '2' { $$ = '2'; } | '3' { $$ = '3'; } | '4' { $$ = '4'; } | '5' { $$ = '5'; } | '6' { $$ = '6'; } | '7' { $$ = '7'; } | '8' { $$ = '8'; } | '9' { $$ = '9'; }
765 | '!' { $$ = '!'; } | '#' { $$ = '#'; } | '$' { $$ = '$'; } | '%' { $$ = '%'; } | '&' { $$ = '&'; } | '(' { $$ = '('; } | ')' { $$ = ')'; } | '*' { $$ = '*'; } | '+' { $$ = '+'; } | '-' { $$ = '-'; } | '.' { $$ = '.'; } | ',' { $$ = ','; }
766 | ':' { $$ = ':'; } | ';' { $$ = ';'; } | '<' { $$ = '<'; } | '=' { $$ = '='; } | '>' { $$ = '>'; } | '?' { $$ = '?'; } | '@' { $$ = '@'; }
767 | '[' { $$ = '['; } | ']' { $$ = ']'; } | '^' { $$ = '^'; } | '_' { $$ = '_'; }
768 | '{' { $$ = '{'; } | '|' { $$ = '|'; } | '}' { $$ = '}'; } | '~' { $$ = '~'; }
769 | EXT_ASCII_CHAR
770 ;
771
772 escape_seq : '\\' '\'' { $$ = '\''; }
773 | '\\' '\"' { $$ = '\"'; }
774 | '\\' '\\' { $$ = '\\'; }
775 | '\\' '/' { $$ = '/'; }
776 | '\\' 'n' { $$ = '\n'; }
777 | '\\' 'r' { $$ = '\r'; }
778 | '\\' 'f' { $$ = '\f'; }
779 | '\\' 't' { $$ = '\t'; }
780 | '\\' 'v' { $$ = '\v'; }
781 | escape_seq_octal
782 | escape_seq_hex
783 ;
784
785 escape_seq_octal : '\\' digit_oct { $$ = (char) octalsToNumber($2); }
786 | '\\' digit_oct digit_oct { $$ = (char) octalsToNumber($3,$2); }
787 | '\\' digit_oct digit_oct digit_oct { $$ = (char) octalsToNumber($4,$3,$2); }
788 ;
789
790 escape_seq_hex : '\\' 'x' digit_hex { $$ = (char) hexsToNumber($3); }
791 | '\\' 'x' digit_hex digit_hex { $$ = (char) hexsToNumber($4,$3); }
792 ;
793
794 // rules which are more or less just terminal symbols
795
796 SP : ' '
797 ;
798
799 LF : '\n'
800 ;
801
802 CR : '\r'
803 ;
804
805 ADD : 'A''D''D'
806 ;
807
808 GET : 'G''E''T'
809 ;
810
811 MAP : 'M''A''P'
812 ;
813
814 UNMAP : 'U''N''M''A''P'
815 ;
816
817 CLEAR : 'C''L''E''A''R'
818 ;
819
820 FIND : 'F''I''N''D'
821 ;
822
823 FILE_AS_DIR : 'F''I''L''E''_''A''S''_''D''I''R'
824 ;
825
826 MOVE : 'M''O''V''E'
827 ;
828
829 COPY : 'C''O''P''Y'
830 ;
831
832 CREATE : 'C''R''E''A''T''E'
833 ;
834
835 DESTROY : 'D''E''S''T''R''O''Y'
836 ;
837
838 LIST : 'L''I''S''T'
839 ;
840
841 LOAD : 'L''O''A''D'
842 ;
843
844 ALL : 'A''L''L'
845 ;
846
847 NONE : 'N''O''N''E'
848 ;
849
850 DEFAULT : 'D''E''F''A''U''L''T'
851 ;
852
853 NON_MODAL : 'N''O''N''_''M''O''D''A''L'
854 ;
855
856 REMOVE : 'R''E''M''O''V''E'
857 ;
858
859 SET : 'S''E''T'
860 ;
861
862 APPEND : 'A''P''P''E''N''D'
863 ;
864
865 INSERT : 'I''N''S''E''R''T'
866 ;
867
868 SUBSCRIBE : 'S''U''B''S''C''R''I''B''E'
869 ;
870
871 UNSUBSCRIBE : 'U''N''S''U''B''S''C''R''I''B''E'
872 ;
873
874 CHANNEL : 'C''H''A''N''N''E''L'
875 ;
876
877 AVAILABLE_ENGINES : 'A''V''A''I''L''A''B''L''E''_''E''N''G''I''N''E''S'
878 ;
879
880 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'
881 ;
882
883 CHANNELS : 'C''H''A''N''N''E''L''S'
884 ;
885
886 INFO : 'I''N''F''O'
887 ;
888
889 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'
890 ;
891
892 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'
893 ;
894
895 MIDI_INPUT_DEVICE_COUNT : 'M''I''D''I''_''I''N''P''U''T''_''D''E''V''I''C''E''_''C''O''U''N''T'
896 ;
897
898 MIDI_INPUT_DEVICE_INFO : 'M''I''D''I''_''I''N''P''U''T''_''D''E''V''I''C''E''_''I''N''F''O'
899 ;
900
901 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'
902 ;
903
904 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'
905 ;
906
907 MIDI_INSTRUMENT_COUNT : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''C''O''U''N''T'
908 ;
909
910 MIDI_INSTRUMENT_INFO : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''I''N''F''O'
911 ;
912
913 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'
914 ;
915
916 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'
917 ;
918
919 DB_INSTRUMENT_COUNT : 'D''B''_''I''N''S''T''R''U''M''E''N''T''_''C''O''U''N''T'
920 ;
921
922 DB_INSTRUMENT_INFO : 'D''B''_''I''N''S''T''R''U''M''E''N''T''_''I''N''F''O'
923 ;
924
925 DB_INSTRUMENT_FILES : 'D''B''_''I''N''S''T''R''U''M''E''N''T''_''F''I''L''E''S'
926 ;
927
928 DB_INSTRUMENTS_JOB_INFO : 'D''B''_''I''N''S''T''R''U''M''E''N''T''S''_''J''O''B''_''I''N''F''O'
929 ;
930
931 CHANNEL_COUNT : 'C''H''A''N''N''E''L''_''C''O''U''N''T'
932 ;
933
934 CHANNEL_MIDI : 'C''H''A''N''N''E''L''_''M''I''D''I'
935 ;
936
937 DEVICE_MIDI : 'D''E''V''I''C''E''_''M''I''D''I'
938 ;
939
940 CHANNEL_INFO : 'C''H''A''N''N''E''L''_''I''N''F''O'
941 ;
942
943 FX_SEND_COUNT : 'F''X''_''S''E''N''D''_''C''O''U''N''T'
944 ;
945
946 FX_SEND_INFO : 'F''X''_''S''E''N''D''_''I''N''F''O'
947 ;
948
949 BUFFER_FILL : 'B''U''F''F''E''R''_''F''I''L''L'
950 ;
951
952 STREAM_COUNT : 'S''T''R''E''A''M''_''C''O''U''N''T'
953 ;
954
955 VOICE_COUNT : 'V''O''I''C''E''_''C''O''U''N''T'
956 ;
957
958 TOTAL_STREAM_COUNT : 'T''O''T''A''L''_''S''T''R''E''A''M''_''C''O''U''N''T'
959 ;
960
961 TOTAL_VOICE_COUNT : 'T''O''T''A''L''_''V''O''I''C''E''_''C''O''U''N''T'
962 ;
963
964 TOTAL_VOICE_COUNT_MAX: 'T''O''T''A''L''_''V''O''I''C''E''_''C''O''U''N''T''_''M''A''X'
965 ;
966
967 GLOBAL_INFO : 'G''L''O''B''A''L''_''I''N''F''O'
968 ;
969
970 EFFECT_INSTANCE_COUNT : 'E''F''F''E''C''T''_''I''N''S''T''A''N''C''E''_''C''O''U''N''T'
971 ;
972
973 EFFECT_INSTANCE_INFO : 'E''F''F''E''C''T''_''I''N''S''T''A''N''C''E''_''I''N''F''O'
974 ;
975
976 SEND_EFFECT_CHAIN_COUNT : 'S''E''N''D''_''E''F''F''E''C''T''_''C''H''A''I''N''_''C''O''U''N''T'
977 ;
978
979 SEND_EFFECT_CHAIN_INFO : 'S''E''N''D''_''E''F''F''E''C''T''_''C''H''A''I''N''_''I''N''F''O'
980 ;
981
982 INSTRUMENT : 'I''N''S''T''R''U''M''E''N''T'
983 ;
984
985 INSTRUMENTS : 'I''N''S''T''R''U''M''E''N''T''S'
986 ;
987
988 ENGINE : 'E' 'N' 'G' 'I' 'N' 'E'
989 ;
990
991 ON_DEMAND : 'O''N''_''D''E''M''A''N''D'
992 ;
993
994 ON_DEMAND_HOLD : 'O''N''_''D''E''M''A''N''D''_''H''O''L''D'
995 ;
996
997 PERSISTENT : 'P''E''R''S''I''S''T''E''N''T'
998 ;
999
1000 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'
1001 ;
1002
1003 AUDIO_OUTPUT_DEVICES : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''E''V''I''C''E''S'
1004 ;
1005
1006 AUDIO_OUTPUT_DEVICE : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''E''V''I''C''E'
1007 ;
1008
1009 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'
1010 ;
1011
1012 AUDIO_OUTPUT_DRIVER : 'A''U''D''I''O''_''O''U''T''P''U''T''_''D''R''I''V''E''R'
1013 ;
1014
1015 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'
1016 ;
1017
1018 AUDIO_OUTPUT_CHANNEL : 'A''U''D''I''O''_''O''U''T''P''U''T''_''C''H''A''N''N''E''L'
1019 ;
1020
1021 AUDIO_OUTPUT_TYPE : 'A''U''D''I''O''_''O''U''T''P''U''T''_''T''Y''P''E'
1022 ;
1023
1024 AVAILABLE_EFFECTS : 'A''V''A''I''L''A''B''L''E''_''E''F''F''E''C''T''S'
1025 ;
1026
1027 EFFECT : 'E''F''F''E''C''T'
1028 ;
1029
1030 EFFECT_INSTANCE : 'E''F''F''E''C''T''_''I''N''S''T''A''N''C''E'
1031 ;
1032
1033 EFFECT_INSTANCES : 'E''F''F''E''C''T''_''I''N''S''T''A''N''C''E''S'
1034 ;
1035
1036 EFFECT_INSTANCE_INPUT_CONTROL : 'E''F''F''E''C''T''_''I''N''S''T''A''N''C''E''_''I''N''P''U''T''_''C''O''N''T''R''O''L'
1037 ;
1038
1039 SEND_EFFECT_CHAIN : 'S''E''N''D''_''E''F''F''E''C''T''_''C''H''A''I''N'
1040 ;
1041
1042 SEND_EFFECT_CHAINS : 'S''E''N''D''_''E''F''F''E''C''T''_''C''H''A''I''N''S'
1043 ;
1044
1045 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'
1046 ;
1047
1048 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'
1049 ;
1050
1051 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'
1052 ;
1053
1054 MIDI_INPUT_DEVICES : 'M''I''D''I''_''I''N''P''U''T''_''D''E''V''I''C''E''S'
1055 ;
1056
1057 MIDI_INPUT_DEVICE : 'M''I''D''I''_''I''N''P''U''T''_''D''E''V''I''C''E'
1058 ;
1059
1060 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'
1061 ;
1062
1063 MIDI_INSTRUMENT : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T'
1064 ;
1065
1066 MIDI_INSTRUMENTS : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''S'
1067 ;
1068
1069 MIDI_INSTRUMENT_MAP : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''M''A''P'
1070 ;
1071
1072 MIDI_INSTRUMENT_MAPS : 'M''I''D''I''_''I''N''S''T''R''U''M''E''N''T''_''M''A''P''S'
1073 ;
1074
1075 MIDI_INPUT_DRIVER : 'M''I''D''I''_''I''N''P''U''T''_''D''R''I''V''E''R'
1076 ;
1077
1078 MIDI_INPUT_PORT : 'M''I''D''I''_''I''N''P''U''T''_''P''O''R''T'
1079 ;
1080
1081 MIDI_INPUT_CHANNEL : 'M''I''D''I''_''I''N''P''U''T''_''C''H''A''N''N''E''L'
1082 ;
1083
1084 MIDI_INPUT_TYPE : 'M''I''D''I''_''I''N''P''U''T''_''T''Y''P''E'
1085 ;
1086
1087 MIDI_INPUT : 'M''I''D''I''_''I''N''P''U''T'
1088 ;
1089
1090 MIDI_INPUTS : 'M''I''D''I''_''I''N''P''U''T''S'
1091 ;
1092
1093 MIDI_CONTROLLER : 'M''I''D''I''_''C''O''N''T''R''O''L''L''E''R'
1094 ;
1095
1096 SEND : 'S''E''N''D'
1097 ;
1098
1099 FX_SEND : 'F''X''_''S''E''N''D'
1100 ;
1101
1102 FX_SENDS : 'F''X''_''S''E''N''D''S'
1103 ;
1104
1105 DB_INSTRUMENT_DIRECTORY : 'D''B''_''I''N''S''T''R''U''M''E''N''T''_''D''I''R''E''C''T''O''R''Y'
1106 ;
1107
1108 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'
1109 ;
1110
1111 DB_INSTRUMENTS : 'D''B''_''I''N''S''T''R''U''M''E''N''T''S'
1112 ;
1113
1114 DB_INSTRUMENT : 'D''B''_''I''N''S''T''R''U''M''E''N''T'
1115 ;
1116
1117 DB_INSTRUMENTS_JOB : 'D''B''_''I''N''S''T''R''U''M''E''N''T''S''_''J''O''B'
1118 ;
1119
1120 INSTRUMENTS_DB : 'I''N''S''T''R''U''M''E''N''T''S''_''D''B'
1121 ;
1122
1123 DESCRIPTION : 'D''E''S''C''R''I''P''T''I''O''N'
1124 ;
1125
1126 FORCE : 'F''O''R''C''E'
1127 ;
1128
1129 FLAT : 'F''L''A''T'
1130 ;
1131
1132 RECURSIVE : 'R''E''C''U''R''S''I''V''E'
1133 ;
1134
1135 NON_RECURSIVE : 'N''O''N''_''R''E''C''U''R''S''I''V''E'
1136 ;
1137
1138 LOST : 'L''O''S''T'
1139 ;
1140
1141 FILE_PATH : 'F''I''L''E''_''P''A''T''H'
1142 ;
1143
1144 SERVER : 'S''E''R''V''E''R'
1145 ;
1146
1147 VOLUME : 'V''O''L''U''M''E'
1148 ;
1149
1150 LEVEL : 'L''E''V''E''L'
1151 ;
1152
1153 VALUE : 'V''A''L''U''E'
1154 ;
1155
1156 MUTE : 'M''U''T''E'
1157 ;
1158
1159 SOLO : 'S''O''L''O'
1160 ;
1161
1162 VOICES : 'V''O''I''C''E''S'
1163 ;
1164
1165 STREAMS : 'S''T''R''E''A''M''S'
1166 ;
1167
1168 BYTES : 'B''Y''T''E''S'
1169 ;
1170
1171 PERCENTAGE : 'P''E''R''C''E''N''T''A''G''E'
1172 ;
1173
1174 FILE : 'F''I''L''E'
1175 ;
1176
1177 EDIT : 'E''D''I''T'
1178 ;
1179
1180 FORMAT : 'F''O''R''M''A''T'
1181 ;
1182
1183 MIDI_DATA : 'M''I''D''I''_''D''A''T''A'
1184 ;
1185
1186 RESET : 'R''E''S''E''T'
1187 ;
1188
1189 MISCELLANEOUS : 'M''I''S''C''E''L''L''A''N''E''O''U''S'
1190 ;
1191
1192 NAME : 'N''A''M''E'
1193 ;
1194
1195 ECHO : 'E''C''H''O'
1196 ;
1197
1198 QUIT : 'Q''U''I''T'
1199 ;
1200
1201 %%
1202
1203 /**
1204 * Will be called when an error occured (usually syntax error).
1205 */
1206 void yyerror(const char* s) {
1207 yyparse_param_t* param = GetCurrentYaccSession();
1208 String msg = s
1209 + (" (line:" + ToString(param->iLine+1))
1210 + ( ",column:" + ToString(param->iColumn))
1211 + ")";
1212 dmsg(2,("LSCPParser: %s\n", msg.c_str()));
1213 sLastError = msg;
1214 }
1215
1216 namespace LinuxSampler {
1217
1218 /**
1219 * Clears input buffer.
1220 */
1221 void restart(yyparse_param_t* pparam, int& yychar) {
1222 bytes = 0;
1223 ptr = 0;
1224 sLastError = "";
1225 }
1226
1227 }

  ViewVC Help
Powered by ViewVC