2018-02-02 03:22:14 +01:00
|
|
|
/*
|
|
|
|
* Copyright © 2010 Behdad Esfahbod
|
|
|
|
* Copyright © 2011,2012 Google, Inc.
|
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
* Google Author(s): Garret Rieger, Rod Sheeter
|
|
|
|
*/
|
2018-01-18 07:09:07 +01:00
|
|
|
|
2018-02-03 02:49:14 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2018-02-02 03:22:14 +01:00
|
|
|
#include "main-font-text.hh"
|
2018-02-04 21:31:24 +01:00
|
|
|
#include "hb-subset.h"
|
2018-01-18 07:09:07 +01:00
|
|
|
|
2018-02-02 03:22:14 +01:00
|
|
|
/*
|
|
|
|
* Command line interface to the harfbuzz font subsetter.
|
|
|
|
*/
|
2018-01-31 04:27:11 +01:00
|
|
|
|
2018-02-02 03:22:14 +01:00
|
|
|
struct subset_consumer_t
|
|
|
|
{
|
|
|
|
subset_consumer_t (option_parser_t *parser)
|
|
|
|
: failed (false), options(parser) {}
|
2018-01-31 04:27:11 +01:00
|
|
|
|
2018-02-02 03:22:14 +01:00
|
|
|
void init (hb_buffer_t *buffer_,
|
|
|
|
const font_options_t *font_opts)
|
|
|
|
{
|
|
|
|
font = hb_font_reference (font_opts->get_font ());
|
2018-01-18 07:09:07 +01:00
|
|
|
}
|
|
|
|
|
2018-02-02 03:22:14 +01:00
|
|
|
void consume_line (const char *text,
|
|
|
|
unsigned int text_len,
|
|
|
|
const char *text_before,
|
|
|
|
const char *text_after)
|
|
|
|
{
|
2018-01-18 07:09:07 +01:00
|
|
|
}
|
|
|
|
|
2018-02-04 21:31:24 +01:00
|
|
|
hb_bool_t
|
|
|
|
write_file (const char *output_file, hb_blob_t *blob) {
|
2018-02-02 03:22:14 +01:00
|
|
|
unsigned int data_length;
|
2018-02-04 21:31:24 +01:00
|
|
|
const char* data = hb_blob_get_data (blob, &data_length);
|
2018-01-18 07:09:07 +01:00
|
|
|
|
2018-02-04 21:31:24 +01:00
|
|
|
int fd_out = open(output_file, O_CREAT | O_WRONLY, S_IRWXU);
|
|
|
|
if (fd_out == -1) {
|
2018-02-02 03:22:14 +01:00
|
|
|
fprintf(stderr, "Unable to open output file");
|
2018-02-04 21:31:24 +01:00
|
|
|
return false;
|
2018-02-02 02:17:36 +01:00
|
|
|
}
|
2018-02-04 21:31:24 +01:00
|
|
|
ssize_t bytes_written = write(fd_out, data, data_length);
|
|
|
|
if (bytes_written == -1) {
|
|
|
|
fprintf(stderr, "Unable to write output file\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (bytes_written != data_length) {
|
|
|
|
fprintf(stderr, "Expected %u bytes written, got %ld\n", data_length,
|
|
|
|
bytes_written);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void finish (const font_options_t *font_opts)
|
|
|
|
{
|
|
|
|
// TODO(Q1) check for errors from creates and such
|
|
|
|
hb_subset_profile_t *subset_profile = hb_subset_profile_create();
|
|
|
|
hb_subset_input_t *subset_input = hb_subset_input_create();
|
|
|
|
hb_face_t *face = hb_font_get_face (font);
|
|
|
|
hb_subset_face_t *subset_face = hb_subset_face_create(face);
|
|
|
|
|
|
|
|
hb_blob_t *result = nullptr;
|
|
|
|
failed = !(hb_subset(subset_profile, subset_input, subset_face, &result)
|
|
|
|
&& write_file(options.output_file, result));
|
2018-01-18 07:09:07 +01:00
|
|
|
|
2018-02-04 21:31:24 +01:00
|
|
|
hb_subset_profile_destroy (subset_profile);
|
|
|
|
hb_subset_input_destroy (subset_input);
|
|
|
|
hb_subset_face_destroy (subset_face);
|
2018-02-02 03:22:14 +01:00
|
|
|
hb_blob_destroy (result);
|
|
|
|
hb_font_destroy (font);
|
2018-01-18 07:09:07 +01:00
|
|
|
}
|
|
|
|
|
2018-02-02 03:22:14 +01:00
|
|
|
public:
|
|
|
|
bool failed;
|
2018-01-31 04:27:11 +01:00
|
|
|
|
2018-02-02 03:22:14 +01:00
|
|
|
private:
|
|
|
|
output_options_t options;
|
|
|
|
hb_font_t *font;
|
|
|
|
};
|
2018-01-31 04:27:11 +01:00
|
|
|
|
2018-02-02 03:22:14 +01:00
|
|
|
int
|
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
main_font_text_t<subset_consumer_t, 10, 0> driver;
|
|
|
|
return driver.main (argc, argv);
|
2018-01-18 07:09:07 +01:00
|
|
|
}
|