blob: a094eca6ee238a2f001dd9722da243289087ab1e [file] [log] [blame]
# -*- coding: utf-8 -*-
# Copyright 2010-2014, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
# * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
__author__ = "taku"
import sys
def IsPrefix(str, key):
try:
n = str.index(key)
except:
n = -1
if n == 0:
return True
else:
return False
def LoadRewriteMapRule(filename):
fh = open(filename)
rule = []
for line in fh:
line = line.rstrip("\n")
if not line or line.startswith("#"):
continue
fields = line.split()
rule.append([fields[0], fields[1]])
return rule
def ReadPOSID(id_file, special_pos_file):
pos_list = []
for line in open(id_file, "r"):
fields = line.split()
pos_list.append(fields[1])
for line in open(special_pos_file, "r"):
if len(line) <= 1 or line[0] == "#":
continue
fields = line.split()
pos_list.append(fields[0])
return pos_list
def main():
# read lid file
pos_list = ReadPOSID(sys.argv[1], sys.argv[2])
# read rule file
rules = LoadRewriteMapRule(sys.argv[3])
current_id = 1
id_map = {}
ids = []
for target in pos_list:
id = 0
for rule in rules:
if IsPrefix(target, rule[0]):
if rule[1] in id_map:
id = id_map[rule[1]]
else:
id = current_id
id_map[rule[1]] = current_id
current_id += 1
ids.append(str(id))
print "const uint8 kLidGroup[] = {"
print ",\n".join(ids)
print "};"
if __name__ == "__main__":
main()