| author | wenzelm |
| Mon, 07 Mar 2016 20:44:47 +0100 | |
| changeset 62548 | f8ebb715e06d |
| parent 62545 | 8ebffdaf2ce2 |
| child 62615 | 8e5b631d203b |
| permissions | -rw-r--r-- |
| 62452 | 1 |
/* Title: Pure/Tools/check_sources.scala |
| 56791 | 2 |
Author: Makarius |
3 |
||
4 |
Some sanity checks for Isabelle sources. |
|
5 |
*/ |
|
6 |
||
7 |
package isabelle |
|
8 |
||
9 |
||
| 62452 | 10 |
object Check_Sources |
| 56791 | 11 |
{
|
12 |
def check_file(path: Path) |
|
13 |
{
|
|
14 |
val file_name = path.implode |
|
15 |
val file_pos = path.position |
|
16 |
def line_pos(i: Int) = Position.Line_File(i + 1, file_name) |
|
17 |
||
18 |
val content = File.read(path) |
|
19 |
||
20 |
for { (line, i) <- split_lines(content).iterator.zipWithIndex }
|
|
21 |
{
|
|
22 |
try {
|
|
23 |
Symbol.decode_strict(line) |
|
24 |
||
25 |
for { c <- Word.codepoint_iterator(line); if c > 128 && !Character.isAlphabetic(c) }
|
|
26 |
{
|
|
| 56792 | 27 |
Output.warning("Suspicious Unicode character " + quote(Word.codepoint(c)) +
|
| 56791 | 28 |
Position.here(line_pos(i))) |
29 |
} |
|
30 |
} |
|
31 |
catch { case ERROR(msg) => Output.error_message(msg + Position.here(line_pos(i))) }
|
|
32 |
||
33 |
if (line.contains('\t'))
|
|
| 56792 | 34 |
Output.warning("TAB character" + Position.here(line_pos(i)))
|
| 56791 | 35 |
} |
36 |
||
37 |
if (content.contains('\r'))
|
|
| 56792 | 38 |
Output.warning("CR character" + Position.here(file_pos))
|
| 56791 | 39 |
} |
| 56829 | 40 |
|
41 |
def check_hg(root: Path) |
|
42 |
{
|
|
|
56830
e760242101fc
tuned signature -- channels for diagnostic output for system tools means stderr;
wenzelm
parents:
56829
diff
changeset
|
43 |
Output.writeln("Checking " + root + " ...")
|
|
62545
8ebffdaf2ce2
Bash.process always uses a closed script instead of an open argument list, for extra robustness on Windows, where quoting is not well-defined;
wenzelm
parents:
62454
diff
changeset
|
44 |
Isabelle_System.hg("--repository " + File.bash_path(root) + " root").check
|
| 56829 | 45 |
for {
|
| 62303 | 46 |
file <- Isabelle_System.hg("manifest", root).check.out_lines
|
| 62226 | 47 |
if file.endsWith(".thy") || file.endsWith(".ML") || file.endsWith("/ROOT")
|
| 56829 | 48 |
} check_file(root + Path.explode(file)) |
49 |
} |
|
50 |
||
51 |
||
52 |
/* command line entry point */ |
|
53 |
||
54 |
def main(args: Array[String]) |
|
55 |
{
|
|
56 |
Command_Line.tool0 {
|
|
| 62454 | 57 |
val getopts = Getopts("""
|
| 62452 | 58 |
Usage: isabelle check_sources [ROOT_DIRS...] |
59 |
||
60 |
Check .thy, .ML, ROOT files from manifest of Mercurial ROOT_DIRS. |
|
61 |
""") |
|
62 |
||
63 |
val specs = getopts(args) |
|
64 |
if (specs.isEmpty) getopts.usage() |
|
65 |
||
66 |
for (root <- specs) check_hg(Path.explode(root)) |
|
| 56829 | 67 |
} |
68 |
} |
|
| 56791 | 69 |
} |