d876a4b549
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2159853003 Review-Url: https://codereview.chromium.org/2159853003
48 lines
1.5 KiB
Python
Executable File
48 lines
1.5 KiB
Python
Executable File
#!/usr/bin/env python
|
|
#
|
|
# Copyright 2016 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import argparse
|
|
import sqlite3
|
|
|
|
def create_database(inpath, outpath):
|
|
with sqlite3.connect(outpath) as conn:
|
|
c = conn.cursor();
|
|
c.execute('''CREATE TABLE IF NOT EXISTS gradients (
|
|
FileName TEXT,
|
|
ColorCount INTEGER,
|
|
GradientType TEXT,
|
|
TileMode TEXT,
|
|
EvenlySpaced INTEGER,
|
|
HardStopCount INTEGER,
|
|
Verb TEXT,
|
|
BoundsWidth INTEGER,
|
|
BoundsHeight INTEGER,
|
|
Positions TEXT
|
|
)''');
|
|
c.execute("DELETE FROM gradients");
|
|
|
|
with open(inpath, "r") as results:
|
|
gradients = []
|
|
for line in [line.strip() for line in results]:
|
|
gradients.append(line.split());
|
|
|
|
c.executemany(
|
|
"INSERT INTO gradients VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
|
|
gradients);
|
|
|
|
conn.commit();
|
|
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser(
|
|
description = "Transform Lua script output to a SQL DB");
|
|
parser.add_argument("inpath", help="Path to Lua script output file");
|
|
parser.add_argument("outpath", help="Path to SQL DB");
|
|
args = parser.parse_args();
|
|
|
|
create_database(args.inpath, args.outpath);
|