blob: 2839d3b4102f231cb098de72ce9251294cc5f790 [file] [log] [blame]
Josh Coalsonfda98fb2002-05-17 06:33:39 +00001/* libFLAC++ - Free Lossless Audio Codec library
Josh Coalson95643902004-01-17 04:14:43 +00002 * Copyright (C) 2002,2003,2004 Josh Coalson
Josh Coalsonfda98fb2002-05-17 06:33:39 +00003 *
Josh Coalsonafd81072003-01-31 23:34:56 +00004 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
Josh Coalsonfda98fb2002-05-17 06:33:39 +00007 *
Josh Coalsonafd81072003-01-31 23:34:56 +00008 * - Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
Josh Coalsonfda98fb2002-05-17 06:33:39 +000010 *
Josh Coalsonafd81072003-01-31 23:34:56 +000011 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * - Neither the name of the Xiph.org Foundation nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Josh Coalsonfda98fb2002-05-17 06:33:39 +000030 */
31
32#ifndef FLACPP__METADATA_H
33#define FLACPP__METADATA_H
34
Josh Coalson55bc5872002-10-16 22:18:32 +000035#include "export.h"
36
Josh Coalsonfda98fb2002-05-17 06:33:39 +000037#include "FLAC/metadata.h"
38
Josh Coalsonfb74f102002-05-22 05:33:29 +000039// ===============================================================
40//
41// Full documentation for the metadata interface can be found
42// in the C layer in include/FLAC/metadata.h
43//
44// ===============================================================
45
Josh Coalsonf6efd9c2002-07-27 04:59:54 +000046/** \file include/FLAC++/metadata.h
47 *
48 * \brief
49 * This module provides classes for creating and manipulating FLAC
50 * metadata blocks in memory, and three progressively more powerful
51 * interfaces for traversing and editing metadata in FLAC files.
52 *
53 * See the detailed documentation for each interface in the
54 * \link flacpp_metadata metadata \endlink module.
55 */
56
57/** \defgroup flacpp_metadata FLAC++/metadata.h: metadata interfaces
58 * \ingroup flacpp
59 *
60 * \brief
61 * This module provides classes for creating and manipulating FLAC
62 * metadata blocks in memory, and three progressively more powerful
63 * interfaces for traversing and editing metadata in FLAC files.
64 *
65 * The behavior closely mimics the C layer interface; be sure to read
66 * the detailed description of the
67 * \link flac_metadata C metadata module \endlink.
68 */
69
Josh Coalsonfb74f102002-05-22 05:33:29 +000070
Josh Coalsonfda98fb2002-05-17 06:33:39 +000071namespace FLAC {
72 namespace Metadata {
73
Josh Coalsonfb74f102002-05-22 05:33:29 +000074 // ============================================================
75 //
76 // Metadata objects
77 //
78 // ============================================================
79
Josh Coalsonf6efd9c2002-07-27 04:59:54 +000080 /** \defgroup flacpp_metadata_object FLAC++/metadata.h: metadata object classes
81 * \ingroup flacpp_metadata
82 *
83 * This module contains classes representing FLAC metadata
84 * blocks in memory.
85 *
86 * The behavior closely mimics the C layer interface; be
87 * sure to read the detailed description of the
88 * \link flac_metadata_object C metadata object module \endlink.
89 *
90 * Any time a metadata object is constructed or assigned, you
91 * should check is_valid() to make sure the underlying
92 * ::FLAC__StreamMetadata object was able to be created.
93 *
94 * \warning
95 * When the get_*() methods of any metadata object method
96 * return you a const pointer, DO NOT disobey and write into it.
97 * Always use the set_*() methods.
98 *
99 * \{
100 */
Josh Coalsoncc682512002-06-08 04:53:42 +0000101
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000102 /** Base class for all metadata block types.
103 */
Josh Coalson55bc5872002-10-16 22:18:32 +0000104 class FLACPP_API Prototype {
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000105 protected:
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000106 //@{
107 /** Constructs a copy of the given object. This form
108 * always performs a deep copy.
109 */
110 Prototype(const Prototype &);
111 Prototype(const ::FLAC__StreamMetadata &);
112 Prototype(const ::FLAC__StreamMetadata *);
113 //@}
Josh Coalson83961752002-07-09 06:12:59 +0000114
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000115 /** Constructs an object with copy control. When \a copy
116 * is \c true, behaves identically to
117 * FLAC::Metadata::Prototype::Prototype(const ::FLAC__StreamMetadata *object).
118 * When \a copy is \c false, the instance takes ownership of
119 * the pointer and the ::FLAC__StreamMetadata object will
120 * be freed by the destructor.
121 *
122 * \assert
123 * \code object != NULL \endcode
124 */
Josh Coalson83961752002-07-09 06:12:59 +0000125 Prototype(::FLAC__StreamMetadata *object, bool copy);
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000126
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000127 //@{
128 /** Assign from another object. Always performs a deep copy. */
Josh Coalsonfb74f102002-05-22 05:33:29 +0000129 void operator=(const Prototype &);
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000130 void operator=(const ::FLAC__StreamMetadata &);
131 void operator=(const ::FLAC__StreamMetadata *);
132 //@}
Josh Coalson57ba6f42002-06-07 05:27:37 +0000133
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000134 /** Deletes the underlying ::FLAC__StreamMetadata object.
135 */
Josh Coalsonfb74f102002-05-22 05:33:29 +0000136 virtual void clear();
137
Josh Coalsoncc682512002-06-08 04:53:42 +0000138 ::FLAC__StreamMetadata *object_;
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000139 public:
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000140 /** Deletes the underlying ::FLAC__StreamMetadata object.
141 */
Josh Coalson57ba6f42002-06-07 05:27:37 +0000142 virtual ~Prototype();
143
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000144 //@{
145 /** Check for equality, performing a deep compare by following pointers. */
Josh Coalsoncc682512002-06-08 04:53:42 +0000146 inline bool operator==(const Prototype &) const;
147 inline bool operator==(const ::FLAC__StreamMetadata &) const;
148 inline bool operator==(const ::FLAC__StreamMetadata *) const;
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000149 //@}
150
151 //@{
152 /** Check for inequality, performing a deep compare by following pointers. */
Josh Coalsoncc682512002-06-08 04:53:42 +0000153 inline bool operator!=(const Prototype &) const;
154 inline bool operator!=(const ::FLAC__StreamMetadata &) const;
155 inline bool operator!=(const ::FLAC__StreamMetadata *) const;
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000156 //@}
Josh Coalsoncc682512002-06-08 04:53:42 +0000157
Josh Coalsonfb74f102002-05-22 05:33:29 +0000158 friend class SimpleIterator;
159 friend class Iterator;
160
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000161 /** Returns \c true if the object was correctly constructed
162 * (i.e. the underlying ::FLAC__StreamMetadata object was
163 * properly allocated), else \c false.
164 */
Josh Coalson57ba6f42002-06-07 05:27:37 +0000165 inline bool is_valid() const;
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000166
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000167 /** Returns \c true if this block is the last block in a
168 * stream, else \c false.
169 *
170 * \assert
171 * \code is_valid() \endcode
172 */
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000173 bool get_is_last() const;
Josh Coalsoncc682512002-06-08 04:53:42 +0000174
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000175 /** Returns the type of the block.
176 *
177 * \assert
178 * \code is_valid() \endcode
179 */
180 ::FLAC__MetadataType get_type() const;
181
182 /** Returns the stream length of the metadata block.
183 *
184 * \note
185 * The length does not include the metadata block header,
186 * per spec.
187 *
188 * \assert
189 * \code is_valid() \endcode
190 */
191 unsigned get_length() const;
192
193 /** Sets the "is_last" flag for the block. When using the iterators
194 * it is not necessary to set this flag; they will do it for you.
195 *
196 * \assert
197 * \code is_valid() \endcode
198 */
Josh Coalsoncc682512002-06-08 04:53:42 +0000199 void set_is_last(bool);
Josh Coalsond113ca32004-07-22 01:03:43 +0000200
201 /** Returns a pointer to the underlying ::FLAC__StreamMetadata
202 * object. This can be useful for plugging any holes between
203 * the C++ and C interfaces.
204 *
205 * \assert
206 * \code is_valid() \endcode
207 */
208 inline operator const ::FLAC__StreamMetadata *() const;
Josh Coalsonfb74f102002-05-22 05:33:29 +0000209 private:
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000210 /** Private and undefined so you can't use it. */
211 Prototype();
Josh Coalsonfb74f102002-05-22 05:33:29 +0000212
213 // These are used only by Iterator
214 bool is_reference_;
215 inline void set_reference(bool x) { is_reference_ = x; }
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000216 };
217
Josh Coalson3cb83412004-07-23 05:11:06 +0000218#ifdef _MSC_VER
219// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
220#pragma warning ( disable : 4800 )
221#endif
222
Josh Coalson765ff502002-08-27 05:46:11 +0000223 inline bool Prototype::operator==(const Prototype &object) const
Josh Coalsond57c8d32002-06-11 06:15:28 +0000224 { return (bool)::FLAC__metadata_object_is_equal(object_, object.object_); }
Josh Coalson57ba6f42002-06-07 05:27:37 +0000225
Josh Coalson765ff502002-08-27 05:46:11 +0000226 inline bool Prototype::operator==(const ::FLAC__StreamMetadata &object) const
Josh Coalsond57c8d32002-06-11 06:15:28 +0000227 { return (bool)::FLAC__metadata_object_is_equal(object_, &object); }
Josh Coalson57ba6f42002-06-07 05:27:37 +0000228
Josh Coalson765ff502002-08-27 05:46:11 +0000229 inline bool Prototype::operator==(const ::FLAC__StreamMetadata *object) const
Josh Coalsond57c8d32002-06-11 06:15:28 +0000230 { return (bool)::FLAC__metadata_object_is_equal(object_, object); }
Josh Coalson57ba6f42002-06-07 05:27:37 +0000231
Josh Coalson3cb83412004-07-23 05:11:06 +0000232#ifdef _MSC_VER
233// @@@ how to re-enable? the following doesn't work
234// #pragma warning ( enable : 4800 )
235#endif
236
Josh Coalson765ff502002-08-27 05:46:11 +0000237 inline bool Prototype::operator!=(const Prototype &object) const
Josh Coalson57ba6f42002-06-07 05:27:37 +0000238 { return !operator==(object); }
239
Josh Coalson765ff502002-08-27 05:46:11 +0000240 inline bool Prototype::operator!=(const ::FLAC__StreamMetadata &object) const
Josh Coalson57ba6f42002-06-07 05:27:37 +0000241 { return !operator==(object); }
242
Josh Coalson765ff502002-08-27 05:46:11 +0000243 inline bool Prototype::operator!=(const ::FLAC__StreamMetadata *object) const
Josh Coalson57ba6f42002-06-07 05:27:37 +0000244 { return !operator==(object); }
245
246 inline bool Prototype::is_valid() const
247 { return 0 != object_; }
248
Josh Coalsond113ca32004-07-22 01:03:43 +0000249 inline Prototype::operator const ::FLAC__StreamMetadata *() const
250 { return object_; }
251
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000252 /** Create a deep copy of an object and return it. */
Josh Coalson55bc5872002-10-16 22:18:32 +0000253 FLACPP_API Prototype *clone(const Prototype *);
Josh Coalson57ba6f42002-06-07 05:27:37 +0000254
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000255
256 /** STREAMINFO metadata block.
Josh Coalson4dc35072002-08-20 03:56:52 +0000257 * See <A HREF="../format.html#metadata_block_streaminfo">format specification</A>.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000258 */
Josh Coalson55bc5872002-10-16 22:18:32 +0000259 class FLACPP_API StreamInfo : public Prototype {
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000260 public:
261 StreamInfo();
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000262
263 //@{
264 /** Constructs a copy of the given object. This form
265 * always performs a deep copy.
266 */
Josh Coalsoncc682512002-06-08 04:53:42 +0000267 inline StreamInfo(const StreamInfo &object): Prototype(object) { }
268 inline StreamInfo(const ::FLAC__StreamMetadata &object): Prototype(object) { }
269 inline StreamInfo(const ::FLAC__StreamMetadata *object): Prototype(object) { }
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000270 //@}
271
272 /** Constructs an object with copy control. See
273 * Prototype(::FLAC__StreamMetadata *object, bool copy).
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000274 */
Josh Coalsoncc682512002-06-08 04:53:42 +0000275 inline StreamInfo(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000276
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000277 ~StreamInfo();
278
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000279 //@{
280 /** Assign from another object. Always performs a deep copy. */
Josh Coalsonfb74f102002-05-22 05:33:29 +0000281 inline void operator=(const StreamInfo &object) { Prototype::operator=(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000282 inline void operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); }
283 inline void operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); }
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000284 //@}
Josh Coalsonfb74f102002-05-22 05:33:29 +0000285
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000286 //@{
287 /** Check for equality, performing a deep compare by following pointers. */
Josh Coalson57ba6f42002-06-07 05:27:37 +0000288 inline bool operator==(const StreamInfo &object) const { return Prototype::operator==(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000289 inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
290 inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000291 //@}
292
293 //@{
294 /** Check for inequality, performing a deep compare by following pointers. */
Josh Coalson57ba6f42002-06-07 05:27:37 +0000295 inline bool operator!=(const StreamInfo &object) const { return Prototype::operator!=(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000296 inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
297 inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000298 //@}
Josh Coalson57ba6f42002-06-07 05:27:37 +0000299
Josh Coalson4dc35072002-08-20 03:56:52 +0000300 //@{
301 /** See <A HREF="../format.html#metadata_block_streaminfo">format specification</A>. */
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000302 unsigned get_min_blocksize() const;
303 unsigned get_max_blocksize() const;
304 unsigned get_min_framesize() const;
305 unsigned get_max_framesize() const;
306 unsigned get_sample_rate() const;
307 unsigned get_channels() const;
308 unsigned get_bits_per_sample() const;
309 FLAC__uint64 get_total_samples() const;
310 const FLAC__byte *get_md5sum() const;
311
312 void set_min_blocksize(unsigned value);
313 void set_max_blocksize(unsigned value);
314 void set_min_framesize(unsigned value);
315 void set_max_framesize(unsigned value);
316 void set_sample_rate(unsigned value);
317 void set_channels(unsigned value);
318 void set_bits_per_sample(unsigned value);
319 void set_total_samples(FLAC__uint64 value);
320 void set_md5sum(const FLAC__byte value[16]);
Josh Coalson4dc35072002-08-20 03:56:52 +0000321 //@}
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000322 };
323
Josh Coalson4dc35072002-08-20 03:56:52 +0000324 /** PADDING metadata block.
325 * See <A HREF="../format.html#metadata_block_padding">format specification</A>.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000326 */
Josh Coalson55bc5872002-10-16 22:18:32 +0000327 class FLACPP_API Padding : public Prototype {
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000328 public:
329 Padding();
Josh Coalson4dc35072002-08-20 03:56:52 +0000330
331 //@{
332 /** Constructs a copy of the given object. This form
333 * always performs a deep copy.
334 */
Josh Coalsoncc682512002-06-08 04:53:42 +0000335 inline Padding(const Padding &object): Prototype(object) { }
336 inline Padding(const ::FLAC__StreamMetadata &object): Prototype(object) { }
337 inline Padding(const ::FLAC__StreamMetadata *object): Prototype(object) { }
Josh Coalson4dc35072002-08-20 03:56:52 +0000338 //@}
339
340 /** Constructs an object with copy control. See
341 * Prototype(::FLAC__StreamMetadata *object, bool copy).
342 */
Josh Coalsoncc682512002-06-08 04:53:42 +0000343 inline Padding(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
Josh Coalson4dc35072002-08-20 03:56:52 +0000344
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000345 ~Padding();
Josh Coalsonfb74f102002-05-22 05:33:29 +0000346
Josh Coalson4dc35072002-08-20 03:56:52 +0000347 //@{
348 /** Assign from another object. Always performs a deep copy. */
Josh Coalsonfb74f102002-05-22 05:33:29 +0000349 inline void operator=(const Padding &object) { Prototype::operator=(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000350 inline void operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); }
351 inline void operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); }
Josh Coalson4dc35072002-08-20 03:56:52 +0000352 //@}
Josh Coalsonb2b53582002-05-31 06:20:50 +0000353
Josh Coalson4dc35072002-08-20 03:56:52 +0000354 //@{
355 /** Check for equality, performing a deep compare by following pointers. */
Josh Coalson57ba6f42002-06-07 05:27:37 +0000356 inline bool operator==(const Padding &object) const { return Prototype::operator==(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000357 inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
358 inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
Josh Coalson4dc35072002-08-20 03:56:52 +0000359 //@}
360
361 //@{
362 /** Check for inequality, performing a deep compare by following pointers. */
Josh Coalson57ba6f42002-06-07 05:27:37 +0000363 inline bool operator!=(const Padding &object) const { return Prototype::operator!=(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000364 inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
365 inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
Josh Coalson4dc35072002-08-20 03:56:52 +0000366 //@}
Josh Coalson57ba6f42002-06-07 05:27:37 +0000367
Josh Coalsonb2b53582002-05-31 06:20:50 +0000368 void set_length(unsigned length);
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000369 };
370
Josh Coalson4dc35072002-08-20 03:56:52 +0000371 /** APPLICATION metadata block.
372 * See <A HREF="../format.html#metadata_block_application">format specification</A>.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000373 */
Josh Coalson55bc5872002-10-16 22:18:32 +0000374 class FLACPP_API Application : public Prototype {
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000375 public:
376 Application();
Josh Coalson4dc35072002-08-20 03:56:52 +0000377 //
378 //@{
379 /** Constructs a copy of the given object. This form
380 * always performs a deep copy.
381 */
Josh Coalsoncc682512002-06-08 04:53:42 +0000382 inline Application(const Application &object): Prototype(object) { }
383 inline Application(const ::FLAC__StreamMetadata &object): Prototype(object) { }
384 inline Application(const ::FLAC__StreamMetadata *object): Prototype(object) { }
Josh Coalson4dc35072002-08-20 03:56:52 +0000385 //@}
386
387 /** Constructs an object with copy control. See
388 * Prototype(::FLAC__StreamMetadata *object, bool copy).
389 */
Josh Coalsoncc682512002-06-08 04:53:42 +0000390 inline Application(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
Josh Coalson4dc35072002-08-20 03:56:52 +0000391
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000392 ~Application();
393
Josh Coalson4dc35072002-08-20 03:56:52 +0000394 //@{
395 /** Assign from another object. Always performs a deep copy. */
Josh Coalsonfb74f102002-05-22 05:33:29 +0000396 inline void operator=(const Application &object) { Prototype::operator=(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000397 inline void operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); }
398 inline void operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); }
Josh Coalson4dc35072002-08-20 03:56:52 +0000399 //@}
Josh Coalsonfb74f102002-05-22 05:33:29 +0000400
Josh Coalson4dc35072002-08-20 03:56:52 +0000401 //@{
402 /** Check for equality, performing a deep compare by following pointers. */
Josh Coalson57ba6f42002-06-07 05:27:37 +0000403 inline bool operator==(const Application &object) const { return Prototype::operator==(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000404 inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
405 inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
Josh Coalson4dc35072002-08-20 03:56:52 +0000406 //@}
407
408 //@{
409 /** Check for inequality, performing a deep compare by following pointers. */
Josh Coalson57ba6f42002-06-07 05:27:37 +0000410 inline bool operator!=(const Application &object) const { return Prototype::operator!=(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000411 inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
412 inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
Josh Coalson4dc35072002-08-20 03:56:52 +0000413 //@}
Josh Coalson57ba6f42002-06-07 05:27:37 +0000414
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000415 const FLAC__byte *get_id() const;
416 const FLAC__byte *get_data() const;
417
Josh Coalsoncc682512002-06-08 04:53:42 +0000418 void set_id(const FLAC__byte value[4]);
Josh Coalson4dc35072002-08-20 03:56:52 +0000419 //! This form always copies \a data
420 bool set_data(const FLAC__byte *data, unsigned length);
Josh Coalsoncc682512002-06-08 04:53:42 +0000421 bool set_data(FLAC__byte *data, unsigned length, bool copy);
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000422 };
423
Josh Coalson4dc35072002-08-20 03:56:52 +0000424 /** SEEKTABLE metadata block.
425 * See <A HREF="../format.html#metadata_block_seektable">format specification</A>.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000426 */
Josh Coalson55bc5872002-10-16 22:18:32 +0000427 class FLACPP_API SeekTable : public Prototype {
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000428 public:
429 SeekTable();
Josh Coalson4dc35072002-08-20 03:56:52 +0000430
431 //@{
432 /** Constructs a copy of the given object. This form
433 * always performs a deep copy.
434 */
Josh Coalsoncc682512002-06-08 04:53:42 +0000435 inline SeekTable(const SeekTable &object): Prototype(object) { }
436 inline SeekTable(const ::FLAC__StreamMetadata &object): Prototype(object) { }
437 inline SeekTable(const ::FLAC__StreamMetadata *object): Prototype(object) { }
Josh Coalson4dc35072002-08-20 03:56:52 +0000438 //@}
439
440 /** Constructs an object with copy control. See
441 * Prototype(::FLAC__StreamMetadata *object, bool copy).
442 */
Josh Coalsoncc682512002-06-08 04:53:42 +0000443 inline SeekTable(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
Josh Coalson4dc35072002-08-20 03:56:52 +0000444
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000445 ~SeekTable();
Josh Coalsonfb74f102002-05-22 05:33:29 +0000446
Josh Coalson4dc35072002-08-20 03:56:52 +0000447 //@{
448 /** Assign from another object. Always performs a deep copy. */
Josh Coalsonfb74f102002-05-22 05:33:29 +0000449 inline void operator=(const SeekTable &object) { Prototype::operator=(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000450 inline void operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); }
451 inline void operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); }
Josh Coalson4dc35072002-08-20 03:56:52 +0000452 //@}
Josh Coalsonb2b53582002-05-31 06:20:50 +0000453
Josh Coalson4dc35072002-08-20 03:56:52 +0000454 //@{
455 /** Check for equality, performing a deep compare by following pointers. */
Josh Coalson57ba6f42002-06-07 05:27:37 +0000456 inline bool operator==(const SeekTable &object) const { return Prototype::operator==(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000457 inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
458 inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
Josh Coalson4dc35072002-08-20 03:56:52 +0000459 //@}
460
461 //@{
462 /** Check for inequality, performing a deep compare by following pointers. */
Josh Coalson57ba6f42002-06-07 05:27:37 +0000463 inline bool operator!=(const SeekTable &object) const { return Prototype::operator!=(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000464 inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
465 inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
Josh Coalson4dc35072002-08-20 03:56:52 +0000466 //@}
Josh Coalson57ba6f42002-06-07 05:27:37 +0000467
Josh Coalsonb2b53582002-05-31 06:20:50 +0000468 unsigned get_num_points() const;
Josh Coalsoncc682512002-06-08 04:53:42 +0000469 ::FLAC__StreamMetadata_SeekPoint get_point(unsigned index) const;
Josh Coalsonb2b53582002-05-31 06:20:50 +0000470
Josh Coalson4dc35072002-08-20 03:56:52 +0000471 //! See FLAC__metadata_object_seektable_set_point()
Josh Coalsoncc682512002-06-08 04:53:42 +0000472 void set_point(unsigned index, const ::FLAC__StreamMetadata_SeekPoint &point);
Josh Coalson4dc35072002-08-20 03:56:52 +0000473
474 //! See FLAC__metadata_object_seektable_insert_point()
Josh Coalsoncc682512002-06-08 04:53:42 +0000475 bool insert_point(unsigned index, const ::FLAC__StreamMetadata_SeekPoint &point);
Josh Coalson4dc35072002-08-20 03:56:52 +0000476
477 //! See FLAC__metadata_object_seektable_delete_point()
Josh Coalsonb2b53582002-05-31 06:20:50 +0000478 bool delete_point(unsigned index);
Josh Coalson28e08d82002-06-05 05:56:41 +0000479
Josh Coalson4dc35072002-08-20 03:56:52 +0000480 //! See FLAC__metadata_object_seektable_is_legal()
Josh Coalson28e08d82002-06-05 05:56:41 +0000481 bool is_legal() const;
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000482 };
483
Josh Coalson4dc35072002-08-20 03:56:52 +0000484 /** VORBIS_COMMENT metadata block.
485 * See <A HREF="../format.html#metadata_block_vorbis_comment">format specification</A>.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000486 */
Josh Coalson55bc5872002-10-16 22:18:32 +0000487 class FLACPP_API VorbisComment : public Prototype {
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000488 public:
Josh Coalson4dc35072002-08-20 03:56:52 +0000489 /** Convenience class for encapsulating Vorbis comment
490 * entries. An entry is a vendor string or a comment
491 * field. In the case of a vendor string, the field
492 * name is undefined; only the field value is relevant.
493 *
494 * A \a field as used in the methods refers to an
495 * entire 'NAME=VALUE' string; the string is not null-
496 * terminated and a length field is required since the
497 * string may contain embedded nulls.
498 *
499 * A \a field_name is what is on the left side of the
500 * first '=' in the \a field. By definition it is ASCII
501 * and so is null-terminated and does not require a
502 * length to describe it. \a field_name is undefined
503 * for a vendor string entry.
504 *
505 * A \a field_value is what is on the right side of the
506 * first '=' in the \a field. By definition, this may
507 * contain embedded nulls and so a \a field_value_length
508 * is requires to describe it.
509 *
510 * Always check is_valid() after the constructor or operator=
511 * to make sure memory was properly allocated.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000512 */
Josh Coalson55bc5872002-10-16 22:18:32 +0000513 class FLACPP_API Entry {
Josh Coalsonb2b53582002-05-31 06:20:50 +0000514 public:
515 Entry();
516 Entry(const char *field, unsigned field_length);
517 Entry(const char *field_name, const char *field_value, unsigned field_value_length);
518 Entry(const Entry &entry);
519 void operator=(const Entry &entry);
520
521 virtual ~Entry();
522
523 virtual bool is_valid() const;
Josh Coalsonb2b53582002-05-31 06:20:50 +0000524
525 unsigned get_field_length() const;
526 unsigned get_field_name_length() const;
527 unsigned get_field_value_length() const;
528
Josh Coalsoncc682512002-06-08 04:53:42 +0000529 ::FLAC__StreamMetadata_VorbisComment_Entry get_entry() const;
Josh Coalsonb2b53582002-05-31 06:20:50 +0000530 const char *get_field() const;
531 const char *get_field_name() const;
532 const char *get_field_value() const;
533
534 bool set_field(const char *field, unsigned field_length);
535 bool set_field_name(const char *field_name);
536 bool set_field_value(const char *field_value, unsigned field_value_length);
537 protected:
538 bool is_valid_;
Josh Coalsoncc682512002-06-08 04:53:42 +0000539 ::FLAC__StreamMetadata_VorbisComment_Entry entry_;
Josh Coalsonb2b53582002-05-31 06:20:50 +0000540 char *field_name_;
541 unsigned field_name_length_;
542 char *field_value_;
543 unsigned field_value_length_;
544 private:
545 void zero();
546 void clear();
547 void clear_entry();
548 void clear_field_name();
549 void clear_field_value();
550 void construct(const char *field, unsigned field_length);
551 void construct(const char *field_name, const char *field_value, unsigned field_value_length);
552 void compose_field();
553 void parse_field();
554 };
555
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000556 VorbisComment();
Josh Coalson4dc35072002-08-20 03:56:52 +0000557
558 //@{
559 /** Constructs a copy of the given object. This form
560 * always performs a deep copy.
561 */
Josh Coalsoncc682512002-06-08 04:53:42 +0000562 inline VorbisComment(const VorbisComment &object): Prototype(object) { }
563 inline VorbisComment(const ::FLAC__StreamMetadata &object): Prototype(object) { }
564 inline VorbisComment(const ::FLAC__StreamMetadata *object): Prototype(object) { }
Josh Coalson4dc35072002-08-20 03:56:52 +0000565 //@}
566
567 /** Constructs an object with copy control. See
568 * Prototype(::FLAC__StreamMetadata *object, bool copy).
569 */
Josh Coalsoncc682512002-06-08 04:53:42 +0000570 inline VorbisComment(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
Josh Coalson4dc35072002-08-20 03:56:52 +0000571
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000572 ~VorbisComment();
Josh Coalsonfb74f102002-05-22 05:33:29 +0000573
Josh Coalson4dc35072002-08-20 03:56:52 +0000574 //@{
575 /** Assign from another object. Always performs a deep copy. */
Josh Coalsonfb74f102002-05-22 05:33:29 +0000576 inline void operator=(const VorbisComment &object) { Prototype::operator=(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000577 inline void operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); }
578 inline void operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); }
Josh Coalson4dc35072002-08-20 03:56:52 +0000579 //@}
Josh Coalsonb2b53582002-05-31 06:20:50 +0000580
Josh Coalson4dc35072002-08-20 03:56:52 +0000581 //@{
582 /** Check for equality, performing a deep compare by following pointers. */
Josh Coalson57ba6f42002-06-07 05:27:37 +0000583 inline bool operator==(const VorbisComment &object) const { return Prototype::operator==(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000584 inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
585 inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
Josh Coalson4dc35072002-08-20 03:56:52 +0000586 //@}
587
588 //@{
589 /** Check for inequality, performing a deep compare by following pointers. */
Josh Coalson57ba6f42002-06-07 05:27:37 +0000590 inline bool operator!=(const VorbisComment &object) const { return Prototype::operator!=(object); }
Josh Coalsoncc682512002-06-08 04:53:42 +0000591 inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
592 inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
Josh Coalson4dc35072002-08-20 03:56:52 +0000593 //@}
Josh Coalson57ba6f42002-06-07 05:27:37 +0000594
Josh Coalsonb2b53582002-05-31 06:20:50 +0000595 unsigned get_num_comments() const;
Josh Coalsoncc682512002-06-08 04:53:42 +0000596 Entry get_vendor_string() const; // only the Entry's field name should be used
Josh Coalsonb2b53582002-05-31 06:20:50 +0000597 Entry get_comment(unsigned index) const;
598
Josh Coalson87977ba2002-08-20 07:09:33 +0000599 //! See FLAC__metadata_object_vorbiscomment_set_vendor_string()
Josh Coalson4dc35072002-08-20 03:56:52 +0000600 //! \note Only the Entry's field name will be used.
Josh Coalson863dbf32002-11-16 06:30:30 +0000601 bool set_vendor_string(const Entry &entry);
Josh Coalson4dc35072002-08-20 03:56:52 +0000602
Josh Coalson87977ba2002-08-20 07:09:33 +0000603 //! See FLAC__metadata_object_vorbiscomment_set_comment()
Josh Coalsonb2b53582002-05-31 06:20:50 +0000604 bool set_comment(unsigned index, const Entry &entry);
Josh Coalson4dc35072002-08-20 03:56:52 +0000605
Josh Coalson87977ba2002-08-20 07:09:33 +0000606 //! See FLAC__metadata_object_vorbiscomment_insert_comment()
Josh Coalsonb2b53582002-05-31 06:20:50 +0000607 bool insert_comment(unsigned index, const Entry &entry);
Josh Coalson4dc35072002-08-20 03:56:52 +0000608
Josh Coalson87977ba2002-08-20 07:09:33 +0000609 //! See FLAC__metadata_object_vorbiscomment_delete_comment()
Josh Coalsonb2b53582002-05-31 06:20:50 +0000610 bool delete_comment(unsigned index);
Josh Coalsonfb74f102002-05-22 05:33:29 +0000611 };
612
Josh Coalson863dbf32002-11-16 06:30:30 +0000613 /** CUESHEET metadata block.
614 * See <A HREF="../format.html#metadata_block_cuesheet">format specification</A>.
615 */
616 class FLACPP_API CueSheet : public Prototype {
617 public:
618 /** Convenience class for encapsulating a cue sheet
619 * track.
620 *
621 * Always check is_valid() after the constructor or operator=
622 * to make sure memory was properly allocated.
623 */
624 class FLACPP_API Track {
625 protected:
626 ::FLAC__StreamMetadata_CueSheet_Track *object_;
627 public:
628 Track();
629 Track(const ::FLAC__StreamMetadata_CueSheet_Track *track);
630 Track(const Track &track);
631 void operator=(const Track &track);
632
633 virtual ~Track();
634
635 virtual bool is_valid() const;
636
637 inline FLAC__uint64 get_offset() const { return object_->offset; }
638 inline FLAC__byte get_number() const { return object_->number; }
639 inline const char *get_isrc() const { return object_->isrc; }
640 inline unsigned get_type() const { return object_->type; }
641 inline bool get_pre_emphasis() const { return object_->pre_emphasis; }
642
Josh Coalsona7038a92003-01-22 20:16:20 +0000643 inline FLAC__byte get_num_indices() const { return object_->num_indices; }
Josh Coalson863dbf32002-11-16 06:30:30 +0000644 ::FLAC__StreamMetadata_CueSheet_Index get_index(unsigned i) const;
645
646 inline const ::FLAC__StreamMetadata_CueSheet_Track *get_track() const { return object_; }
647
648 inline void set_offset(FLAC__uint64 value) { object_->offset = value; }
649 inline void set_number(FLAC__byte value) { object_->number = value; }
Josh Coalson16219792002-11-19 06:19:29 +0000650 void set_isrc(const char value[12]);
Josh Coalson863dbf32002-11-16 06:30:30 +0000651 void set_type(unsigned value);
652 inline void set_pre_emphasis(bool value) { object_->pre_emphasis = value? 1 : 0; }
653
Josh Coalson16219792002-11-19 06:19:29 +0000654 void set_index(unsigned i, const ::FLAC__StreamMetadata_CueSheet_Index &index);
Josh Coalsonb3538c82003-01-12 08:42:23 +0000655 //@@@ It's awkward but to insert/delete index points
656 //@@@ you must use the routines in the CueSheet class.
Josh Coalson863dbf32002-11-16 06:30:30 +0000657 };
658
659 CueSheet();
660
661 //@{
662 /** Constructs a copy of the given object. This form
663 * always performs a deep copy.
664 */
665 inline CueSheet(const CueSheet &object): Prototype(object) { }
666 inline CueSheet(const ::FLAC__StreamMetadata &object): Prototype(object) { }
667 inline CueSheet(const ::FLAC__StreamMetadata *object): Prototype(object) { }
668 //@}
669
670 /** Constructs an object with copy control. See
671 * Prototype(::FLAC__StreamMetadata *object, bool copy).
672 */
673 inline CueSheet(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
674
675 ~CueSheet();
676
677 //@{
678 /** Assign from another object. Always performs a deep copy. */
679 inline void operator=(const CueSheet &object) { Prototype::operator=(object); }
680 inline void operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); }
681 inline void operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); }
682 //@}
683
684 //@{
685 /** Check for equality, performing a deep compare by following pointers. */
686 inline bool operator==(const CueSheet &object) const { return Prototype::operator==(object); }
687 inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
688 inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
689 //@}
690
691 //@{
692 /** Check for inequality, performing a deep compare by following pointers. */
693 inline bool operator!=(const CueSheet &object) const { return Prototype::operator!=(object); }
694 inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
695 inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
696 //@}
697
698 const char *get_media_catalog_number() const;
699 FLAC__uint64 get_lead_in() const;
Josh Coalson8f0c71b2002-12-05 06:37:46 +0000700 bool get_is_cd() const;
Josh Coalson863dbf32002-11-16 06:30:30 +0000701
702 unsigned get_num_tracks() const;
703 Track get_track(unsigned i) const;
704
Josh Coalson16219792002-11-19 06:19:29 +0000705 void set_media_catalog_number(const char value[128]);
706 void set_lead_in(FLAC__uint64 value);
Josh Coalson8f0c71b2002-12-05 06:37:46 +0000707 void set_is_cd(bool value);
Josh Coalson16219792002-11-19 06:19:29 +0000708
709 void set_index(unsigned track_num, unsigned index_num, const ::FLAC__StreamMetadata_CueSheet_Index &index);
Josh Coalson863dbf32002-11-16 06:30:30 +0000710
711 //! See FLAC__metadata_object_cuesheet_track_insert_index()
712 bool insert_index(unsigned track_num, unsigned index_num, const ::FLAC__StreamMetadata_CueSheet_Index &index);
713
714 //! See FLAC__metadata_object_cuesheet_track_delete_index()
715 bool delete_index(unsigned track_num, unsigned index_num);
716
717 //! See FLAC__metadata_object_cuesheet_set_track()
718 bool set_track(unsigned i, const Track &track);
719
720 //! See FLAC__metadata_object_cuesheet_insert_track()
721 bool insert_track(unsigned i, const Track &track);
722
723 //! See FLAC__metadata_object_cuesheet_delete_track()
724 bool delete_track(unsigned i);
725
726 //! See FLAC__metadata_object_cuesheet_is_legal()
727 bool is_legal(bool check_cd_da_subset = false, const char **violation = 0) const;
728 };
729
Josh Coalson0eea34a2003-01-10 05:29:17 +0000730 /** Opaque metadata block for storing unknown types.
731 * This should not be used unless you know what you are doing;
732 * it is currently used only internally to support forward
733 * compatibility of metadata blocks.
734 */
735 class FLACPP_API Unknown : public Prototype {
736 public:
737 Unknown();
738 //
739 //@{
740 /** Constructs a copy of the given object. This form
741 * always performs a deep copy.
742 */
743 inline Unknown(const Unknown &object): Prototype(object) { }
744 inline Unknown(const ::FLAC__StreamMetadata &object): Prototype(object) { }
745 inline Unknown(const ::FLAC__StreamMetadata *object): Prototype(object) { }
746 //@}
747
748 /** Constructs an object with copy control. See
749 * Prototype(::FLAC__StreamMetadata *object, bool copy).
750 */
751 inline Unknown(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
752
753 ~Unknown();
754
755 //@{
756 /** Assign from another object. Always performs a deep copy. */
757 inline void operator=(const Unknown &object) { Prototype::operator=(object); }
758 inline void operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); }
759 inline void operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); }
760 //@}
761
762 //@{
763 /** Check for equality, performing a deep compare by following pointers. */
764 inline bool operator==(const Unknown &object) const { return Prototype::operator==(object); }
765 inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
766 inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
767 //@}
768
769 //@{
770 /** Check for inequality, performing a deep compare by following pointers. */
771 inline bool operator!=(const Unknown &object) const { return Prototype::operator!=(object); }
772 inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
773 inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
774 //@}
775
776 const FLAC__byte *get_data() const;
777
778 //! This form always copies \a data
779 bool set_data(const FLAC__byte *data, unsigned length);
780 bool set_data(FLAC__byte *data, unsigned length, bool copy);
781 };
782
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000783 /* \} */
784
Josh Coalsonb2b53582002-05-31 06:20:50 +0000785
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000786 /** \defgroup flacpp_metadata_level0 FLAC++/metadata.h: metadata level 0 interface
787 * \ingroup flacpp_metadata
788 *
789 * \brief
Josh Coalson4dc35072002-08-20 03:56:52 +0000790 * Level 0 metadata iterator.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000791 *
Josh Coalson4dc35072002-08-20 03:56:52 +0000792 * See the \link flac_metadata_level0 C layer equivalent \endlink
793 * for more.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000794 *
795 * \{
796 */
797
Josh Coalson4dc35072002-08-20 03:56:52 +0000798 //! See FLAC__metadata_get_streaminfo().
Josh Coalson55bc5872002-10-16 22:18:32 +0000799 FLACPP_API bool get_streaminfo(const char *filename, StreamInfo &streaminfo);
Josh Coalsonfb74f102002-05-22 05:33:29 +0000800
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000801 /* \} */
802
Josh Coalsonb2b53582002-05-31 06:20:50 +0000803
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000804 /** \defgroup flacpp_metadata_level1 FLAC++/metadata.h: metadata level 1 interface
805 * \ingroup flacpp_metadata
806 *
Josh Coalson4dc35072002-08-20 03:56:52 +0000807 * \brief
808 * Level 1 metadata iterator.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000809 *
Josh Coalson4dc35072002-08-20 03:56:52 +0000810 * The flow through the iterator in the C++ layer is similar
811 * to the C layer:
812 * - Create a SimpleIterator instance
813 * - Check SimpleIterator::is_valid()
814 * - Call SimpleIterator::init() and check the return
815 * - Traverse and/or edit. Edits are written to file
816 * immediately.
817 * - Destroy the SimpleIterator instance
818 *
819 * The ownership of pointers in the C++ layer follows that in
820 * the C layer, i.e.
821 * - The objects returned by get_block() are yours to
822 * modify, but changes are not reflected in the FLAC file
823 * until you call set_block(). The objects are also
824 * yours to delete; they are not automatically deleted
825 * when passed to set_block() or insert_block_after().
826 *
827 * See the \link flac_metadata_level1 C layer equivalent \endlink
828 * for more.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000829 *
830 * \{
831 */
832
Josh Coalson402da702002-08-21 03:40:11 +0000833 /** This class is a wrapper around the FLAC__metadata_simple_iterator
834 * structures and methods; see ::FLAC__Metadata_SimpleIterator.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000835 */
Josh Coalson55bc5872002-10-16 22:18:32 +0000836 class FLACPP_API SimpleIterator {
Josh Coalsonfb74f102002-05-22 05:33:29 +0000837 public:
Josh Coalson55bc5872002-10-16 22:18:32 +0000838 class FLACPP_API Status {
Josh Coalsonfb74f102002-05-22 05:33:29 +0000839 public:
Josh Coalsoncc682512002-06-08 04:53:42 +0000840 inline Status(::FLAC__Metadata_SimpleIteratorStatus status): status_(status) { }
841 inline operator ::FLAC__Metadata_SimpleIteratorStatus() const { return status_; }
842 inline const char *as_cstring() const { return ::FLAC__Metadata_SimpleIteratorStatusString[status_]; }
Josh Coalsonfb74f102002-05-22 05:33:29 +0000843 protected:
Josh Coalsoncc682512002-06-08 04:53:42 +0000844 ::FLAC__Metadata_SimpleIteratorStatus status_;
Josh Coalsonfb74f102002-05-22 05:33:29 +0000845 };
846
847 SimpleIterator();
848 virtual ~SimpleIterator();
849
Josh Coalson3ac66932002-08-30 05:41:31 +0000850 bool init(const char *filename, bool read_only, bool preserve_file_stats);
Josh Coalsonfb74f102002-05-22 05:33:29 +0000851
852 bool is_valid() const;
Josh Coalsonfb74f102002-05-22 05:33:29 +0000853 Status status();
854 bool is_writable() const;
855
856 bool next();
857 bool prev();
858
Josh Coalsoncc682512002-06-08 04:53:42 +0000859 ::FLAC__MetadataType get_block_type() const;
Josh Coalsonfb74f102002-05-22 05:33:29 +0000860 Prototype *get_block();
861 bool set_block(Prototype *block, bool use_padding = true);
862 bool insert_block_after(Prototype *block, bool use_padding = true);
863 bool delete_block(bool use_padding = true);
864
865 protected:
Josh Coalsoncc682512002-06-08 04:53:42 +0000866 ::FLAC__Metadata_SimpleIterator *iterator_;
Josh Coalsonfb74f102002-05-22 05:33:29 +0000867 void clear();
868 };
869
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000870 /* \} */
871
Josh Coalsonb2b53582002-05-31 06:20:50 +0000872
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000873 /** \defgroup flacpp_metadata_level2 FLAC++/metadata.h: metadata level 2 interface
874 * \ingroup flacpp_metadata
875 *
Josh Coalson4dc35072002-08-20 03:56:52 +0000876 * \brief
877 * Level 2 metadata iterator.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000878 *
Josh Coalson4dc35072002-08-20 03:56:52 +0000879 * The flow through the iterator in the C++ layer is similar
880 * to the C layer:
881 * - Create a Chain instance
882 * - Check Chain::is_valid()
883 * - Call Chain::read() and check the return
884 * - Traverse and/or edit with an Iterator or with
885 * Chain::merge_padding() or Chain::sort_padding()
886 * - Write changes back to FLAC file with Chain::write()
887 * - Destroy the Chain instance
888 *
Josh Coalson8b9a4772002-12-28 07:03:26 +0000889 * The ownership of pointers in the C++ layer is slightly
890 * different than in the C layer, i.e.
891 * - The objects returned by Iterator::get_block() are NOT
892 * owned by the iterator and should be deleted by the
893 * caller when finished, BUT, when you modify the block,
894 * it will directly edit what's in the chain and you do
895 * not need to call Iterator::set_block(). However the
896 * changes will not be reflected in the FLAC file until
897 * the chain is written with Chain::write().
Josh Coalson4dc35072002-08-20 03:56:52 +0000898 * - When you pass an object to Iterator::set_block(),
899 * Iterator::insert_block_before(), or
900 * Iterator::insert_block_after(), the iterator takes
Josh Coalson8b9a4772002-12-28 07:03:26 +0000901 * ownership of the block and it will be deleted by the
Josh Coalson4dc35072002-08-20 03:56:52 +0000902 * chain.
903 *
904 * See the \link flac_metadata_level2 C layer equivalent \endlink
905 * for more.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000906 *
907 * \{
908 */
909
Josh Coalson402da702002-08-21 03:40:11 +0000910 /** This class is a wrapper around the FLAC__metadata_chain
911 * structures and methods; see ::FLAC__Metadata_Chain.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000912 */
Josh Coalson55bc5872002-10-16 22:18:32 +0000913 class FLACPP_API Chain {
Josh Coalsonfb74f102002-05-22 05:33:29 +0000914 public:
Josh Coalson55bc5872002-10-16 22:18:32 +0000915 class FLACPP_API Status {
Josh Coalsonfb74f102002-05-22 05:33:29 +0000916 public:
Josh Coalsoncc682512002-06-08 04:53:42 +0000917 inline Status(::FLAC__Metadata_ChainStatus status): status_(status) { }
918 inline operator ::FLAC__Metadata_ChainStatus() const { return status_; }
919 inline const char *as_cstring() const { return ::FLAC__Metadata_ChainStatusString[status_]; }
Josh Coalsonfb74f102002-05-22 05:33:29 +0000920 protected:
Josh Coalsoncc682512002-06-08 04:53:42 +0000921 ::FLAC__Metadata_ChainStatus status_;
Josh Coalsonfb74f102002-05-22 05:33:29 +0000922 };
923
924 Chain();
925 virtual ~Chain();
926
927 friend class Iterator;
928
929 bool is_valid() const;
Josh Coalsonfb74f102002-05-22 05:33:29 +0000930 Status status();
931
932 bool read(const char *filename);
Josh Coalsondeab4622004-07-15 16:22:43 +0000933 bool read(FLAC__IOHandle handle, FLAC__IOCallbacks callbacks);
934
935 bool check_if_tempfile_needed(bool use_padding);
936
Josh Coalsonfb74f102002-05-22 05:33:29 +0000937 bool write(bool use_padding = true, bool preserve_file_stats = false);
Josh Coalsondeab4622004-07-15 16:22:43 +0000938 bool write(bool use_padding, ::FLAC__IOHandle handle, ::FLAC__IOCallbacks callbacks);
939 bool write(bool use_padding, ::FLAC__IOHandle handle, ::FLAC__IOCallbacks callbacks, ::FLAC__IOHandle temp_handle, ::FLAC__IOCallbacks temp_callbacks);
Josh Coalsonfb74f102002-05-22 05:33:29 +0000940
941 void merge_padding();
942 void sort_padding();
943
944 protected:
Josh Coalsoncc682512002-06-08 04:53:42 +0000945 ::FLAC__Metadata_Chain *chain_;
Josh Coalsonfb74f102002-05-22 05:33:29 +0000946 virtual void clear();
947 };
948
Josh Coalson402da702002-08-21 03:40:11 +0000949 /** This class is a wrapper around the FLAC__metadata_iterator
950 * structures and methods; see ::FLAC__Metadata_Iterator.
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000951 */
Josh Coalson55bc5872002-10-16 22:18:32 +0000952 class FLACPP_API Iterator {
Josh Coalsonfb74f102002-05-22 05:33:29 +0000953 public:
954 Iterator();
955 virtual ~Iterator();
956
957 bool is_valid() const;
Josh Coalsonfb74f102002-05-22 05:33:29 +0000958
Josh Coalson999be3b2002-06-10 04:42:35 +0000959 void init(Chain &chain);
Josh Coalsonfb74f102002-05-22 05:33:29 +0000960
961 bool next();
962 bool prev();
963
Josh Coalsoncc682512002-06-08 04:53:42 +0000964 ::FLAC__MetadataType get_block_type() const;
Josh Coalsonfb74f102002-05-22 05:33:29 +0000965 Prototype *get_block();
966 bool set_block(Prototype *block);
967 bool delete_block(bool replace_with_padding);
968 bool insert_block_before(Prototype *block);
969 bool insert_block_after(Prototype *block);
970
971 protected:
Josh Coalsoncc682512002-06-08 04:53:42 +0000972 ::FLAC__Metadata_Iterator *iterator_;
Josh Coalsonfb74f102002-05-22 05:33:29 +0000973 virtual void clear();
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000974 };
975
Josh Coalsonf6efd9c2002-07-27 04:59:54 +0000976 /* \} */
977
Josh Coalsonfda98fb2002-05-17 06:33:39 +0000978 };
979};
980
981#endif