From fe0848adc2fa9fbe7320d4513f889b664bc4ec0f Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Sat, 5 Jul 2008 19:21:40 +0200 Subject: [PATCH] read all links and print them --- Main.cpp | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/Main.cpp b/Main.cpp index 6b5f39f..8466ad8 100644 --- a/Main.cpp +++ b/Main.cpp @@ -15,7 +15,9 @@ int main(int argc, char** argv) { CollectionReader* collectionReader; char* currentArgument; char* fileToOpen = NULL; + FILE* file = NULL; int argumentIndex; + ED2KLink* nextLink = NULL; for (argumentIndex = 1; argumentIndex < argc; argumentIndex++) { currentArgument = argv[argumentIndex]; @@ -24,13 +26,29 @@ int main(int argc, char** argv) { } else if (!strcmp("--verbose", currentArgument) || !strcmp("-v", currentArgument)) { GlobalSettings::setVerbose(true); } else if (!strcmp("--file", currentArgument) || !strcmp("-f", currentArgument)) { - fileToOpen = currentArgument; + fileToOpen = argv[++argumentIndex]; } else { printf("Unknown Parameter: %s\n", currentArgument); return 1; } } + if (fileToOpen) { + file = fopen(fileToOpen, "r"); + fileReaderInput = new FileReaderInput(file); + } else { + fileReaderInput = new FileReaderInput(stdin); + } + + collectionReader = new CollectionReader(fileReaderInput); + while ((nextLink = collectionReader->getNextLink())) { + printf("%s\n", nextLink->getLink()); + } + + if (file) { + fclose(file); + } + return 0; } -- 2.7.4