usaa24/sk1/main.c

84 lines
3.1 KiB
C
Raw Normal View History

2024-12-24 15:01:40 +00:00
#include <stdio.h>
#include <stdlib.h>
2024-12-26 15:59:23 +00:00
#include <string.h>
2024-12-26 17:33:31 +00:00
#include "compressor.h" // Підключаємо заголовок
2024-12-24 15:01:40 +00:00
2024-12-26 15:59:23 +00:00
void display_help();
2024-12-24 17:17:13 +00:00
2024-12-26 15:59:23 +00:00
int main(int argc, char *argv[]) {
2024-12-26 17:33:31 +00:00
if (argc < 4) { // Мінімум 4 аргументи
2024-12-26 15:59:23 +00:00
display_help();
return -1;
2024-12-24 18:44:48 +00:00
}
2024-12-24 17:17:13 +00:00
2024-12-26 17:33:31 +00:00
char *action = argv[1]; // -c, -d, -c2, -d2
char *input_filename = argv[2]; // Вхідний файл
char *output_filename = argv[3]; // Вихідний файл
2024-12-26 15:59:23 +00:00
2024-12-26 17:33:31 +00:00
// Для першого алгоритму компресії (наприклад, RLE)
2024-12-26 17:27:19 +00:00
if (strcmp(action, "-c") == 0) {
2024-12-26 17:33:31 +00:00
printf("Compressing using RLE...\n");
int result = rle_compress(input_filename, output_filename);
if (result >= 0) {
printf("Compression successful. Compressed size: %d bytes\n", result);
2024-12-24 18:44:48 +00:00
} else {
2024-12-26 17:33:31 +00:00
printf("Compression failed with error code %d\n", result);
2024-12-24 17:21:43 +00:00
}
2024-12-24 18:44:48 +00:00
}
2024-12-26 17:27:19 +00:00
else if (strcmp(action, "-d") == 0) {
2024-12-26 17:33:31 +00:00
printf("Decompressing RLE...\n");
int result = rle_decompress(input_filename, output_filename);
if (result >= 0) {
printf("Decompression successful. Decompressed size: %d bytes\n", result);
2024-12-24 18:44:48 +00:00
} else {
2024-12-26 17:33:31 +00:00
printf("Decompression failed with error code %d\n", result);
2024-12-24 17:21:43 +00:00
}
2024-12-24 18:44:48 +00:00
}
2024-12-26 17:06:08 +00:00
2024-12-26 17:33:31 +00:00
// Для другого алгоритму компресії (наприклад, LZ77)
else if (strcmp(action, "-c2") == 0) {
printf("Compressing using LZ77...\n");
int result = lz77_compress(input_filename, output_filename);
if (result >= 0) {
printf("Compression successful. Compressed size: %d bytes\n", result);
} else {
printf("Compression failed with error code %d\n", result);
}
}
else if (strcmp(action, "-d2") == 0) {
printf("Decompressing LZ77...\n");
int result = lz77_decompress(input_filename, output_filename);
if (result >= 0) {
printf("Decompression successful. Decompressed size: %d bytes\n", result);
} else {
printf("Decompression failed with error code %d\n", result);
}
}
// Для показу довідки
2024-12-26 17:27:19 +00:00
else if (strcmp(action, "-h") == 0) {
2024-12-26 15:59:23 +00:00
display_help();
2024-12-26 17:33:31 +00:00
}
else {
2024-12-26 15:59:23 +00:00
printf("Invalid arguments\n");
display_help();
return -1;
2024-12-24 15:01:40 +00:00
}
return 0;
}
2024-12-26 15:59:23 +00:00
void display_help() {
printf("Usage:\n");
2024-12-26 17:33:31 +00:00
printf(" -c infile outfile : Compress infile using RLE algorithm.\n");
printf(" -d compressed uncompressed : Decompress compressed file using RLE.\n");
printf(" -c2 infile outfile : Compress infile using LZ77 algorithm.\n");
printf(" -d2 compressed uncompressed: Decompress compressed file using LZ77.\n");
printf(" -h : Display this help message.\n");
2024-12-26 17:06:08 +00:00
printf("Examples:\n");
2024-12-26 17:33:31 +00:00
printf(" ./compressor -c input.txt output.rle\n");
printf(" ./compressor -d output.rle decompressed.txt\n");
printf(" ./compressor -c2 input.txt output.lz77\n");
printf(" ./compressor -d2 output.lz77 decompressed.txt\n");
2024-12-26 15:59:23 +00:00
}