Files
tfm_ainventory/venv/lib/python3.12/site-packages/pygments/lexers/tls.py
Daniel Bedeleanu ea49cd6e4a feat(phase1): add image storage utilities
- Create backend/services/image_storage.py with 4 core functions:
  - sanitize_filename(): remove unsafe chars, limit to 255 chars, convert to lowercase
  - get_unique_filename(): handle collisions with UUID suffix (format: {name}_{uuid8}_{variant}.jpg)
  - ensure_image_directories(): create /images/ root and category subdirs on startup
  - save_image(): save bytes to /images/{category}/{filename}, returns relative path
- Create comprehensive test suite (22 tests) covering all functionality
- Integrate ensure_image_directories() into FastAPI startup event
- Directory structure: /images/{category}/{filename}
- Collision handling: auto-suffix with UUID if filename exists
- All tests passing, pathlib.Path for safe operations
2026-04-20 21:57:26 +03:00

55 lines
1.5 KiB
Python

"""
pygments.lexers.tls
~~~~~~~~~~~~~~~~~~~
Lexers for the TLS presentation language.
:copyright: Copyright 2006-present by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
import re
from pygments.lexer import RegexLexer, words
from pygments.token import Comment, Operator, Keyword, Name, String, \
Number, Punctuation, Whitespace
__all__ = ['TlsLexer']
class TlsLexer(RegexLexer):
"""
The TLS presentation language, described in RFC 8446.
"""
name = 'TLS Presentation Language'
url = 'https://www.rfc-editor.org/rfc/rfc8446#section-3'
filenames = []
aliases = ['tls']
mimetypes = []
version_added = '2.16'
flags = re.MULTILINE | re.DOTALL
tokens = {
'root': [
(r'\s+', Whitespace),
# comments
(r'/[*].*?[*]/', Comment.Multiline),
# Keywords
(words(('struct', 'enum', 'select', 'case'), suffix=r'\b'),
Keyword),
(words(('uint8', 'uint16', 'uint24', 'uint32', 'uint64', 'opaque'),
suffix=r'\b'), Keyword.Type),
# numeric literals
(r'0x[0-9a-fA-F]+', Number.Hex),
(r'[0-9]+', Number.Integer),
# string literal
(r'"(\\.|[^"\\])*"', String),
# tokens
(r'[.]{2}', Operator),
(r'[+\-*/&^]', Operator),
(r'[|<>=!()\[\]{}.,;:\?]', Punctuation),
# identifiers
(r'[^\W\d]\w*', Name.Other),
]
}