| #!/usr/bin/python |
| |
| # Copyright (C) 2014 The Android Open Source Project |
| # |
| # 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. |
| |
| import os |
| import sys |
| import re |
| |
| print "Generate v4 fragment related code for leanback" |
| |
| cls = ['Base', 'BaseRow', 'Browse', 'Details', 'Error', 'Headers', |
| 'PlaybackOverlay', 'Playback', 'Rows', 'Search', 'VerticalGrid', 'Branded', |
| 'GuidedStep', 'Onboarding', 'Video'] |
| |
| for w in cls: |
| print "copy {}Fragment to {}SupportFragment".format(w, w) |
| |
| file = open('src/android/support/v17/leanback/app/{}Fragment.java'.format(w), 'r') |
| outfile = open('src/android/support/v17/leanback/app/{}SupportFragment.java'.format(w), 'w') |
| |
| outfile.write("// CHECKSTYLE:OFF Generated code\n") |
| outfile.write("/* This file is auto-generated from {}Fragment.java. DO NOT MODIFY. */\n\n".format(w)) |
| |
| for line in file: |
| line = line.replace('IS_FRAMEWORK_FRAGMENT = true', 'IS_FRAMEWORK_FRAGMENT = false'); |
| for w in cls: |
| line = line.replace('{}Fragment'.format(w), '{}SupportFragment'.format(w)) |
| line = line.replace('android.app.Fragment', 'android.support.v4.app.Fragment') |
| line = line.replace('android.app.Activity', 'android.support.v4.app.FragmentActivity') |
| line = line.replace('activity.getFragmentManager()', 'activity.getSupportFragmentManager()') |
| line = line.replace('Activity activity', 'FragmentActivity activity') |
| line = line.replace('(Activity', '(FragmentActivity') |
| line = re.sub(r'FragmentUtil.getContext\(.*this\)', 'getContext()', line); |
| outfile.write(line) |
| file.close() |
| outfile.close() |
| |
| print "copy VideoFragmentGlueHost to VideoSupportFragmentGlueHost".format(w, w) |
| file = open('src/android/support/v17/leanback/app/VideoFragmentGlueHost.java'.format(w), 'r') |
| outfile = open('src/android/support/v17/leanback/app/VideoSupportFragmentGlueHost.java'.format(w), 'w') |
| |
| outfile.write("// CHECKSTYLE:OFF Generated code\n") |
| outfile.write("/* This file is auto-generated from {}VideoFragmentGlueHost.java. DO NOT MODIFY. */\n\n".format(w)) |
| |
| for line in file: |
| line = line.replace('IS_FRAMEWORK_FRAGMENT = true', 'IS_FRAMEWORK_FRAGMENT = false'); |
| line = line.replace('VideoSupportFragmentGlueHost'.format(w), 'VideoSupportFragmentGlueHost'.format(w)) |
| line = line.replace('android.app.Fragment', 'android.support.v4.app.Fragment') |
| line = line.replace('android.app.Activity', 'android.support.v4.app.FragmentActivity') |
| line = line.replace('activity.getFragmentManager()', 'activity.getSupportFragmentManager()') |
| line = line.replace('Activity activity', 'FragmentActivity activity') |
| line = line.replace('VideoFragment', 'VideoSupportFragment') |
| line = line.replace('PlaybackFragmentGlueHost', 'PlaybackSupportFragmentGlueHost') |
| line = line.replace('(Activity', '(FragmentActivity') |
| outfile.write(line) |
| file.close() |
| outfile.close() |
| |
| print "copy PlaybackFragmentGlueHost to PlaybackSupportFragmentGlueHost".format(w, w) |
| file = open('src/android/support/v17/leanback/app/PlaybackFragmentGlueHost.java'.format(w), 'r') |
| outfile = open('src/android/support/v17/leanback/app/PlaybackSupportFragmentGlueHost.java'.format(w), 'w') |
| |
| outfile.write("// CHECKSTYLE:OFF Generated code\n") |
| outfile.write("/* This file is auto-generated from {}PlaybackFragmentGlueHost.java. DO NOT MODIFY. */\n\n".format(w)) |
| |
| for line in file: |
| line = line.replace('IS_FRAMEWORK_FRAGMENT = true', 'IS_FRAMEWORK_FRAGMENT = false'); |
| line = line.replace('VideoSupportFragmentGlueHost'.format(w), 'VideoSupportFragmentGlueHost'.format(w)) |
| line = line.replace('android.app.Fragment', 'android.support.v4.app.Fragment') |
| line = line.replace('android.app.Activity', 'android.support.v4.app.FragmentActivity') |
| line = line.replace('activity.getFragmentManager()', 'activity.getSupportFragmentManager()') |
| line = line.replace('Activity activity', 'FragmentActivity activity') |
| line = line.replace('PlaybackFragment', 'PlaybackSupportFragment') |
| line = line.replace('PlaybackFragmentGlueHost', 'PlaybackSupportFragmentGlueHost') |
| line = line.replace('(Activity', '(FragmentActivity') |
| outfile.write(line) |
| file.close() |
| outfile.close() |
| |
| print "copy DetailsFragmentBackgroundController to DetailsSupportFragmentBackgroundController".format(w, w) |
| file = open('src/android/support/v17/leanback/app/DetailsFragmentBackgroundController.java'.format(w), 'r') |
| outfile = open('src/android/support/v17/leanback/app/DetailsSupportFragmentBackgroundController.java'.format(w), 'w') |
| |
| outfile.write("// CHECKSTYLE:OFF Generated code\n") |
| outfile.write("/* This file is auto-generated from {}DetailsFragmentBackgroundController.java. DO NOT MODIFY. */\n\n".format(w)) |
| |
| for line in file: |
| line = re.sub(r'FragmentUtil.getContext\(mFragment\)', 'mFragment.getContext()', line); |
| line = line.replace('VideoFragment', 'VideoSupportFragment') |
| line = line.replace('DetailsFragment', 'DetailsSupportFragment') |
| line = line.replace('RowsFragment', 'RowsSupportFragment') |
| line = line.replace('VideoSupportFragmentGlueHost'.format(w), 'VideoSupportFragmentGlueHost'.format(w)) |
| line = line.replace('android.app.Fragment', 'android.support.v4.app.Fragment') |
| outfile.write(line) |
| file.close() |
| outfile.close() |