diff --git a/.gitignore b/.gitignore index 4653fbb..f0cc25e 100644 --- a/.gitignore +++ b/.gitignore @@ -41,4 +41,4 @@ build/ .DS_Store ### This Assignment ### -report.txt \ No newline at end of file +src/report.txt \ No newline at end of file diff --git a/src/main/java/Main.java b/src/main/java/Main.java index 148a46e..de7af87 100644 --- a/src/main/java/Main.java +++ b/src/main/java/Main.java @@ -6,7 +6,8 @@ import java.util.Scanner; public class Main { static ArrayList productCatalog = new ArrayList<>(); - public static void loadProducts() throws IOException{ + + public static void loadProducts() throws IOException { InputStream input = Main.class .getClassLoader() .getResourceAsStream("products.csv"); @@ -15,19 +16,33 @@ public class Main { } Scanner scanner = new Scanner(input); - // TODO: - // - Read each line from products.csv - // - For each line, parse productId, name, and price - // - The format of the file is like this: - // [productId],[name],[price] - // - Store Product objects in the productCatalog ArrayList + // خواندن خط به خط فایل محصولات تا زمانی که خط بعدی وجود دارد + while (scanner.hasNextLine()) { + String line = scanner.nextLine(); - // NOTE - // - The data in products.csv is guaranteed to be valid. + // اگر خط خالی بود برو سراغ خط بعدی که برنامه ارور ندهد + if (line.trim().isEmpty()) { + continue; + } + + // جدا کردن اطلاعات هر خط بر اساس ویرگول + String[] tokens = line.split(","); + + // تبدیل رشته‌ها به فرمت عددی مناسب (طبق داک پروژه داده‌های این فایل همیشه معتبرند) + int id = Integer.parseInt(tokens[0].trim()); + String name = tokens[1].trim(); + double price = Double.parseDouble(tokens[2].trim()); + + // ساختن شیء محصول جدید و اضافه کردن آن به لیست کاتالوگ + Product currentProduct = new Product(id, name, price); + productCatalog.add(currentProduct); + } + + // بستن اسکنر برای آزاد شدن فایل + scanner.close(); } - public static void main(String[] args) - { + public static void main(String[] args) { try { loadProducts(); } catch (IOException e) { @@ -43,4 +58,4 @@ public class Main { reportGenerator.saveReport(); System.out.println("=== Report saved as report.txt"); } -} +} \ No newline at end of file diff --git a/src/main/java/ReportGenerator.java b/src/main/java/ReportGenerator.java index 8eb458b..87eb876 100644 --- a/src/main/java/ReportGenerator.java +++ b/src/main/java/ReportGenerator.java @@ -1,4 +1,9 @@ +import java.io.FileWriter; +import java.io.IOException; +import java.io.InputStream; +import java.io.PrintWriter; import java.util.List; +import java.util.Scanner; public class ReportGenerator { @@ -15,69 +20,101 @@ public class ReportGenerator { this.productList = productList; } - public void processFile() - { - // TODO: - // 1. Open the order details CSV file - // 2. Read the file line by line - // 3. Split each line using comma delimiter - // (each line is guaranteed to contain exactly two commas) - // 4. Each line contains exactly 3 values in the format: - // [productId],[quantity],[discountPercent] - // 5. Attempt to convert values: - // - productId -> int - // - quantity -> int - // - discountPercent -> int - // NOTE: - // - quantity and discountPercent may contain invalid characters - // (e.g., letters instead of numbers). - // - If parsing any value fails (NumberFormatException), - // the entire line must be considered invalid. - // - Use try-catch blocks and exception handling to safely - // handle parsing and validation errors without stopping - // the processing of the remaining lines. - // 6. Validate parsed values: - // - productId must be greater than 0 - // - quantity must be greater than 0 - // - discountPercent must be between 0 and 99 inclusive - // 7. Look for a Product in productList that matches productId - // 8. If no Product with that ID exists in the catalog, - // the entire line is considered invalid - // 9. If all values are valid and the product exists, calculate: - // subtotal = quantity * product price - // discountValue = subtotal * discountPercent / 100 - // finalCost = subtotal - discountValue - // 10. Update report totals: - // - totalQuantity += quantity - // - totalFinalCost += finalCost - // - totalDiscountValue += discountValue - // 11. If any parsing error, validation failure, or missing product occurs: - // - increment totalInvalidLines - // - skip the line and continue processing the next line - // 12. Close all file resources + public void processFile() { + InputStream input = getClass().getClassLoader().getResourceAsStream(ordersFilePath); + if (input == null) { + System.err.println("Orders file not found: " + ordersFilePath); + return; + } + + Scanner scanner = new Scanner(input); + + while (scanner.hasNextLine()) { + String line = scanner.nextLine(); + if (line.trim().isEmpty()) { + continue; + } + + // استفاده از try-catch برای اینکه اگر خطایی در تبدیل متن به عدد رخ داد برنامه کرش نکند + try { + String[] parts = line.split(","); + + // تبدیل متن‌ها به اعداد صحیح و احتمال رخ دادن NumberFormatException + int prodId = Integer.parseInt(parts[0].trim()); + int qty = Integer.parseInt(parts[1].trim()); + int discPercent = Integer.parseInt(parts[2].trim()); + + // شرط‌های اعتبارسنجی: مقادیر نباید منفی باشند و درصد تخفیف نباید بیشتر از 100 باشد + if (qty < 0 || discPercent < 0 || discPercent > 100) { + totalInvalidLines++; + continue; + } + + // گشتن توی لیست کاتالوگ برای پیدا کردن محصولی که این آیدی را دارد + Product foundProduct = null; + for (int i = 0; i < productList.size(); i++) { + if (productList.get(i).getProductID() == prodId) { + foundProduct = productList.get(i); + break; + } + } + + // اگر محصول توی کاتالوگ نبود خط نامعتبر حساب می‌شود + if (foundProduct == null) { + totalInvalidLines++; + continue; + } + + // فرمول‌های محاسبات مالی طبق دستور کار پروژه + double subtotal = qty * foundProduct.getPrice(); + double discountValue = (subtotal * discPercent) / 100.0; + double finalCost = subtotal - discountValue; + + // جمع زدن مقادیر نهایی برای گزارش + totalQuantity += qty; + totalDiscountValue += discountValue; + totalFinalCost += finalCost; + + } catch (NumberFormatException e) { + // اگر توی متن حروف بود و تبدیل به عدد نشد، اینجا خطا رو می‌گیریم و خط رو نامعتبر می‌کنیم + totalInvalidLines++; + } + } + + // بستن فایل ورودی سفارشات + scanner.close(); } public void saveReport() { - // TODO: - // 1. Build a formatted report string - // 2. Include: - // - total quantity - // - total final cost - // - total discount value - // - total invalid lines - // 3. Create/open output report file (name it report.txt) - // 4. Write report string into file - // 5. Handle file writing exceptions - // 6. Close writer resources + try { + // برای اینکه فایل‌ها منظم باشند، ابتدا یک شیء پوشه به نام output تعریف می‌کنیم + java.io.File outputFolder = new java.io.File("output"); - /* Example Structure - ========= SALES REPORT ========= - Total Quantity Sold: 42 - Total Final Cost: $1520.75 - Total Discount Value: $230.50 - Invalid Rows: 3 - ================================ - */ + // اگر این پوشه از قبل وجود نداشته باشد، آن را می‌سازیم + if (!outputFolder.exists()) { + outputFolder.mkdir(); + } + + // حالا فایل report.txt را دقیقاً درون پوشه output می‌سازیم + FileWriter fileWriter = new FileWriter("output/report.txt"); + PrintWriter printWriter = new PrintWriter(fileWriter); + + // چاپ کردن اطلاعات داخل فایل گزارش طبق فرمت نمونه + printWriter.println("===== SALES REPORT ====="); + printWriter.println(); + printWriter.println("Total Quantity: " + totalQuantity); + printWriter.println("Total Final Cost: " + totalFinalCost); + printWriter.println("Total Discount Value: " + totalDiscountValue); + printWriter.println("Invalid Lines: " + totalInvalidLines); + + // بستن بافرها برای اینکه اطلاعات کاملاً روی هارد ذخیره شوند + printWriter.close(); + fileWriter.close(); + + } catch (IOException e) { + // اگر مشکلی در ساخت پوشه یا نوشتن فایل پیش آمد، اینجا مدیریت می‌شود + System.err.println("Error writing report file: " + e.getMessage()); + } } } \ No newline at end of file diff --git a/2025_order_details.csv b/src/main/resources/2025_order_details.csv similarity index 100% rename from 2025_order_details.csv rename to src/main/resources/2025_order_details.csv