mirror of https://github.com/patacrep/patacrep.git
Engine for LaTeX songbooks
http://www.patacrep.com
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.1 KiB
63 lines
1.1 KiB
"""ChordPro lexer"""
|
|
|
|
import logging
|
|
import ply.lex as lex
|
|
|
|
LOGGER = logging.getLogger()
|
|
|
|
#pylint: disable=invalid-name
|
|
tokens = (
|
|
'LBRACKET',
|
|
'RBRACKET',
|
|
'LBRACE',
|
|
'RBRACE',
|
|
'NEWLINE',
|
|
'COLON',
|
|
'WORD',
|
|
'SPACE',
|
|
'NUMBER'
|
|
)
|
|
|
|
class ChordProLexer:
|
|
"""ChordPro Lexer class"""
|
|
|
|
tokens = tokens
|
|
|
|
t_LBRACKET = r'\['
|
|
t_RBRACKET = r'\]'
|
|
t_LBRACE = r'{'
|
|
t_RBRACE = r'}'
|
|
t_SPACE = r'[ \t]+'
|
|
t_COLON = r':'
|
|
|
|
def __init__(self):
|
|
self.__class__.lexer = lex.lex(module=self)
|
|
|
|
# Define a rule so we can track line numbers
|
|
@staticmethod
|
|
def t_NEWLINE(token):
|
|
r'[\n\r]'
|
|
token.lexer.lineno += 1
|
|
return token
|
|
|
|
@staticmethod
|
|
def t_comment(token):
|
|
r'\#.*'
|
|
pass
|
|
|
|
@staticmethod
|
|
def t_WORD(token):
|
|
r'[a-zA-Z_]+[.,;:!?]?'
|
|
return token
|
|
|
|
@staticmethod
|
|
def t_NUMBER(token):
|
|
r'[0-9]+'
|
|
token.value = int(token.value)
|
|
return token
|
|
|
|
@staticmethod
|
|
def t_error(token):
|
|
"""Manage errors"""
|
|
LOGGER.error("Illegal character '{}'".format(token.value[0]))
|
|
token.lexer.skip(1)
|
|
|