require 'rbconfig' require 'rubygems' require 'time' require 'rake/clean' require 'rexml/document' require 'timeout' require_relative 'ruboto.device' ON_WINDOWS = (RbConfig::CONFIG['host_os'] =~ /mswin|mingw/i) ANT_BINARY = ON_WINDOWS ? 'ant.bat' : 'ant' ANT_VERSION_CMD = "#{ANT_BINARY} -version" if (ant_version_output = `#{ANT_VERSION_CMD}`) !~ /version (\d+)\.(\d+)\.(\d+)/ || $1.to_i < 1 || ($1.to_i == 1 && $2.to_i < 8) puts ANT_VERSION_CMD puts ant_version_output puts "ANT version 1.8.0 or later required. Version found: #{$1}.#{$2}.#{$3}" exit 1 end ANT_CMD = ANT_BINARY.dup ANT_CMD << ' -v' if Rake.application.options.trace == true # # OS independent "which" # From: http://stackoverflow.com/questions/2108727/which-in-ruby-checking-if-program-exists-in-path-from-ruby # def which(cmd) exts = ENV['PATHEXT'] ? ENV['PATHEXT'].split(';') : [''] ENV['PATH'].gsub('\\', '/').split(File::PATH_SEPARATOR).each do |path| exts.each do |ext| exe = File.join(path, "#{cmd}#{ext}") return exe if File.executable? exe end end nil end adb_version_str = `adb version` (puts 'Android SDK platform tools not in PATH (adb command not found).'; exit 1) unless $? == 0 (puts "Unrecognized adb version: #{$1}"; exit 1) unless adb_version_str =~ /Android Debug Bridge version (\d+\.\d+\.\d+)/ (puts "adb version 1.0.31 or later required. Version found: #{$1}"; exit 1) unless Gem::Version.new($1) >= Gem::Version.new('1.0.31') android_home = ENV['ANDROID_HOME'] if android_home.nil? if (adb_path = which('adb')) android_home = File.dirname(File.dirname(adb_path)) ENV['ANDROID_HOME'] = android_home else abort 'You need to set the ANDROID_HOME environment variable.' end else android_home = android_home.gsub('\\', '/') end # FIXME(uwe): Simplify when we stop supporting Android SDK < 22: Don't look in platform-tools for dx DX_FILENAMES = Dir[File.join(android_home, '{build-tools/*,platform-tools}', ON_WINDOWS ? 'dx.bat' : 'dx')] # EMXIF unless DX_FILENAMES.any? puts 'You need to install the Android SDK Build-tools!' exit 1 end def manifest @manifest ||= REXML::Document.new(File.read(MANIFEST_FILE)) end def package manifest.root.attribute('package') end def build_project_name @build_project_name ||= REXML::Document.new(File.read('build.xml')).elements['project'].attribute(:name).value end def app_files_path @app_files_path ||= "/data/data/#{package}/files" end BUNDLE_JAR = File.expand_path 'libs/bundle.jar' BUNDLE_PATH = File.join(PROJECT_DIR, 'bin', 'bundle') MANIFEST_FILE = File.expand_path 'AndroidManifest.xml' PROJECT_PROPS_FILE = File.expand_path 'project.properties' RUBOTO_CONFIG_FILE = File.expand_path 'ruboto.yml' GEM_FILE = File.expand_path 'Gemfile.apk' GEM_LOCK_FILE = "#{GEM_FILE}.lock" RELEASE_APK_FILE = File.expand_path "bin/#{build_project_name}-release.apk" APK_FILE = File.expand_path "bin/#{build_project_name}-debug.apk" TEST_APK_FILE = File.expand_path "test/bin/#{build_project_name}Test-debug.apk" JRUBY_JARS = Dir[File.expand_path 'libs/{jruby-*,dx}.jar'] JARS = Dir[File.expand_path 'libs/*.jar'] - JRUBY_JARS RESOURCE_FILES = Dir[File.expand_path 'res/**/*'] JAVA_SOURCE_FILES = Dir[File.expand_path 'src/**/*.java'] RUBY_SOURCE_FILES = Dir[File.expand_path 'src/**/*.rb'] RUBY_ACTIVITY_SOURCE_FILES = RUBY_SOURCE_FILES.select { |fn| fn =~ /_activity.rb$/ } OTHER_SOURCE_FILES = Dir[File.expand_path 'src/**/*'] - JAVA_SOURCE_FILES - RUBY_SOURCE_FILES CLASSES_CACHE = "#{PROJECT_DIR}/bin/#{build_project_name}-debug-unaligned.apk.d" BUILD_XML_FILE = "#{PROJECT_DIR}/build.xml" APK_DEPENDENCIES = [:patch_dex, MANIFEST_FILE, BUILD_XML_FILE, RUBOTO_CONFIG_FILE, BUNDLE_JAR, CLASSES_CACHE] + JRUBY_JARS + JARS + JAVA_SOURCE_FILES + RESOURCE_FILES + RUBY_SOURCE_FILES + OTHER_SOURCE_FILES QUICK_APK_DEPENDENCIES = APK_DEPENDENCIES - RUBY_SOURCE_FILES KEYSTORE_FILE = (key_store = File.readlines('ant.properties').grep(/^key.store=/).first) ? File.expand_path(key_store.chomp.sub(/^key.store=/, '').sub('${user.home}', '~')) : "#{build_project_name}.keystore" KEYSTORE_ALIAS = (key_alias = File.readlines('ant.properties').grep(/^key.alias=/).first) ? key_alias.chomp.sub(/^key.alias=/, '') : build_project_name JRUBY_ADAPTER_FILE = "#{PROJECT_DIR}/src/org/ruboto/JRubyAdapter.java" RUBOTO_ACTIVITY_FILE = "#{PROJECT_DIR}/src/org/ruboto/RubotoActivity.java" CLEAN.include('bin', 'gen', 'test/bin', 'test/gen') task default: :debug if File.exists?(CLASSES_CACHE) expected_jars = File.readlines(CLASSES_CACHE).grep(%r{#{PROJECT_DIR}/libs/(.*\.jar) \\}).map { |l| l =~ %r{#{PROJECT_DIR}/libs/(.*\.jar) \\}; $1 } actual_jars = Dir['libs/*.jar'].map { |f| f =~ /libs\/(.*\.jar)/; $1 } changed_jars = ((expected_jars | actual_jars) - (expected_jars & actual_jars)) unless changed_jars.empty? puts "Jars have changed: #{changed_jars.join(', ')}" FileUtils.touch(CLASSES_CACHE) end end file CLASSES_CACHE file JRUBY_JARS => RUBOTO_CONFIG_FILE do next unless File.exists? RUBOTO_CONFIG_FILE jruby_jars_mtime = JRUBY_JARS.map { |f| File.mtime(f) }.min ruboto_yml_mtime = File.mtime(RUBOTO_CONFIG_FILE) next if jruby_jars_mtime > ruboto_yml_mtime puts '*' * 80 if JRUBY_JARS.empty? puts ' The JRuby jars are missing.' else puts " The JRuby jars need reconfiguring after changes to #{RUBOTO_CONFIG_FILE}" puts " #{RUBOTO_CONFIG_FILE}: #{ruboto_yml_mtime}" puts " #{JRUBY_JARS.join(', ')}: #{jruby_jars_mtime}" end puts ' Run "ruboto update jruby" to regenerate the JRuby jars' puts '*' * 80 end desc 'build debug package' task debug: APK_FILE namespace :debug do desc 'build debug package if compiled files have changed' task quick: QUICK_APK_DEPENDENCIES do |t| build_apk(t, false) end end desc 'build package and install it on the emulator or device' task install: APK_FILE do install_apk(package, APK_FILE) end desc 'uninstall, build, and install the application' task reinstall: [:uninstall, APK_FILE, :install] namespace :install do # FIXME(uwe): Remove December 2013 desc 'Deprecated: use "reinstall" instead.' task clean: :reinstall do puts '"rake install:clean" is deprecated. Use "rake reinstall" instead.' end desc 'Install the application, but only if compiled files are changed.' task quick: 'debug:quick' do install_apk(package, APK_FILE) end end desc 'Build APK for release' task release: [:tag, RELEASE_APK_FILE] file RELEASE_APK_FILE => [KEYSTORE_FILE] + APK_DEPENDENCIES do |t| build_apk(t, true) end desc 'Create a keystore for signing the release APK' task keystore: KEYSTORE_FILE file KEYSTORE_FILE do unless File.read('ant.properties') =~ /^key.store=/ File.open('ant.properties', 'a') { |f| f << "\nkey.store=#{KEYSTORE_FILE}\n" } end unless File.read('ant.properties') =~ /^key.alias=/ File.open('ant.properties', 'a') { |f| f << "\nkey.alias=#{KEYSTORE_ALIAS}\n" } end sh "keytool -genkey -v -keystore #{KEYSTORE_FILE} -alias #{KEYSTORE_ALIAS} -keyalg RSA -keysize 2048 -validity 10000" end desc 'Tag this working copy with the current version' task :tag do next unless File.exists?('.git') && `git --version` =~ /git version / unless `git branch` =~ /^\* master$/ puts 'You must be on the master branch to release!' exit! end # sh "git commit --allow-empty -a -m 'Release #{version}'" output = `git status --porcelain` raise "\nWorkspace not clean!\n#{output}" unless output.empty? sh "git tag #{version}" sh 'git push origin master --tags' end # FIXME(uwe): Remove December 2013 desc 'Deprecated: Use "ruboto emulator" instead.' task :emulator do puts '"rake emulator" is deprecated. Use "ruboto emulator" instead.' sh 'ruboto emulator' end # EMXIF desc 'Start the application on the device/emulator.' task :start do start_app end desc 'Stop the application on the device/emulator (requires emulator or rooted device).' task :stop do raise 'Unable to stop app. Only available on emulator.' unless stop_app end desc 'Restart the application' task restart: [:stop, :start] task :uninstall do uninstall_apk(package, APK_FILE) end file PROJECT_PROPS_FILE file File.basename(MANIFEST_FILE) => MANIFEST_FILE file MANIFEST_FILE => PROJECT_PROPS_FILE do old_manifest = File.read(MANIFEST_FILE) manifest = old_manifest.dup # FIXME(uwe): Remove 'L' special case when Android L has been released. if sdk_level == 21 manifest.sub!(/(android:minSdkVersion=').*?(')/) { "#{$1}L#{$2}" } manifest.sub!(/(android:targetSdkVersion=').*?(')/) { "#{$1}L#{$2}" } else manifest.sub!(/(android:minSdkVersion=').*?(')/) { "#{$1}#{sdk_level}#{$2}" } manifest.sub!(/(android:targetSdkVersion=').*?(')/) { "#{$1}#{sdk_level}#{$2}" } end # EMXIF if manifest != old_manifest puts "\nUpdating #{File.basename MANIFEST_FILE} with target from #{File.basename PROJECT_PROPS_FILE}\n\n" File.open(MANIFEST_FILE, 'w') { |f| f << manifest } end end file RUBOTO_CONFIG_FILE task build_xml: BUILD_XML_FILE task File.basename(BUILD_XML_FILE) => BUILD_XML_FILE file BUILD_XML_FILE => RUBOTO_CONFIG_FILE do puts 'patching build.xml' ant_script = File.read(BUILD_XML_FILE) # FIXME(uwe): There is no output from this DEX helper. Difficult to debug. # FIXME(uwe): Ensure that pre-dexed jars are not dexed again. # FIXME(uwe): Move this logic to ruboto/util/update.rb since it is independent of ruboto.yml changes. # https://android.googlesource.com/platform/tools/base/+/master/legacy/ant-tasks/src/main/java/com/android/ant/DexExecTask.java # def patch_ant_script(min_sdk, ant_script = File.read('build.xml')) indent = ' ' start_marker = '' end_marker = '' dx_override = <<-EOF #{indent}#{start_marker} Java classes and jars are unchanged. Converting compiled files and external libraries into ${out.absolute.dir} (multi-dex) Dexing ${out.classes.absolute.dir} and ${toString:out.dex.jar.input.ref} Adding ${second_dex_path} to ${resource.package.file.name} #{end_marker} EOF ant_script.gsub!(/\s*#{start_marker}.*?#{end_marker}\s*/m, '') # FIXME(uwe): Remove condition when we stop supporting Android 4.0 and older. if sdk_level >= 15 unless ant_script.gsub!(/\s*(<\/project>)/, "\n\n#{dx_override}\n\n\\1") raise 'Bad ANT script' end end File.open(BUILD_XML_FILE, 'w') { |f| f << ant_script } end task jruby_adapter: JRUBY_ADAPTER_FILE file JRUBY_ADAPTER_FILE => RUBOTO_CONFIG_FILE do require 'yaml' ruboto_yml = (YAML.load(File.read(RUBOTO_CONFIG_FILE)) || {}) source = File.read(JRUBY_ADAPTER_FILE) # # HeapAlloc # comment = '' marker_topic ='Ruboto HeapAlloc' begin_marker = "// BEGIN #{marker_topic}" end_marker = "// END #{marker_topic}" unless (heap_alloc = ruboto_yml['heap_alloc']) heap_alloc = 13 comment = '// ' end indent = ' ' * 12 config = < RUBY_ACTIVITY_SOURCE_FILES do |task| original_source = File.read(RUBOTO_ACTIVITY_FILE) next unless original_source =~ %r{\A(.*Generated Methods.*?\*/\n*)(.*)\B}m intro, generated_methods = $1, $2.scan(/(?:\s*\n*)(^\s*?public.*?^ }\n)/m).flatten implemented_methods = task.prerequisites.map { |f| File.read(f).scan(/(?:^\s*def\s+)([^\s(]+)/) }.flatten.sort commented_methods = generated_methods.map do |gm| implemented_methods. any? { |im| gm.upcase.include?(" #{im.upcase.gsub('_', '')}(") } ? gm : "/*\n#{gm}*/\n" end new_source = "#{intro}#{commented_methods.join("\n")}\n}\n" if new_source != original_source puts "Regenerating #{File.basename RUBOTO_ACTIVITY_FILE} with active methods" File.open(RUBOTO_ACTIVITY_FILE, 'w') { |f| f << new_source } end end task apk_dependencies: APK_DEPENDENCIES file APK_FILE => APK_DEPENDENCIES do |t| build_apk(t, false) end task :patch_dex do DX_FILENAMES.each do |dx_filename| new_dx_content = File.read(dx_filename).dup xmx_pattern = ON_WINDOWS ? /^set defaultXmx=-Xmx(\d+)(M|m|G|g|T|t)/ : /^defaultMx="-Xmx(\d+)(M|m|G|g|T|t)"/ if new_dx_content =~ xmx_pattern && ($1.to_i * 1024 ** {M: 2, G: 3, T: 4}[$2.upcase.to_sym]) < dex_heap_size*1024**2 puts "Increasing max heap space from #{$1}#{$2} to #{dex_heap_size}M in #{dx_filename}" new_xmx_value = ON_WINDOWS ? %Q{set defaultXmx=-Xmx#{dex_heap_size}M} : %Q{defaultMx="-Xmx#{dex_heap_size}M"} new_dx_content.sub!(xmx_pattern, new_xmx_value) File.open(dx_filename, 'w') { |f| f << new_dx_content } rescue puts "\n!!! Unable to increase dx heap size !!!\n\n" end end end desc 'Copy scripts to emulator or device' task update_scripts: %w(install:quick) do update_scripts(package) end desc 'Copy scripts to emulator or device and reload' task boing: %w(update_scripts:reload) namespace :update_scripts do desc 'Copy scripts to emulator and restart the app' task restart: QUICK_APK_DEPENDENCIES do |t| if build_apk(t, false) || !stop_app install_apk(package, APK_FILE) else update_scripts(package) end start_app end desc 'Copy scripts to emulator and restart the app' task start: QUICK_APK_DEPENDENCIES do |t| if build_apk(t, false) install_apk(package, APK_FILE) else update_scripts(package) end start_app end desc 'Copy scripts to emulator and reload' task reload: QUICK_APK_DEPENDENCIES do |t| if build_apk(t, false) install_apk(package, APK_FILE) start_app else scripts = update_scripts(package) if scripts && app_running? reload_scripts(scripts) else start_app end end end end task test: APK_DEPENDENCIES + [:uninstall] do Dir.chdir('test') do puts 'Running tests' sh "adb uninstall #{package}.tests" sh "#{ANT_CMD} instrument install test" end end namespace :test do task quick: :update_scripts do Dir.chdir('test') do puts 'Running quick tests' install_retry_count = 0 begin timeout 300 do sh "#{ANT_CMD} instrument install" end rescue TimeoutError puts 'Installing package timed out.' install_retry_count += 1 if install_retry_count <= 3 puts 'Retrying install...' retry end puts 'Trying one final time to install the package:' sh "#{ANT_CMD} installi" end sh "#{ANT_CMD} run-tests-quick" end end end file GEM_FILE file GEM_LOCK_FILE desc 'Generate bundle jar from Gemfile' task bundle: BUNDLE_JAR file BUNDLE_JAR => [GEM_FILE, GEM_LOCK_FILE] do next unless File.exists? GEM_FILE puts "Generating #{BUNDLE_JAR}" require 'bundler' if false # FIXME(uwe): Issue #547 https://github.com/ruboto/ruboto/issues/547 # Bundler.settings[:platform] = Gem::Platform::DALVIK sh "bundle install --gemfile #{GEM_FILE} --path=#{BUNDLE_PATH} --platform=dalvik#{sdk_level} --without development test" else # ENV["DEBUG"] = "true" require 'bundler/vendored_thor' # Store original RubyGems/Bundler environment platforms = Gem.platforms ruby_engine = defined?(RUBY_ENGINE) && RUBY_ENGINE env_home = ENV['GEM_HOME'] env_path = ENV['GEM_PATH'] # Override RUBY_ENGINE (we can bundle from MRI for JRuby) Gem.platforms = [Gem::Platform::RUBY, Gem::Platform.new("universal-dalvik-#{sdk_level}"), Gem::Platform.new('universal-java')] ENV['GEM_HOME'] = BUNDLE_PATH ENV['GEM_PATH'] = BUNDLE_PATH Gem.paths = BUNDLE_PATH Gem.refresh old_verbose, $VERBOSE = $VERBOSE, nil begin Object.const_set('RUBY_ENGINE', 'jruby') Object.const_set('JRUBY_VERSION', '7.7.7') unless defined?(JRUBY_VERSION) ensure $VERBOSE = old_verbose end ENV['BUNDLE_GEMFILE'] = GEM_FILE Bundler.ui = Bundler::UI::Shell.new Bundler.bundle_path = Pathname.new BUNDLE_PATH Bundler.settings.without = [:development, :test] definition = Bundler.definition definition.validate_ruby! Bundler::Installer.install(Bundler.root, definition) unless Dir["#{BUNDLE_PATH}/bundler/gems/"].empty? system("mkdir -p '#{BUNDLE_PATH}/gems'") system("mv #{BUNDLE_PATH}/bundler/gems/* #{BUNDLE_PATH}/gems/") end # Restore RUBY_ENGINE (limit the scope of this hack) old_verbose, $VERBOSE = $VERBOSE, nil begin Object.const_set('RUBY_ENGINE', ruby_engine) ensure $VERBOSE = old_verbose end Gem.platforms = platforms ENV['GEM_HOME'] = env_home ENV['GEM_PATH'] = env_path end GEM_PATH_PATTERN = /^PATH\s*remote:\s*(.*)$\s*specs:\s*(.*)\s+\(.+\)$/ File.read(GEM_LOCK_FILE).scan(GEM_PATH_PATTERN).each do |path, name| FileUtils.mkpath "#{BUNDLE_PATH}/gems" FileUtils.rm_rf "#{BUNDLE_PATH}/gems/#{name}" FileUtils.cp_r File.expand_path(path, File.dirname(GEM_FILE)), "#{BUNDLE_PATH}/gems" end gem_paths = Dir["#{BUNDLE_PATH}/gems"] raise 'Gem path not found' if gem_paths.empty? raise "Found multiple gem paths: #{gem_paths}" if gem_paths.size > 1 gem_path = gem_paths[0] puts "Found gems in #{gem_path}" if package != 'org.ruboto.core' && JRUBY_JARS.none? { |f| File.exists? f } Dir.chdir gem_path do # FIXME(uwe): Fetch this list from the ruboto-core Gemfile.apk.lock? ruboto_core_extension_gems = %w{activerecord activerecord-jdbc-adapter jruby-openssl json thread_safe} Dir['*'].each do |g| next unless g =~ /#{ruboto_core_extension_gems.join('|')}-[^-]+(-java)$/ puts "Removing #{g} gem since it is included in the RubotoCore platform apk." FileUtils.rm_rf g end end else Dir.chdir gem_path do Dir['jruby-openssl-*/lib'].each do |g| rel_dir = "#{g}/lib/ruby" unless File.exists? rel_dir puts "Relocating #{g} files to match standard load path." dirs = Dir["#{g}/*"] FileUtils.mkdir_p rel_dir dirs.each do |d| FileUtils.move d, rel_dir end end end end end # Expand JARs Dir.chdir gem_path do Dir['*'].each do |gem_lib| Dir.chdir "#{gem_lib}/lib" do Dir['**/*.jar'].each do |jar| unless jar =~ /sqlite-jdbc/ puts "Expanding #{gem_lib} #{jar} into #{BUNDLE_JAR}" `jar xf #{jar}` if ENV['STRIP_INVOKERS'] invokers = Dir['**/*$INVOKER$*.class'] if invokers.size > 0 puts "Removing invokers(#{invokers.size})..." FileUtils.rm invokers end populators = Dir['**/*$POPULATOR.class'] if populators.size > 0 puts "Removing populators(#{populators.size})..." FileUtils.rm populators end end end if jar == 'arjdbc/jdbc/adapter_java.jar' jar_load_code = <<-END_CODE require 'jruby' Java::arjdbc.jdbc.AdapterJavaService.new.basicLoad(JRuby.runtime) END_CODE # TODO(uwe): Seems ARJDBC requires all these classes to be present... # classes = Dir['arjdbc/**/*'] # dbs = /db2|derby|firebird|h2|hsqldb|informix|mimer|mssql|mysql|oracle|postgres|sybase/i # files = classes.grep(dbs) # FileUtils.rm_f(files) # ODOT # FIXME(uwe): Extract files with case sensitive names for ARJDBC 1.2.7-1.3.x puts `jar xf #{jar} arjdbc/postgresql/PostgreSQLRubyJdbcConnection.class arjdbc/mssql/MSSQLRubyJdbcConnection.class arjdbc/sqlite3/SQLite3RubyJdbcConnection.class` # EMXIF elsif jar =~ /shared\/jopenssl.jar$/ jar_load_code = <<-END_CODE require 'jruby' puts 'Starting JRuby OpenSSL Service' public Java::JopensslService.new.basicLoad(JRuby.runtime) END_CODE elsif jar =~ %r{json/ext/generator.jar$} jar_load_code = <<-END_CODE require 'jruby' puts 'Starting JSON Generator Service' public Java::json.ext.GeneratorService.new.basicLoad(JRuby.runtime) END_CODE elsif jar =~ %r{json/ext/parser.jar$} jar_load_code = <<-END_CODE require 'jruby' puts 'Starting JSON Parser Service' public Java::json.ext.ParserService.new.basicLoad(JRuby.runtime) END_CODE elsif jar =~ %r{thread_safe/jruby_cache_backend.jar$} jar_load_code = <<-END_CODE require 'jruby' puts 'Starting threadsafe JRubyCacheBackend Service' public begin Java::thread_safe.JrubyCacheBackendService.new.basicLoad(JRuby.runtime) rescue Exception puts "Exception starting threadsafe JRubyCacheBackend Service" puts $! puts $!.backtrace.join("\n") raise end END_CODE else jar_load_code = '' end puts "Writing dummy JAR file #{jar + '.rb'}" File.open(jar + '.rb', 'w') { |f| f << jar_load_code } if jar.end_with?('.jar') puts "Writing dummy JAR file #{jar.sub(/.jar$/, '.rb')}" File.open(jar.sub(/.jar$/, '.rb'), 'w') { |f| f << jar_load_code } end FileUtils.rm_f(jar) end # FIXME(uwe): Issue # 705 https://github.com/ruboto/ruboto/issues/705 # FIXME(uwe): Use the files from the bundle instead of stdlib. if (stdlib_jar = Dir["#{PROJECT_DIR}/libs/jruby-stdlib-*.jar"].sort.last) stdlib_files = `jar tf #{stdlib_jar}`.lines.map(&:chomp) Dir['**/*'].each do |f| if stdlib_files.include? f puts "Removing duplicate file #{f} in gem #{gem_lib}." puts 'Already present in the Ruby Standard Library.' FileUtils.rm f end end end # EMXIF end end end # Remove duplicate files Dir.chdir gem_path do scanned_files = [] source_files = RUBY_SOURCE_FILES.map { |f| f.gsub("#{PROJECT_DIR}/src/", '') } # FIXME(uwe): The gems should be loaded in the loading order defined by the Gemfile.apk(.lock) Dir['*/lib/**/*'].sort.each do |f| next if File.directory? f raise 'Malformed file name' unless f =~ %r{^(.*?)/lib/(.*)$} gem_name, lib_file = $1, $2 if (existing_file = scanned_files.find { |sf| sf =~ %r{(.*?)/lib/#{lib_file}} }) puts "Overwriting duplicate file #{lib_file} in gem #{$1} with file in #{gem_name}" FileUtils.rm existing_file scanned_files.delete existing_file elsif source_files.include? lib_file puts "Removing duplicate file #{lib_file} in gem #{gem_name}" puts "Already present in project source src/#{lib_file}" FileUtils.rm f next end scanned_files << f end end FileUtils.rm_f BUNDLE_JAR Dir["#{gem_path}/*"].each_with_index do |gem_dir, i| `jar #{i == 0 ? 'c' : 'u'}f "#{BUNDLE_JAR}" -C "#{gem_dir}/lib" .` end FileUtils.rm_rf BUNDLE_PATH end desc 'Log activity execution, accepts optional logcat filter' task :log, [:filter] do |t, args| puts '--- clearing logcat' `adb logcat -c` filter = args[:filter] ? args[:filter] : '' # filter log with filter-specs like TAG:LEVEL TAG:LEVEL ... '*:S' logcat_cmd = "adb logcat ActivityManager #{filter}" # we always need ActivityManager logging to catch activity start puts "--- starting logcat: #{logcat_cmd}" IO.popen logcat_cmd do |logcat| puts "--- waiting for activity #{package}/.#{main_activity} ..." activity_started = false started_regex = %r"I.ActivityManager.+Start proc #{package} for activity #{package}/\.#{main_activity}: pid=(?\d+)" started_regex_android_5_1 = %r"I.ActivityManager.+Start proc (?\d+):#{package}/.+ for activity #{package}/\.#{main_activity}" restarted_regex = %r"I.ActivityManager.+START u0 {cmp=#{package}/org.ruboto.RubotoActivity.+} from pid (?\d+)" related_regex = /#{package}|#{main_activity}/ android_4_2_noise_regex = /Unexpected value from nativeGetEnabledTags/ pid_regex = nil logcat.each_line do |line| line.force_encoding(Encoding::BINARY) # FIXME(uwe): Remove when we stop supporting Android 4.2 next if line =~ android_4_2_noise_regex # EMXIF if (activity_start_match = started_regex.match(line) || started_regex_android_5_1.match(line) || restarted_regex.match(line)) activity_started = true pid = activity_start_match[:pid] pid_regex = /\( *#{pid}\): / puts "--- activity PID=#{pid}" end if activity_started && (line =~ pid_regex || line =~ related_regex) puts "#{Time.now.strftime('%Y%m%d %H%M%S.%6N')} #{line}" end end puts '--- logcat closed' end end # Methods def sdk_level File.read(PROJECT_PROPS_FILE).scan(/(?:target=android-)(\d+)/)[0][0].to_i end def strings(name) @strings ||= REXML::Document.new(File.read('res/values/strings.xml')) value = @strings.elements["//string[@name='#{name.to_s}']"] or raise "string '#{name}' not found in strings.xml" value.text end def version manifest.root.attribute('versionName') end def app_name strings :app_name end def main_activity manifest.root.elements['application'].elements["activity[@android:label='@string/app_name']"].attribute('android:name') end def replace_faulty_code(faulty_file, faulty_code) explicit_requires = Dir["#{faulty_file.chomp('.rb')}/*.rb"].sort.map { |f| File.basename(f) }.map do |filename| "require 'active_model/validations/#{filename}'" end.join("\n") old_code = File.read(faulty_file) new_code = old_code.gsub faulty_code, explicit_requires if new_code != old_code puts "Replaced directory listing code in file #{faulty_file} with explicit requires." File.open(faulty_file, 'w') { |f| f << new_code } else puts "Could not find expected faulty code\n\n#{faulty_code}\n\nin file #{faulty_file}\n\n#{old_code}\n\n" end end def build_apk(t, release) apk_file = release ? RELEASE_APK_FILE : APK_FILE if File.exist?(apk_file) changed_prereqs = t.prerequisites.select do |pr| File.file?(pr) && !Dir[pr].empty? && Dir[pr].map { |f| File.mtime(f) }.max > File.mtime(apk_file) end return false if changed_prereqs.empty? changed_prereqs.each { |f| puts "#{f} changed." } puts "Forcing rebuild of #{apk_file}." end if release sh "#{ANT_CMD} release" else sh "#{ANT_CMD} debug" end true end def app_running? `adb shell ps | egrep -e " #{package}\r$"`.size > 0 end def start_app `adb shell am start -a android.intent.action.MAIN -n #{package}/.#{main_activity}` end # Triggers reload of updated scripts and restart of the current activity def reload_scripts(scripts) s = scripts.map { |s| s.gsub(/[&;]/) { |m| "&#{m[0]}" } }.join(';') cmd = %Q{adb shell "am broadcast -a android.intent.action.VIEW -e reload '#{s}'"} puts cmd system cmd end def stop_app output = `adb shell ps | grep #{package} | awk '{print $2}' | xargs adb shell kill` output !~ /Operation not permitted/ end def dex_heap_size # FIXME(uwe): Simplify when we stop supporting 32-bit development environments default = RbConfig::CONFIG['host_cpu'] =~ /86/ ? 3072 : 4096 heap_size = ruboto_config_file[:dex_heap_size] # EMXIF @heap_size ||= (ENV['DX_HEAP_SIZE'] && ENV['DX_HEAP_SIZE'].to_i) || (heap_size && heap_size.to_i) || default end def ruboto_config_file return {} unless File.exist? RUBOTO_CONFIG_FILE @ruboto_config_file ||= (YAML.load(File.read(RUBOTO_CONFIG_FILE)) || {}) end