2004-10-04 Lutz Mueller <lutz@users.sourceforge.net>
[platform/upstream/libexif.git] / libexif / exif-content.c
1 /* exif-content.c
2  *
3  * Copyright © 2001 Lutz Müller <lutz@users.sourceforge.net>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library 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 GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #include "config.h"
22 #include "exif-content.h"
23
24 #include <stdlib.h>
25 #include <stdio.h>
26 #include <string.h>
27
28 /* #define DEBUG */
29
30 static const unsigned char ExifHeader[] = {0x45, 0x78, 0x69, 0x66, 0x00, 0x00};
31
32 struct _ExifContentPrivate
33 {
34         unsigned int ref_count;
35
36         ExifMem *mem;
37 };
38
39 ExifContent *
40 exif_content_new (void)
41 {
42         ExifMem *mem = exif_mem_new_default ();
43         ExifContent *content = exif_content_new_mem (mem);
44
45         exif_mem_unref (mem);
46
47         return content;
48 }
49
50 ExifContent *
51 exif_content_new_mem (ExifMem *mem)
52 {
53         ExifContent *content;
54
55         if (!mem) return NULL;
56
57         content = exif_mem_alloc (mem, (ExifLong) sizeof (ExifContent));
58         if (!content)
59                 return NULL;
60         content->priv = exif_mem_alloc (mem,
61                                 (ExifLong) sizeof (ExifContentPrivate));
62         if (!content->priv) {
63                 exif_mem_free (mem, content);
64                 return NULL;
65         }
66
67         content->priv->ref_count = 1;
68
69         content->priv->mem = mem;
70         exif_mem_ref (mem);
71
72         return content;
73 }
74
75 void
76 exif_content_ref (ExifContent *content)
77 {
78         content->priv->ref_count++;
79 }
80
81 void
82 exif_content_unref (ExifContent *content)
83 {
84         content->priv->ref_count--;
85         if (!content->priv->ref_count)
86                 exif_content_free (content);
87 }
88
89 void
90 exif_content_free (ExifContent *content)
91 {
92         unsigned int i;
93
94         if (!content) return;
95
96         for (i = 0; i < content->count; i++)
97                 exif_entry_unref (content->entries[i]);
98         if (content->priv) {
99                 ExifMem *mem = content->priv->mem;
100                 exif_mem_free (mem, content->entries);
101                 exif_mem_free (mem, content->priv);
102                 exif_mem_free (mem, content);
103                 exif_mem_unref (mem);
104         }
105 }
106
107 void
108 exif_content_dump (ExifContent *content, unsigned int indent)
109 {
110         char buf[1024];
111         unsigned int i;
112
113         for (i = 0; i < 2 * indent; i++)
114                 buf[i] = ' ';
115         buf[i] = '\0';
116
117         if (!content)
118                 return;
119
120         printf ("%sDumping exif content (%i entries)...\n", buf,
121                 content->count);
122         for (i = 0; i < content->count; i++)
123                 exif_entry_dump (content->entries[i], indent + 1);
124 }
125
126 void
127 exif_content_add_entry (ExifContent *content, ExifEntry *entry)
128 {
129         if (!content || !content->priv || !entry || entry->parent) return;
130
131         entry->parent = content;
132         content->entries = exif_mem_realloc (content->priv->mem,
133                 content->entries, sizeof (ExifEntry) * (content->count + 1));
134         if (!content->entries) return;
135         content->entries[content->count] = entry;
136         exif_entry_ref (entry);
137         content->count++;
138 }
139
140 void
141 exif_content_remove_entry (ExifContent *c, ExifEntry *e)
142 {
143         unsigned int i;
144
145         if (!c || !c->priv || !e || (e->parent != c)) return;
146
147         /* Search the entry */
148         for (i = 0; i < c->count; i++) if (c->entries[i] == e) break;
149         if (i == c->count) return;
150
151         /* Remove the entry */
152         memmove (&c->entries[i], &c->entries[i + 1],
153                  sizeof (ExifEntry) * (c->count - i - 1));
154         c->count--;
155         e->parent = NULL;
156         exif_entry_unref (e);
157         c->entries = exif_mem_realloc (c->priv->mem, c->entries,
158                                         sizeof(ExifEntry) * c->count);
159 }
160
161 ExifEntry *
162 exif_content_get_entry (ExifContent *content, ExifTag tag)
163 {
164         unsigned int i;
165
166         if (!content)
167                 return (NULL);
168
169         for (i = 0; i < content->count; i++)
170                 if (content->entries[i]->tag == tag)
171                         return (content->entries[i]);
172         return (NULL);
173 }
174
175 void
176 exif_content_foreach_entry (ExifContent *content,
177                             ExifContentForeachEntryFunc func, void *data)
178 {
179         unsigned int i;
180
181         if (!content || !func)
182                 return;
183
184         for (i = 0; i < content->count; i++)
185                 func (content->entries[i], data);
186 }