source: roaraudio/libroar/meta.c @ 2328:505a027b2cd5

Last change on this file since 2328:505a027b2cd5 was 2328:505a027b2cd5, checked in by phi, 15 years ago

typo in meta name, added aliases for old version with typo

File size: 6.5 KB
Line 
1//meta.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of libroar a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  libroar is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 *  NOTE for everyone want's to change something and send patches:
24 *  read README and HACKING! There a addition information on
25 *  the license of this document you need to read before you send
26 *  any patches.
27 *
28 *  NOTE for uses of non-GPL (LGPL,...) software using libesd, libartsc
29 *  or libpulse*:
30 *  The libs libroaresd, libroararts and libroarpulse link this lib
31 *  and are therefore GPL. Because of this it may be illigal to use
32 *  them with any software that uses libesd, libartsc or libpulse*.
33 */
34
35#include "libroar.h"
36
37/*
38
39grep ^'#define ROAR_META_TYPE_' meta.h | cut -d' ' -f2 | while read line; do printf ' {%-30s     "%-16s},\n' $line, $(echo $line | cut -d_ -f4)\"; done
40
41*/
42
43struct {
44 int    id;
45 char * name;
46} _libroar_meta_typelist[] = {
47 {ROAR_META_TYPE_NONE,               "NONE"           },
48 {ROAR_META_TYPE_TITLE,              "TITLE"          },
49 {ROAR_META_TYPE_ALBUM,              "ALBUM"          },
50 {ROAR_META_TYPE_AUTHOR,             "AUTHOR"         },
51 {ROAR_META_TYPE_AUTOR,              "AUTOR"          },
52 {ROAR_META_TYPE_ARTIST,             "ARTIST"         },
53 {ROAR_META_TYPE_VERSION,            "VERSION"        },
54 {ROAR_META_TYPE_DATE,               "DATE"           },
55 {ROAR_META_TYPE_LICENSE,            "LICENSE"        },
56 {ROAR_META_TYPE_TRACKNUMBER,        "TRACKNUMBER"    },
57 {ROAR_META_TYPE_ORGANIZATION,       "ORGANIZATION"   },
58 {ROAR_META_TYPE_DESCRIPTION,        "DESCRIPTION"    },
59 {ROAR_META_TYPE_GENRE,              "GENRE"          },
60 {ROAR_META_TYPE_LOCATION,           "LOCATION"       },
61 {ROAR_META_TYPE_CONTACT,            "CONTACT"        },
62 {ROAR_META_TYPE_STREAMURL,          "STREAMURL"      },
63 {ROAR_META_TYPE_HOMEPAGE,           "HOMEPAGE"       },
64 {ROAR_META_TYPE_THUMBNAIL,          "THUMBNAIL"      },
65 {ROAR_META_TYPE_LENGTH,             "LENGTH"         },
66 {ROAR_META_TYPE_COMMENT,            "COMMENT"        },
67 {ROAR_META_TYPE_OTHER,              "OTHER"          },
68 {ROAR_META_TYPE_FILENAME,           "FILENAME"       },
69 {ROAR_META_TYPE_FILEURL,            "FILEURL"        },
70 {ROAR_META_TYPE_SERVER,             "SERVER"         },
71 {ROAR_META_TYPE_DURATION,           "DURATION"       },
72 {ROAR_META_TYPE_WWW,                "WWW"            },
73 {ROAR_META_TYPE_WOAF,               "WOAF"           },
74 {ROAR_META_TYPE_ENCODER,            "ENCODER"        },
75 {ROAR_META_TYPE_ENCODEDBY,          "ENCODEDBY"      },
76 {ROAR_META_TYPE_YEAR,               "YEAR"           },
77 {ROAR_META_TYPE_DISCID,             "DISCID"         },
78 {ROAR_META_TYPE_RPG_TRACK_PEAK,     "REPLAYGAIN_TRACK_PEAK" },
79 {ROAR_META_TYPE_RPG_TRACK_GAIN,     "REPLAYGAIN_TRACK_GAIN" },
80 {ROAR_META_TYPE_RPG_ALBUM_PEAK,     "REPLAYGAIN_ALBUM_PEAK" },
81 {ROAR_META_TYPE_RPG_ALBUM_GAIN,     "REPLAYGAIN_ALBUM_GAIN" },
82 {ROAR_META_TYPE_HASH,               "HASH"           },
83 
84 {-1, "EOL"}
85};
86
87char * roar_meta_strtype(int type) {
88 int i;
89 static char name[ROAR_META_MAX_NAMELEN];
90
91 for (i = 0; _libroar_meta_typelist[i].id != -1; i++)
92  if ( _libroar_meta_typelist[i].id == type ) {
93   strncpy(name, _libroar_meta_typelist[i].name, ROAR_META_MAX_NAMELEN);
94   return name;
95  }
96
97 return NULL;
98}
99
100int    roar_meta_inttype(char * type) {
101 int i;
102
103 for (i = 0; _libroar_meta_typelist[i].id != -1; i++)
104  if ( strcasecmp(_libroar_meta_typelist[i].name, type) == 0 ) {
105   return _libroar_meta_typelist[i].id;
106  }
107
108 return -1;
109}
110
111int roar_stream_meta_set (struct roar_connection * con, struct roar_stream * s, int mode, struct roar_meta * meta) {
112 struct roar_message m;
113 int len;
114
115 memset(&m, 0, sizeof(struct roar_message)); // make valgrind happy!
116
117 m.cmd     = ROAR_CMD_SET_META;
118 m.stream  = s->id;
119// m.datalen = len;
120
121 if ( (mode == ROAR_META_MODE_FINALIZE || mode == ROAR_META_MODE_CLEAR) && meta->value == NULL )
122  meta->value = "";
123
124 if ( meta->value == NULL )
125   return -1;
126
127 m.data[0] = 0;
128 m.data[1] = mode;
129 m.data[2] = meta->type;
130
131 m.data[3] = strlen(meta->key);
132 m.data[4] = len = strlen(meta->value);
133
134 if ( len > 255 )
135  return -1;
136
137 m.datalen = (int) 5 + (int) m.data[3] + len;
138 if ( m.datalen > LIBROAR_BUFFER_MSGDATA )
139  return -1;
140
141 strncpy(&(m.data[5]), meta->key, ROAR_META_MAX_NAMELEN);
142 strncpy(&(m.data[5+m.data[3]]), meta->value, len);
143
144 ROAR_DBG("roar_stream_meta_set(*): meta value length is %i byte", len);
145 ROAR_DBG("roar_stream_meta_set(*): message data length is %i byte", m.datalen);
146
147 if ( roar_req(con, &m, NULL) == -1 )
148  return -1;
149
150 if ( m.cmd == ROAR_CMD_OK )
151  return 0;
152 return -1;
153}
154
155int roar_stream_meta_get (struct roar_connection * con, struct roar_stream * s, struct roar_meta * meta) {
156 struct roar_message m;
157 char * c;
158
159 m.cmd     = ROAR_CMD_GET_META;
160 m.stream  = s->id;
161// m.datalen = len;
162
163 m.data[0] = 0;
164 m.data[1] = meta->type;
165 m.datalen = 2;
166
167 if ( roar_req(con, &m, NULL) == -1 )
168  return -1;
169
170 if ( m.cmd != ROAR_CMD_OK )
171  return -1;
172
173 if ( m.datalen < 2 )
174  return -1;
175
176 if ( m.data[0] != 0 )
177  return -1;
178
179 if ( (c = malloc(((unsigned) m.data[1]) + 1)) == NULL )
180  return -1;
181
182 strncpy(c, &(m.data[2]), (unsigned) m.data[1]);
183 c[(unsigned) m.data[1]] = 0;
184
185 meta->value  = c;
186 meta->key[0] = 0;
187
188 return 0;
189}
190
191int roar_stream_meta_list (struct roar_connection * con, struct roar_stream * s, int * types, size_t len) {
192 int i;
193 struct roar_message m;
194
195 m.cmd     = ROAR_CMD_LIST_META;
196 m.stream  = s->id;
197
198 m.data[0] = 0;
199 m.datalen = 1;
200
201 if ( roar_req(con, &m, NULL) == -1 )
202  return -1;
203
204 if ( m.cmd != ROAR_CMD_OK )
205  return -1;
206
207 if ( m.datalen < 1 )
208  return -1;
209
210 if ( m.data[0] != 0 )
211  return -1;
212
213 if ( len < (m.datalen - 1 ) )
214  return -1;
215
216 for (i = 1; i < m.datalen; i++)
217  types[i-1] = (unsigned) m.data[i];
218
219 return m.datalen - 1;
220}
221
222int roar_meta_free (struct roar_meta * meta) {
223 if ( meta->value )
224  free(meta->value);
225
226 return 0;
227}
228
229//ll
Note: See TracBrowser for help on using the repository browser.