#include <assert.h>
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <mpfr.h>
#include "parse.h"
#include "logging.h"
#include "parse_gif.h"
#include "parse_kfr.h"
#include "parse_mdz_center.h"
#include "parse_mdz_corners.h"
#include "parse_mm.h"
#include "parse_png.h"
#include "parse_ppar_center.h"
#include "parse_ppar_corners.h"
#include "parse_ppm.h"
#include "parse_sft.h"
Go to the source code of this file.
Macros | |
#define | P(p) if (parse_##p(source, length, cx, cy, cz)) return true |
Functions | |
bool | radius_is_valid (const mpfr_t radius) |
Check if a radius is valid. A radius \(r\) is valid when \(0 < r < +\infty\). NaN is not a valid radius. | |
mpfr_prec_t | precision_for_radius (const mpfr_t radius) |
Calculate a reasonable precision that suffices to accurately represent the center of a view of a given radius \(r\). | |
char * | load_file (const char *filename, int *length) |
Load a file's contents into memory. | |
char * | parse_separator (char **source, int separator) |
Split a string at the first occurence of a separator character. | |
char * | parse_line (char **source) |
Split a string at line endings and strip BOM. | |
bool | parse (const char *source, int length, mpfr_t cx, mpfr_t cy, mpfr_t cz) |
Parse a parameter file by trying all parsers in turn. | |
bool | load_parameter_file (const char *filename, mpfr_t cx, mpfr_t cy, mpfr_t cz) |
Load a parameter file and parse it. |
#define P | ( | p | ) | if (parse_##p(source, length, cx, cy, cz)) return true |
Referenced by parse().
char* load_file | ( | const char * | filename, |
int * | length | ||
) |
Load a file's contents into memory.
Load a file's contents into a newly allocated null-terminated buffer. The buffer may also have embedded nulls (for example when loading a binary image file).
filename | The file to load. |
length | The file size is stored here. |
Definition at line 41 of file parse.c.
Referenced by load_parameter_file().
bool load_parameter_file | ( | const char * | filename, |
mpfr_t | cx, | ||
mpfr_t | cy, | ||
mpfr_t | cz | ||
) |
Load a parameter file and parse it.
filename | The name of a file to load and parse. |
cx | For output of the real part of the view center. It is already mpfr_init2() 'd. |
cy | For output of the imaginary part of the view center. It is already mpfr_init2() 'd. |
cz | For output of the view radius. It is already mpfr_init2() 'd. |
true
) or failure (false
). Definition at line 111 of file parse.c.
References load_file(), LOG_ERROR, log_message, LOG_NOTICE, and parse().
Referenced by main().
bool parse | ( | const char * | source, |
int | length, | ||
mpfr_t | cx, | ||
mpfr_t | cy, | ||
mpfr_t | cz | ||
) |
Parse a parameter file by trying all parsers in turn.
Parse format-agnostically by trying every parser in in turn and picking the first that succeeds. Most formats don't overlap enough to cause any problems. Parse binary formats first, followed by text formats. Binary format parsers should be more reliable in file format identification, so will just fail on text input, while text format parsers might encounter things they don't expect amidst a jumble of binary data. In any case, parsing arbitrary binary data might fail in weird ways, so be wary.
source | A null-terminated input file already loaded into memory. |
length | Length of the input file (without the extra null terminator). |
cx | For output of the real part of the view center. It is already mpfr_init2() 'd. |
cy | For output of the imaginary part of the view center. It is already mpfr_init2() 'd. |
cz | For output of the view radius. It is already mpfr_init2() 'd. |
true
) or failure (false
). Definition at line 93 of file parse.c.
References P.
Referenced by load_parameter_file().
char* parse_line | ( | char ** | source | ) |
Split a string at line endings and strip BOM.
Split a string at the end of the line "\\n"
. If the previous character is carriage return "\\r"
, delete it by replacing with null. This shortens the string length by one character. The purpose is to handle different line ending conventions on different platforms: Linux and OS X use "\\n"
, Windows uses "\\n\\r"
, aka LF
and CRLF
. Also, some files in UTF-8 end up having a byte order marker (BOM) inserted even if the content is in the pure ASCII subset of UTF-8. This usually only occurs once, at the start of the file, but it's possible for it to occur anywhere. Here we strip the BOM from the start of lines, because that's the most likely place for it to occur when files are appended to each other.
source | Pointer to source string pointer. Updated as described in parse_separator() . |
Definition at line 80 of file parse.c.
References parse_separator().
Referenced by parse_kfr(), parse_mdz_center(), parse_mdz_corners(), parse_mm(), parse_ppar_center(), parse_ppar_corners(), parse_ppm(), and parse_sft().
char* parse_separator | ( | char ** | source, |
int | separator | ||
) |
Split a string at the first occurence of a separator character.
If the separator is found then the source pointer is updated to the following character, and the found separator is replaced with 0. This makes the original source pointer a null terminated string ending where the separator was found. The original source pointer is returned, and the source pointer is updated as described if the separator was found, or set to 0 otherwise. It is an error to pass in null or pointer to null as the source pointer.
source | Pointer to source string pointer. Updated as described above. |
separator | Charactor to split the string on. |
Definition at line 66 of file parse.c.
Referenced by parse_line(), and parse_ppar_center().
mpfr_prec_t precision_for_radius | ( | const mpfr_t | radius | ) |
Calculate a reasonable precision that suffices to accurately represent the center of a view of a given radius \(r\).
Typically \(r < 1\), which makes \(\log_2 r < 0\). As logarithms compress a lot ( \(\log_2 10^{-300} > -1000\)), using mpfr_get_d
is safe (overflow is exceedingly unlikely, maybe even impossible).
radius | A valid radius. |
Definition at line 31 of file parse.c.
References radius_is_valid().
Referenced by parse_command_line(), parse_kfr(), parse_mdz_center(), parse_mm(), parse_png(), parse_ppar_center(), parse_ppar_corners(), parse_ppm(), and parse_sft().
bool radius_is_valid | ( | const mpfr_t | radius | ) |
Check if a radius is valid. A radius \(r\) is valid when \(0 < r < +\infty\). NaN is not a valid radius.
radius | The radius to check. |
Definition at line 27 of file parse.c.
Referenced by parse_kfr(), parse_mdz_center(), parse_mm(), parse_png(), parse_ppar_center(), parse_ppar_corners(), parse_ppm(), parse_sft(), and precision_for_radius().