Parser combinator library for MPD client commands.
Currently primarily a toy project for experimenting with parser combinators. Buggy, incomplete and unstable at the moment. Nonetheless, I started implementing a custom MPD server with this library.
This library attempts to follow some of the langsec principles outlined in [1]. This include a strict input grammar enforced using a parser combinator and performing full input recognition in the library before doing further processing in the application.
Compile using:
$ make
Run the test suite using:
$ make check
Perform some sanity check with valgrind using:
$ make valgrind
- Not all double quoted arguments are escaped before further processing.
This means that commands like
pause "\0"
are incorrectly considered invalid.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.