File Coverage

third_party/modest/source/myfont/maxp.c
Criterion Covered Total %
statement 0 31 0.0
branch 0 10 0.0
condition n/a
subroutine n/a
pod n/a
total 0 41 0.0


line stmt bran cond sub pod time code
1             /*
2             Copyright (C) 2016-2017 Alexander Borisov
3            
4             This library is free software; you can redistribute it and/or
5             modify it under the terms of the GNU Lesser General Public
6             License as published by the Free Software Foundation; either
7             version 2.1 of the License, or (at your option) any later version.
8            
9             This library is distributed in the hope that it will be useful,
10             but WITHOUT ANY WARRANTY; without even the implied warranty of
11             MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12             Lesser General Public License for more details.
13            
14             You should have received a copy of the GNU Lesser General Public
15             License along with this library; if not, write to the Free Software
16             Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17            
18             Author: lex.borisov@gmail.com (Alexander Borisov)
19             */
20              
21             #include "myfont/maxp.h"
22              
23 0           mystatus_t myfont_load_table_maxp(myfont_font_t* mf, uint8_t* font_data, size_t data_size)
24             {
25 0           memset(&mf->table_maxp, 0, sizeof(myfont_table_maxp_t));
26            
27 0 0         if(mf->cache.tables_offset[MyFONT_TKEY_maxp] == 0)
28 0           return MyFONT_STATUS_OK;
29            
30 0           myfont_table_maxp_t *tmaxp = &mf->table_maxp;
31 0           const uint32_t table_offset = mf->cache.tables_offset[MyFONT_TKEY_maxp];
32            
33 0 0         if((table_offset + 4) > data_size)
34 0           return MyFONT_STATUS_ERROR_TABLE_UNEXPECTED_ENDING;
35            
36             /* get current data */
37 0           uint8_t *data = &font_data[table_offset];
38            
39 0           tmaxp->version = myfont_read_u32_as_net(&data);
40            
41 0 0         if(myfont_table_version_major(tmaxp->version) == 1)
42             {
43 0 0         if((table_offset + 4 + 28) > data_size)
44 0           return MyFONT_STATUS_ERROR_TABLE_UNEXPECTED_ENDING;
45            
46 0           tmaxp->numGlyphs = myfont_read_u16(&data);
47 0           tmaxp->maxPoints = myfont_read_u16(&data);
48 0           tmaxp->maxContours = myfont_read_u16(&data);
49 0           tmaxp->maxCompositePoints = myfont_read_u16(&data);
50 0           tmaxp->maxCompositeContours = myfont_read_u16(&data);
51 0           tmaxp->maxZones = myfont_read_u16(&data);
52 0           tmaxp->maxTwilightPoints = myfont_read_u16(&data);
53 0           tmaxp->maxStorage = myfont_read_u16(&data);
54 0           tmaxp->maxFunctionDefs = myfont_read_u16(&data);
55 0           tmaxp->maxInstructionDefs = myfont_read_u16(&data);
56 0           tmaxp->maxStackElements = myfont_read_u16(&data);
57 0           tmaxp->maxSizeOfInstructions = myfont_read_u16(&data);
58 0           tmaxp->maxComponentElements = myfont_read_u16(&data);
59 0           tmaxp->maxComponentDepth = myfont_read_u16(&data);
60             }
61             else {
62 0 0         if((table_offset + 4 + 2) > data_size)
63 0           return MyFONT_STATUS_ERROR_TABLE_UNEXPECTED_ENDING;
64            
65 0           tmaxp->numGlyphs = myfont_read_u16(&data);
66             }
67            
68 0           return MyFONT_STATUS_OK;
69             }
70              
71