From: David ‘Bombe’ Roden Date: Sat, 5 Jul 2008 17:21:40 +0000 (+0200) Subject: read all links and print them X-Git-Tag: 0.1~36 X-Git-Url: https://git.pterodactylus.net/?p=ecparse.git;a=commitdiff_plain;h=fe0848adc2fa9fbe7320d4513f889b664bc4ec0f read all links and print them --- 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; }