This file is indexed.

/usr/lib/python2.7/dist-packages/nototools/notodiff.py is in python-nototools 0~20170925-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# Copyright 2016 Google Inc. All Rights Reserved.
#
# 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.


"""Provides the command-line utility `notodiff`.

Leverages various DiffFinder classes, depending on what's given via the
`diff_type` argument. Can compare multiple font pairs via the `match` argument.
For shaping comparisons, all results are sorted together and the largest
differences from all pairs are shown first. For GPOS the pairs are still
compared separately.
"""

from __future__ import print_function

import argparse
import glob
import logging
import os
import sys

from nototools import gpos_diff, gsub_diff, shape_diff

logger = logging.getLogger('notodiff')


def _shape(
        path_a, path_b, stats, diff_type, font_size, render_path,
        diff_threshold=0):
    """Do a shape comparison (glyph area or rendered) and add results to stats.

    path_a and b refer to binary font files (OTF or TTF). stats should be a
    list (possibly empty) of <diff, glyph-name, font-name> tuples, for sorting.
    diff_type and render_path are passed through from the original call to
    notodiff.
    """

    diff_finder = shape_diff.ShapeDiffFinder(
        path_a, path_b, stats, ratio_diffs=True, diff_threshold=diff_threshold)

    if diff_type == 'area':
        diff_finder.find_area_diffs()
    elif diff_type == 'shape':
        diff_finder.find_shape_diffs()
    elif diff_type == 'area-shape-product':
        diff_finder.find_area_shape_diff_products()
    else:
        diff_finder.find_rendered_diffs(font_size, render_path)


def _gpos(path_a, path_b, error_bound, out_lines, print_font=False):
    """Do a GPOS table comparison and print results.

    path_a and b refer to binaries from which ttxn output is made. print_font
    is a boolean flag designating whether to print path_a (useful if _gpos is
    being called multiple times in succession).
    """

    if print_font:
        print('-- %s --' % os.path.basename(path_a))
    diff_finder = gpos_diff.GposDiffFinder(path_a, path_b, error_bound,
                                           out_lines)
    print(diff_finder.find_kerning_diffs())
    print(diff_finder.find_mark_class_diffs())
    print(diff_finder.find_positioning_diffs())
    print(diff_finder.find_positioning_diffs(mark_type='mark'))
    print()


def _gsub(path_a, path_b, out_lines, print_font=False):
    """Do a GSUB table comparison and print results.

    path_a and b refer to binaries from which ttxn output is made. print_font
    is a boolean flag designating whether to print path_a (useful if _gsub is
    being called multiple times in succession).
    """

    if print_font:
        print('-- %s --' % os.path.basename(path_a))
    diff_finder = gsub_diff.GsubDiffFinder(path_a, path_b, out_lines)
    print(diff_finder.find_gsub_diffs())
    print()


def _run_multiple(func, filematch, dir_a, dir_b, *args):
    """Run a comparison function (probably _shape or _gpos) multiple times.

    Runs the given function "func" for each file in dir_a matching filematch,
    comparing it with a respective file of the same name in dir_b. Variable
    arguments are passed through when calling func.
    """

    compared = 0
    for path_a in glob.glob(os.path.join(dir_a, filematch)):
        path_b = path_a.replace(dir_a, dir_b)
        if os.path.exists(path_b):
            compared += 1
            tail = path_a[len(dir_a):]
            if tail.startswith('/'):
                tail = tail[1:]
            logger.info('Compare %s' % tail)
            func(path_a, path_b, *args)
    logger.info('Compared %d fonts' % compared)


def _validate_paths(before_path, after_path):
    valid_paths = True
    if not os.path.exists(before_path):
        print('Before path is invalid: %s' % before_path)
        valid_paths = False
    if not os.path.exists(after_path):
        print('After path is invalid: %s' % after_path)
        valid_paths = False
    return valid_paths


def main():
    parser = argparse.ArgumentParser(
        description='Compare fonts.')
    parser.add_argument('--before', required=True,
                        help='first font, or directory if match is used')
    parser.add_argument('--after', required=True,
                        help='second font, or directory if match is used')
    parser.add_argument('-t', '--diff-type', default='area',
                        choices=('area', 'shape', 'area-shape-product',
                                 'rendered', 'gpos', 'gsub'),
                        help='type of comparison to run (defaults to "area")')
    parser.add_argument('-m', '--match',
                        help='glob to match files under the BEFORE directory, '
                        'to compare against those with the same names under '
                        'the AFTER directory.')
    parser.add_argument('-l', '--out-lines', type=int, default=20,
                        help='number of differences to print (default 20)')
    parser.add_argument('-w', '--whitelist', nargs='+', default=(),
                        help='list of one or more glyph names to ignore for '
                        'area or rendered differences')
    parser.add_argument('--font-size', type=int, default=128,
                        help='if DIFF_TYPE is "rendered", size to render '
                        'samples at (default 128)')
    parser.add_argument('--render-path', help='if provided and DIFF_TYPE is '
                        '"rendered", saves comparison renderings here')
    parser.add_argument('--diff-threshold', type=float, default=0,
                        help='minimal diff to report (default 0)')
    parser.add_argument('--verbose', default='WARNING')
    args = parser.parse_args()

    logging.basicConfig(level=getattr(logging, args.verbose.upper()))

    if not _validate_paths(args.before, args.after):
        return 1

    if args.diff_type in ('area', 'shape', 'area-shape-product', 'rendered'):
        stats = {}
        if args.match:
            _run_multiple(_shape, args.match, args.before, args.after, stats,
                          args.diff_type, args.font_size, args.render_path,
                          args.diff_threshold)
        else:
            _shape(args.before, args.after, stats, args.diff_type,
                   args.font_size, args.render_path, args.diff_threshold)

        if stats:
            print(shape_diff.ShapeDiffFinder.dump(
                stats, args.whitelist, args.out_lines,
                include_vals=(args.diff_type in ('area', 'area-shape-product')),
                multiple_fonts=bool(args.match)))

    elif args.diff_type == 'gpos':
        if args.match:
            _run_multiple(_gpos, args.match, args.before, args.after,
                          args.diff_threshold, args.out_lines, True)
        else:
            _gpos(args.before, args.after, args.diff_threshold, args.out_lines)

    elif args.diff_type == 'gsub':
        if args.match:
            _run_multiple(_gsub, args.match, args.before, args.after,
                          args.out_lines, True)
        else:
            _gsub(args.before, args.after, args.out_lines)

    else:
        assert 0, 'Got unhandled diff type "%s"' % args.diff_type


if __name__ == '__main__':
    sys.exit(main())