mathematical 1.3.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +14 -7
- data/Rakefile +4 -1
- data/ext/mathematical/cairo_callbacks.h +5 -0
- data/ext/mathematical/extconf.rb +34 -8
- data/ext/mathematical/lasem_overrides.c +32 -3
- data/ext/mathematical/lasem_overrides.h +11 -2
- data/ext/mathematical/mathematical.c +27 -26
- data/ext/mathematical/mathematical.h +5 -1
- data/ext/mathematical/mtex2MML/deps/strdup/strdup.c +24 -0
- data/ext/mathematical/mtex2MML/deps/strdup/strdup.h +24 -0
- data/ext/mathematical/mtex2MML/deps/uthash/utarray.h +1 -0
- data/ext/mathematical/mtex2MML/src/{color_definitions.c → colors.c} +2 -3
- data/ext/mathematical/mtex2MML/src/colors.h +23 -0
- data/ext/mathematical/mtex2MML/src/em.c +99 -0
- data/ext/mathematical/mtex2MML/src/em.h +31 -0
- data/ext/mathematical/mtex2MML/src/{parse_extras.c → environment.c} +73 -157
- data/ext/mathematical/mtex2MML/src/environment.h +85 -0
- data/ext/mathematical/mtex2MML/src/{mtex2MML.l → lexer.l} +26 -15
- data/ext/mathematical/mtex2MML/src/main.c +31 -10
- data/ext/mathematical/mtex2MML/src/mtex2MML.h +19 -7
- data/ext/mathematical/mtex2MML/src/{mtex2MML.y → parser.y} +451 -446
- data/ext/mathematical/mtex2MML/src/string_extras.c +4 -3
- data/ext/mathematical/mtex2MML/src/string_extras.h +7 -7
- data/ext/mathematical/mtex2MML/tests/array.c +11 -11
- data/ext/mathematical/mtex2MML/tests/basic.c +14 -13
- data/ext/mathematical/mtex2MML/tests/clar.c +2 -0
- data/ext/mathematical/mtex2MML/tests/clar/fs.h +3 -1
- data/ext/mathematical/mtex2MML/tests/clar/sandbox.h +3 -1
- data/ext/mathematical/mtex2MML/tests/cornercases.c +3 -2
- data/ext/mathematical/mtex2MML/tests/delimiters.c +126 -0
- data/ext/mathematical/mtex2MML/tests/deps/file2str/file2str.c +2 -4
- data/ext/mathematical/mtex2MML/tests/deps/mkdtemp/mkdtemp.c +151 -0
- data/ext/mathematical/mtex2MML/tests/deps/mkdtemp/mkdtemp.h +10 -0
- data/ext/mathematical/mtex2MML/tests/deps/trim/trim.c +4 -1
- data/ext/mathematical/mtex2MML/tests/env.c +35 -34
- data/ext/mathematical/mtex2MML/tests/functions.c +3 -2
- data/ext/mathematical/mtex2MML/tests/helpers.c +6 -4
- data/ext/mathematical/mtex2MML/tests/helpers.h +2 -2
- data/ext/mathematical/mtex2MML/tests/main.c +1 -1
- data/ext/mathematical/mtex2MML/tests/maliciousness.c +35 -9
- data/ext/mathematical/mtex2MML/tests/mathjax.c +202 -202
- data/ext/mathematical/mtex2MML/tests/numbered_equations.c +6 -6
- data/ext/mathematical/mtex2MML/tests/performance.c +39 -0
- data/lib/mathematical.rb +38 -5
- data/lib/mathematical/configuration.rb +19 -0
- data/lib/mathematical/validator.rb +17 -31
- data/lib/mathematical/version.rb +1 -1
- data/mathematical.gemspec +3 -1
- data/test/mathematical/basic_test.rb +60 -7
- data/test/mathematical/corrections_test.rb +1 -1
- data/test/mathematical/delimiters_test.rb +58 -0
- data/test/mathematical/fixtures_test.rb +3 -2
- data/test/mathematical/maliciousness_test.rb +19 -27
- data/test/mathematical/mathjax_test.rb +6 -5
- data/test/mathematical/mathml_test.rb +1 -1
- data/test/mathematical/multiples_test.rb +1 -1
- data/test/mathematical/performance_test.rb +3 -1
- data/test/mathematical/png_test.rb +3 -3
- data/test/test_helper.rb +4 -1
- metadata +35 -21
- data/ext/mathematical/lasem/src/lsmdomenumtypes.c +0 -99
- data/ext/mathematical/lasem/src/lsmdomenumtypes.h +0 -26
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c +0 -737
- data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h +0 -93
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.c +0 -1083
- data/ext/mathematical/lasem/src/lsmsvgenumtypes.h +0 -111
- data/ext/mathematical/mtex2MML/Makefile +0 -100
- data/ext/mathematical/mtex2MML/build/libmtex2MML.a +0 -0
- data/ext/mathematical/mtex2MML/build/mtex2MML.h +0 -73
- data/ext/mathematical/mtex2MML/src/lex.yy.c +0 -8845
- data/ext/mathematical/mtex2MML/src/parse_extras.h +0 -111
- data/ext/mathematical/mtex2MML/src/y.tab.c +0 -10178
- data/ext/mathematical/mtex2MML/src/y.tab.h +0 -617
@@ -2,20 +2,21 @@
|
|
2
2
|
#include <stdlib.h>
|
3
3
|
#include <string.h>
|
4
4
|
#include "string_extras.h"
|
5
|
+
#include "../deps/strdup/strdup.h"
|
5
6
|
|
6
|
-
void
|
7
|
+
void mtex2MML_remove_last_char(char* str)
|
7
8
|
{
|
8
9
|
size_t len = strlen(str);
|
9
10
|
str[len - 1] = '\0';
|
10
11
|
}
|
11
12
|
|
12
|
-
void
|
13
|
+
void mtex2MML_remove_first_char(char* str)
|
13
14
|
{
|
14
15
|
size_t len = strlen(str);
|
15
16
|
memmove(str, str + 1, len);
|
16
17
|
}
|
17
18
|
|
18
|
-
char *
|
19
|
+
char * mtex2MML_str_replace (char *string, const char *substr, const char *replacement)
|
19
20
|
{
|
20
21
|
char *tok = NULL;
|
21
22
|
char *newstr = NULL;
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
#include "../deps/uthash/utstring.h"
|
7
7
|
|
8
|
-
|
8
|
+
/* all for str_replace */
|
9
9
|
#include <stdio.h>
|
10
10
|
#include <string.h>
|
11
11
|
#include <stdlib.h>
|
@@ -14,14 +14,14 @@
|
|
14
14
|
extern "C" {
|
15
15
|
#endif
|
16
16
|
|
17
|
-
|
18
|
-
|
17
|
+
/* Remove the final character in a string */
|
18
|
+
void mtex2MML_remove_last_char(char* str);
|
19
19
|
|
20
|
-
|
21
|
-
|
20
|
+
/* Remove the first character in a string */
|
21
|
+
void mtex2MML_remove_first_char(char* str);
|
22
22
|
|
23
|
-
|
24
|
-
|
23
|
+
/* replace a substr in a string with a replacement */
|
24
|
+
char * mtex2MML_str_replace(char *string, const char *substr, const char *replacement);
|
25
25
|
|
26
26
|
#ifdef __cplusplus
|
27
27
|
}
|
@@ -31,7 +31,7 @@ void test_array__basic_array(void)
|
|
31
31
|
{
|
32
32
|
fixture_tex = read_fixture_tex("array/basic_array.txt");
|
33
33
|
fixture_mml = read_fixture_mml("array/basic_array.html");
|
34
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
34
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
35
35
|
|
36
36
|
cl_assert_equal_s(fixture_mml, result);
|
37
37
|
}
|
@@ -40,7 +40,7 @@ void test_array__array_with_hline(void)
|
|
40
40
|
{
|
41
41
|
fixture_tex = read_fixture_tex("array/array_with_hline.txt");
|
42
42
|
fixture_mml = read_fixture_mml("array/array_with_hline.html");
|
43
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
43
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
44
44
|
|
45
45
|
cl_assert_equal_s(fixture_mml, result);
|
46
46
|
}
|
@@ -49,7 +49,7 @@ void test_array__array_with_hline_and_hdashline(void)
|
|
49
49
|
{
|
50
50
|
fixture_tex = read_fixture_tex("array/array_with_hline_and_hdashline.txt");
|
51
51
|
fixture_mml = read_fixture_mml("array/array_with_hline_and_hdashline.html");
|
52
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
52
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
53
53
|
|
54
54
|
cl_assert_equal_s(fixture_mml, result);
|
55
55
|
}
|
@@ -58,7 +58,7 @@ void test_array__array_pos_alignment(void)
|
|
58
58
|
{
|
59
59
|
fixture_tex = read_fixture_tex("array/array_pos_alignment.txt");
|
60
60
|
fixture_mml = read_fixture_mml("array/array_pos_alignment.html");
|
61
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
61
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
62
62
|
|
63
63
|
cl_assert_equal_s(fixture_mml, result);
|
64
64
|
}
|
@@ -67,7 +67,7 @@ void test_array__array_pos_alignment_with_hline(void)
|
|
67
67
|
{
|
68
68
|
fixture_tex = read_fixture_tex("array/array_pos_alignment_with_hline.txt");
|
69
69
|
fixture_mml = read_fixture_mml("array/array_pos_alignment_with_hline.html");
|
70
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
70
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
71
71
|
|
72
72
|
cl_assert_equal_s(fixture_mml, result);
|
73
73
|
}
|
@@ -76,7 +76,7 @@ void test_array__array_vertical_column(void)
|
|
76
76
|
{
|
77
77
|
fixture_tex = read_fixture_tex("array/array_vertical_column.txt");
|
78
78
|
fixture_mml = read_fixture_mml("array/array_vertical_column.html");
|
79
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
79
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
80
80
|
|
81
81
|
cl_assert_equal_s(fixture_mml, result);
|
82
82
|
}
|
@@ -85,7 +85,7 @@ void test_array__array_vertical_column_with_align(void)
|
|
85
85
|
{
|
86
86
|
fixture_tex = read_fixture_tex("array/array_vertical_column_with_align.txt");
|
87
87
|
fixture_mml = read_fixture_mml("array/array_vertical_column_with_align.html");
|
88
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
88
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
89
89
|
|
90
90
|
cl_assert_equal_s(fixture_mml, result);
|
91
91
|
}
|
@@ -94,7 +94,7 @@ void test_array__array_with_vertical_and_horizontal_dashes(void)
|
|
94
94
|
{
|
95
95
|
fixture_tex = read_fixture_tex("array/array_with_vertical_and_horizontal_dashes.txt");
|
96
96
|
fixture_mml = read_fixture_mml("array/array_with_vertical_and_horizontal_dashes.html");
|
97
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
97
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
98
98
|
|
99
99
|
cl_assert_equal_s(fixture_mml, result);
|
100
100
|
}
|
@@ -103,7 +103,7 @@ void test_array__array_nesting(void)
|
|
103
103
|
{
|
104
104
|
fixture_tex = read_fixture_tex("array/array_nesting.txt");
|
105
105
|
fixture_mml = read_fixture_mml("array/array_nesting.html");
|
106
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
106
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
107
107
|
|
108
108
|
cl_assert_equal_s(fixture_mml, result);
|
109
109
|
}
|
@@ -112,7 +112,7 @@ void test_array__strip_excess_whitespace_in_array_attributes(void)
|
|
112
112
|
{
|
113
113
|
fixture_tex = read_fixture_tex("array/strip_excess_whitespace_in_array_attributes.txt");
|
114
114
|
fixture_mml = read_fixture_mml("array/strip_excess_whitespace_in_array_attributes.html");
|
115
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
115
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
116
116
|
|
117
117
|
cl_assert_equal_s(fixture_mml, result);
|
118
118
|
}
|
@@ -121,7 +121,7 @@ void test_array__augmented_matrix(void)
|
|
121
121
|
{
|
122
122
|
fixture_tex = read_fixture_tex("array/augmented_matrix.txt");
|
123
123
|
fixture_mml = read_fixture_mml("array/augmented_matrix.html");
|
124
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
124
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
125
125
|
|
126
126
|
cl_assert_equal_s(fixture_mml, result);
|
127
127
|
}
|
@@ -2,10 +2,11 @@
|
|
2
2
|
#include "clar_test.h"
|
3
3
|
#include "deps/trim/trim.h"
|
4
4
|
#include <stdio.h>
|
5
|
+
#include <string.h>
|
5
6
|
|
6
7
|
static char *fixture_tex;
|
7
8
|
static char *fixture_mml;
|
8
|
-
static
|
9
|
+
static char *result;
|
9
10
|
|
10
11
|
void test_basic__initialize(void)
|
11
12
|
{
|
@@ -31,7 +32,7 @@ void test_basic__inline(void)
|
|
31
32
|
{
|
32
33
|
fixture_tex = read_fixture_tex("basic/inline.txt");
|
33
34
|
fixture_mml = read_fixture_mml("basic/inline.html");
|
34
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
35
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
35
36
|
|
36
37
|
cl_assert_equal_s(fixture_mml, result);
|
37
38
|
}
|
@@ -40,7 +41,7 @@ void test_basic__block(void)
|
|
40
41
|
{
|
41
42
|
fixture_tex = read_fixture_tex("basic/block.txt");
|
42
43
|
fixture_mml = read_fixture_mml("basic/block.html");
|
43
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
44
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
44
45
|
|
45
46
|
cl_assert_equal_s(fixture_mml, result);
|
46
47
|
}
|
@@ -49,7 +50,7 @@ void test_basic__comments(void)
|
|
49
50
|
{
|
50
51
|
fixture_tex = read_fixture_tex("basic/comments.txt");
|
51
52
|
fixture_mml = read_fixture_mml("basic/comments.html");
|
52
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
53
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
53
54
|
|
54
55
|
cl_assert_equal_s(fixture_mml, result);
|
55
56
|
}
|
@@ -58,27 +59,27 @@ void test_basic__filter(void)
|
|
58
59
|
{
|
59
60
|
fixture_tex = read_fixture_tex("basic/filter.txt");
|
60
61
|
fixture_mml = read_fixture_mml("basic/filter.html");
|
61
|
-
mtex2MML_filter(fixture_tex, strlen(fixture_tex));
|
62
|
+
mtex2MML_filter(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
62
63
|
result = mtex2MML_output();
|
63
64
|
|
64
65
|
cl_assert_equal_s(fixture_mml, result);
|
65
66
|
}
|
66
67
|
|
67
|
-
void
|
68
|
+
void test_basic__text_filter(void)
|
68
69
|
{
|
69
|
-
fixture_tex = read_fixture_tex("basic/
|
70
|
-
fixture_mml = read_fixture_mml("basic/
|
71
|
-
|
70
|
+
fixture_tex = read_fixture_tex("basic/text_filter.txt");
|
71
|
+
fixture_mml = read_fixture_mml("basic/text_filter.html");
|
72
|
+
mtex2MML_text_filter(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
72
73
|
result = mtex2MML_output();
|
73
74
|
|
74
75
|
cl_assert_equal_s(fixture_mml, trim(result));
|
75
76
|
}
|
76
77
|
|
77
|
-
void
|
78
|
+
void test_basic__strict_filter(void)
|
78
79
|
{
|
79
|
-
fixture_tex = read_fixture_tex("basic/
|
80
|
-
fixture_mml = read_fixture_mml("basic/
|
81
|
-
|
80
|
+
fixture_tex = read_fixture_tex("basic/strict_filter.txt");
|
81
|
+
fixture_mml = read_fixture_mml("basic/strict_filter.html");
|
82
|
+
mtex2MML_strict_filter(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
82
83
|
result = mtex2MML_output();
|
83
84
|
|
84
85
|
cl_assert_equal_s(fixture_mml, trim(result));
|
@@ -1,3 +1,5 @@
|
|
1
|
+
#include "../../deps/strdup/strdup.h"
|
2
|
+
|
1
3
|
#ifdef _WIN32
|
2
4
|
|
3
5
|
#define RM_RETRY_COUNT 5
|
@@ -105,7 +107,7 @@ fs_rm_wait(WCHAR *_wpath)
|
|
105
107
|
ERROR_PATH_NOT_FOUND == last_error)
|
106
108
|
return 0;
|
107
109
|
|
108
|
-
Sleep(RM_RETRY_DELAY * retries * retries);
|
110
|
+
Sleep(RM_RETRY_DELAY * retries * retries);
|
109
111
|
}
|
110
112
|
while (retries++ <= RM_RETRY_COUNT);
|
111
113
|
|
@@ -1,6 +1,7 @@
|
|
1
1
|
#include "clar.h"
|
2
2
|
#include "clar_test.h"
|
3
3
|
#include <stdio.h>
|
4
|
+
#include <string.h>
|
4
5
|
|
5
6
|
static char *fixture_tex;
|
6
7
|
static char *fixture_mml;
|
@@ -30,7 +31,7 @@ void test_cornercases__broken_up_inline_env(void)
|
|
30
31
|
{
|
31
32
|
fixture_tex = read_fixture_tex("cornercases/broken_up_inline_env.txt");
|
32
33
|
fixture_mml = read_fixture_mml("cornercases/broken_up_inline_env.html");
|
33
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
34
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
34
35
|
|
35
36
|
cl_assert_equal_s(fixture_mml, result);
|
36
37
|
}
|
@@ -39,7 +40,7 @@ void test_cornercases__some_crazy_alignment(void)
|
|
39
40
|
{
|
40
41
|
fixture_tex = read_fixture_tex("cornercases/some_crazy_alignment.txt");
|
41
42
|
fixture_mml = read_fixture_mml("cornercases/some_crazy_alignment.html");
|
42
|
-
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex));
|
43
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
43
44
|
|
44
45
|
cl_assert_equal_s(fixture_mml, result);
|
45
46
|
}
|
@@ -0,0 +1,126 @@
|
|
1
|
+
#include "clar.h"
|
2
|
+
#include "clar_test.h"
|
3
|
+
#include "deps/trim/trim.h"
|
4
|
+
#include <stdio.h>
|
5
|
+
#include <string.h>
|
6
|
+
|
7
|
+
static char *fixture_tex;
|
8
|
+
static char *fixture_mml;
|
9
|
+
static char *result;
|
10
|
+
|
11
|
+
void test_delimiters__initialize(void)
|
12
|
+
{
|
13
|
+
global_test_counter++;
|
14
|
+
}
|
15
|
+
|
16
|
+
void test_delimiters__cleanup(void)
|
17
|
+
{
|
18
|
+
if (fixture_mml != NULL) {
|
19
|
+
free(fixture_mml);
|
20
|
+
}
|
21
|
+
|
22
|
+
if (result != NULL) {
|
23
|
+
free(result);
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
void test_delimiters__single_dollar(void)
|
28
|
+
{
|
29
|
+
fixture_tex = "$\\pi$";
|
30
|
+
fixture_mml = read_fixture_mml("delimiters/single_dollar.html");
|
31
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
32
|
+
|
33
|
+
cl_assert_equal_s(fixture_mml, result);
|
34
|
+
}
|
35
|
+
|
36
|
+
void test_delimiters__double_dollar(void)
|
37
|
+
{
|
38
|
+
fixture_tex = "$$\\pi$$";
|
39
|
+
fixture_mml = read_fixture_mml("delimiters/double_dollar.html");
|
40
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
41
|
+
|
42
|
+
cl_assert_equal_s(fixture_mml, result);
|
43
|
+
}
|
44
|
+
|
45
|
+
void test_delimiters__parens(void)
|
46
|
+
{
|
47
|
+
fixture_tex = "\\(\\pi\\)";
|
48
|
+
fixture_mml = read_fixture_mml("delimiters/parens.html");
|
49
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_PARENS);
|
50
|
+
|
51
|
+
cl_assert_equal_s(fixture_mml, result);
|
52
|
+
}
|
53
|
+
|
54
|
+
void test_delimiters__brackets(void)
|
55
|
+
{
|
56
|
+
fixture_tex = "\\[\\pi\\]";
|
57
|
+
fixture_mml = read_fixture_mml("delimiters/brackets.html");
|
58
|
+
result = mtex2MML_parse(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_BRACKETS);
|
59
|
+
|
60
|
+
cl_assert_equal_s(fixture_mml, result);
|
61
|
+
}
|
62
|
+
|
63
|
+
void test_delimiters__mixed(void)
|
64
|
+
{
|
65
|
+
fixture_tex = "\\[\\alpha\\] $$\\beta$$";
|
66
|
+
fixture_mml = read_fixture_mml("delimiters/mixed.html");
|
67
|
+
mtex2MML_filter(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DOUBLE | MTEX2MML_DELIMITER_PARENS | MTEX2MML_DELIMITER_BRACKETS);
|
68
|
+
result = mtex2MML_output();
|
69
|
+
|
70
|
+
cl_assert_equal_s(fixture_mml, result);
|
71
|
+
}
|
72
|
+
|
73
|
+
void test_delimiters__dollar_spacings_with_text_filter(void)
|
74
|
+
{
|
75
|
+
fixture_tex = read_fixture_tex("delimiters/dollar_spacings_text_filter.txt");
|
76
|
+
fixture_mml = read_fixture_mml("delimiters/dollar_spacings_text_filter.html");
|
77
|
+
mtex2MML_text_filter(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
78
|
+
result = mtex2MML_output();
|
79
|
+
|
80
|
+
cl_assert_equal_s(fixture_mml, trim(result));
|
81
|
+
free(fixture_tex);
|
82
|
+
}
|
83
|
+
|
84
|
+
void test_delimiters__dollar_spacings_with_filter(void)
|
85
|
+
{
|
86
|
+
fixture_tex = read_fixture_tex("delimiters/dollar_spacings_filter.txt");
|
87
|
+
fixture_mml = read_fixture_mml("delimiters/dollar_spacings_filter.html");
|
88
|
+
mtex2MML_filter(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
89
|
+
result = mtex2MML_output();
|
90
|
+
|
91
|
+
cl_assert_equal_s(fixture_mml, trim(result));
|
92
|
+
free(fixture_tex);
|
93
|
+
}
|
94
|
+
|
95
|
+
void test_delimiters__escaping_with_dollars(void)
|
96
|
+
{
|
97
|
+
fixture_tex = read_fixture_tex("delimiters/escaping.txt");
|
98
|
+
fixture_mml = read_fixture_mml("delimiters/escaping_with_dollars.html");
|
99
|
+
mtex2MML_text_filter(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_DEFAULT);
|
100
|
+
result = mtex2MML_output();
|
101
|
+
|
102
|
+
cl_assert_equal_s(fixture_mml, trim(result));
|
103
|
+
free(fixture_tex);
|
104
|
+
}
|
105
|
+
|
106
|
+
void test_delimiters__escaping_with_brackets(void)
|
107
|
+
{
|
108
|
+
fixture_tex = read_fixture_tex("delimiters/escaping.txt");
|
109
|
+
fixture_mml = read_fixture_mml("delimiters/escaping_with_brackets.html");
|
110
|
+
mtex2MML_text_filter(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_BRACKETS);
|
111
|
+
result = mtex2MML_output();
|
112
|
+
|
113
|
+
cl_assert_equal_s(fixture_mml, trim(result));
|
114
|
+
free(fixture_tex);
|
115
|
+
}
|
116
|
+
|
117
|
+
void test_delimiters__escaping_with_parens(void)
|
118
|
+
{
|
119
|
+
fixture_tex = read_fixture_tex("delimiters/escaping.txt");
|
120
|
+
fixture_mml = read_fixture_mml("delimiters/escaping_with_parens.html");
|
121
|
+
mtex2MML_text_filter(fixture_tex, strlen(fixture_tex), MTEX2MML_DELIMITER_PARENS);
|
122
|
+
result = mtex2MML_output();
|
123
|
+
|
124
|
+
cl_assert_equal_s(fixture_mml, trim(result));
|
125
|
+
free(fixture_tex);
|
126
|
+
}
|
@@ -22,7 +22,7 @@ char *file2strl(
|
|
22
22
|
return NULL;
|
23
23
|
}
|
24
24
|
|
25
|
-
|
25
|
+
int file_len;
|
26
26
|
if (-1 == (file_len = ftell(file)))
|
27
27
|
{
|
28
28
|
fprintf(stderr, "Unable to ftell() file %s\n", path);
|
@@ -55,10 +55,8 @@ char *file2strl(
|
|
55
55
|
}
|
56
56
|
|
57
57
|
char *file2str(
|
58
|
-
const char *path
|
59
|
-
unsigned long *file_len_out
|
58
|
+
const char *path
|
60
59
|
)
|
61
60
|
{
|
62
61
|
return file2strl(path,NULL);
|
63
62
|
}
|
64
|
-
|
@@ -0,0 +1,151 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 1987, 1993
|
3
|
+
* The Regents of the University of California. All rights reserved.
|
4
|
+
*
|
5
|
+
* Redistribution and use in source and binary forms, with or without
|
6
|
+
* modification, are permitted provided that the following conditions
|
7
|
+
* are met:
|
8
|
+
* 1. Redistributions of source code must retain the above copyright
|
9
|
+
* notice, this list of conditions and the following disclaimer.
|
10
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
11
|
+
* notice, this list of conditions and the following disclaimer in the
|
12
|
+
* documentation and/or other materials provided with the distribution.
|
13
|
+
* 3. Neither the name of the University nor the names of its contributors
|
14
|
+
* may be used to endorse or promote products derived from this software
|
15
|
+
* without specific prior written permission.
|
16
|
+
*
|
17
|
+
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
18
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
19
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
20
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
21
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
22
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
23
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
24
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
25
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
26
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
27
|
+
* SUCH DAMAGE.
|
28
|
+
*/
|
29
|
+
|
30
|
+
#include <sys/types.h>
|
31
|
+
#include <sys/stat.h>
|
32
|
+
#if defined(_MSC_VER) || defined(__MINGW32__)
|
33
|
+
# include <io.h>
|
34
|
+
# include <process.h> // for getpid()
|
35
|
+
# include <direct.h> // for mkdir()
|
36
|
+
# if defined(_MSC_VER)
|
37
|
+
/* MSVC is missing a few definitions from sys/types and sys/stat */
|
38
|
+
typedef int pid_t;
|
39
|
+
# define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
|
40
|
+
# endif
|
41
|
+
#else
|
42
|
+
# include <unistd.h> // for getpid()
|
43
|
+
#endif
|
44
|
+
#include <errno.h>
|
45
|
+
#include <stdio.h>
|
46
|
+
|
47
|
+
static int
|
48
|
+
do_mkdtemp (char *path)
|
49
|
+
{
|
50
|
+
char *start, *trv;
|
51
|
+
struct stat sbuf;
|
52
|
+
pid_t pid;
|
53
|
+
|
54
|
+
/* To guarantee multiple calls generate unique names even if
|
55
|
+
the file is not created. 676 different possibilities with 7
|
56
|
+
or more X's, 26 with 6 or less. */
|
57
|
+
static char xtra[2] = { 'a', 'a' };
|
58
|
+
int xcnt = 0;
|
59
|
+
|
60
|
+
pid = getpid ();
|
61
|
+
|
62
|
+
/* Move to end of path and count trailing X's. */
|
63
|
+
for (trv = path; *trv; ++trv)
|
64
|
+
if (*trv == 'X')
|
65
|
+
xcnt++;
|
66
|
+
else
|
67
|
+
xcnt = 0;
|
68
|
+
|
69
|
+
/* Use at least one from xtra. Use 2 if more than 6 X's. */
|
70
|
+
if (*(trv - 1) == 'X')
|
71
|
+
*--trv = xtra[0];
|
72
|
+
if (xcnt > 6 && *(trv - 1) == 'X')
|
73
|
+
*--trv = xtra[1];
|
74
|
+
|
75
|
+
/* Set remaining X's to pid digits with 0's to the left. */
|
76
|
+
while (*--trv == 'X')
|
77
|
+
{
|
78
|
+
*trv = (char)((pid % 10) + '0');
|
79
|
+
pid /= 10;
|
80
|
+
}
|
81
|
+
|
82
|
+
/* update xtra for next call. */
|
83
|
+
if (xtra[0] != 'z')
|
84
|
+
xtra[0]++;
|
85
|
+
else
|
86
|
+
{
|
87
|
+
xtra[0] = 'a';
|
88
|
+
if (xtra[1] != 'z')
|
89
|
+
xtra[1]++;
|
90
|
+
else
|
91
|
+
xtra[1] = 'a';
|
92
|
+
}
|
93
|
+
|
94
|
+
/*
|
95
|
+
* check the target directory; if you have six X's and it
|
96
|
+
* doesn't exist this runs for a *very* long time.
|
97
|
+
*/
|
98
|
+
for (start = trv + 1;; --trv)
|
99
|
+
{
|
100
|
+
if (trv <= path)
|
101
|
+
break;
|
102
|
+
if (*trv == '/')
|
103
|
+
{
|
104
|
+
*trv = '\0';
|
105
|
+
if (stat (path, &sbuf))
|
106
|
+
return (0);
|
107
|
+
if (!S_ISDIR (sbuf.st_mode))
|
108
|
+
{
|
109
|
+
errno = ENOTDIR;
|
110
|
+
return (0);
|
111
|
+
}
|
112
|
+
*trv = '/';
|
113
|
+
break;
|
114
|
+
}
|
115
|
+
}
|
116
|
+
|
117
|
+
for (;;)
|
118
|
+
{
|
119
|
+
#if !defined(_MSC_VER) && !defined(__MINGW32__)
|
120
|
+
if (mkdir (path, 0700) >= 0)
|
121
|
+
#else
|
122
|
+
if (_mkdir (path) >= 0)
|
123
|
+
#endif
|
124
|
+
return (1);
|
125
|
+
if (errno != EEXIST)
|
126
|
+
return (0);
|
127
|
+
|
128
|
+
/* tricky little algorithm for backward compatibility */
|
129
|
+
for (trv = start;;)
|
130
|
+
{
|
131
|
+
if (!*trv)
|
132
|
+
return (0);
|
133
|
+
if (*trv == 'z')
|
134
|
+
*trv++ = 'a';
|
135
|
+
else
|
136
|
+
{
|
137
|
+
if (*trv >= '0' && *trv <= '9')
|
138
|
+
*trv = 'a';
|
139
|
+
else
|
140
|
+
++*trv;
|
141
|
+
break;
|
142
|
+
}
|
143
|
+
}
|
144
|
+
}
|
145
|
+
/*NOTREACHED*/}
|
146
|
+
|
147
|
+
char *
|
148
|
+
mkdtemp (char *path)
|
149
|
+
{
|
150
|
+
return (do_mkdtemp (path) ? path : (char *) NULL);
|
151
|
+
}
|