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