source: roaraudio/libroar/meta.c @ 2263:a4556a91e5f3

Last change on this file since 2263:a4556a91e5f3 was 2263:a4556a91e5f3, checked in by phi, 15 years ago

added meta type HASH for crypto hashes

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_AUTOR,              "AUTOR"          },
51 {ROAR_META_TYPE_ARTIST,             "ARTIST"         },
52 {ROAR_META_TYPE_VERSION,            "VERSION"        },
53 {ROAR_META_TYPE_DATE,               "DATE"           },
54 {ROAR_META_TYPE_LICENSE,            "LICENSE"        },
55 {ROAR_META_TYPE_TRACKNUMBER,        "TRACKNUMBER"    },
56 {ROAR_META_TYPE_ORGANIZATION,       "ORGANIZATION"   },
57 {ROAR_META_TYPE_DESCRIPTION,        "DESCRIPTION"    },
58 {ROAR_META_TYPE_GENRE,              "GENRE"          },
59 {ROAR_META_TYPE_LOCATION,           "LOCATION"       },
60 {ROAR_META_TYPE_CONTACT,            "CONTACT"        },
61 {ROAR_META_TYPE_STREAMURL,          "STREAMURL"      },
62 {ROAR_META_TYPE_HOMEPAGE,           "HOMEPAGE"       },
63 {ROAR_META_TYPE_THUMBNAIL,          "THUMBNAIL"      },
64 {ROAR_META_TYPE_LENGTH,             "LENGTH"         },
65 {ROAR_META_TYPE_COMMENT,            "COMMENT"        },
66 {ROAR_META_TYPE_OTHER,              "OTHER"          },
67 {ROAR_META_TYPE_FILENAME,           "FILENAME"       },
68 {ROAR_META_TYPE_FILEURL,            "FILEURL"        },
69 {ROAR_META_TYPE_SERVER,             "SERVER"         },
70 {ROAR_META_TYPE_DURATION,           "DURATION"       },
71 {ROAR_META_TYPE_WWW,                "WWW"            },
72 {ROAR_META_TYPE_WOAF,               "WOAF"           },
73 {ROAR_META_TYPE_ENCODER,            "ENCODER"        },
74 {ROAR_META_TYPE_ENCODEDBY,          "ENCODEDBY"      },
75 {ROAR_META_TYPE_YEAR,               "YEAR"           },
76 {ROAR_META_TYPE_DISCID,             "DISCID"         },
77 {ROAR_META_TYPE_RPG_TRACK_PEAK,     "REPLAYGAIN_TRACK_PEAK" },
78 {ROAR_META_TYPE_RPG_TRACK_GAIN,     "REPLAYGAIN_TRACK_GAIN" },
79 {ROAR_META_TYPE_RPG_ALBUM_PEAK,     "REPLAYGAIN_ALBUM_PEAK" },
80 {ROAR_META_TYPE_RPG_ALBUM_GAIN,     "REPLAYGAIN_ALBUM_GAIN" },
81 {ROAR_META_TYPE_HASH,               "HASH"           },
82 
83 {-1, "EOL"}
84};
85
86char * roar_meta_strtype(int type) {
87 int i;
88 static char name[ROAR_META_MAX_NAMELEN];
89
90 for (i = 0; _libroar_meta_typelist[i].id != -1; i++)
91  if ( _libroar_meta_typelist[i].id == type ) {
92   strncpy(name, _libroar_meta_typelist[i].name, ROAR_META_MAX_NAMELEN);
93   return name;
94  }
95
96 return NULL;
97}
98
99int    roar_meta_inttype(char * type) {
100 int i;
101
102 for (i = 0; _libroar_meta_typelist[i].id != -1; i++)
103  if ( strcasecmp(_libroar_meta_typelist[i].name, type) == 0 ) {
104   return _libroar_meta_typelist[i].id;
105  }
106
107 return -1;
108}
109
110int roar_stream_meta_set (struct roar_connection * con, struct roar_stream * s, int mode, struct roar_meta * meta) {
111 struct roar_message m;
112 int len;
113
114 memset(&m, 0, sizeof(struct roar_message)); // make valgrind happy!
115
116 m.cmd     = ROAR_CMD_SET_META;
117 m.stream  = s->id;
118// m.datalen = len;
119
120 if ( (mode == ROAR_META_MODE_FINALIZE || mode == ROAR_META_MODE_CLEAR) && meta->value == NULL )
121  meta->value = "";
122
123 if ( meta->value == NULL )
124   return -1;
125
126 m.data[0] = 0;
127 m.data[1] = mode;
128 m.data[2] = meta->type;
129
130 m.data[3] = strlen(meta->key);
131 m.data[4] = len = strlen(meta->value);
132
133 if ( len > 255 )
134  return -1;
135
136 m.datalen = (int) 5 + (int) m.data[3] + len;
137 if ( m.datalen > LIBROAR_BUFFER_MSGDATA )
138  return -1;
139
140 strncpy(&(m.data[5]), meta->key, ROAR_META_MAX_NAMELEN);
141 strncpy(&(m.data[5+m.data[3]]), meta->value, len);
142
143 ROAR_DBG("roar_stream_meta_set(*): meta value length is %i byte", len);
144 ROAR_DBG("roar_stream_meta_set(*): message data length is %i byte", m.datalen);
145
146 if ( roar_req(con, &m, NULL) == -1 )
147  return -1;
148
149 if ( m.cmd == ROAR_CMD_OK )
150  return 0;
151 return -1;
152}
153
154int roar_stream_meta_get (struct roar_connection * con, struct roar_stream * s, struct roar_meta * meta) {
155 struct roar_message m;
156 char * c;
157
158 m.cmd     = ROAR_CMD_GET_META;
159 m.stream  = s->id;
160// m.datalen = len;
161
162 m.data[0] = 0;
163 m.data[1] = meta->type;
164 m.datalen = 2;
165
166 if ( roar_req(con, &m, NULL) == -1 )
167  return -1;
168
169 if ( m.cmd != ROAR_CMD_OK )
170  return -1;
171
172 if ( m.datalen < 2 )
173  return -1;
174
175 if ( m.data[0] != 0 )
176  return -1;
177
178 if ( (c = malloc(((unsigned) m.data[1]) + 1)) == NULL )
179  return -1;
180
181 strncpy(c, &(m.data[2]), (unsigned) m.data[1]);
182 c[(unsigned) m.data[1]] = 0;
183
184 meta->value  = c;
185 meta->key[0] = 0;
186
187 return 0;
188}
189
190int roar_stream_meta_list (struct roar_connection * con, struct roar_stream * s, int * types, size_t len) {
191 int i;
192 struct roar_message m;
193
194 m.cmd     = ROAR_CMD_LIST_META;
195 m.stream  = s->id;
196
197 m.data[0] = 0;
198 m.datalen = 1;
199
200 if ( roar_req(con, &m, NULL) == -1 )
201  return -1;
202
203 if ( m.cmd != ROAR_CMD_OK )
204  return -1;
205
206 if ( m.datalen < 1 )
207  return -1;
208
209 if ( m.data[0] != 0 )
210  return -1;
211
212 if ( len < (m.datalen - 1 ) )
213  return -1;
214
215 for (i = 1; i < m.datalen; i++)
216  types[i-1] = (unsigned) m.data[i];
217
218 return m.datalen - 1;
219}
220
221int roar_meta_free (struct roar_meta * meta) {
222 if ( meta->value )
223  free(meta->value);
224
225 return 0;
226}
227
228//ll
Note: See TracBrowser for help on using the repository browser.