aboutsummaryrefslogtreecommitdiffstats
path: root/tag-reader.h
blob: 0086258eb16c3dd793efc9e9210b8d5660b1202e (plain)
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
/*
 * Copyright (C) 2006 OpenedHand Ltd.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Author: Jorn Baayen <jorn@openedhand.com>
 */

#ifndef __TAG_READER_H__
#define __TAG_READER_H__

#include <glib-object.h>
#include <gst/gsttaglist.h>

G_BEGIN_DECLS

typedef enum {
        TAG_READER_ERROR_UNKNOWN_TYPE
} TagReaderError;

GQuark tag_reader_error_quark (void);

#define TAG_READER_ERROR \
                (tag_reader_error_quark ())

#define TYPE_TAG_READER \
                (tag_reader_get_type ())
#define TAG_READER(obj) \
                (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
                 TYPE_TAG_READER, \
                 TagReader))
#define TAG_READER_CLASS(klass) \
                (G_TYPE_CHECK_CLASS_CAST ((klass), \
                 TYPE_TAG_READER, \
                 TagReaderClass))
#define IS_TAG_READER(obj) \
                (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
                 TYPE_TAG_READER))
#define IS_TAG_READER_CLASS(klass) \
                (G_TYPE_CHECK_CLASS_TYPE ((klass), \
                 TYPE_TAG_READER))
#define TAG_READER_GET_CLASS(obj) \
                (G_TYPE_INSTANCE_GET_CLASS ((obj), \
                 TYPE_TAG_READER, \
                 TagReaderClass))

typedef struct _TagReaderPrivate TagReaderPrivate;

typedef struct {
        GObject parent;

        TagReaderPrivate *priv;
} TagReader;

typedef struct {
        GObjectClass parent_class;

        /* Signals */
        void (* uri_scanned) (TagReader  *tag_reader,
                              const char *uri,
                              GError     *error,
                              GstTagList *tag_list);

        /* Future padding */
        void (* _reserved1) (void);
        void (* _reserved2) (void);
        void (* _reserved3) (void);
        void (* _reserved4) (void);
} TagReaderClass;

GType
tag_reader_get_type        (void) G_GNUC_CONST;

TagReader *
tag_reader_new             (void);

guint
tag_reader_scan_uri        (TagReader  *tag_reader,
                            const char *uri);

void
tag_reader_cancel_scan_uri (TagReader  *tag_reader,
                            guint       scan_id);

G_END_DECLS

#endif /* __TAG_READER_H__ */