Top | ![]() |
![]() |
![]() |
![]() |
These functions cover various functionality. They are exported because, while primarily designed to be used within libMirage, they could also prove useful to other applications.
#define MIRAGE_CAST_DATA(buf,off,type) (*((type *)(buf+off)))
A macro for easy retrieval of data from (unsigned integer) buffer. Mostly to be used in binary image parsers, for example, to retrieve guint32 or guint16 value from buffer.
#define MIRAGE_CAST_PTR(buf,off,type) ((type)(buf+off))
A macro for easy placing of pointers within (unsigned integer) buffer. Mostly to be used in binary image parsers, for example, to retrieve a string or a structure from buffer.
guint8
mirage_helper_ascii2isrc (gchar c
);
Converts ASCII character c
into ISRC character.
gint
mirage_helper_bcd2hex (gint bcd
);
Converts bcd-encoded integer into hex-encoded integer.
MirageTrackModes
mirage_helper_determine_sector_type (const guint8 *buf
);
Determines sector type from its data, based on first 16 bytes, which correspond to sync pattern and header.
This function is intened to be used in image parsers, for determining track mode in cases when full (2352-byte) sector data is available.
const gchar *
mirage_helper_encoding_from_bom (const guint8 *buffer
);
Tries to decode BOM provided in buffer
, and based on the result
returns the following encodings: UTF-32BE, UTF32-LE, UTF-16LE, UTF-16BE
or UTF-8 (if BOM is not valid).
gchar * mirage_helper_find_data_file (const gchar *filename
,const gchar *path
);
Attempts to find a file with filename filename
and path path
. filename
can
be file's basename or an absolute path. path
can be either directory path (in
this case, it must end with '/') or a filename (i.e. of file descriptor).
If filename
is an absolute path, its existence is first checked. If it
does not exist, search (see below) is performed in filename
's dirname. If
still no match is found and path
is not NULL
, path
's dirname is combined
with filename
's basename, and the combination's existence is checked. If
that fails as well, search (see below) is performed in path
's dirname.
Searching in the directory is performed as follows. Directory is opened
and its content is case-insensitively compared to filename
's basename.
All filenames whose beginning match filename
are considered, and the
shortest one is returned. This way, all possible case variations
(i.e. file.iso, FILE.ISO, FiLe.IsO, etc.) are taken into account.
This function can return a filename with additional suffices, but only if
a file without those extra suffices does not exist. E.g., if search is
done for 'data.img', and only 'data.img.gz' exists, it will be returned.
However, if both 'data.img' and 'data.img.gz' exist, the former will be
returned.
The returned string should be freed when no longer needed.
const gchar *
mirage_helper_get_suffix (const gchar *filename
);
Retrieves suffix from filename
.
gboolean mirage_helper_has_suffix (const gchar *filename
,const gchar *suffix
);
Checks whether file name filename
ends with suffix suffix
.
gint
mirage_helper_hex2bcd (gint hex
);
Converts hex-encoded integer into bcd-encoded integer.
gchar
mirage_helper_isrc2ascii (guint8 c
);
Converts ISRC character c
into ASCII character.
void mirage_helper_lba2msf (gint lba
,gboolean diff
,guint8 *m
,guint8 *s
,guint8 *f
);
Converts LBA sector address stored in lba
into MSF address, storing each field
into m
, s
and f
, respectively.
If diff
is TRUE
, 150 frames difference is accounted for; this should be
used when converting absolute addresses. When converting relative addresses
(or lengths), diff
should be set to FALSE
.
gchar * mirage_helper_lba2msf_str (gint lba
,gboolean diff
);
Converts LBA sector address stored in lba
into MSF address.
If diff
is TRUE
, 150 frames difference is accounted for; this should be
used when converting absolute addresses. When converting relative addresses
(or lengths), diff
should be set to FALSE
.
gint mirage_helper_msf2lba (guint8 m
,guint8 s
,guint8 f
,gboolean diff
);
Converts MSF sector address stored in m
, s
and f
into LBA address.
If diff
is TRUE
, 150 frames difference is accounted for; this should be
used when converting absolute addresses. When converting relative addresses
(or lengths), diff
should be set to FALSE
.
gint mirage_helper_msf2lba_str (const gchar *msf
,gboolean diff
);
Converts MSF sector address stored in msf
string into LBA address.
If diff
is TRUE
, 150 frames difference is accounted for; this should be
used when converting absolute addresses. When converting relative addresses
(or lengths), diff
should be set to FALSE
.
void mirage_helper_sector_edc_ecc_compute_ecc_block (const guint8 *src
,guint32 major_count
,guint32 minor_count
,guint32 major_mult
,guint32 minor_inc
,guint8 *dest
);
Calculates ECC (error correction code) for data in src
and writes the result
into dest
. The code assumes 2352 byte sectors. It can calculate both P and Q
layer of ECC data, depending on major_count
, minor_count
, major_mult
and
minor_inc.
To calculate ECC (first P, then Q layer) for different types of sectors and store it into sector data, use:
mirage_helper_sector_edc_ecc_compute_ecc_block(sector_buffer+0xC, 86, 24, 2, 86, sector_buffer+0x81C); mirage_helper_sector_edc_ecc_compute_ecc_block(sector_buffer+0xC, 52, 43, 86, 88, sector_buffer+0x8C8);
mirage_helper_sector_edc_ecc_compute_ecc_block(sector_buffer+0xC, 86, 24, 2, 86, sector_buffer+0x81C); \n mirage_helper_sector_edc_ecc_compute_ecc_block(sector_buffer+0xC, 52, 43, 86, 88, sector_buffer+0x8C8);
(This is assuming all other sector data, including EDC, is already stored in sector_buffer and that sector_buffer is 2532 bytes long)
void mirage_helper_sector_edc_ecc_compute_edc_block (const guint8 *src
,guint16 size
,guint8 *dest
);
Calculates EDC (error detection code) for data in src
of length size
and
writes the result into dest
.
To calculate EDC for different types of sectors and store it into sector data, use:
mirage_helper_sector_edc_ecc_compute_edc_block(sector_buffer+0x00, 0x810, sector_buffer+0x810);
mirage_helper_sector_edc_ecc_compute_edc_block(sector_buffer+0x10, 0x808, sector_buffer+0x818);
mirage_helper_sector_edc_ecc_compute_edc_block(sector_buffer+0x10, 0x91C, sector_buffer+0x92C);
(This is assuming all other sector data is already stored in sector_buffer and that sector_buffer is 2532 bytes long)
gint mirage_helper_strcasecmp (const gchar *str1
,const gchar *str2
);
Replacement function for g_strcasecmp/strcasecmp, which can properly handle UTF-8. Glib docs state this is only an approximation, albeit it should be a fairly good one.
It compares the two strings str1
and str2
, ignoring the case of the characters.
It returns an integer less than, equal to, or greater than zero if str1
is found,
respectively, to be less than, to match, or be greater than str2
.
gint mirage_helper_strncasecmp (const gchar *str1
,const gchar *str2
,gint len
);
Replacement function for g_strncasecmp/strncasecmp, which can properly handle UTF-8. Glib docs state this is only an approximation, albeit it should be a fairly good one.
It compares first len
characters of string str1
and str2
, ignoring the case of
the characters. It returns an integer less than, equal to, or greater than zero if
first len
characters of str1
is found, respectively, to be less than, to match,
or be greater than first len
characters of str2
.
void mirage_helper_subchannel_deinterleave (gint subchan
,const guint8 *channel96
,guint8 *channel12
);
Deinterleaves subchannel data of type subchan
from subchannel data stored in
channel96
and writes the resulting subhcannel data into subchannel12
.
void mirage_helper_subchannel_interleave (gint subchan
,const guint8 *channel12
,guint8 *channel96
);
Interleaves subchannel data of type subchan
stored in channel12
into
subchannel data stored in subchannel96
.
guint16
mirage_helper_subchannel_q_calculate_crc
(const guint8 *data
);
Calculates the CRC-16 checksum of the Q subchannel data stored in data
.
void mirage_helper_subchannel_q_decode_isrc (const guint8 *buf
,gchar *isrc
);
Decodes ISRC stored in buf
into string isrc
.
void mirage_helper_subchannel_q_decode_mcn (const guint8 *buf
,gchar *mcn
);
Decodes MCN stored in buf
into string mcn
.
void mirage_helper_subchannel_q_encode_isrc (guint8 *buf
,const gchar *isrc
);
Encodes ISRC string isrc
into buffer buf
.