1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
/* -*- Mode: c; c-basic-offset: 2 -*-
*
* list-methods utility - List all Flickr API methods via reflection
*
* Copyright (C) 2008-2012, David Beckett http://www.dajobe.org/
*
* This file is licensed under the following three licenses as alternatives:
* 1. GNU Lesser General Public License (LGPL) V2.1 or any newer version
* 2. GNU General Public License (GPL) V2 or any newer version
* 3. Apache License, V2.0 or any newer version
*
* You may not use this file except in compliance with at least one of
* the above three licenses.
*
* See LICENSE.html or LICENSE.txt at the top of this package for the
* complete terms and further detail along with the license texts for
* the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively.
*
*
* USAGE: list-methods [OPTIONS]
*
*/
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_ERRNO_H
#include <errno.h>
#endif
/* many places for getopt */
#ifdef HAVE_GETOPT_H
#include <getopt.h>
#else
#include <flickcurl_getopt.h>
#endif
#include <flickcurl.h>
#include <flickcurl_cmd.h>
#ifdef NEED_OPTIND_DECLARATION
extern int optind;
extern char *optarg;
#endif
const char* program;
static void
my_message_handler(void *user_data, const char *message)
{
fprintf(stderr, "%s: ERROR: %s\n", program, message);
}
#ifdef HAVE_GETOPT_LONG
#define HELP_TEXT(short, long, description) " -" short ", --" long " " description
#define HELP_TEXT_LONG(long, description) " --" long " " description
#define HELP_ARG(short, long) "--" #long
#define HELP_PAD "\n "
#else
#define HELP_TEXT(short, long, description) " -" short " " description
#define HELP_TEXT_LONG(long, description)
#define HELP_ARG(short, long) "-" #short
#define HELP_PAD "\n "
#endif
#define GETOPT_STRING "hv"
#ifdef HAVE_GETOPT_LONG
static struct option long_options[] =
{
/* name, has_arg, flag, val */
{"help", 0, 0, 'h'},
{"version", 0, 0, 'v'},
{NULL, 0, 0, 0}
};
#endif
static const char *title_format_string = "List Flickr API methods utility %s\n";
static
int compare_strings(const void *a, const void *b)
{
return strcmp(*((char**)a), *((char**)b));
}
int
main(int argc, char *argv[])
{
flickcurl *fc = NULL;
int rc = 0;
int usage = 0;
int help = 0;
int read_auth = 1;
int i;
char** methods = NULL;
int count = 0;
flickcurl_init();
flickcurl_cmdline_init();
program = flickcurl_cmdline_basename(argv[0]);
while (!usage && !help)
{
int c;
#ifdef HAVE_GETOPT_LONG
int option_index = 0;
c = getopt_long (argc, argv, GETOPT_STRING, long_options, &option_index);
#else
c = getopt (argc, argv, GETOPT_STRING);
#endif
if (c == -1)
break;
switch (c) {
case 0:
case '?': /* getopt() - unknown option */
usage = 1;
break;
case 'h':
help = 1;
break;
case 'v':
fputs(flickcurl_version_string, stdout);
fputc('\n', stdout);
flickcurl_cmdline_finish();
exit(0);
}
}
if(help)
goto help;
if(argc != 1) {
fprintf(stderr, "%s: Extra arguments given\n", program);
usage = 1;
}
if(usage) {
if(usage>1) {
fprintf(stderr, title_format_string, flickcurl_version_string);
fputs("Flickcurl home page: ", stderr);
fputs(flickcurl_home_url_string, stderr);
fputc('\n', stderr);
fputs(flickcurl_copyright_string, stderr);
fputs("\nLicense: ", stderr);
fputs(flickcurl_license_string, stderr);
fputs("\n\n", stderr);
}
fprintf(stderr, "Try `%s " HELP_ARG(h, help) "' for more information.\n",
program);
rc = 1;
goto tidy;
}
help:
if(help) {
printf(title_format_string, flickcurl_version_string);
puts("List Flickr API methods by reflection.");
printf("Usage: %s [OPTIONS]\n\n", program);
fputs(flickcurl_copyright_string, stdout);
fputs("\nLicense: ", stdout);
puts(flickcurl_license_string);
fputs("Flickcurl home page: ", stdout);
puts(flickcurl_home_url_string);
fputs("\n", stdout);
puts(HELP_TEXT("h", "help ", "Print this help, then exit"));
puts(HELP_TEXT("v", "version ", "Print the flickcurl version"));
rc = 0;
goto tidy;
}
/* Initialise the Flickcurl library */
fc = flickcurl_new();
if(!fc) {
rc = 1;
goto tidy;
}
flickcurl_set_error_handler(fc, my_message_handler, NULL);
if(read_auth && !access((const char*)flickcurl_cmdline_config_path, R_OK)) {
if(flickcurl_config_read_ini(fc, flickcurl_cmdline_config_path,
flickcurl_cmdline_config_section, fc,
flickcurl_config_var_handler)) {
rc = 1;
goto tidy;
}
}
methods = flickcurl_reflection_getMethods(fc);
if(!methods) {
fprintf(stderr, "%s: getMethods failed\n", program);
rc = 1;
goto tidy;
}
for(i = 0; methods[i]; i++)
;
count = i;
fprintf(stderr, "%s: Found %d API methods\n", program, count);
/* it seems to be sorted when returned but ensure it anyway */
qsort(methods, count, sizeof(char*), compare_strings);
for(i = 0; methods[i]; i++) {
fputs((const char*)methods[i], stdout);
fputc('\n', stdout);
}
tidy:
if(methods) {
for(i = 0; methods[i]; i++)
free(methods[i]);
free(methods);
methods = NULL;
}
if(fc)
flickcurl_free(fc);
flickcurl_finish();
return(rc);
}
|