check-for-inappropriate-files-in-framework 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #!/usr/bin/env ruby
  2. # Copyright (C) 2010 Apple Inc. All rights reserved.
  3. #
  4. # Redistribution and use in source and binary forms, with or without
  5. # modification, are permitted provided that the following conditions
  6. # are met:
  7. # 1. Redistributions of source code must retain the above copyright
  8. # notice, this list of conditions and the following disclaimer.
  9. # 2. Redistributions in binary form must reproduce the above copyright
  10. # notice, this list of conditions and the following disclaimer in the
  11. # documentation and/or other materials provided with the distribution.
  12. #
  13. # THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
  14. # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  15. # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  16. # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
  17. # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  18. # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  19. # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  20. # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  21. # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  22. # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  23. # THE POSSIBILITY OF SUCH DAMAGE.
  24. base_directory = ENV['TARGET_BUILD_DIR'] or throw "Unable to find TARGET_BUILD_DIR in the environment!"
  25. project_name = ENV['PROJECT_NAME'] or throw "Unable to find PROJECT_NAME in the environment!"
  26. is_shallow_bundle = (ENV['SHALLOW_BUNDLE'] || "NO").upcase == "YES"
  27. $INAPPROPRIATE_FILES = { "WebCore" => { "Resources" => ["*.css", "*.in", "*.idl", "*.h"] },
  28. "WebKit2" => { "Resources" => ["*.in", "*.h"] },
  29. }
  30. Dir.chdir base_directory
  31. $error_printed = false
  32. def print_error msg
  33. $error_printed = true
  34. STDERR.puts "ERROR: #{msg}"
  35. end
  36. def print_inappropriate_file_error framework, relative_path
  37. print_error "#{framework}.framework/#{relative_path} should not be present in the framework."
  38. end
  39. def check_framework framework, is_shallow_bundle
  40. $INAPPROPRIATE_FILES[framework].each do |directory, patterns|
  41. framework_bundle_path = is_shallow_bundle ? "#{framework}.framework" : "#{framework}.framework/Versions/A/#{directory}"
  42. Dir.chdir framework_bundle_path do
  43. patterns.each do |pattern|
  44. Dir.glob(pattern).each do |inappropriate_file|
  45. print_inappropriate_file_error framework, is_shallow_bundle ? inappropriate_file : "#{directory}/#{inappropriate_file}"
  46. File.unlink inappropriate_file
  47. end
  48. end
  49. end
  50. end
  51. end
  52. check_framework project_name, is_shallow_bundle
  53. if $error_printed
  54. STDERR.puts
  55. STDERR.puts " Inappropriate files were detected and have been removed from the framework."
  56. STDERR.puts " If this error continues to appear after building again then the build system needs"
  57. STDERR.puts " to be modified so that the inappropriate files are no longer copied in to the framework."
  58. STDERR.puts
  59. exit 1
  60. end