package semanticanalysis; import java.io.*; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.StandardOpenOption; import java.util.*; public class Share { /** * Removes the duplicate elements in a list of Semantic Errors. It's not * generic because it's used a custom contains function. */ public static ArrayList removeDuplicates(ArrayList list) { ArrayList newList = new ArrayList<>(); for (SemanticError element : list) { if (!customContains(newList, element)) { newList.add(element); } } return newList; } /** * Normal contains did not work, so we made a custom contains function. * Returns `true` if the String rappresentation of an object in the list is * equal to the element given in input. */ private static boolean customContains(ArrayList list, SemanticError e) { String e1 = e.toString(); for (SemanticError element : list) { String e2 = element.toString(); if (e2.equals(e1)) { return true; } } return false; } public static String getExtension(String fileName) { int extensionIndex = fileName.lastIndexOf('.'); if (extensionIndex == -1) { return fileName; } else { return fileName.substring(extensionIndex + 1); } } public static String readFile(String filePath) throws IOException { StringBuilder content = new StringBuilder(); try (BufferedReader reader = new BufferedReader(new FileReader(filePath))) { String line; while ((line = reader.readLine()) != null) { content.append(line).append("\n"); } } return content.toString(); } public static void saveFile(String fileName, String content) { try { Path file = Paths.get(fileName); if (!Files.exists(file)) { Files.createFile(file); } Files.write(file, content.getBytes(), StandardOpenOption.TRUNCATE_EXISTING); } catch (Exception e) { e.printStackTrace(); } } }