#!/usr/bin/python3
# Copyright 2016 The Font Bakery Authors.
# Copyright 2017 The Google Font Tools Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# See AUTHORS.txt for the list of Authors and LICENSE.txt for the License.
#
import argparse
from fontTools import ttLib

description = 'Fixes TTF Autohint table'
parser = argparse.ArgumentParser(description=description)
parser.add_argument('ttf_font', nargs='+',
                    help="Font in OpenType (TTF/OTF) format")
# TODO:
# parser.add_argument('--autofix', action='store_true', help='Apply autofix')


def main():
    args = parser.parse_args()
    for path in args.ttf_font:
        font = ttLib.TTFont(path)
        if 'TTFA' in font.keys():
            content = font['TTFA'].__dict__['data'].strip()
            ttfa_data = {}
            for line in content.split('\n'):
                key, value = line.strip().split('=')
                ttfa_data[key.strip()] = value.strip()
            print("TTFA table values for '{}':\n{}".format(path, ttfa_data))
        else:
            print("'{}' lacks a TTFA table.".format(path))

if __name__ == '__main__':
  main()

