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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2534 - (show annotations) (download) (as text)
Sun Mar 9 21:34:03 2014 UTC (10 years, 1 month ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 5475 byte(s)
* LSCP shell (WIP): Added initial support for built-in LSCP reference
  documentation, which will automatically show the relevant LSCP reference
  section on screen as soon as one specific LSCP command was detected while
  typing on the command line.
* Bumped version (1.0.0.svn37).

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 #ifndef __LSCPPARSER_H__
25 #define __LSCPPARSER_H__
26
27 #include <sys/types.h>
28 #if defined(WIN32)
29 #include <windows.h>
30 #else
31 #include <sys/socket.h>
32 #endif
33
34 #include <stdlib.h>
35 #include <iostream>
36 #include <sstream>
37 #include <string>
38 #include <stdint.h>
39 #include <set>
40
41 #include "../common/global_private.h"
42 #include "../common/Path.h"
43 #include "lscpevent.h"
44 #include "../Sampler.h"
45 #include "../drivers/midi/MidiInstrumentMapper.h"
46 #include "lscp_shell_reference.h"
47
48 namespace LinuxSampler {
49
50 /// Will be returned by the parser in case of syntax errors.
51 #define LSCP_SYNTAX_ERROR -69
52 #define LSCP_QUIT -1
53 #define LSCP_DONE 0
54
55 // just symbol prototyping
56 class LSCPServer;
57
58 /**
59 * How the fill states of disk stream buffers should be reflected.
60 */
61 enum fill_response_t {
62 fill_response_bytes, ///< The returned values are meant in bytes.
63 fill_response_percentage ///< The returned values are meant in percentage.
64 };
65
66 /**
67 * Semantic value of the lookahead symbol.
68 *
69 * Structure that is used by the parser to process and return values from the
70 * input text. The lexical analyzer for example returns a number for
71 * recognized number strings in the input text and the parser might return a
72 * value for each of it's rules.
73 */
74 struct _YYSTYPE {
75 union {
76 char Char;
77 unsigned int Number;
78 bool Bool;
79 double Dotnum;
80 fill_response_t FillResponse;
81 LSCPEvent::event_t Event;
82 MidiInstrumentMapper::mode_t LoadMode;
83 };
84 std::string String;
85 std::map<std::string,std::string> KeyValList;
86 Path UniversalPath;
87 };
88 #define YYSTYPE _YYSTYPE
89 #define yystype YYSTYPE ///< For backward compatibility.
90 #define YYSTYPE_IS_DECLARED ///< We tell the lexer / parser that we use our own data structure as defined above.
91 #define YYTYPE_INT16 int16_t
92 #define YYDEBUG 1
93
94 /**
95 * Parameters given to the parser on every yyparse() call.
96 */
97 struct yyparse_param_t {
98 LSCPServer* pServer;
99 int hSession;
100 bool bVerbose; ///< if true then all commands will immediately sent back (echo)
101 bool bShellInteract; ///< if true: then client is the LSCP shell
102 bool bShellAutoCorrect; ///< if true: try to automatically correct obvious syntax mistakes
103 bool bShellSendLSCPDoc; ///< if true: send the relevant LSCP documentation reference section for the current command.
104 int iLine; ///< Current line (just for verbosity / messages)
105 int iColumn; ///< End of current line (just for verbosity / messages)
106 int iCursorOffset; ///< Column of cursor position in current line (reflected as offset to iColumn, range -n .. 0)
107 YYTYPE_INT16** ppStackBottom; ///< Bottom end of the Bison parser's state stack.
108 YYTYPE_INT16** ppStackTop; ///< Current position (heap) of the Bison parser's state stack.
109 lscp_ref_entry_t* pLSCPDocRef; ///< only if bShellSendLSCPDoc=true: points to the current LSCP doc reference, for being able to detect if another LSCP doc page has to be sent to the LSCP shell (client).
110
111 yyparse_param_t() {
112 pServer = NULL;
113 hSession = -1;
114 bVerbose = false;
115 bShellInteract = bShellAutoCorrect = bShellSendLSCPDoc = false;
116 iCursorOffset = iLine = iColumn = 0;
117 ppStackBottom = ppStackTop = NULL;
118 pLSCPDocRef = NULL;
119 }
120
121 void onNextLine() {
122 iLine++;
123 iColumn = 0;
124 iCursorOffset = 0;
125 }
126 };
127 #define YYPARSE_PARAM yyparse_param
128
129 /**
130 * Prototype of the main scanner function (lexical analyzer).
131 */
132 #define YY_DECL int yylex(YYSTYPE* yylval)
133
134 }
135
136 #endif // __LSCPPARSER_H__

  ViewVC Help
Powered by ViewVC