/[svn]/linuxsampler/trunk/src/network/lscpparser.h
ViewVC logotype

Log of /linuxsampler/trunk/src/network/lscpparser.h

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 2531 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Mar 5 00:02:21 2014 UTC (10 years ago) by schoenebeck
File length: 5057 byte(s)
Diff to previous 2516
* LSCP shell: Added support for moving cursor left/right with arrow keys.
* Bumped version (1.0.0.svn35).


Revision 2516 - (view) (download) (as text) (annotate) - [selected]
Modified Thu Feb 6 21:11:23 2014 UTC (10 years, 1 month ago) by schoenebeck
File length: 4813 byte(s)
Diff to previous 2515
* WIP: LSCP Shell: implemented support for auto-correction of       
  obvious and trivial LSCP syntax mistakes, support for
  auto-completion by tab key and visual completion suggestion
  while typing.
* Bumped version (1.0.0.svn29).


Revision 2515 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Feb 5 20:45:18 2014 UTC (10 years, 1 month ago) by schoenebeck
File length: 4673 byte(s)
Diff to previous 2510 , to selected 2516
* WIP: Introducing the LSCP shell: for now, providing color
  highlighting while typing (indicating correct part bold white,
  incorrect part red, and turning green when the command is
  complete. The shell application is implemented as thin client,
  that is the parser work is performed on sampler side and the
  shell application is just providing output formatting.
* Bumped version (1.0.0.svn28).


Revision 2510 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jan 23 04:00:26 2014 UTC (10 years, 2 months ago) by schoenebeck
File length: 4565 byte(s)
Diff to previous 1765 , to selected 2516
* LSCP server: provide comprehensive error messages on LSCP
  syntax errors (suggesting expected next non-terminal symbols)
* Bumped version (v1.0.0.svn26).


Revision 1765 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Sep 6 16:44:42 2008 UTC (15 years, 6 months ago) by persson
File length: 4275 byte(s)
Diff to previous 1481 , to selected 2516
* refactoring: extracted lscp notification from main() to a separate
  function
* added helper function MidiInputPort::DispatchRaw for midi device
  implementations with raw byte data
* fixed a win32 build error (atomic.h is working on windows too)
* code cleanup: moved lscp classes into LinuxSampler namespace


Revision 1481 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Nov 14 23:42:15 2007 UTC (16 years, 4 months ago) by senoner
File length: 4277 byte(s)
Diff to previous 1424 , to selected 2516
* win32 port work in progress:
* - implemented win32 support in the following classes:
* Thread, Condition, Mutex, Path, LscpServer
* - lscp.y use DONTCARE instead of VOID
*  (a win32 symbol defined)
* - completed win32 editor plugin loader


Revision 1424 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Oct 14 22:00:17 2007 UTC (16 years, 5 months ago) by schoenebeck
File length: 4224 byte(s)
Diff to previous 1332 , to selected 2516
* code cleanup:
- global.h now only covers global definitions that are needed for the C++
  API header files, all implementation internal global definitions are now
  in global_private.h
- atomic.h is not exposed to the C++ API anymore (replaced the references
  in SynchronizedConfig.h for this with local definitions)
- no need to include config.h anymore for using LS's API header files
- DB instruments classes are not exposed to the C++ API
- POSIX callback functions of Thread.h are hidden
- the (optional) gig Engine benchmark compiles again
- updated Doxyfile.in
- fixed warnings in API doc generation
* preparations for release 0.5.0


Revision 1332 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Sep 9 12:22:34 2007 UTC (16 years, 6 months ago) by schoenebeck
File length: 4216 byte(s)
Diff to previous 1252 , to selected 2516
* bugfix: files with slash in their path or filename could not be loaded


Revision 1252 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Jun 23 15:54:18 2007 UTC (16 years, 9 months ago) by schoenebeck
File length: 4135 byte(s)
Diff to previous 1244 , to selected 2516
* LSCP server returns verbose syntax errors (line and column where
  syntax error occured, the unexpected character and the actually
  expected, possible character(s), the latter only if less than 5
  possibilities)


Revision 1244 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 18 08:47:15 2007 UTC (16 years, 9 months ago) by schoenebeck
File length: 3952 byte(s)
Diff to previous 1047 , to selected 2516
* fixed compile time error for old Bison versions
  (i.e. v1.28 found on MacOS 10.4, patch by Toshi Nagata)


Revision 1047 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Feb 19 19:38:04 2007 UTC (17 years, 1 month ago) by schoenebeck
File length: 3926 byte(s)
Diff to previous 947 , to selected 2516
* by default now all "MAP MIDI_INSTRUMENT" LSCP commands (also the
  "PERSISTENT" ones) block until the respective mapping is completely
  established in the sampler, added a new argument though to allow
  explicit mapping in the background ("MAP MIDI_INSTRUMENT NON_MODAL")
* LSCP documentation updated


Revision 947 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 27 21:34:55 2006 UTC (17 years, 4 months ago) by schoenebeck
File length: 3883 byte(s)
Diff to previous 219 , to selected 2516
* implemented MIDI instrument mapping according to latest LSCP draft


Revision 219 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Aug 17 20:35:04 2004 UTC (19 years, 7 months ago) by schoenebeck
File length: 3652 byte(s)
Diff to previous 210 , to selected 2516
* completely removed the lex scanner and replaced it by pure yacc rules
  for all terminal symbols (that is command keywords and variables) to
  avoid misunderstandings while parsing (e.g. recognition of command
  keywords in string arguments)
* src/drivers/audio/AudioChannel.cpp: changed channel parameter 'Name' to
 'NAME' as defined in the LSCP documentation


Revision 210 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Jul 24 12:33:49 2004 UTC (19 years, 8 months ago) by schoenebeck
File length: 4041 byte(s)
Diff to previous 170 , to selected 2516
* implemented "SET ECHO" LSCP command


Revision 170 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Jul 3 20:08:07 2004 UTC (19 years, 9 months ago) by senkov
File length: 3795 byte(s)
Diff to previous 135 , to selected 2516
* moved ToString to common
* Implemented handling of multiple connections
* Implemented guts for event subscription/unsubscription
* Illustrated event notification sending by sending MISC events
when connections are established or terminated.


Revision 135 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Jun 20 16:01:50 2004 UTC (19 years, 9 months ago) by senkov
File length: 5460 byte(s)
Diff to previous 123 , to selected 2516
* Update parser to comply with the latest spec


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


Revision 64 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu May 6 20:06:20 2004 UTC (19 years, 10 months ago) by schoenebeck
File length: 5318 byte(s)
Diff to previous 56 , to selected 2516
* src/Sampler.cpp: fixed 3 stupid but fatal bugs that left in the rush (in
  method SamplerChannels(), CreateAudioOutputDevice() and
  CreateMidiInputDevice())
* src/network/lscpserver.cpp: implemented LSCP command
  'SET CHANNEL MIDI_INPUT_CHANNEL'
* src/Sampler.h: moved enums 'audio_output_type_t', 'midi_input_type_t'
  and 'engine_type_t' into the respective base classes
  ('AudioOutputDevice', 'MidiInputDevice', 'Engine')


Revision 56 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Apr 27 09:21:58 2004 UTC (19 years, 11 months ago) by schoenebeck
File length: 5282 byte(s)
Diff to previous 53 , to selected 2516
updated copyright header for 2004


Revision 53 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Apr 26 17:15:51 2004 UTC (19 years, 11 months ago) by schoenebeck
File length: 5282 byte(s)
Diff to previous 35 , to selected 2516
* completely restructured source tree
* implemented multi channel support
* implemented instrument manager, which controls sharing of instruments
  between multiple sampler engines / sampler channels
* created abstract classes 'AudioOutputDevice' and 'MidiInputDevice' for
  convenient implementation of further audio output driver and MIDI input
  driver for LinuxSampler
* implemented following LSCP commands: 'SET CHANNEL MIDI INPUT TYPE',
  'LOAD ENGINE', 'GET CHANNELS', 'ADD CHANNEL', 'REMOVE CHANNEL',
  'SET CHANNEL AUDIO OUTPUT TYPE'
* temporarily removed all command line options
* LSCP server is now launched by default


Revision 35 - (view) (download) (as text) (annotate) - [select for diffs]
Added Fri Mar 5 13:46:15 2004 UTC (20 years ago) by schoenebeck
File length: 5316 byte(s)
Diff to selected 2516
* implemented parser for the LinuxSampler control protocol (LSCP) by using
  flex / bison (where src/network/lscp.l is the input file for lex / flex
  and src/network/lscp.y is the input file for yacc / bison), parser and
  scanner can be regenerated by 'make parser'
* implemented LSCP network server (only single threaded so far), LSCP
  server will be launched if LinuxSampler was started with "--server" flag,
  implemented the following LSCP commands so far: "LOAD INSTRUMENT", "GET
  CHANNEL VOICE_COUNT", "GET CHANNEL STREAM_COUNT", "GET CHANNEL
  BUFFER_FILL", "SET CHANNEL VOLUME" and "RESET CHANNEL"
* disk thread now started within the engine


This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

  ViewVC Help
Powered by ViewVC