1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
|
# This file is part of python-ly, https://pypi.python.org/pypi/python-ly
#
# Copyright (c) 2015 - 2015 by Wilbert Berendsen
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# See http://www.gnu.org/licenses/ for more information.
# this module only contains a doc string, which is printed when using
# ly -h .
"""
Usage::
ly-server [options]
An HTTP server for manipulating LilyPond input code
Server Options
==============
-v, --version show version number and exit
-h, --help show this help text and exit
-p, --port PORT port server listens to (default 5432)
-t, --timeout TIME If set, server shuts down automatically
after -t seconds of inactivity
NOT IMPLEMENTED YET!
Command Options
===============
-e, --encoding ENC (input) encoding (default UTF-8)
--output-encoding ENC output encoding (default to input encoding)
-l, --language NAME default pitch name language (default to "nederlands")
-d <variable=value> set a variable (see below)
Command options define defaults for the execution of commands triggered by HTTP
requests. These options can be overridden by the individual HTTP request.
HTTP Requests
=============
GET Requests
------------
Some GET requests will be implemented later to retrieve values
or change some server settings based on the URL path.
POST Requests
-------------
The server accepts POST requests without (currently) making use of the URL path.
As the request body it expects a single JSON string with the following elements:
``commands`` (mandatory)
An array with one or more commands to be executed subsequently.
Each entry contains:
``command`` (mandatory):
A name for the command. It has to be one out of the list of
available commands below.
``args`` (optional):
If a command requires arguments (e.g. the ``transpose`` command)
they are given as a single string value.
``variables`` (optional):
A dictionary of variable assignments. Keys have to be from the
list below, and proper value types are checked. If one or more
variables are given they will be set *before* the command is
executed. A variable may be modified again before the execution
of the next command but it is not reset automatically. Giving a
variable with a value of '' unsets the variable.
``options`` (optional)
A dictionary of option assignments. Keys have to be from the above list
of Command Options, taking the long name without the leading hyphens,
e.g. ``{ "encoding": "UTF-16" }``.
If an option is given here it overrides the default option given on the
command line, but only for the current command.
``data`` (mandatory)
A single string containing the LilyPond input document.
The server will try to construct a series of commands from the request, and if
anything is wrong with it send a "Bad Request" message with HTTP response code 400.
Response Object
---------------
If the commands execute successfully the response body will contain a serialized
JSON object with the following elements:
``info``
An array of entries with the result of "info" commands (see below).
Each entry has a ``command`` and an ``info`` field.
``doc``
An object with two fields:
``content``
A string with the content of the document with all "edit" commands applied
consecutively. (If no edit commands have been specified this contains the
original input.
``commands``
An array with the names of the commands that have been applied.
``exports``
An array with entries for each applied "export" command.
Each entry has the following fields:
``doc``
A string with the content of the converted/exported document
``command``
The name of the applied command
Commands
--------
There are three types of commands whose results are handled independently:
- "info" commands retrieve metadata from the input document
- "edit" commands modify the document, subsequent edit commands cascade the
modifications
- "export" commands that convert the input to another format.
Subsequent commands are not affected by the result of export commands.
Informative commands that return information and do not change the file:
``mode``
print the mode (guessing if not given) of the document
``version``
print the LilyPond version, if set in the document
``language``
print the pitch name language, if set in the document
Commands that modify the input:
``indent``
re-indent the file
``reformat``
reformat the file
``translate <language>``
translate the pitch names to the language
``transpose <from> <to>``
transpose the file like LilyPond would do, pitches
are given in the 'nederlands' language
``abs2rel``
convert absolute music to relative
``rel2abs``
convert relative music to absolute
Commands that convert the input to another format:
``musicxml``
convert to MusicXML (in development, far from complete)
``highlight``
export the document as syntax colored HTML
Variables
---------
The following variables can be set to influence the behaviour of commands.
If there is a default value, it is written between brackets:
``mode``
mode of the input to read (default automatic) can be one
of: lilypond, scheme, latex, html, docbook, texinfo.
``encoding`` [UTF-8]
encoding to read (also set by -e argument)
``default-language`` [nederlands]
the pitch names language to use by default, when not specified
otherwise in the document
``output-encoding``
encoding to write (defaults to ``encoding``, also
set by the ``--output-encoding`` argument)
``indent-tabs`` [``false``]
whether to use tabs for indent
``indent-width`` [2]
how many spaces for each indent level (if not using tabs)
``full-html`` [``True``]
if set to True a full document with syntax-highlighted HTML
will be exported, otherwise only the bare content wrapped in an
element configured by the ``wrapper-`` variables.
``stylesheet``
filename to reference as an external stylesheet for
syntax-highlighted HTML. This filename is literally used
in the ``<link rel="stylesheet">`` tag.
``inline-style`` [``false``]
whether to use inline style attributes for syntax-highlighted HTML.
By default a css stylesheet is embedded.
``number-lines`` [``false``]
whether to add line numbers when creating syntax-highlighted HTML.
``wrapper-tag`` [``pre``]
which tag syntax highlighted HTML will be wrapped in. Possible values:
``div``, ``pre``, ``id`` and ``code``
``wrapper-attribute`` [``class``]
attribute used for the wrapper tag. Possible values: ``id`` and ``class``.
``document-id`` [``lilypond``]
name applied to the wrapper-attribute.
If the three last options use their default settings
the highlighted HTML elements are wrapped in an element
``<pre class="lilypond"></pre>``
``linenumbers-id`` [``linenumbers``]
if linenumbers are exported this is the name used for the ``<td>`` elements
Examples
========
Here is the basic invocation, listening on port 5432::
ly-server
Specifying port and a timeout::
ly-server -p 4000 -t 5000
Sample Requests
---------------
The simplest request, just applying one edit command. In this case the result
will be in ``result['doc']['content']``::
{
'commands': [
{
'command': 'indent'
}
],
'data' : "\\relative c' { c ( d e f ) }"
}
Another simple request, this time applying an "info" command. The result will
be in ``result['info']``, containing ``lilypond`` in the ``info`` field and
``mode`` in the ``command`` field::
{
'commands': [
{
'command': 'mode'
}
],
'data' : "\\relative c' { c ( d e f ) }"
}
And a more complex example. This will first transpose the document and then
convert the transposed version independently to highlighted HTML and MusicXML.
Additionally it will retrieve the mode. This time the result will be in all
three places: the transposed document in ``doc.content``, the mode in
``info.info``, and HTML and MusicXML in ``exports[0].doc`` and ``exports[1].doc``.::
{
'commands': [
{
'command': 'transpose',
'args': 'c d'
},
{
'command': 'highlight',
'variables': { 'full-html': 'false' }
},
{ 'command': 'musicxml' },
{ 'command': 'mode' },
],
'options': {
'language': "deutsch"
},
'data': "\\relative c' { c4 ( d e ) }"
}
"""
|