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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2137 by schoenebeck, Mon Oct 4 12:20:23 2010 UTC revision 2518 by schoenebeck, Sat Feb 8 00:49:30 2014 UTC
# Line 3  Line 3 
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *
6   *   Copyright (C) 2005 - 2010 Christian Schoenebeck                       *   *   Copyright (C) 2005 - 2014 Christian Schoenebeck                       *
7   *                                                                         *   *                                                                         *
8   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
9   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
# Line 35  Line 35 
35  #include "lscpserver.h"  #include "lscpserver.h"
36  #include "lscpevent.h"  #include "lscpevent.h"
37  #include "lscpsymbols.h"  #include "lscpsymbols.h"
38    #include <algorithm>
39    #include "lscp.h"
40    
41  namespace LinuxSampler {  namespace LinuxSampler {
42    
43  // to save us typing work in the rules action definitions  // to save us typing work in the rules action definitions
44  #define LSCPSERVER ((yyparse_param_t*) yyparse_param)->pServer  #define LSCPSERVER ((yyparse_param_t*) yyparse_param)->pServer
45  #define SESSION_PARAM ((yyparse_param_t*) yyparse_param)  #define SESSION_PARAM ((yyparse_param_t*) yyparse_param)
46  #define INCREMENT_LINE { SESSION_PARAM->iLine++; SESSION_PARAM->iColumn = 0; }  #define INCREMENT_LINE { SESSION_PARAM->iLine++; SESSION_PARAM->iColumn = 0; sParsed.clear(); }
47    
48  // clears input buffer  // clears input buffer
49  void restart(yyparse_param_t* pparam, int& yychar);  void restart(yyparse_param_t* pparam, int& yychar);
# Line 51  static char buf[1024]; // input buffer t Line 53  static char buf[1024]; // input buffer t
53  static int bytes = 0;  // current number of characters in the input buffer  static int bytes = 0;  // current number of characters in the input buffer
54  static int ptr   = 0;  // current position in the input buffer  static int ptr   = 0;  // current position in the input buffer
55  static String sLastError; // error message of the last error occured  static String sLastError; // error message of the last error occured
56    static String sParsed; ///< Characters of current line which have already been shifted (consumed/parsed) by the parser.
57    
58  // external reference to the function which actually reads from the socket  // external reference to the function which actually reads from the socket
59  extern int GetLSCPCommand( void *buf, int max_size);  extern int GetLSCPCommand( void *buf, int max_size);
# Line 64  inline bool isExtendedAsciiChar(const ch Line 67  inline bool isExtendedAsciiChar(const ch
67      return (c < 0);      return (c < 0);
68  }  }
69    
70    // returns true if the given character is between between a to z.
71    inline bool isLowerCaseAlphaChar(const char c) {
72        return c >= 'a' && c <= 'z';
73    }
74    
75    // converts the given (expected) lower case character to upper case
76    inline char alphaCharToUpperCase(const char c) {
77        return (c - 'a') + 'A';
78    }
79    
80  // custom scanner function which reads from the socket  // custom scanner function which reads from the socket
81  // (bison expects it to return the numerical ID of the next  // (bison expects it to return the numerical ID of the next
82  // "recognized token" from the input stream)  // "recognized token" from the input stream)
# Line 81  int yylex(YYSTYPE* yylval) { Line 94  int yylex(YYSTYPE* yylval) {
94      const char c = buf[ptr++];      const char c = buf[ptr++];
95      // increment current reading position (just for verbosity / messages)      // increment current reading position (just for verbosity / messages)
96      GetCurrentYaccSession()->iColumn++;      GetCurrentYaccSession()->iColumn++;
97        sParsed += c;
98      // we have to handle "normal" and "extended" ASCII characters separately      // we have to handle "normal" and "extended" ASCII characters separately
99      if (isExtendedAsciiChar(c)) {      if (isExtendedAsciiChar(c)) {
100          // workaround for characters with ASCII code higher than 127          // workaround for characters with ASCII code higher than 127
# Line 103  int octalsToNumber(char oct_digit0, char Line 117  int octalsToNumber(char oct_digit0, char
117    
118  }  }
119    
 // we provide our own version of yyerror() so we don't have to link against the yacc library  
 void yyerror(const char* s);  
   
120  using namespace LinuxSampler;  using namespace LinuxSampler;
121    
122    static std::set<String> yyExpectedSymbols();
123    
124    /**
125     * Will be called when an error occured (usually syntax error).
126     *
127     * We provide our own version of yyerror() so we a) don't have to link against
128     * the yacc library and b) can render more helpful syntax error messages.
129     */
130    void yyerror(void* x, const char* s) {
131        yyparse_param_t* param = GetCurrentYaccSession();
132    
133        // get the text part already parsed (of current line)
134        const bool bContainsLineFeed =
135            sParsed.find('\r') != std::string::npos ||
136            sParsed.find('\n') != std::string::npos;
137        // remove potential line feed characters
138        if (bContainsLineFeed) {
139            for (size_t p = sParsed.find('\r'); p != std::string::npos;
140                 p = sParsed.find('\r')) sParsed.erase(p);
141            for (size_t p = sParsed.find('\n'); p != std::string::npos;
142                 p = sParsed.find('\n')) sParsed.erase(p);
143        }
144    
145        // start assembling the error message with Bison's own message
146        String txt = s;
147    
148        // append exact position info of syntax error
149        txt += (" (line:"  + ToString(param->iLine+1)) +
150               (",column:" + ToString(param->iColumn)) + ")";
151    
152        // append the part of the lined that has already been parsed
153        txt += ". Context: \"" + sParsed;
154        if (txt.empty() || bContainsLineFeed)
155            txt += "^";
156        else
157            txt.insert(txt.size() - 1, "^");
158        txt += "...\"";
159    
160        // append the non-terminal symbols expected now/next
161        std::set<String> expectedSymbols = yyExpectedSymbols();
162        for (std::set<String>::const_iterator it = expectedSymbols.begin();
163             it != expectedSymbols.end(); ++it)
164        {
165            if (it == expectedSymbols.begin())
166                txt += " -> Should be: " + *it;
167            else
168                txt += " | " + *it;
169        }
170    
171        dmsg(2,("LSCPParser: %s\n", txt.c_str()));
172        sLastError = txt;
173    }
174    
175  %}  %}
176    
177  // reentrant parser  // reentrant parser
178  %pure_parser  %pure-parser
179    
180    %parse-param {void* yyparse_param}
181    
182    // After entering the yyparse() function, store references to the parser's
183    // state stack, so that we can create more helpful syntax error messages than
184    // Bison (2.x) could do.
185    %initial-action {
186        yyparse_param_t* p = (yyparse_param_t*) yyparse_param;
187        p->ppStackBottom = &yyss;
188        p->ppStackTop    = &yyssp;
189    }
190    
191  // tell bison to spit out verbose syntax error messages  // tell bison to spit out verbose syntax error messages
192  %error-verbose  %error-verbose
# Line 187  command               :  ADD SP add_inst Line 262  command               :  ADD SP add_inst
262                        ;                        ;
263    
264  add_instruction       :  CHANNEL                               { $$ = LSCPSERVER->AddChannel();                  }  add_instruction       :  CHANNEL                               { $$ = LSCPSERVER->AddChannel();                  }
265                          |  CHANNEL SP MIDI_INPUT SP sampler_channel SP device_index                           { $$ = LSCPSERVER->AddChannelMidiInput($5,$7);    }
266                          |  CHANNEL SP MIDI_INPUT SP sampler_channel SP device_index SP midi_input_port_index  { $$ = LSCPSERVER->AddChannelMidiInput($5,$7,$9); }
267                        |  DB_INSTRUMENT_DIRECTORY SP db_path    { $$ = LSCPSERVER->AddDbInstrumentDirectory($3);  }                        |  DB_INSTRUMENT_DIRECTORY SP db_path    { $$ = LSCPSERVER->AddDbInstrumentDirectory($3);  }
268                        |  DB_INSTRUMENTS SP NON_MODAL SP scan_mode SP db_path SP filename                        { $$ = LSCPSERVER->AddDbInstruments($5,$7,$9, true);        }                        |  DB_INSTRUMENTS SP NON_MODAL SP scan_mode SP db_path SP filename                        { $$ = LSCPSERVER->AddDbInstruments($5,$7,$9, true);        }
269                        |  DB_INSTRUMENTS SP NON_MODAL SP scan_mode SP FILE_AS_DIR SP db_path SP filename         { $$ = LSCPSERVER->AddDbInstruments($5,$9,$11, true, true); }                        |  DB_INSTRUMENTS SP NON_MODAL SP scan_mode SP FILE_AS_DIR SP db_path SP filename         { $$ = LSCPSERVER->AddDbInstruments($5,$9,$11, true, true); }
# Line 227  subscribe_event       :  AUDIO_OUTPUT_DE Line 304  subscribe_event       :  AUDIO_OUTPUT_DE
304                        |  TOTAL_STREAM_COUNT                    { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_total_stream_count);   }                        |  TOTAL_STREAM_COUNT                    { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_total_stream_count);   }
305                        |  TOTAL_VOICE_COUNT                     { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_total_voice_count);    }                        |  TOTAL_VOICE_COUNT                     { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_total_voice_count);    }
306                        |  GLOBAL_INFO                           { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_global_info);          }                        |  GLOBAL_INFO                           { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_global_info);          }
307                          |  EFFECT_INSTANCE_COUNT                 { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_fx_instance_count);    }
308                          |  EFFECT_INSTANCE_INFO                  { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_fx_instance_info);     }
309                          |  SEND_EFFECT_CHAIN_COUNT               { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_send_fx_chain_count);  }
310                          |  SEND_EFFECT_CHAIN_INFO                { $$ = LSCPSERVER->SubscribeNotification(LSCPEvent::event_send_fx_chain_info);   }
311                        ;                        ;
312    
313  unsubscribe_event     :  AUDIO_OUTPUT_DEVICE_COUNT             { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_audio_device_count);   }  unsubscribe_event     :  AUDIO_OUTPUT_DEVICE_COUNT             { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_audio_device_count);   }
# Line 255  unsubscribe_event     :  AUDIO_OUTPUT_DE Line 336  unsubscribe_event     :  AUDIO_OUTPUT_DE
336                        |  TOTAL_STREAM_COUNT                    { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_total_stream_count);   }                        |  TOTAL_STREAM_COUNT                    { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_total_stream_count);   }
337                        |  TOTAL_VOICE_COUNT                     { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_total_voice_count);    }                        |  TOTAL_VOICE_COUNT                     { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_total_voice_count);    }
338                        |  GLOBAL_INFO                           { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_global_info);          }                        |  GLOBAL_INFO                           { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_global_info);          }
339                          |  EFFECT_INSTANCE_COUNT                 { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_fx_instance_count);    }
340                          |  EFFECT_INSTANCE_INFO                  { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_fx_instance_info);     }
341                          |  SEND_EFFECT_CHAIN_COUNT               { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_send_fx_chain_count);  }
342                          |  SEND_EFFECT_CHAIN_INFO                { $$ = LSCPSERVER->UnsubscribeNotification(LSCPEvent::event_send_fx_chain_info);   }
343                        ;                        ;
344    
345  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); }  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); }
# Line 267  unmap_instruction     :  MIDI_INSTRUMENT Line 352  unmap_instruction     :  MIDI_INSTRUMENT
352                        ;                        ;
353    
354  remove_instruction    :  CHANNEL SP sampler_channel                   { $$ = LSCPSERVER->RemoveChannel($3);                      }  remove_instruction    :  CHANNEL SP sampler_channel                   { $$ = LSCPSERVER->RemoveChannel($3);                      }
355                          |  CHANNEL SP MIDI_INPUT SP sampler_channel                                           { $$ = LSCPSERVER->RemoveChannelMidiInput($5);       }
356                          |  CHANNEL SP MIDI_INPUT SP sampler_channel SP device_index                           { $$ = LSCPSERVER->RemoveChannelMidiInput($5,$7);    }
357                          |  CHANNEL SP MIDI_INPUT SP sampler_channel SP device_index SP midi_input_port_index  { $$ = LSCPSERVER->RemoveChannelMidiInput($5,$7,$9); }
358                        |  MIDI_INSTRUMENT_MAP SP midi_map              { $$ = LSCPSERVER->RemoveMidiInstrumentMap($3);            }                        |  MIDI_INSTRUMENT_MAP SP midi_map              { $$ = LSCPSERVER->RemoveMidiInstrumentMap($3);            }
359                        |  MIDI_INSTRUMENT_MAP SP ALL                   { $$ = LSCPSERVER->RemoveAllMidiInstrumentMaps();          }                        |  MIDI_INSTRUMENT_MAP SP ALL                   { $$ = LSCPSERVER->RemoveAllMidiInstrumentMaps();          }
360                        |  SEND_EFFECT_CHAIN SP device_index SP effect_chain  { $$ = LSCPSERVER->RemoveSendEffectChain($3,$5);     }                        |  SEND_EFFECT_CHAIN SP device_index SP effect_chain  { $$ = LSCPSERVER->RemoveSendEffectChain($3,$5);     }
361                        |  SEND_EFFECT_CHAIN SP EFFECT SP device_index SP effect_chain SP chain_pos  { $$ = LSCPSERVER->RemoveSendEffectChainEffect($5,$7,$9); }                        |  SEND_EFFECT_CHAIN SP EFFECT SP device_index SP effect_chain SP chain_pos  { $$ = LSCPSERVER->RemoveSendEffectChainEffect($5,$7,$9); }
362                        |  FX_SEND SP SEND_EFFECT SP sampler_channel SP fx_send_id  { $$ = LSCPSERVER->SetFxSendEffect($5,$7,-1,-1); }                        |  FX_SEND SP EFFECT SP sampler_channel SP fx_send_id  { $$ = LSCPSERVER->SetFxSendEffect($5,$7,-1,-1);    }
363                        |  DB_INSTRUMENT_DIRECTORY SP FORCE SP db_path  { $$ = LSCPSERVER->RemoveDbInstrumentDirectory($5, true);  }                        |  DB_INSTRUMENT_DIRECTORY SP FORCE SP db_path  { $$ = LSCPSERVER->RemoveDbInstrumentDirectory($5, true);  }
364                        |  DB_INSTRUMENT_DIRECTORY SP db_path           { $$ = LSCPSERVER->RemoveDbInstrumentDirectory($3);        }                        |  DB_INSTRUMENT_DIRECTORY SP db_path           { $$ = LSCPSERVER->RemoveDbInstrumentDirectory($3);        }
365                        |  DB_INSTRUMENT SP db_path                     { $$ = LSCPSERVER->RemoveDbInstrument($3);                 }                        |  DB_INSTRUMENT SP db_path                     { $$ = LSCPSERVER->RemoveDbInstrument($3);                 }
# Line 344  set_instruction       :  AUDIO_OUTPUT_DE Line 432  set_instruction       :  AUDIO_OUTPUT_DE
432                        |  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); }                        |  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); }
433                        |  FX_SEND SP MIDI_CONTROLLER SP sampler_channel SP fx_send_id SP midi_ctrl         { $$ = LSCPSERVER->SetFxSendMidiController($5,$7,$9);              }                        |  FX_SEND SP MIDI_CONTROLLER SP sampler_channel SP fx_send_id SP midi_ctrl         { $$ = LSCPSERVER->SetFxSendMidiController($5,$7,$9);              }
434                        |  FX_SEND SP LEVEL SP sampler_channel SP fx_send_id SP volume_value                { $$ = LSCPSERVER->SetFxSendLevel($5,$7,$9);                       }                        |  FX_SEND SP LEVEL SP sampler_channel SP fx_send_id SP volume_value                { $$ = LSCPSERVER->SetFxSendLevel($5,$7,$9);                       }
435                        |  FX_SEND SP SEND_EFFECT SP sampler_channel SP fx_send_id SP effect_chain SP chain_pos  { $$ = LSCPSERVER->SetFxSendEffect($5,$7,$9,$11);             }                        |  FX_SEND SP EFFECT SP sampler_channel SP fx_send_id SP effect_chain SP chain_pos  { $$ = LSCPSERVER->SetFxSendEffect($5,$7,$9,$11);                  }
436                        |  DB_INSTRUMENT_DIRECTORY SP NAME SP db_path SP stringval_escaped                  { $$ = LSCPSERVER->SetDbInstrumentDirectoryName($5,$7);            }                        |  DB_INSTRUMENT_DIRECTORY SP NAME SP db_path SP stringval_escaped                  { $$ = LSCPSERVER->SetDbInstrumentDirectoryName($5,$7);            }
437                        |  DB_INSTRUMENT_DIRECTORY SP DESCRIPTION SP db_path SP stringval_escaped           { $$ = LSCPSERVER->SetDbInstrumentDirectoryDescription($5,$7);     }                        |  DB_INSTRUMENT_DIRECTORY SP DESCRIPTION SP db_path SP stringval_escaped           { $$ = LSCPSERVER->SetDbInstrumentDirectoryDescription($5,$7);     }
438                        |  DB_INSTRUMENT SP NAME SP db_path SP stringval_escaped                            { $$ = LSCPSERVER->SetDbInstrumentName($5,$7);                     }                        |  DB_INSTRUMENT SP NAME SP db_path SP stringval_escaped                            { $$ = LSCPSERVER->SetDbInstrumentName($5,$7);                     }
439                        |  DB_INSTRUMENT SP DESCRIPTION SP db_path SP stringval_escaped                     { $$ = LSCPSERVER->SetDbInstrumentDescription($5,$7);              }                        |  DB_INSTRUMENT SP DESCRIPTION SP db_path SP stringval_escaped                     { $$ = LSCPSERVER->SetDbInstrumentDescription($5,$7);              }
440                        |  DB_INSTRUMENT SP FILE_PATH SP filename SP filename                               { $$ = LSCPSERVER->SetDbInstrumentFilePath($5,$7);                 }                        |  DB_INSTRUMENT SP FILE_PATH SP filename SP filename                               { $$ = LSCPSERVER->SetDbInstrumentFilePath($5,$7);                 }
441                        |  ECHO SP boolean                                                                  { $$ = LSCPSERVER->SetEcho((yyparse_param_t*) yyparse_param, $3);  }                        |  ECHO SP boolean                                                                  { $$ = LSCPSERVER->SetEcho((yyparse_param_t*) yyparse_param, $3);  }
442                          |  SHELL SP INTERACT SP boolean                                                     { $$ = LSCPSERVER->SetShellInteract((yyparse_param_t*) yyparse_param, $5); }
443                          |  SHELL SP AUTO_CORRECT SP boolean                                                 { $$ = LSCPSERVER->SetShellAutoCorrect((yyparse_param_t*) yyparse_param, $5); }
444                        |  VOLUME SP volume_value                                                           { $$ = LSCPSERVER->SetGlobalVolume($3);                            }                        |  VOLUME SP volume_value                                                           { $$ = LSCPSERVER->SetGlobalVolume($3);                            }
445                        |  VOICES SP number                                                                 { $$ = LSCPSERVER->SetGlobalMaxVoices($3);                         }                        |  VOICES SP number                                                                 { $$ = LSCPSERVER->SetGlobalMaxVoices($3);                         }
446                        |  STREAMS SP number                                                                { $$ = LSCPSERVER->SetGlobalMaxStreams($3);                        }                        |  STREAMS SP number                                                                { $$ = LSCPSERVER->SetGlobalMaxStreams($3);                        }
# Line 441  buffer_size_type      :  BYTES       { $ Line 531  buffer_size_type      :  BYTES       { $
531  list_instruction      :  AUDIO_OUTPUT_DEVICES                               { $$ = LSCPSERVER->GetAudioOutputDevices();              }  list_instruction      :  AUDIO_OUTPUT_DEVICES                               { $$ = LSCPSERVER->GetAudioOutputDevices();              }
532                        |  MIDI_INPUT_DEVICES                                 { $$ = LSCPSERVER->GetMidiInputDevices();                }                        |  MIDI_INPUT_DEVICES                                 { $$ = LSCPSERVER->GetMidiInputDevices();                }
533                        |  CHANNELS                                           { $$ = LSCPSERVER->ListChannels();                       }                        |  CHANNELS                                           { $$ = LSCPSERVER->ListChannels();                       }
534                          |  CHANNEL SP MIDI_INPUTS SP sampler_channel          { $$ = LSCPSERVER->ListChannelMidiInputs($5);            }
535                        |  AVAILABLE_ENGINES                                  { $$ = LSCPSERVER->ListAvailableEngines();               }                        |  AVAILABLE_ENGINES                                  { $$ = LSCPSERVER->ListAvailableEngines();               }
536                        |  AVAILABLE_EFFECTS                                  { $$ = LSCPSERVER->ListAvailableEffects();               }                        |  AVAILABLE_EFFECTS                                  { $$ = LSCPSERVER->ListAvailableEffects();               }
537                        |  EFFECT_INSTANCES                                   { $$ = LSCPSERVER->ListEffectInstances();                }                        |  EFFECT_INSTANCES                                   { $$ = LSCPSERVER->ListEffectInstances();                }
# Line 842  REMOVE                :  'R''E''M''O''V' Line 933  REMOVE                :  'R''E''M''O''V'
933  SET                   :  'S''E''T'  SET                   :  'S''E''T'
934                        ;                        ;
935    
936    SHELL                 :  'S''H''E''L''L'
937                          ;
938    
939    INTERACT              :  'I''N''T''E''R''A''C''T'
940                          ;
941    
942    AUTO_CORRECT          :  'A''U''T''O''_''C''O''R''R''E''C''T'
943                          ;
944    
945  APPEND                :  'A''P''P''E''N''D'  APPEND                :  'A''P''P''E''N''D'
946                        ;                        ;
947    
# Line 950  TOTAL_VOICE_COUNT_MAX:  'T''O''T''A''L'' Line 1050  TOTAL_VOICE_COUNT_MAX:  'T''O''T''A''L''
1050  GLOBAL_INFO          :  'G''L''O''B''A''L''_''I''N''F''O'  GLOBAL_INFO          :  'G''L''O''B''A''L''_''I''N''F''O'
1051                       ;                       ;
1052    
1053    EFFECT_INSTANCE_COUNT   :  'E''F''F''E''C''T''_''I''N''S''T''A''N''C''E''_''C''O''U''N''T'
1054                            ;
1055    
1056    EFFECT_INSTANCE_INFO    :  'E''F''F''E''C''T''_''I''N''S''T''A''N''C''E''_''I''N''F''O'
1057                            ;
1058    
1059    SEND_EFFECT_CHAIN_COUNT :  'S''E''N''D''_''E''F''F''E''C''T''_''C''H''A''I''N''_''C''O''U''N''T'
1060                            ;
1061    
1062    SEND_EFFECT_CHAIN_INFO  :  'S''E''N''D''_''E''F''F''E''C''T''_''C''H''A''I''N''_''I''N''F''O'
1063                            ;
1064    
1065  INSTRUMENT           :  'I''N''S''T''R''U''M''E''N''T'  INSTRUMENT           :  'I''N''S''T''R''U''M''E''N''T'
1066                       ;                       ;
1067    
# Line 1010  EFFECT_INSTANCE_INPUT_CONTROL :  'E''F'' Line 1122  EFFECT_INSTANCE_INPUT_CONTROL :  'E''F''
1122  SEND_EFFECT_CHAIN :  'S''E''N''D''_''E''F''F''E''C''T''_''C''H''A''I''N'  SEND_EFFECT_CHAIN :  'S''E''N''D''_''E''F''F''E''C''T''_''C''H''A''I''N'
1123                    ;                    ;
1124    
 SEND_EFFECT  :  'S''E''N''D''_''E''F''F''E''C''T'  
              ;  
   
1125  SEND_EFFECT_CHAINS :  'S''E''N''D''_''E''F''F''E''C''T''_''C''H''A''I''N''S'  SEND_EFFECT_CHAINS :  'S''E''N''D''_''E''F''F''E''C''T''_''C''H''A''I''N''S'
1126                     ;                     ;
1127    
# Line 1061  MIDI_INPUT_TYPE       :  'M''I''D''I''_' Line 1170  MIDI_INPUT_TYPE       :  'M''I''D''I''_'
1170  MIDI_INPUT            :  'M''I''D''I''_''I''N''P''U''T'  MIDI_INPUT            :  'M''I''D''I''_''I''N''P''U''T'
1171                        ;                        ;
1172    
1173    MIDI_INPUTS           :  'M''I''D''I''_''I''N''P''U''T''S'
1174                          ;
1175    
1176  MIDI_CONTROLLER       :  'M''I''D''I''_''C''O''N''T''R''O''L''L''E''R'  MIDI_CONTROLLER       :  'M''I''D''I''_''C''O''N''T''R''O''L''L''E''R'
1177                        ;                        ;
1178    
# Line 1171  QUIT                  :  'Q''U''I''T' Line 1283  QUIT                  :  'Q''U''I''T'
1283    
1284  %%  %%
1285    
1286    // TODO: actually would be fine to have the following bunch of source code in a separate file, however those functions are a) accessing private Bison tables like yytable and b) including the functions from another file here would make the line numbers incorrect on compile errors in auto generated lscpparser.cpp
1287    
1288  /**  /**
1289   * Will be called when an error occured (usually syntax error).   * Additional informations of a grammar symbol.
1290     */
1291    struct BisonSymbolInfo {
1292        bool isTerminalSymbol; ///< Whether the symbol is a terminal or non-termianl symbol. NOTE: Read comment regarding this in _isRuleTerminalSymbol() !!
1293        String nextExpectedChars; ///< According to current parser position: sequence of characters expected next for satisfying this grammar symbol.
1294    };
1295    
1296    #if HAVE_BISON_MAJ >= 3 // Bison 3.x or younger ...
1297    
1298    /**
1299     * Must ONLY be called just before a so called "reduce" parser action:
1300     * Returns true if the grammar rule, which is just about to be "reduced", is a
1301     * terminal symbol (in *our* terms).
1302     *
1303     * Please note that the term "terminal symbol" is a bit confusingly used in
1304     * this source code here around. In Bison's terms, "terminal symbols" are (more
1305     * or less) just the numbers returned by the YYLEX function. Since we decided
1306     * though to use a convenient solution without a separate lexer, and all its
1307     * caveats, all numbers by the yylex() function here are just the ASCII
1308     * numbers of the individual characters received. Based on that however, one
1309     * single character is not what one would intuitively expect of being a
1310     * "terminal symbol", because it is simply too primitive.
1311     *
1312     * So in this LSCP parser source code a "terminal symbol" rather means a
1313     * keyword like "CREATE" or "GET". In the grammal definition above, those are
1314     * however defined as grammar rules (non-terminals in Bison's terms). So this
1315     * function decides like this: if the given grammar rule just contains
1316     * individual characters on the right side of its grammar rule, then it is a
1317     * "terminal symbol" in *our* terms.
1318     *
1319     * @param rule - Bison grammar rule number
1320     * @param stack - reflecting current Bison parser state
1321     */
1322    inline static bool _isRuleTerminalSymbol(int rule, const std::vector<YYTYPE_INT16>& stack) {
1323        int nrhs = yyr2[rule];
1324        for (int i = 0; i < nrhs; ++i)
1325            if (yystos[*(stack.end() - nrhs + i)] >= YYNTOKENS) return false;
1326        return true;
1327    }
1328    
1329    /**
1330     * Must ONLY be called just before a so called "reduce" parser action: Returns
1331     * additional informations to the given grammar rule that is about to be
1332     * "reduced".
1333     *
1334     * @param rule - Bison grammar rule number
1335     * @param stack - reflecting current Bison parser state
1336     * @param nextExpectedChars - must already be filled with the characters
1337     *                            expected to be coming next
1338     */
1339    inline static BisonSymbolInfo _symbolInfoForRule(int rule, const std::vector<YYTYPE_INT16>& stack, const String& nextExpectedChars) {
1340        BisonSymbolInfo info;
1341        info.isTerminalSymbol = _isRuleTerminalSymbol(rule, stack);
1342        if (info.isTerminalSymbol) info.nextExpectedChars  = nextExpectedChars;
1343        return info;
1344    }
1345    
1346    #else // Bison 2.x or older ...
1347    
1348    /**
1349     * Returns true if the given grammar @a rule is a terminal symbol (in *our*
1350     * terms).
1351     *
1352     * Please note that the term "terminal symbol" is a bit confusingly used in
1353     * this source code here around. In Bison's terms, "terminal symbols" are (more
1354     * or less) just the numbers returned by the YYLEX function. Since we decided
1355     * though to use a convenient solution without a separate lexer, and all its
1356     * caveats, all numbers by the yylex() function here are just the ASCII
1357     * numbers of the individual characters received. Based on that however, one
1358     * single character is not what one would intuitively expect of being a
1359     * "terminal symbol", because it is simply too primitive.
1360     *
1361     * So in this LSCP parser source code a "terminal symbol" rather means a
1362     * keyword like "CREATE" or "GET". In the grammal definition above, those are
1363     * however defined as grammar rules (non-terminals in Bison's terms). So this
1364     * function decides like this: if the given grammar rule just contains
1365     * individual characters on the right side of its grammar rule, then it is a
1366     * "terminal symbol" in *our* terms.
1367     *
1368     * @param rule - Bison grammar rule number
1369     */
1370    inline static bool _isRuleTerminalSymbol(int rule) {
1371        for (int i = yyprhs[rule]; yyrhs[i] != -1; ++i)
1372            if (yyrhs[i] >= YYNTOKENS) return false;
1373        return true;
1374    }
1375    
1376    /**
1377     * Returns additional informations to the given grammar @a rule.
1378     *
1379     * @param rule - grammar rule index to retrieve informations about
1380     * @param nextExpectedChars - must already be filled with the characters
1381     *                            expected to be coming next
1382     */
1383    inline static BisonSymbolInfo _symbolInfoForRule(int rule, const String& nextExpectedChars) {
1384        BisonSymbolInfo info;
1385        info.isTerminalSymbol = _isRuleTerminalSymbol(rule);
1386        if (info.isTerminalSymbol) info.nextExpectedChars  = nextExpectedChars;
1387        return info;
1388    }
1389    
1390    #endif // HAVE_BISON_MAJ >= 3
1391    
1392    /**
1393     * Returns the human readable name of the given @a token.
1394     */
1395    inline static String _tokenName(int token) {
1396        String s = yytname[token];
1397        // remove leading and trailing apostrophes that Bison usually adds to
1398        // ASCII characters used directly in grammar rules
1399        if (s.empty()) return s;
1400        if (s[0] == '\'') s.erase(0, 1);
1401        if (s.empty()) return s;
1402        if (s[s.size() - 1] == '\'') s.erase(s.size() - 1);
1403        return s;
1404    }
1405    
1406    #define DEBUG_BISON_SYNTAX_ERROR_WALKER 0
1407    
1408    /**
1409     * Tries to find the next expected grammar symbols according to the given
1410     * precise parse position & state represented by @a stack, according to Bison's
1411     * LALR(1) parser algorithm.
1412     *
1413     * This function is given a Bison parser state stack, reflecting the parser's
1414     * entire state at a certain point, i.e. when a syntax error occured. This
1415     * function will then walk ahead the potential parse tree starting from the
1416     * current head of the given state stack. This function will call itself
1417     * recursively to scan the individual parse tree branches. As soon as it hits
1418     * on the next non-terminal grammar symbol in one parse tree branch, it adds the
1419     * found non-terminal symbol to @a expectedSymbols and aborts scanning the
1420     * respective tree branch further. If any local parser state is reached a second
1421     * time, the respective parse tree is aborted to avoid any endless recursion.
1422     *
1423     * @param stack - current Bison (yacc) state stack to be examined
1424     * @param expectedSymbols - will be filled with next expected grammar symbols
1425     * @param nextExpectedChars - just for internal purpose, due to the recursive
1426     *                            implementation of this function, do supply an
1427     *                            empty character for this argument
1428     * @param depth - just for internal debugging purposes
1429   */   */
1430  void yyerror(const char* s) {  static void walkAndFillExpectedSymbols(
1431        std::vector<YYTYPE_INT16>& stack,
1432        std::map<String,BisonSymbolInfo>& expectedSymbols,
1433        String& nextExpectedChars, int depth = 0)
1434    {
1435    #if DEBUG_BISON_SYNTAX_ERROR_WALKER
1436        printf("\n");
1437        for (int i = 0; i < depth; ++i) printf("\t");
1438        printf("State stack:");
1439        for (int i = 0; i < stack.size(); ++i) {
1440            printf(" %d", stack[i]);
1441        }
1442        printf("\n");
1443    #endif
1444    
1445        if (stack.empty()) return;
1446    
1447        int state = stack[stack.size() - 1];
1448        int n = yypact[state];
1449        if (n == YYPACT_NINF) { // default reduction required ...
1450            // get default reduction rule for this state
1451            n = yydefact[state];
1452            if (n <= 0 || n >= YYNRULES) return; // no rule, something is wrong
1453            // return the new resolved expected symbol (left-hand symbol of grammar
1454            // rule), then we're done in this state
1455            #if HAVE_BISON_MAJ >= 3
1456            expectedSymbols[yytname[yyr1[n]]] = _symbolInfoForRule(n, stack, nextExpectedChars);
1457            #else
1458            expectedSymbols[yytname[yyr1[n]]] = _symbolInfoForRule(n, nextExpectedChars);
1459            #endif
1460            return;
1461        }
1462        if (!(YYPACT_NINF < n && n <= YYLAST)) return;
1463    
1464    #if DEBUG_BISON_SYNTAX_ERROR_WALKER
1465        for (int i = 0; i < depth; ++i) printf("\t");
1466        printf("Expected tokens:");
1467    #endif
1468        int begin = n < 0 ? -n : 0;
1469        int checklim = YYLAST - n + 1;
1470        int end = checklim < YYNTOKENS ? checklim : YYNTOKENS;
1471        int rule, action, stackSize, nextExpectedCharsLen;
1472        for (int token = begin; token < end; ++token) {
1473            if (token == YYTERROR || yycheck[n + token] != token) continue;
1474    #if DEBUG_BISON_SYNTAX_ERROR_WALKER
1475            printf(" %s", yytname[token]);
1476    #endif
1477    
1478            //if (yycheck[n + token] != token) goto default_reduction;
1479    
1480            action = yytable[n + token];
1481            if (action == 0 || action == YYTABLE_NINF) {
1482    #if DEBUG_BISON_SYNTAX_ERROR_WALKER
1483                printf(" (invalid action) "); fflush(stdout);
1484    #endif
1485                continue; // error, ignore
1486            }
1487            if (action < 0) { // reduction with rule -action required ...
1488    #if DEBUG_BISON_SYNTAX_ERROR_WALKER
1489                printf(" (reduction) "); fflush(stdout);
1490    #endif
1491                rule = -action;
1492                goto reduce;
1493            }
1494            if (action == YYFINAL) continue; // "accept" state, we don't care about it here
1495    
1496            // "shift" required ...
1497    
1498            if (std::find(stack.begin(), stack.end(), action) != stack.end())
1499                continue; // duplicate state, ignore it to avoid endless recursions
1500    
1501            // "shift" / push the new state on the state stack and call this
1502            // function recursively, and restore the stack after the recurse return
1503            stackSize = stack.size();
1504            nextExpectedCharsLen = nextExpectedChars.size();
1505            stack.push_back(action);
1506            nextExpectedChars += _tokenName(token);
1507            walkAndFillExpectedSymbols( //FIXME: could cause stack overflow (should be a loop instead), is probably fine with our current grammar though
1508                stack, expectedSymbols, nextExpectedChars, depth + 1
1509            );
1510            stack.resize(stackSize); // restore stack
1511            nextExpectedChars.resize(nextExpectedCharsLen); // restore 'nextExpectedChars'
1512            continue;
1513    
1514        //default_reduction: // resolve default reduction for this state
1515        //    printf(" (default red.) "); fflush(stdout);
1516        //    rule = yydefact[state];
1517    
1518        reduce: // "reduce" required
1519    #if DEBUG_BISON_SYNTAX_ERROR_WALKER
1520            printf(" (reduce by %d) ", rule); fflush(stdout);
1521    #endif
1522            if (rule == 0 || rule >= YYNRULES) continue; // invalid rule, something is wrong
1523            // store the left-hand symbol of the grammar rule
1524            #if HAVE_BISON_MAJ >= 3
1525            expectedSymbols[yytname[yyr1[rule]]] = _symbolInfoForRule(rule, stack, nextExpectedChars);
1526            #else
1527            expectedSymbols[yytname[yyr1[rule]]] = _symbolInfoForRule(rule, nextExpectedChars);
1528            #endif
1529    #if DEBUG_BISON_SYNTAX_ERROR_WALKER
1530            printf(" (SYM %s) ", yytname[yyr1[rule]]); fflush(stdout);
1531    #endif
1532        }
1533    #if DEBUG_BISON_SYNTAX_ERROR_WALKER
1534        printf("\n");
1535    #endif
1536    }
1537    
1538    /**
1539     * Implements Bison's so called "reduce" action, according to Bison's LALR(1)
1540     * parser algorithm.
1541     */
1542    inline static int _yyReduce(std::vector<YYTYPE_INT16>& stack, const int& rule) {
1543        if (stack.empty()) throw 1; // severe error
1544        const int len = yyr2[rule];
1545        stack.resize(stack.size() - len);
1546        YYTYPE_INT16 newState = yypgoto[yyr1[rule] - YYNTOKENS] + stack.back();
1547        if (0 <= newState && newState <= YYLAST && yycheck[newState] == stack.back())
1548            newState = yytable[newState];
1549        else
1550            newState = yydefgoto[yyr1[rule] - YYNTOKENS];
1551        stack.push_back(newState);
1552        return newState;
1553    }
1554    
1555    /**
1556     * Implements Bison's so called "default reduce" action, according to Bison's
1557     * LALR(1) parser algorithm.
1558     */
1559    inline static int _yyDefaultReduce(std::vector<YYTYPE_INT16>& stack) {
1560        if (stack.empty()) throw 2; // severe error
1561        int rule = yydefact[stack.back()];
1562        if (rule <= 0 || rule >= YYNRULES) throw 3; // no rule, something is wrong
1563        return _yyReduce(stack, rule);
1564    }
1565    
1566    #define DEBUG_PUSH_PARSE 0
1567    
1568    /**
1569     * Implements parsing exactly one character (given by @a c), continueing at the
1570     * parser position reflected by @a stack. The @a stack will hold the new parser
1571     * state after this call.
1572     *
1573     * This function is implemented according to Bison's LALR(1) parser algorithm.
1574     */
1575    static bool yyPushParse(std::vector<YYTYPE_INT16>& stack, char ch) {
1576        startLabel:
1577    
1578    #if DEBUG_PUSH_PARSE
1579        //printf("\n");
1580        //for (int i = 0; i < depth; ++i) printf("\t");
1581        printf("State stack:");
1582        for (int i = 0; i < stack.size(); ++i) {
1583            printf(" %d", stack[i]);
1584        }
1585        printf(" char='%c'(%d)\n", ch, (int)ch);
1586    #endif
1587    
1588        if (stack.empty()) return false;
1589    
1590        int state = stack.back();
1591        int n = yypact[state];
1592        if (n == YYPACT_NINF) { // default reduction required ...
1593    #if DEBUG_PUSH_PARSE
1594            printf("(def reduce 1)\n");
1595    #endif
1596            state = _yyDefaultReduce(stack);
1597            goto startLabel;
1598        }
1599        if (!(YYPACT_NINF < n && n <= YYLAST)) return false;
1600    
1601        YYTYPE_INT16 token = (ch == YYEOF) ? YYEOF : yytranslate[ch];
1602        n += token;
1603        if (n < 0 || YYLAST < n || yycheck[n] != token) {
1604    #if DEBUG_PUSH_PARSE
1605            printf("(def reduce 2) n=%d token=%d\n", n, token);
1606    #endif
1607            state = _yyDefaultReduce(stack);
1608            goto startLabel;
1609        }
1610        int action = yytable[n]; // yytable[yypact[state] + token]
1611        if (action == 0 || action == YYTABLE_NINF) throw 4;
1612        if (action < 0) {
1613    #if DEBUG_PUSH_PARSE
1614            printf("(reduce)\n");
1615    #endif
1616            int rule = -action;
1617            state = _yyReduce(stack, rule);
1618            goto startLabel;
1619        }
1620        if (action == YYFINAL) return true; // final state reached
1621    
1622    #if DEBUG_PUSH_PARSE
1623        printf("(push)\n");
1624    #endif
1625        // push new state
1626        state = action;
1627        stack.push_back(state);
1628        return true;
1629    }
1630    
1631    /**
1632     * Returns true if parsing ahead with given character @a ch is syntactially
1633     * valid according to the LSCP grammar, it returns false if it would create a
1634     * parse error.
1635     *
1636     * This is just a wrapper ontop of yyPushParse() which converts parser
1637     * exceptions thrown by yyPushParse() into negative return value.
1638     */
1639    static bool yyValid(std::vector<YYTYPE_INT16>& stack, char ch) {
1640        try {
1641            return yyPushParse(stack, ch);
1642        } catch (int i) {
1643    #if DEBUG_PUSH_PARSE
1644            printf("exception %d\n", i);
1645    #endif
1646            return false;
1647        } catch (...) {
1648            return false;
1649        }
1650    }
1651    
1652    /**
1653     * Returns the amount of correct characters of given @a line from the left,
1654     * according to the LSCP grammar.
1655     *
1656     * @param stack - a Bison symbol state stack to work with
1657     * @param line  - the input line to check
1658     * @param bAutoCorrect - if true: try to correct obvious, trivial syntax errors
1659     */
1660    static int yyValidCharacters(std::vector<YYTYPE_INT16>& stack, String& line, bool bAutoCorrect) {
1661        int i;
1662        for (i = 0; i < line.size(); ++i) {
1663            // since we might check the same parser state twice against the current
1664            // char here below, and since the state stack might be altered
1665            // (i.e. shifted or reduced) on syntax errors, we have to backup the
1666            // current state stack and restore it on syntax errors below
1667            std::vector<YYTYPE_INT16> stackBackup = stack;
1668            if (yyValid(stackBackup, line[i])) {
1669                stack = stackBackup;
1670                continue;
1671            }
1672            if (bAutoCorrect) {
1673                // try trivial corrections, i.e. upper case character instead of
1674                // lower case, subline instead of space and vice versa
1675                char c;
1676                if      (line[i] == ' ') c = '_';
1677                else if (line[i] == '_') c = ' ';
1678                else if (isLowerCaseAlphaChar(line[i]))
1679                    c = alphaCharToUpperCase(line[i]);
1680                else return i;
1681                if (yyValid(stack, c)) {
1682                    line[i] = c;
1683                    continue;
1684                }
1685            }
1686            return i;
1687        }
1688        return i;
1689    }
1690    
1691    /**
1692     * Should only be called on syntax errors: returns a set of non-terminal
1693     * symbols expected to appear now/next, just at the point where the syntax
1694     * error appeared.
1695     */
1696    static std::set<String> yyExpectedSymbols() {
1697        std::map<String,BisonSymbolInfo> expectedSymbols;
1698      yyparse_param_t* param = GetCurrentYaccSession();      yyparse_param_t* param = GetCurrentYaccSession();
1699      String msg = s      YYTYPE_INT16* ss = (*param->ppStackBottom);
1700          + (" (line:"   + ToString(param->iLine+1))      YYTYPE_INT16* sp = (*param->ppStackTop);
1701          + ( ",column:" + ToString(param->iColumn))      int iStackSize   = sp - ss + 1;
1702          + ")";      // copy and wrap parser's state stack into a convenient STL container
1703      dmsg(2,("LSCPParser: %s\n", msg.c_str()));      std::vector<YYTYPE_INT16> stack;
1704      sLastError = msg;      for (int i = 0; i < iStackSize; ++i) {
1705            stack.push_back(ss[i]);
1706        }
1707        String notUsedHere;
1708        // do the actual parser work
1709        walkAndFillExpectedSymbols(stack, expectedSymbols, notUsedHere);
1710    
1711        // convert expectedSymbols to the result set
1712        std::set<String> result;
1713        for (std::map<String,BisonSymbolInfo>::const_iterator it = expectedSymbols.begin();
1714             it != expectedSymbols.end(); ++it) result.insert(it->first);
1715        return result;
1716  }  }
1717    
1718  namespace LinuxSampler {  namespace LinuxSampler {
1719    
1720    #define DEBUG_SHELL_INTERACTION 0
1721    
1722    /**
1723     * If LSP shell mode is enabled, then this function is called on every new
1724     * received from client. It will check the current total input line and reply
1725     * to the LSCP shell for providing colored syntax highlighting and potential
1726     * auto completion in the shell.
1727     *
1728     * It also performs auto correction of obvious & trivial syntax mistakes if
1729     * requested.
1730     */
1731    String lscpParserProcessShellInteraction(String& line, yyparse_param_t* param) {
1732        // first, determine how many characters (starting from the left) of the
1733        // given input line are already syntactially correct
1734        std::vector<YYTYPE_INT16> stack;
1735        stack.push_back(0); // every Bison symbol stack starts with state zero
1736        String l = line + '\n'; // '\n' to pretend ENTER as if the line was now complete
1737        int n = yyValidCharacters(stack, l, param->bShellAutoCorrect);
1738    
1739        // if auto correction is enabled, apply the auto corrected string to
1740        // intput/output string 'line'
1741        if (param->bShellAutoCorrect) {
1742            int nMin = (n < line.length()) ? n : line.length();
1743            line.replace(0, nMin, l.substr(0, nMin));
1744        }
1745    
1746        // generate an info string that will be sent to the LSCP shell for letting
1747        // it know which part is correct, which one is wrong, where is the cursor, etc.
1748        String result = line;
1749        result.insert(n <= result.length() ? n : result.length(), LSCP_SHK_GOOD_FRONT);
1750        int code = (n > line.length()) ? LSCP_SHU_COMPLETE : (n < line.length()) ?
1751                   LSCP_SHU_SYNTAX_ERR : LSCP_SHU_INCOMPLETE;
1752        result = "SHU:" + ToString(code) + ":" + result + LSCP_SHK_CURSOR;
1753        //if (n > line.length()) result += " [OK]";
1754    
1755        // get a clean parser stack to the last valid parse position
1756        // (due to the appended '\n' character above, and on syntax errors, the
1757        // state stack might be in undesired, i.e. reduced state)
1758        stack.clear();
1759        stack.push_back(0); // every Bison symbol stack starts with state zero
1760        l = line.substr(0, n);
1761        if (!l.empty()) yyValidCharacters(stack, l, param->bShellAutoCorrect);
1762    
1763        // generate auto completion suggestion (based on the current parser stack)
1764        std::map<String,BisonSymbolInfo> expectedSymbols;
1765        String notUsedHere;
1766        walkAndFillExpectedSymbols(stack, expectedSymbols, notUsedHere);
1767        if (expectedSymbols.size() == 1) {
1768            String name          = expectedSymbols.begin()->first;
1769            BisonSymbolInfo info = expectedSymbols.begin()->second;
1770    #if DEBUG_SHELL_INTERACTION
1771            printf("Suggested Completion (%d): %s '%s'\n", expectedSymbols.size(), (info.isTerminalSymbol) ? "T:" : "NT:", (name + " (" + info.nextExpectedChars + ")").c_str());
1772    #endif
1773            result += LSCP_SHK_SUGGEST_BACK + info.nextExpectedChars;
1774        } else if (expectedSymbols.size() == 0) {
1775    #if DEBUG_SHELL_INTERACTION
1776            printf("No suggestion.\n");
1777    #endif
1778        } else if (expectedSymbols.size() > 1) {
1779    #if DEBUG_SHELL_INTERACTION
1780            printf("Multiple possibilities:");
1781            for (std::map<String,BisonSymbolInfo>::const_iterator it = expectedSymbols.begin();
1782                 it != expectedSymbols.end(); ++it)
1783            {
1784                printf(" %s (..%s)", it->first.c_str(), it->second.nextExpectedChars.c_str());
1785            }
1786            printf("\n");
1787    #endif
1788            // check if any of the possibilites is a non-terminal symbol, if so, we
1789            // have no way for auto completion at this point
1790            bool bNonTerminalExists = false;
1791            for (std::map<String,BisonSymbolInfo>::const_iterator it = expectedSymbols.begin();
1792                 it != expectedSymbols.end(); ++it) if (!it->second.isTerminalSymbol) { bNonTerminalExists = true; break; };
1793            if (!bNonTerminalExists) {
1794                // all possibilites are terminal symbaols, so try to find the least
1795                // common string all possibilites start with from the left
1796                String sCommon;
1797                for (int i = 0; true; ++i) {
1798                    char c;
1799                    for (std::map<String,BisonSymbolInfo>::const_iterator it = expectedSymbols.begin();
1800                         it != expectedSymbols.end(); ++it)
1801                    {
1802                        if (i >= it->second.nextExpectedChars.size())
1803                            goto commonSearchEndLabel;
1804                        if (it == expectedSymbols.begin())
1805                            c = it->second.nextExpectedChars[i];
1806                        if (c != it->second.nextExpectedChars[i])
1807                            goto commonSearchEndLabel;
1808                        if (it == --expectedSymbols.end())
1809                            sCommon += c;
1810                    }
1811                }
1812                commonSearchEndLabel:
1813                if (!sCommon.empty()) result += LSCP_SHK_SUGGEST_BACK + sCommon;
1814    #if DEBUG_SHELL_INTERACTION
1815                printf("Common possibility: '%s'\n", sCommon.c_str());
1816    #endif
1817            }
1818        }
1819    
1820    #if DEBUG_SHELL_INTERACTION
1821        printf("%s\n", result.c_str());
1822    #endif
1823    
1824        return result;
1825    }
1826    
1827  /**  /**
1828   * Clears input buffer.   * Clears input buffer.
1829   */   */
# Line 1193  void restart(yyparse_param_t* pparam, in Line 1831  void restart(yyparse_param_t* pparam, in
1831      bytes = 0;      bytes = 0;
1832      ptr   = 0;      ptr   = 0;
1833      sLastError = "";      sLastError = "";
1834        sParsed = "";
1835  }  }
1836    
1837  }  }

Legend:
Removed from v.2137  
changed lines
  Added in v.2518

  ViewVC Help
Powered by ViewVC