Skip to content
Snippets Groups Projects
Commit 88f2dc58 authored by Petteri Aimonen's avatar Petteri Aimonen
Browse files

Improve comment support in .options files.

Update issue 145
Status: FixedInGit
parent 3bcdd49e
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@
nanopb_version = "nanopb-0.3.3-dev"
import sys
import re
try:
# Add some dummy imports to keep packaging tools happy.
......@@ -1164,9 +1165,13 @@ def read_options_file(infile):
[(namemask, options), ...]
'''
results = []
for i, line in enumerate(infile):
data = infile.read()
data = re.sub('/\*.*?\*/', '', data, flags = re.MULTILINE)
data = re.sub('//.*?$', '', data, flags = re.MULTILINE)
data = re.sub('#.*?$', '', data, flags = re.MULTILINE)
for i, line in enumerate(data.split('\n')):
line = line.strip()
if not line or line.startswith('//') or line.startswith('#'):
if not line:
continue
parts = line.split(None, 1)
......
# Regression test for Issue 145: Allow /* */ and // comments in .options files
Import("env")
env.NanopbProto(["comments", "comments.options"])
env.Object('comments.pb.c')
env.Match(['comments.pb.h', 'comments.expected'])
char foo\[5\];
char bar\[16\];
/* Block comment */
# Line comment
// Line comment
DummyMessage.foo /* Block comment */ max_size:5
DummyMessage.bar max_size:16 # Line comment ###
message DummyMessage {
required string foo = 1;
required string bar = 2;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment