mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
73 lines
1.9 KiB
Python
73 lines
1.9 KiB
Python
#!/usr/bin/env python3
|
|
#
|
|
# Copyright 2013 The Flutter Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import argparse
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
ANDROID_LOG_CLASS = 'android.util.Log'
|
|
FLUTTER_LOG_CLASS = 'io.flutter.Log'
|
|
|
|
ANDROIDX_TRACE_CLASS = 'androidx.tracing.Trace'
|
|
ANDROID_TRACE_CLASS = 'android.tracing.Trace'
|
|
FLUTTER_TRACE_CLASS = 'io.flutter.util.TraceSection'
|
|
|
|
|
|
def CheckBadFiles(bad_files, bad_class, good_class):
|
|
if bad_files:
|
|
print('')
|
|
print('Illegal import %s detected in the following files:' % bad_class)
|
|
for bad_file in bad_files:
|
|
print(' - ' + bad_file)
|
|
print('Use %s instead.' % good_class)
|
|
print('')
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser(
|
|
description='Checks Flutter Android library for forbidden imports'
|
|
)
|
|
parser.add_argument('--stamp', type=str, required=True)
|
|
parser.add_argument('--files', type=str, required=True, nargs='+')
|
|
args = parser.parse_args()
|
|
|
|
open(args.stamp, 'a').close()
|
|
|
|
bad_log_files = []
|
|
bad_trace_files = []
|
|
|
|
for file in args.files:
|
|
if (file.endswith(os.path.join('io', 'flutter', 'Log.java')) or
|
|
file.endswith(os.path.join('io', 'flutter', 'util', 'TraceSection.java')
|
|
)):
|
|
continue
|
|
with open(file) as f:
|
|
contents = f.read()
|
|
if ANDROID_LOG_CLASS in contents:
|
|
bad_log_files.append(file)
|
|
if ANDROIDX_TRACE_CLASS in contents or ANDROID_TRACE_CLASS in contents:
|
|
bad_trace_files.append(file)
|
|
|
|
has_bad_files = CheckBadFiles(
|
|
bad_log_files, ANDROID_LOG_CLASS, FLUTTER_LOG_CLASS
|
|
)
|
|
has_bad_files = has_bad_files or CheckBadFiles(
|
|
bad_trace_files, 'android[x].tracing.Trace', FLUTTER_TRACE_CLASS
|
|
)
|
|
|
|
if has_bad_files:
|
|
return 1
|
|
|
|
return 0
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main())
|