eb2868be23f1ba333645f3e819c4812a93646677
[melted_gui] / src / opts.c
1 /*
2 * opts.c -- GTK+ 2 omnplay
3 * Copyright (C) 2011 Maksym Veremeyenko <verem@m1stereo.tv>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software Foundation,
17 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19 #ifdef HAVE_CONFIG_H
20 # include <config.h>
21 #endif
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <getopt.h>
27
28 #include <gtk/gtk.h>
29 #include <gdk/gdkkeysyms.h>
30
31 #include "opts.h"
32
33 static const char short_options [] = "h";
34 static const struct option long_options [] =
35 {
36 { "directory", required_argument, NULL, '0'},
37 { "player", required_argument, NULL, '1'},
38 { "library", required_argument, NULL, '2'},
39 { "whois", required_argument, NULL, '3'},
40 { "help", no_argument, NULL, 'h'},
41 { 0, 0, 0, 0}
42 };
43
44
45
46 int omnplay_opt(int argc, char** argv, omnplay_instance_t* app)
47 {
48 char* p;
49 int c, index = 0;
50
51 /* reset datas */
52 optind = 0; opterr = 0; optopt = 0;
53
54 /* program arguments processing */
55 while(1)
56 {
57 c = getopt_long (argc, argv, short_options, long_options, &index);
58
59 if((-1) == c) break;
60
61 switch(c)
62 {
63 case 0: break;
64
65 /** --direcotry */
66 case '0':
67 strncpy(app->players.path, optarg, PATH_MAX);
68 break;
69
70 /** --player */
71 case '1':
72 p = strchr(optarg, '@');
73 if(p)
74 {
75 *p = 0;
76 strncpy(app->players.item[app->players.count].name, optarg, PATH_MAX);
77 strncpy(app->players.item[app->players.count].host, p + 1, PATH_MAX);
78 app->players.item[app->players.count].idx = app->players.count;
79 app->players.item[app->players.count].app = app;
80 app->players.count++;
81 };
82 break;
83
84 /** --library */
85 case '2':
86 strncpy(app->library.filename, optarg, PATH_MAX);
87 break;
88
89 /** --whois */
90 case '3':
91 strncpy(app->library.whois, optarg, PATH_MAX);
92 break;
93
94 default:
95 fprintf(stderr, "ERROR: Incorrect argument!\n");
96 return 1;
97 break;
98 };
99 };
100
101 return 0;
102 };
103
104 void omnplay_usage(void)
105 {
106 fprintf
107 (
108 stderr,
109 "Usage:\n"
110 "\t--directory=<PATH> Directory to override default\n"
111 "\t--player=<STRING> Player to use in a form <player_name>@<mediadirector host>\n"
112 );
113 };