FIX: examples/media.c: Check url != NULL
[libquvi.git] / examples / media.c
blob6c82d67cfa494f7291709a3e1752d9b52d855a0c
1 /* libquvi
2 * Copyright (C) 2012 Toni Gundogdu <legatvs@gmail.com>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA.
20 #include <locale.h>
21 #include <stdlib.h>
22 #include <glib.h>
23 #include <quvi.h>
24 #include <curl/curl.h>
26 static void usage()
28 g_printerr("Usage: media <URL>\n");
29 exit(0);
32 extern QuviError status(glong, gpointer);
33 extern void exit_if_error();
34 extern void cleanup();
36 typedef quvi_callback_status qcs;
38 extern quvi_media_t qm;
39 extern quvi_t q;
41 static void enable_verbose()
43 CURL *c;
45 quvi_get(q, QUVI_INFO_CURL_HANDLE, &c);
46 g_assert(c != NULL);
48 curl_easy_setopt(c, CURLOPT_VERBOSE, 1L);
51 gint main(gint argc, gchar **argv)
53 gchar *url = NULL;
54 gint i = 1;
56 g_assert(qm == NULL);
57 g_assert(q == NULL);
59 setlocale(LC_ALL, "");
61 if (argc < 2)
62 usage();
64 q = quvi_new();
65 exit_if_error();
67 for (; i<argc; ++i)
69 if (g_strcmp0("-v", argv[i]) == 0)
70 enable_verbose();
71 else
72 url = argv[i];
75 if (url == NULL)
76 usage();
78 quvi_set(q, QUVI_OPTION_CALLBACK_STATUS, (qcs) status);
80 qm = quvi_media_new(q, url);
81 exit_if_error();
83 gchar *s = NULL;
84 quvi_media_get(qm, QUVI_MEDIA_PROPERTY_TITLE, &s);
85 g_print("%s\n", s);
87 cleanup();
89 g_assert(qm == NULL);
90 g_assert(q == NULL);
92 return (0);
95 /* vim: set ts=2 sw=2 tw=72 expandtab: */