summaryrefslogtreecommitdiff
path: root/apps/tagdb/header.h
blob: 08a563ec729048ddf0d9daafa31b3ef77bb180be (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
#ifndef __HEADER_H__
#define __HEADER_H__

#include "config.h"

#define HEADER_SIZE 68

struct header {
	char magic[3];			// (four bytes: 'R' 'D' 'B' and a byte for version. This is version 2. (0x02)
	unsigned char version;
	
	uint32_t artist_start;	// File Offset to the artist table(starting from 0)
	uint32_t album_start;	// File Offset to the album table(starting from 0)
	uint32_t song_start;		// File Offset of the song table(starting from 0)
	uint32_t file_start;		// File Offset to the filename table(starting from 0)

	uint32_t artist_count;	// Number of artists
	uint32_t album_count;	// Number of albums
	uint32_t song_count;		// Number of songs
	uint32_t file_count;		// Number of File Entries, this is needed for the binary search.

	uint32_t artist_len;		// Max Length of the artist name field
	uint32_t album_len;		// Max Length of the album name field
	uint32_t song_len;		// Max Length of the song name field
	uint32_t genre_len;		// Max Length of the genre field
	uint32_t file_len;		// Max Length of the filename field.

	uint32_t song_array_count;	// Number of entries in songs-per-album array
	uint32_t album_array_count;	// Number of entries in albums-per-artist array

	struct {
		unsigned reserved : 31;		// must be 0
		unsigned rundb_dirty : 1;	// if the TagDatabase in unsynchronized with the RuntimeDatabase, 0 if synchronized.
	} flags;
};

int header_write(FILE *fd, const struct header *header);

#endif