aboutsummaryrefslogtreecommitdiff
path: root/src/fpgm.cc
blob: cf0e53c6db7e3d173f3e480d67286cc4681e9097 (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
40
41
42
43
44
45
46
47
48
49
50
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "fpgm.h"

// fpgm - Font Program
// http://www.microsoft.com/opentype/otspec/fpgm.htm

namespace ots {

bool ots_fpgm_parse(OpenTypeFile *file, const uint8_t *data, size_t length) {
  Buffer table(data, length);

  OpenTypeFPGM *fpgm = new OpenTypeFPGM;
  file->fpgm = fpgm;

  if (length >= 128 * 1024u) {
    return OTS_FAILURE();  // almost all fpgm tables are less than 5k bytes.
  }

  if (!table.Skip(length)) {
    return OTS_FAILURE();
  }

  fpgm->data = data;
  fpgm->length = length;
  return true;
}

bool ots_fpgm_should_serialise(OpenTypeFile *file) {
  if (!file->glyf) return false;  // this table is not for CFF fonts.
  return g_transcode_hints && file->fpgm;
}

bool ots_fpgm_serialise(OTSStream *out, OpenTypeFile *file) {
  const OpenTypeFPGM *fpgm = file->fpgm;

  if (!out->Write(fpgm->data, fpgm->length)) {
    return OTS_FAILURE();
  }

  return true;
}

void ots_fpgm_free(OpenTypeFile *file) {
  delete file->fpgm;
}

}  // namespace ots