Correction de bug #1
This commit is contained in:
parent
bf2ef906c8
commit
635ff0a728
@ -48,12 +48,6 @@ public class BakefileParser {
|
|||||||
*/
|
*/
|
||||||
private static final Pattern PHONY_PATTERN = Pattern.compile("^\\.PHONY:\\s*([^#]*?)\\s*(?:#.*)?$");
|
private static final Pattern PHONY_PATTERN = Pattern.compile("^\\.PHONY:\\s*([^#]*?)\\s*(?:#.*)?$");
|
||||||
|
|
||||||
/**
|
|
||||||
* Regex pour détecter les lignes de continuation.
|
|
||||||
* Format : " gcc -o program program.c \"
|
|
||||||
*/
|
|
||||||
private static final Pattern CONTINUATION_PATTERN = Pattern.compile("^(.*)\\\\\\s*$");
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Regex pour détecter les références de variables.
|
* Regex pour détecter les références de variables.
|
||||||
* Format : "${VAR}" ou "$(VAR)"
|
* Format : "${VAR}" ou "$(VAR)"
|
||||||
@ -79,34 +73,6 @@ public class BakefileParser {
|
|||||||
firstTarget = null;
|
firstTarget = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Gérer les lignes de continuation.
|
|
||||||
* @param lines Liste des lignes du fichier Bakefile
|
|
||||||
* @param startIndex Index de la première ligne de continuation
|
|
||||||
* @return La ligne combinée
|
|
||||||
*/
|
|
||||||
private String handleContinuationLines(List<String> lines, int startIndex) {
|
|
||||||
StringBuilder combinedLine = new StringBuilder();
|
|
||||||
int i = startIndex;
|
|
||||||
|
|
||||||
while (i < lines.size()) {
|
|
||||||
String line = lines.get(i);
|
|
||||||
Matcher contMatcher = CONTINUATION_PATTERN.matcher(line);
|
|
||||||
|
|
||||||
if (contMatcher.matches()) {
|
|
||||||
// Ajouter la ligne sans le backslash
|
|
||||||
combinedLine.append(contMatcher.group(1).trim()).append(" ");
|
|
||||||
i++;
|
|
||||||
} else {
|
|
||||||
// Ajouter la dernière ligne et sortir
|
|
||||||
combinedLine.append(line.trim());
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return combinedLine.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Remplacer les variables dans une chaîne.
|
* Remplacer les variables dans une chaîne.
|
||||||
* @param input Chaîne à traiter
|
* @param input Chaîne à traiter
|
||||||
@ -199,112 +165,150 @@ public class BakefileParser {
|
|||||||
* @return Liste des règles extraites
|
* @return Liste des règles extraites
|
||||||
*/
|
*/
|
||||||
public List<Rule> parse() {
|
public List<Rule> parse() {
|
||||||
List<Rule> rules = new ArrayList<>();
|
List<Rule> rules = new ArrayList<>();
|
||||||
Set<String> phonyTargets = new HashSet<>();
|
Set<String> phonyTargets = new HashSet<>();
|
||||||
|
|
||||||
if (!Files.exists(Paths.get(filename))) {
|
if (!Files.exists(Paths.get(filename))) {
|
||||||
System.out.println("*** No targets specified and no makefile found. Stop.");
|
System.out.println("*** No targets specified and no makefile found. Stop.");
|
||||||
System.exit(2);
|
System.exit(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
List<String> lines = Files.readAllLines(Paths.get(filename));
|
List<String> lines = Files.readAllLines(Paths.get(filename));
|
||||||
List<String> currentTargets = null;
|
List<String> currentTargets = null;
|
||||||
List<String> dependencies = new ArrayList<>();
|
List<String> dependencies = new ArrayList<>();
|
||||||
List<String> commands = new ArrayList<>();
|
List<String> commands = new ArrayList<>();
|
||||||
|
boolean inContinuedCommand = false;
|
||||||
for (int i = 0; i < lines.size(); i++) {
|
StringBuilder continuedCommand = new StringBuilder();
|
||||||
String line = lines.get(i);
|
|
||||||
|
for (int i = 0; i < lines.size(); i++) {
|
||||||
// Vérifier si la ligne a un caractère de continuation
|
String line = lines.get(i).replace("\r", "");
|
||||||
Matcher contMatcher = CONTINUATION_PATTERN.matcher(line);
|
|
||||||
if (contMatcher.matches()) {
|
// Ignorer les lignes vides
|
||||||
// Récupérer toute la définition multi-ligne
|
if (line.trim().isEmpty()) {
|
||||||
line = handleContinuationLines(lines, i);
|
continue;
|
||||||
// Ajuster i pour sauter les lignes traitées
|
}
|
||||||
while (i + 1 < lines.size() &&
|
|
||||||
CONTINUATION_PATTERN.matcher(lines.get(i)).matches()) {
|
// Gérer les erreurs de format (espaces au lieu de tabulations)
|
||||||
i++;
|
if (line.matches("^ +.*$") && !inContinuedCommand) {
|
||||||
}
|
System.err.println(filename + ":" + (i+1) + ": *** missing separator. Stop.");
|
||||||
}
|
System.exit(2);
|
||||||
|
}
|
||||||
if (line.trim().isEmpty()) {
|
|
||||||
continue;
|
// Si nous sommes en train de traiter une ligne continuée
|
||||||
}
|
if (inContinuedCommand) {
|
||||||
|
if (line.endsWith("\\")) {
|
||||||
if (line.matches("^ +.*$")) {
|
// Encore une continuation
|
||||||
System.err.println(filename + ":" + (i+1) + ": *** missing separator. Stop.");
|
continuedCommand.append(" ").append(line.substring(0, line.length() - 1).trim());
|
||||||
System.exit(2);
|
} else {
|
||||||
}
|
// Fin de la continuation
|
||||||
|
continuedCommand.append(" ").append(line.trim());
|
||||||
Matcher varMatcher = VARIABLE_PATTERN.matcher(line);
|
commands.add(continuedCommand.toString().trim());
|
||||||
Matcher targetMatcher = TARGET_PATTERN.matcher(line);
|
inContinuedCommand = false;
|
||||||
Matcher commandMatcher = COMMAND_PATTERN.matcher(line);
|
continuedCommand = new StringBuilder();
|
||||||
Matcher phonyMatcher = PHONY_PATTERN.matcher(line);
|
}
|
||||||
|
continue;
|
||||||
if (phonyMatcher.matches()) {
|
}
|
||||||
String[] phonies = phonyMatcher.group(1).trim().split("\\s+");
|
|
||||||
Collections.addAll(phonyTargets, phonies);
|
// Matcher pour les déclarations .PHONY
|
||||||
continue;
|
Matcher phonyMatcher = PHONY_PATTERN.matcher(line);
|
||||||
}
|
if (phonyMatcher.matches()) {
|
||||||
|
String[] phonies = phonyMatcher.group(1).trim().split("\\s+");
|
||||||
if (varMatcher.matches()) {
|
Collections.addAll(phonyTargets, phonies);
|
||||||
String varName = varMatcher.group(1);
|
continue;
|
||||||
String varValue = varMatcher.group(2).trim();
|
}
|
||||||
// Évaluer les variables référencées dans la valeur
|
|
||||||
varValue = replaceVariables(varValue);
|
// Matcher pour les déclarations de variables
|
||||||
variables.put(varName, varValue);
|
Matcher varMatcher = VARIABLE_PATTERN.matcher(line);
|
||||||
} else if (targetMatcher.matches()) {
|
if (varMatcher.matches()) {
|
||||||
if (currentTargets != null) {
|
String varName = varMatcher.group(1);
|
||||||
// Créer une règle pour chaque cible avec les mêmes dépendances et commandes
|
String varValue = varMatcher.group(2).trim();
|
||||||
for (String target : currentTargets) {
|
// Évaluer les variables référencées dans la valeur
|
||||||
String resolvedTarget = replaceVariables(target.trim());
|
varValue = replaceVariables(varValue);
|
||||||
rules.add(new Rule(
|
variables.put(varName, varValue);
|
||||||
resolvedTarget,
|
continue;
|
||||||
splitDependencies(dependencies.stream()
|
}
|
||||||
.collect(Collectors.joining(" "))),
|
|
||||||
replaceVariablesInList(commands),
|
// Matcher pour les cibles et dépendances
|
||||||
phonyTargets.contains(resolvedTarget)
|
Matcher targetMatcher = TARGET_PATTERN.matcher(line);
|
||||||
));
|
if (targetMatcher.matches()) {
|
||||||
|
// Si nous avions des cibles précédentes, créons les règles correspondantes
|
||||||
if (firstTarget == null) {
|
if (currentTargets != null) {
|
||||||
firstTarget = resolvedTarget;
|
// Créer une règle pour chaque cible avec les mêmes dépendances et commandes
|
||||||
}
|
for (String target : currentTargets) {
|
||||||
}
|
String resolvedTarget = replaceVariables(target.trim());
|
||||||
}
|
rules.add(new Rule(
|
||||||
|
resolvedTarget,
|
||||||
String targetStr = targetMatcher.group(1);
|
replaceVariablesInList(dependencies),
|
||||||
currentTargets = splitTargets(targetStr);
|
replaceVariablesInList(commands),
|
||||||
String depStr = targetMatcher.group(2);
|
phonyTargets.contains(resolvedTarget)
|
||||||
dependencies = splitDependencies(depStr);
|
));
|
||||||
commands = new ArrayList<>();
|
|
||||||
} else if (commandMatcher.matches()) {
|
if (firstTarget == null) {
|
||||||
commands.add(commandMatcher.group(1));
|
firstTarget = resolvedTarget;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (currentTargets != null) {
|
|
||||||
// Créer une règle pour chaque cible avec les mêmes dépendances et commandes
|
// Configuration pour les nouvelles cibles
|
||||||
for (String target : currentTargets) {
|
String targetStr = targetMatcher.group(1);
|
||||||
String resolvedTarget = replaceVariables(target.trim());
|
currentTargets = splitTargets(targetStr);
|
||||||
rules.add(new Rule(
|
|
||||||
resolvedTarget,
|
String depStr = targetMatcher.group(2);
|
||||||
replaceVariablesInList(dependencies),
|
dependencies = splitDependencies(depStr);
|
||||||
replaceVariablesInList(commands),
|
commands = new ArrayList<>();
|
||||||
phonyTargets.contains(resolvedTarget)
|
continue;
|
||||||
));
|
}
|
||||||
|
|
||||||
if (firstTarget == null) {
|
// Matcher pour les lignes de commande
|
||||||
firstTarget = resolvedTarget;
|
Matcher commandMatcher = COMMAND_PATTERN.matcher(line);
|
||||||
}
|
if (commandMatcher.matches()) {
|
||||||
}
|
String command = commandMatcher.group(1);
|
||||||
}
|
|
||||||
|
// Gérer la continuation de ligne
|
||||||
} catch (IOException e) {
|
if (command.endsWith("\\")) {
|
||||||
e.printStackTrace();
|
inContinuedCommand = true;
|
||||||
}
|
continuedCommand = new StringBuilder(command.substring(0, command.length() - 1).trim());
|
||||||
return rules;
|
} else {
|
||||||
}
|
commands.add(command);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Traiter les dernières cibles
|
||||||
|
if (currentTargets != null) {
|
||||||
|
// Créer une règle pour chaque cible avec les mêmes dépendances et commandes
|
||||||
|
for (String target : currentTargets) {
|
||||||
|
String resolvedTarget = replaceVariables(target.trim());
|
||||||
|
rules.add(new Rule(
|
||||||
|
resolvedTarget,
|
||||||
|
replaceVariablesInList(dependencies),
|
||||||
|
replaceVariablesInList(commands),
|
||||||
|
phonyTargets.contains(resolvedTarget)
|
||||||
|
));
|
||||||
|
|
||||||
|
if (firstTarget == null) {
|
||||||
|
firstTarget = resolvedTarget;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (BakeCLI.isDebug()) {
|
||||||
|
System.out.println("Debug: Parsed " + rules.size() + " rules.");
|
||||||
|
for (Rule rule : rules) {
|
||||||
|
System.out.println("Debug: Rule: " + rule.getName());
|
||||||
|
System.out.println("Debug: Commands: " + rule.getCommands().size());
|
||||||
|
for (String cmd : rule.getCommands()) {
|
||||||
|
System.out.println("Debug: [" + cmd + "]");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return rules;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Récupérer la première cible
|
* Récupérer la première cible
|
||||||
|
Loading…
x
Reference in New Issue
Block a user