Module: Ruboto::Util::Update
- Includes:
- SdkLocations, SdkVersions, Build
- Defined in:
- lib/ruboto/util/update.rb
Constant Summary collapse
- TARGET_VERSION_REGEXP =
/^(target=android-)(\d+)$/
Constants included from SdkLocations
SdkLocations::ANDROID_HOME, SdkLocations::ANDROID_TOOLS_REVISION
Constants included from Setup
Setup::ADDONS_URL, Setup::REPOSITORY_BASE, Setup::REPOSITORY_URL, Setup::RUBOTO_GEM_ROOT, Setup::SDK_DOWNLOAD_PAGE, Setup::WINDOWS_ELEVATE_CMD
Constants included from Verify
Constants included from SdkVersions
SdkVersions::API_LEVEL_TO_VERSION, SdkVersions::DEFAULT_TARGET_SDK, SdkVersions::DEFAULT_TARGET_SDK_LEVEL, SdkVersions::MINIMUM_SUPPORTED_SDK, SdkVersions::MINIMUM_SUPPORTED_SDK_LEVEL, SdkVersions::VERSION_TO_API_LEVEL
Constants included from Build
Instance Method Summary collapse
- #install_jruby_jars_gem(jruby_jars_version = ) ⇒ Object
- #read_ruboto_version ⇒ Object
-
#reconfigure_dx_jar ⇒ Object
-
Removes unneeded code from dx.jar.
-
-
#reconfigure_jruby_core(jruby_core_version) ⇒ Object
-
Removes unneeded code from jruby-core - Split into smaller jars that can be used separately FIXME(uwe): Refactor to take a Gem::Version as the parameter.
-
- #reconfigure_jruby_libs(jruby_version) ⇒ Object
-
#reconfigure_jruby_stdlib(jruby_version) ⇒ Object
-
Moves ruby stdlib to the root of the jruby-stdlib jar.
-
-
#update_android(target_level = nil) ⇒ Object
Updating components.
- #update_assets(old_version = nil) ⇒ Object
- #update_bundle ⇒ Object
- #update_classes(old_version, force = nil) ⇒ Object
- #update_core_classes(force = nil) ⇒ Object
- #update_dx_jar(force = nil) ⇒ Object
- #update_icons(force = nil) ⇒ Object
- #update_jruby(force, version, explicit = false) ⇒ Object
- #update_manifest(min_sdk, target, force = false) ⇒ Object
- #update_project_properties_target_level(prop_file, target_level) ⇒ Object
- #update_ruboto(force = nil) ⇒ Object
- #update_test(force, target_level = nil) ⇒ Object
Methods included from Setup
Methods included from Verify
#project_api_level, #project_properties, #save_manifest, #save_ruboto_config, #save_test_manifest, #verify_activity, #verify_api, #verify_manifest, #verify_min_sdk, #verify_package, #verify_project_properties, #verify_ruboto_config, #verify_sdk_versions, #verify_strings, #verify_target_sdk, #verify_test_manifest
Methods included from Build
#build_file, #check_methods, #generate_core_classes, #generate_inheriting_file, #generate_subclass_or_interface, #get_class_or_interface, #methods_header
Instance Method Details
#install_jruby_jars_gem(jruby_jars_version = ) ⇒ Object
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/ruboto/util/update.rb', line 218 def install_jruby_jars_gem(jruby_jars_version = ENV['JRUBY_JARS_VERSION']) if jruby_jars_version version_requirement = %{ -v "#{jruby_jars_version}"} end `gem query -i -n jruby-jars#{version_requirement}` unless $? == 0 local_gem_dir = ENV['LOCAL_GEM_DIR'] || Dir.getwd local_gem_file = "#{local_gem_dir}/jruby-jars-#{jruby_jars_version}.gem" if File.exists?(local_gem_file) system "gem install -l #{local_gem_file} --no-ri --no-rdoc" else system "gem install -r jruby-jars#{version_requirement} --no-ri --no-rdoc" end end raise "install of jruby-jars failed with return code #$?" unless $? == 0 Gem.refresh end |
#read_ruboto_version ⇒ Object
406 407 408 409 |
# File 'lib/ruboto/util/update.rb', line 406 def read_ruboto_version version_file = File.("./#{SCRIPTS_DIR}/ruboto/version.rb") File.read(version_file).slice(/^\s*VERSION = '(.*?)'/, 1) if File.exists?(version_file) end |
#reconfigure_dx_jar ⇒ Object
-
Removes unneeded code from dx.jar
716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 |
# File 'lib/ruboto/util/update.rb', line 716 def reconfigure_dx_jar dx_jar = 'dx.jar' Dir.chdir 'libs' do log_action("Removing unneeded classes from #{dx_jar}") do FileUtils.rm_rf 'tmp' Dir.mkdir 'tmp' Dir.chdir 'tmp' do FileUtils.move "../#{dx_jar}", '.' `jar -xf #{dx_jar}` raise "Unpacking dx.jar jar failed: #$?" unless $? == 0 File.delete dx_jar #noinspection RubyLiteralArrayInspection excluded_core_packages = [ 'com/android/dx/command', # 'com/android/dx/ssa', # Tests run OK without this package, but we may loose some optimizations. 'junit', ] excluded_core_packages.each do |i| FileUtils.remove_dir(i, true) rescue puts "Failed to remove package: #{i} (#{$!})" end `jar -cf ../#{dx_jar} .` raise "Creating repackaged dx.jar failed: #$?" unless $? == 0 end FileUtils.remove_dir 'tmp', true end end end |
#reconfigure_jruby_core(jruby_core_version) ⇒ Object
-
Removes unneeded code from jruby-core
-
Split into smaller jars that can be used separately
FIXME(uwe): Refactor to take a Gem::Version as the parameter.
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 |
# File 'lib/ruboto/util/update.rb', line 448 def reconfigure_jruby_core(jruby_core_version) Dir.chdir 'libs' do jruby_core = Dir['jruby-core-*.jar'][-1] log_action("Removing unneeded classes from #{jruby_core}") do FileUtils.rm_rf 'tmp' Dir.mkdir 'tmp' Dir.chdir 'tmp' do FileUtils.move "../#{jruby_core}", '.' `jar -xf #{jruby_core}` raise "Unpacking jruby-core jar failed: #$?" unless $? == 0 File.delete jruby_core gem_version = Gem::Version.new(jruby_core_version.to_s.tr('-', '.')) if gem_version >= Gem::Version.new('9.0.5.0') #noinspection RubyLiteralArrayInspection excluded_core_packages = [ # FIXME(uwe): Exclude these packages? # '**/*Darwin*', # '**/*Solaris*', # '**/*windows*', # '**/*Windows*', # EMXIF 'META-INF', # 'com/headius', # 'com/headius/invokebinder', 'com/headius/options/example', 'com/kenai/constantine', 'com/kenai/jffi', 'com/kenai/jnr/x86asm', 'com/martiansoftware', 'jni', 'jnr/constants/platform/darwin', 'jnr/constants/platform/fake', 'jnr/constants/platform/freebsd', 'jnr/constants/platform/openbsd', 'jnr/constants/platform/sunos', # 'jnr/enxio', 'jnr/ffi/annotations', 'jnr/ffi/byref', 'jnr/ffi/mapper', 'jnr/ffi/provider', 'jnr/ffi/util', 'jnr/ffi/Struct$*', 'jnr/ffi/types', # 'jnr/netdb', 'jnr/posix/Aix*', 'jnr/posix/FreeBSD*', 'jnr/posix/MacOS*', 'jnr/posix/OpenBSD*', 'jnr/x86asm', 'org/jruby/ant', # 'org/jruby/compiler', # Needed for initialization, but should not be necessary # 'org/jruby/compiler/impl', # Needed for initialization, but should not be necessary 'org/jruby/demo', 'org/jruby/embed/bsf', 'org/jruby/embed/jsr223', 'org/jruby/embed/osgi', 'org/jruby/ext/ffi/Enums*', # 'org/jruby/ext/tracepoint', 'org/jruby/javasupport/bsf', # 'org/jruby/management', # should be excluded # 'org/jruby/runtime/invokedynamic', # Should be excluded # 'org/jruby/runtime/opto', # What is this? # 'org/jruby/runtime/opto/OptoFactory*', # What is this? ] elsif gem_version >= Gem::Version.new('9.0.0.0.SNAPSHOT') raise "Unsupported jruby-jars version: #{gem_version}" elsif gem_version >= Gem::Version.new('1.7.25.dev') # TODO(uwe): Remove when we stop supporting jruby-jars 1.7.25 excluded_core_packages = [ '**/*Aix*', '**/*Darwin*', '**/*FreeBSD*', '**/*MacOS*', '**/*OpenBSD*', '**/*Solaris*', '**/*sunos*', 'META-INF', 'com/headius/invokebinder', 'com/headius/options/example', 'com/kenai/constantine', 'com/kenai/jffi', 'com/kenai/jnr/x86asm', 'com/martiansoftware', 'jni', 'jnr/**/*windows*', 'jnr/constants/platform/fake', 'jnr/enxio', 'jnr/ffi/annotations', 'jnr/ffi/byref', 'jnr/ffi/mapper', 'jnr/ffi/provider', 'jnr/ffi/util', 'jnr/ffi/Struct$*', 'jnr/ffi/types', 'jnr/x86asm', 'org/jruby/**/*windows*', 'org/jruby/ant', 'org/jruby/cext', 'org/jruby/compiler/impl/BaseBodyCompiler*', 'org/jruby/compiler/util', 'org/jruby/demo', 'org/jruby/embed/bsf', 'org/jruby/embed/jsr223', 'org/jruby/embed/osgi', 'org/jruby/ext/ffi/AbstractMemory*', 'org/jruby/ext/ffi/Enums*', 'org/jruby/ext/ffi/io', 'org/jruby/ext/ffi/jffi', 'org/jruby/javasupport/bsf', 'org/yecht', ] elsif gem_version >= Gem::Version.new('1.7.24.dev') # TODO(uwe): Remove when we stop supporting jruby-jars 1.7.24 excluded_core_packages = [ '**/*Aix*', '**/*Darwin*', '**/*FreeBSD*', '**/*MacOS*', '**/*OpenBSD*', '**/*Solaris*', '**/*sunos*', 'META-INF', 'com/headius/invokebinder', 'com/headius/options/example', 'com/kenai/constantine', 'com/kenai/jffi', 'com/kenai/jnr/x86asm', 'com/martiansoftware', 'jni', 'jnr/**/*windows*', 'jnr/constants/platform/fake', 'jnr/enxio', 'jnr/ffi/annotations', 'jnr/ffi/byref', 'jnr/ffi/mapper', 'jnr/ffi/provider', 'jnr/ffi/util', 'jnr/ffi/Struct$*', 'jnr/ffi/types', 'jnr/x86asm', 'org/jruby/**/*windows*', 'org/jruby/ant', 'org/jruby/cext', 'org/jruby/compiler/impl/BaseBodyCompiler*', 'org/jruby/compiler/util', 'org/jruby/demo', 'org/jruby/embed/bsf', 'org/jruby/embed/jsr223', 'org/jruby/embed/osgi', 'org/jruby/ext/ffi/AbstractMemory*', 'org/jruby/ext/ffi/Enums*', 'org/jruby/ext/ffi/io', 'org/jruby/ext/ffi/jffi', 'org/jruby/javasupport/bsf', 'org/yecht', ] elsif gem_version >= Gem::Version.new('1.7.23') # TODO(uwe): Remove when we stop supporting jruby-jars 1.7.23 excluded_core_packages = %w(**/*Aix* **/*Darwin* **/*FreeBSD* **/*MacOS* **/*OpenBSD* **/*Solaris* **/*sunos* **/*Windows* META-INF com/headius/invokebinder com/headius/options/example com/kenai/constantine com/kenai/jffi com/kenai/jnr/x86asm com/martiansoftware java jni jnr/constants/platform/fake jnr/enxio jnr/ffi/annotations jnr/ffi/byref jnr/ffi/mapper jnr/ffi/provider jnr/ffi/util jnr/ffi/Struct$* jnr/ffi/types jnr/x86asm org/jruby/ant org/jruby/cext org/jruby/compiler/impl/BaseBodyCompiler* org/jruby/compiler/util org/jruby/demo org/jruby/embed/bsf org/jruby/embed/jsr223 org/jruby/embed/osgi org/jruby/ext/ffi/AbstractMemory* org/jruby/ext/ffi/Enums* org/jruby/ext/ffi/io org/jruby/ext/ffi/jffi org/jruby/javasupport/bsf org/yecht) elsif gem_version >= Gem::Version.new('1.7.22') # TODO(uwe): Remove when we stop supporting jruby-jars 1.7.22 excluded_core_packages = %w(**/*Aix* **/*Darwin* **/*FreeBSD* **/*MacOS* **/*OpenBSD* **/*Solaris* **/*sunos* **/*Windows* META-INF com/headius/invokebinder com/headius/options/example com/kenai/constantine com/kenai/jffi com/kenai/jnr/x86asm com/martiansoftware jni jnr/constants/platform/fake jnr/enxio jnr/ffi/annotations jnr/ffi/byref jnr/ffi/mapper jnr/ffi/provider jnr/ffi/util jnr/ffi/Struct$* jnr/ffi/types jnr/x86asm org/jruby/ant org/jruby/cext org/jruby/compiler/impl/BaseBodyCompiler* org/jruby/compiler/util org/jruby/demo org/jruby/embed/bsf org/jruby/embed/jsr223 org/jruby/embed/osgi org/jruby/ext/ffi/AbstractMemory* org/jruby/ext/ffi/Enums* org/jruby/ext/ffi/io org/jruby/ext/ffi/jffi org/jruby/javasupport/bsf org/yecht) elsif gem_version >= Gem::Version.new('1.7.19') # TODO(uwe): Remove when we stop supporting jruby-jars 1.7.19 excluded_core_packages = %w(**/*.sh **/*Darwin* **/*Solaris* **/*windows* **/*Windows* META-INF com/headius/invokebinder com/headius/options/example com/kenai/constantine com/kenai/jffi com/kenai/jnr/x86asm com/martiansoftware jni jnr/constants/platform/darwin jnr/constants/platform/fake jnr/constants/platform/freebsd jnr/constants/platform/openbsd jnr/constants/platform/sunos jnr/enxio jnr/ffi/annotations jnr/ffi/byref jnr/ffi/mapper jnr/ffi/provider jnr/ffi/util jnr/ffi/Struct$* jnr/ffi/types jnr/posix/Aix* jnr/posix/FreeBSD* jnr/posix/MacOS* jnr/posix/OpenBSD* jnr/x86asm org/jruby/ant org/jruby/cext org/jruby/compiler/impl/BaseBodyCompiler* org/jruby/compiler/util org/jruby/demo org/jruby/embed/bsf org/jruby/embed/jsr223 org/jruby/embed/osgi org/jruby/ext/ffi/AbstractMemory* org/jruby/ext/ffi/Enums* org/jruby/ext/ffi/io org/jruby/ext/ffi/jffi org/jruby/javasupport/bsf org/yecht yaml.rb) elsif gem_version >= Gem::Version.new('1.7.18') # TODO(uwe): Remove when we stop supporting jruby-jars 1.7.18 excluded_core_packages = %w(**/*Darwin* **/*Solaris* **/*windows* **/*Windows* META-INF com/headius/invokebinder com/headius/options/example com/kenai/constantine com/kenai/jffi com/kenai/jnr/x86asm com/martiansoftware jni jnr/constants/platform/darwin jnr/constants/platform/fake jnr/constants/platform/freebsd jnr/constants/platform/openbsd jnr/constants/platform/sunos jnr/enxio jnr/ffi/annotations jnr/ffi/byref jnr/ffi/mapper jnr/ffi/provider jnr/ffi/util jnr/ffi/Struct$* jnr/ffi/types jnr/posix/Aix* jnr/posix/FreeBSD* jnr/posix/MacOS* jnr/posix/OpenBSD* jnr/x86asm org/jruby/ant org/jruby/cext org/jruby/compiler/impl/BaseBodyCompiler* org/jruby/compiler/util org/jruby/demo org/jruby/embed/bsf org/jruby/embed/jsr223 org/jruby/embed/osgi org/jruby/ext/ffi/AbstractMemory* org/jruby/ext/ffi/Enums* org/jruby/ext/ffi/io org/jruby/ext/ffi/jffi org/jruby/javasupport/bsf org/yecht yaml.rb) elsif gem_version >= Gem::Version.new('1.7.17') # TODO(uwe): Remove when we stop supporting jruby-jars 1.7.17 excluded_core_packages = %w(*.sh **/*Darwin* **/*Solaris* **/*windows* **/*Windows* META-INF com/headius/invokebinder com/headius/options/example com/kenai/constantine com/kenai/jffi com/kenai/jnr/x86asm com/martiansoftware jni jnr/constants/platform/darwin jnr/constants/platform/fake jnr/constants/platform/freebsd jnr/constants/platform/openbsd jnr/constants/platform/sunos jnr/enxio jnr/ffi/annotations jnr/ffi/byref jnr/ffi/mapper jnr/ffi/provider jnr/ffi/util jnr/ffi/Struct$* jnr/ffi/types jnr/posix/Aix* jnr/posix/FreeBSD* jnr/posix/MacOS* jnr/posix/OpenBSD* jnr/x86asm org/jruby/ant org/jruby/cext org/jruby/compiler/impl/BaseBodyCompiler* org/jruby/compiler/util org/jruby/demo org/jruby/embed/bsf org/jruby/embed/jsr223 org/jruby/embed/osgi org/jruby/ext/ffi/AbstractMemory* org/jruby/ext/ffi/Enums* org/jruby/ext/ffi/io org/jruby/ext/ffi/jffi org/jruby/javasupport/bsf org/yecht yaml.rb) elsif gem_version >= Gem::Version.new('1.7.12') # TODO(uwe): Remove when we stop supporting jruby-jars 1.7.12 excluded_core_packages = %w(**/*Darwin* **/*Solaris* **/*windows* **/*Windows* META-INF com/headius/invokebinder com/headius/options/example com/kenai/constantine com/kenai/jffi com/kenai/jnr/x86asm com/martiansoftware jni jnr/constants/platform/darwin jnr/constants/platform/fake jnr/constants/platform/freebsd jnr/constants/platform/openbsd jnr/constants/platform/sunos jnr/enxio jnr/ffi/annotations jnr/ffi/byref jnr/ffi/mapper jnr/ffi/provider jnr/ffi/util jnr/ffi/Struct$* jnr/ffi/types jnr/posix/Aix* jnr/posix/FreeBSD* jnr/posix/MacOS* jnr/posix/OpenBSD* jnr/x86asm org/jruby/ant org/jruby/cext org/jruby/compiler/impl/BaseBodyCompiler* org/jruby/compiler/util org/jruby/demo org/jruby/embed/bsf org/jruby/embed/jsr223 org/jruby/embed/osgi org/jruby/ext/ffi/AbstractMemory* org/jruby/ext/ffi/Enums* org/jruby/ext/ffi/io org/jruby/ext/ffi/jffi org/jruby/javasupport/bsf org/yecht yaml.rb) elsif gem_version >= Gem::Version.new('1.7.5') # TODO(uwe): Remove when we stop supporting jruby-jars 1.7.5 excluded_core_packages = %w(**/*Darwin* **/*Solaris* **/*windows* **/*Windows* META-INF com/headius com/kenai/constantine com/kenai/jffi com/kenai/jnr/x86asm com/martiansoftware jni jnr/constants/platform/darwin jnr/constants/platform/fake jnr/constants/platform/freebsd jnr/constants/platform/openbsd jnr/constants/platform/sunos jnr/ffi/annotations jnr/ffi/byref jnr/ffi/mapper jnr/ffi/provider jnr/ffi/util jnr/ffi/Struct$* jnr/ffi/types jnr/posix/Aix* jnr/posix/FreeBSD* jnr/posix/MacOS* jnr/posix/OpenBSD* jnr/x86asm org/jruby/ant org/jruby/cext org/jruby/compiler/impl/BaseBodyCompiler* org/jruby/compiler/util org/jruby/demo org/jruby/embed/bsf org/jruby/embed/jsr223 org/jruby/embed/osgi org/jruby/ext/ffi/AbstractMemory* org/jruby/ext/ffi/io org/jruby/ext/ffi/jffi org/jruby/ext/tracepoint org/jruby/javasupport/bsf org/yecht) elsif gem_version >= Gem::Version.new('1.7.4') # TODO(uwe): Remove when we stop supporting jruby-jars 1.7.4 excluded_core_packages = %w(**/*Darwin* **/*Solaris* **/*windows* **/*Windows* META-INF com/headius com/kenai/constantine com/kenai/jffi com/kenai/jnr/x86asm com/martiansoftware jline jni jnr/constants/platform/darwin jnr/constants/platform/fake jnr/constants/platform/freebsd jnr/constants/platform/openbsd jnr/constants/platform/sunos jnr/ffi/annotations jnr/ffi/byref jnr/ffi/mapper jnr/ffi/provider jnr/ffi/util jnr/ffi/Struct$* jnr/ffi/types jnr/posix/Aix* jnr/posix/FreeBSD* jnr/posix/MacOS* jnr/posix/OpenBSD* jnr/x86asm org/apache org/fusesource org/jruby/ant org/jruby/cext org/jruby/compiler/impl/BaseBodyCompiler* org/jruby/compiler/util org/jruby/demo org/jruby/embed/bsf org/jruby/embed/jsr223 org/jruby/embed/osgi org/jruby/ext/ffi/AbstractMemory* org/jruby/ext/ffi/io org/jruby/ext/ffi/jffi org/jruby/ext/ripper org/jruby/ext/tracepoint org/jruby/javasupport/bsf org/yecht) elsif gem_version >= Gem::Version.new('1.7.3') # TODO(uwe): Remove when we stop supporting jruby-jars 1.7.3 excluded_core_packages = %w(**/*Darwin* **/*Solaris* **/*windows* **/*Windows* META-INF com/headius com/kenai/constantine com/kenai/jffi com/kenai/jnr/x86asm com/martiansoftware jline jni jnr/constants/platform/darwin jnr/constants/platform/fake jnr/constants/platform/freebsd jnr/constants/platform/openbsd jnr/constants/platform/sunos jnr/ffi/annotations jnr/ffi/byref jnr/ffi/provider jnr/ffi/util jnr/ffi/Struct$* jnr/ffi/types jnr/posix/FreeBSD* jnr/posix/MacOS* jnr/posix/OpenBSD* jnr/x86asm org/apache org/fusesource org/jruby/ant org/jruby/cext org/jruby/compiler/impl/BaseBodyCompiler* org/jruby/compiler/util org/jruby/demo org/jruby/embed/bsf org/jruby/embed/jsr223 org/jruby/embed/osgi org/jruby/ext/ffi/AbstractMemory* org/jruby/ext/ffi/io org/jruby/ext/ffi/jffi org/jruby/javasupport/bsf org/yecht) elsif gem_version >= Gem::Version.new('1.7.2') # TODO(uwe): Remove when we stop supporting jruby-jars 1.7.2 excluded_core_packages = %w(**/*Darwin* **/*Ruby20* **/*Solaris* **/*windows* **/*Windows* META-INF com/headius com/kenai/constantine com/kenai/jffi com/martiansoftware jline jni jnr/constants/platform/darwin jnr/constants/platform/fake jnr/constants/platform/freebsd jnr/constants/platform/openbsd jnr/constants/platform/sunos jnr/ffi/annotations jnr/ffi/byref jnr/ffi/provider jnr/ffi/util jnr/ffi/Struct$* jnr/ffi/types jnr/posix/MacOS* jnr/posix/OpenBSD* org/apache org/fusesource org/jruby/ant org/jruby/cext org/jruby/compiler/util org/jruby/demo org/jruby/embed/bsf org/jruby/embed/jsr223 org/jruby/embed/osgi org/jruby/ext/ffi/io org/jruby/ext/ffi/jffi org/jruby/javasupport/bsf) elsif gem_version >= Gem::Version.new('1.7.1') # TODO(uwe): Remove when we stop supporting jruby-jars 1.7.1 excluded_core_packages = %w(**/*Darwin* **/*Ruby20* **/*Solaris* **/*windows* **/*Windows* META-INF com/headius com/kenai/constantine com/kenai/jffi com/martiansoftware jline jni jnr/constants/platform/darwin jnr/constants/platform/fake jnr/constants/platform/freebsd jnr/constants/platform/openbsd jnr/constants/platform/sunos jnr/ffi/annotations jnr/ffi/byref jnr/ffi/provider jnr/ffi/util jnr/ffi/Struct$* jnr/ffi/types jnr/posix/MacOS* jnr/posix/OpenBSD* org/apache org/fusesource org/jruby/ant org/jruby/cext org/jruby/compiler/util org/jruby/demo org/jruby/embed/bsf org/jruby/embed/jsr223 org/jruby/embed/osgi org/jruby/ext/ffi/io org/jruby/ext/ffi/jffi org/jruby/ext/openssl org/jruby/javasupport/bsf org/jruby/org/bouncycastle) elsif gem_version >= Gem::Version.new('1.7.0') # TODO(uwe): Remove when we stop supporting jruby-jars 1.7.0 excluded_core_packages = %w(**/*Darwin* **/*Solaris* **/*windows* **/*Windows* META-INF com/headius com/kenai/constantine com/kenai/jffi com/martiansoftware jline jni jnr/constants/platform/darwin jnr/constants/platform/fake jnr/constants/platform/freebsd jnr/constants/platform/openbsd jnr/constants/platform/sunos jnr/ffi/annotations jnr/ffi/byref jnr/ffi/provider jnr/ffi/util jnr/ffi/Struct$* jnr/ffi/types jnr/posix/MacOS* jnr/posix/OpenBSD* org/apache org/bouncycastle org/fusesource org/jruby/ant org/jruby/cext org/jruby/compiler/util org/jruby/demo org/jruby/embed/bsf org/jruby/embed/jsr223 org/jruby/embed/osgi org/jruby/ext/ffi/io org/jruby/ext/ffi/jffi org/jruby/ext/openssl org/jruby/javasupport/bsf) # ODOT else raise "Unsupported JRuby version: #{jruby_core_version.inspect}." end excluded_core_packages.each do |i| if File.directory? i FileUtils.remove_dir(i, true) rescue puts "Failed to remove package: #{i} (#{$!})" elsif Dir.glob(i, File::FNM_CASEFOLD).each { |f| FileUtils.rm_rf f }.empty? print "exclude pattern #{i.inspect} found no files..." end end # FIXME(uwe): Add a Ruboto.yml config for this if it works # Reduces the installation footprint, but also reduces performance and increases stack # FIXME(uwe): Measure the performance change if ENV['STRIP_INVOKERS'] invokers = Dir['**/*$INVOKER$*.class'] if invokers.size > 0 print "Removing invokers(#{invokers.size})..." FileUtils.rm invokers end populators = Dir['**/*$POPULATOR.class'] if populators.size > 0 print "Removing populators(#{populators.size})..." FileUtils.rm populators end end # Uncomment this section to get a jar for each top level package in the core #Dir['**/*'].select{|f| !File.directory?(f)}.map{|f| File.dirname(f)}.uniq.sort.reverse.each do |dir| # `jar -cf ../jruby-core-#{dir.gsub('/', '.')}-#{jruby_core_version}.jar #{dir}` # FileUtils.rm_rf dir #end # Add our proxy class factory android_jar = Dir["#{ANDROID_HOME.gsub("\\", '/')}/platforms/*/android.jar"][0] unless android_jar puts puts '*' * 80 puts " Could not find any Android platforms in #{ANDROID_HOME}/platforms." puts ' At least one Android Platform SDK must be installed to compile the Ruboto classes.' puts ' Please install an Android Platform SDK using the "android" package manager.' puts '*' * 80 puts exit 1 end android_jar.gsub!(File::SEPARATOR, File::ALT_SEPARATOR || File::SEPARATOR) class_path = ['.', "#{Ruboto::ASSETS}/libs/dx.jar"].join(File::PATH_SEPARATOR).gsub(File::SEPARATOR, File::ALT_SEPARATOR || File::SEPARATOR) sources = "#{Ruboto::GEM_ROOT}/lib/*.java".gsub(File::SEPARATOR, File::ALT_SEPARATOR || File::SEPARATOR) `javac -source 1.6 -target 1.6 -cp #{class_path} -bootclasspath #{android_jar} -d . #{sources}` raise 'Compile failed' unless $? == 0 `jar -cf ..#{File::ALT_SEPARATOR || File::SEPARATOR}#{jruby_core} .` raise "Creating repackaged jruby-core jar failed: #$?" unless $? == 0 end FileUtils.remove_dir 'tmp', true end end end |
#reconfigure_jruby_libs(jruby_version) ⇒ Object
439 440 441 442 443 |
# File 'lib/ruboto/util/update.rb', line 439 def reconfigure_jruby_libs(jruby_version) reconfigure_jruby_core(jruby_version) reconfigure_jruby_stdlib(jruby_version) reconfigure_dx_jar end |
#reconfigure_jruby_stdlib(jruby_version) ⇒ Object
-
Moves ruby stdlib to the root of the jruby-stdlib jar
704 705 706 707 708 709 710 711 712 713 |
# File 'lib/ruboto/util/update.rb', line 704 def reconfigure_jruby_stdlib(jruby_version) # FIXME(uwe): Introduced in Ruboto 1.0.3. Remove when we stop supporting upgrading from Ruboto 1.0.3. unless File.exists?('rakelib/ruboto.stdlib.rake') || File.exists?('rakelib/stdlib.rake') abort 'cannot find rakelib/ruboto.stdlib.rake; make sure you update your app (ruboto update app)' end # EMXIF ENV['JRUBY_JARS_VERSION'] = jruby_version system 'rake libs:reconfigure_stdlib' end |
#update_android(target_level = nil) ⇒ Object
Updating components
20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/ruboto/util/update.rb', line 20 def update_android(target_level = nil) root = Dir.getwd build_xml_file = "#{root}/build.xml" if File.exists? build_xml_file ant_script = File.read(build_xml_file) name = REXML::Document.new(ant_script).root.attributes['name'] else name = File.basename(root) end update_project_properties_target_level("#{root}/project.properties", target_level) system "android update project -p #{root} -n #{name} --subprojects" raise "android update project failed with return code #{$?}" unless $? == 0 end |
#update_assets(old_version = nil) ⇒ Object
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 |
# File 'lib/ruboto/util/update.rb', line 254 def update_assets(old_version = nil) # FIXME(uwe): Remove when we stop support for updating from Ruboto 1.1.0 old_extra_classes = 'assets/classes2.jar' if old_version == '1.1.0' && File.exists?(old_extra_classes) puts "Deleting old extra dex file #{old_extra_classes}." File.delete(string) end # EMXIF puts "\nCopying files:" weak_copier = Ruboto::Util::AssetCopier.new Ruboto::ASSETS, '.', false %w{.gitignore Rakefile ruboto.yml}.each { |f| log_action(f) { weak_copier.copy f } } # FIXME(uwe): Only present in Ruboto 1.0.3. Remove when we stop supporting updating from Ruboto 1.0.3 FileUtils.mv('rakelib/stdlib.rake', 'rakelib/ruboto.stdlib.rake') if File.exists?('rakelib/stdlib.rake') FileUtils.mv('rakelib/stdlib.yml', 'rakelib/ruboto.stdlib.yml') if File.exists?('rakelib/stdlib.yml') FileUtils.mv('rakelib/stdlib_dependencies.rb', 'ruboto.stdlib.rb') if File.exists?('rakelib/stdlib_dependencies.rb') # EMXIF copier = Ruboto::Util::AssetCopier.new Ruboto::ASSETS, '.' %w{assets rakelib res/layout test}.each do |f| log_action(f) { copier.copy f } end end |
#update_bundle ⇒ Object
744 745 746 747 748 749 |
# File 'lib/ruboto/util/update.rb', line 744 def update_bundle if File.exist?('Gemfile.apk') && File.exists?('libs/bundle.jar') FileUtils.rm 'libs/bundle.jar' system 'rake bundle' end end |
#update_classes(old_version, force = nil) ⇒ Object
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 |
# File 'lib/ruboto/util/update.rb', line 300 def update_classes(old_version, force = nil) copier = Ruboto::Util::AssetCopier.new Ruboto::ASSETS, '.' log_action('Ruboto java classes') { copier.copy 'src/org/ruboto/*.java' } log_action('Ruboto java test classes') { copier.copy 'src/org/ruboto/test/*.java', 'test' } Dir['src/**/*.java'].each do |f| source_code = File.read(f) if source_code =~ /^\s*package\s+org.ruboto\s*;/ next elsif source_code =~ /public class (.*?) extends org.ruboto.(?:EntryPoint|Ruboto)(Activity|BroadcastReceiver|Service) \{/ subclass_name, class_name = $1, $2 puts "Regenerating #{class_name} #{subclass_name}" generate_inheriting_file(class_name, subclass_name, verify_package) # FIXME(uwe): Remove when we stop supporting upgrading from ruboto 0.7.0 and ruboto 0.8.0 if old_version == '0.7.0' || old_version == '0.8.0' puts "Ruboto version #{old_version.inspect} detected." script_file = File.("#{SCRIPTS_DIR}/#{underscore(subclass_name)}.rb") puts "Adding explicit super call in #{script_file}" script_content = File.read(script_file) script_content.gsub! /^(\s*)(def on_(?:create\(bundle\)|start|resume|pause|destroy)\n)/, "\\1\\2\\1 super\n" File.open(script_file, 'w') { |of| of << script_content } end # EMXIF elsif source_code =~ /^\/\/ Generated Ruboto subclass with method base "(.*?)".*^\s*package\s+(\S+?)\s*;.*public\s+class\s+(\S+?)\s+extends\s+(.*?)\s*(?:implements\s+org.ruboto.RubotoComponent\s*)?\{/m method_base, package, subclass_name, class_name = $1, $2, $3, $4 puts "Regenerating subclass #{package}.#{subclass_name}" generate_inheriting_file 'Class', subclass_name generate_subclass_or_interface(:package => package, :template => 'InheritingClass', :class => class_name, :name => subclass_name, :method_base => method_base, :force => force) # FIXME(uwe): Remove when we stop updating from Ruboto 0.7.0 and older elsif source_code =~ /^\s*package\s+(\S+?)\s*;.*public\s+class\s+(\S+?)\s+extends\s+(.*?)\s\{.*^\s*private Object\[\] callbackProcs = new Object\[\d+\];/m package, subclass_name, class_name = $1, $2, $3 puts "Regenerating subclass #{package}.#{subclass_name}" generate_inheriting_file 'Class', subclass_name generate_subclass_or_interface(:package => package, :template => 'InheritingClass', :class => class_name, :name => subclass_name, :method_base => 'on', :force => force) # EMXIF end end end |
#update_core_classes(force = nil) ⇒ Object
396 397 398 399 400 401 402 403 404 |
# File 'lib/ruboto/util/update.rb', line 396 def update_core_classes(force = nil) generate_core_classes(:class => 'all', :method_base => 'on', :method_include => '', :method_exclude => '', :force => force, :implements => '') if File.exists?('ruboto.yml') sleep 1 FileUtils.touch 'ruboto.yml' end Dir['src/*_activity.rb'].each { |f| FileUtils.touch(f) } system 'rake build_xml jruby_adapter ruboto_activity' end |
#update_dx_jar(force = nil) ⇒ Object
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
# File 'lib/ruboto/util/update.rb', line 236 def update_dx_jar(force=nil) # FIXME(uwe): Remove when we stop updating from Ruboto 0.8.1 and older. FileUtils.rm(Dir['libs/dexmaker*.jar']) # EMXIF jar_file = Dir.glob('libs/dx.jar')[0] # FIXME(uwe): Remove when we stop updating from Ruboto 0.10.0 and older. jruby_present = !!Dir.glob('libs/jruby-core-*.jar')[0] log_action("Removing #{jar_file}") { File.delete jar_file } if jar_file && !jruby_present # EMXIF return if !jar_file && !force copier = AssetCopier.new Ruboto::ASSETS, File.('.') log_action('Copying dx.jar to libs') { copier.copy 'libs' } end |
#update_icons(force = nil) ⇒ Object
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 |
# File 'lib/ruboto/util/update.rb', line 279 def update_icons(force = nil) log_action('Copying icons') do Ruboto::Util::AssetCopier.new(Ruboto::ASSETS, '.', force).copy 'res/drawable/get_ruboto_core.png' icon_path = verify_manifest.elements['application'].attributes['android:icon'] test_icon_path = verify_test_manifest.elements['application'].attributes['android:icon'] Dir["#{Ruboto::ASSETS}/res/drawable*/ic_launcher.png"].each do |f| src_dir = f.slice(/res\/drawable.*\//) dest_file = icon_path.sub('@drawable/', src_dir) + '.png' if force || !File.exists?(dest_file) FileUtils.mkdir_p File.dirname(dest_file) FileUtils.cp(f, dest_file) end test_dest_file = 'test/' + test_icon_path.sub('@drawable/', src_dir) + '.png' if force || !File.exists?(test_dest_file) FileUtils.mkdir_p File.dirname(test_dest_file) FileUtils.cp(f, test_dest_file) end end end end |
#update_jruby(force, version, explicit = false) ⇒ Object
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
# File 'lib/ruboto/util/update.rb', line 162 def update_jruby(force, version, explicit = false) installed_jruby_core = Dir.glob('libs/jruby-core-*.jar')[0] installed_jruby_stdlib = Dir.glob('libs/jruby-stdlib-*.jar')[0] unless force || (installed_jruby_core && installed_jruby_stdlib) puts "Cannot find existing jruby jars in libs. Make sure you're in the root directory of your app." if explicit return false end # FIXME(uwe): Remove when JRuby 9000 works with Ruboto version ||= ENV['JRUBY_JARS_VERSION'] || '~>1.7.13' # EMXIF install_jruby_jars_gem(version) begin gem('jruby-jars', version) if version require 'jruby-jars' rescue LoadError puts $! puts "Could not find the jruby-jars gem. You need it to include JRuby in your app. Please install it using\n\n gem install jruby-jars\n\n" return false end new_jruby_version = JRubyJars::VERSION unless force current_jruby_version = installed_jruby_core ? installed_jruby_core[16..-5] : 'None' if current_jruby_version == new_jruby_version puts "JRuby is up to date at version #{new_jruby_version}. Make sure you 'gem update jruby-jars' if there is a new version." return false end puts "Current jruby version: #{current_jruby_version}" puts "New jruby version: #{new_jruby_version}" end copier = AssetCopier.new Ruboto::ASSETS, File.('.') log_action("Removing #{installed_jruby_core}") { File.delete *Dir.glob('libs/jruby-core-*.jar') } if installed_jruby_core log_action("Removing #{installed_jruby_stdlib}") { File.delete *Dir.glob('libs/jruby-stdlib-*.jar') } if installed_jruby_stdlib log_action("Copying #{JRubyJars::core_jar_path} to libs") { FileUtils.cp JRubyJars::core_jar_path, "libs/jruby-core-#{new_jruby_version}.jar" } unless File.read('project.properties') =~ /^dex.force.jumbo=/ log_action('Setting JUMBO dex file format') do File.open('project.properties', 'a') { |f| f << "dex.force.jumbo=true\n" } end end log_action('Copying dx.jar to libs') do copier.copy 'libs' end reconfigure_jruby_libs(new_jruby_version) puts "JRuby version is now: #{new_jruby_version}" true end |
#update_manifest(min_sdk, target, force = false) ⇒ Object
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 |
# File 'lib/ruboto/util/update.rb', line 342 def update_manifest(min_sdk, target, force = false) log_action("\nAdding RubotoActivity, RubotoDialog, RubotoService, and SDK versions to the manifest") do sdk_element = verify_manifest.elements['uses-sdk'] if project_api_level min_sdk ||= project_api_level target ||= project_api_level elsif sdk_element min_sdk ||= sdk_element.attributes['android:minSdkVersion'] target ||= sdk_element.attributes['android:targetSdkVersion'] else min_sdk ||= MINIMUM_SUPPORTED_SDK_LEVEL target ||= MINIMUM_SUPPORTED_SDK_LEVEL end if min_sdk.to_i < MINIMUM_SUPPORTED_SDK_LEVEL min_sdk = MINIMUM_SUPPORTED_SDK_LEVEL end if target.to_i < MINIMUM_SUPPORTED_SDK_LEVEL target = MINIMUM_SUPPORTED_SDK_LEVEL end app_element = verify_manifest.elements['application'] app_element.attributes['android:icon'] ||= '@drawable/ic_launcher' app_element.attributes['android:hardwareAccelerated'] ||= 'true' app_element.attributes['android:largeHeap'] ||= 'true' unless app_element.elements["activity[@android:name='org.ruboto.RubotoActivity']"] app_element.add_element 'activity', {'android:name' => 'org.ruboto.RubotoActivity', 'android:exported' => 'false'} end unless app_element.elements["activity[@android:name='org.ruboto.SplashActivity']"] app_element.add_element 'activity', {'android:name' => 'org.ruboto.SplashActivity', 'android:exported' => 'false', 'android:configChanges' => (target.to_i >= 13 ? 'orientation|screenSize' : 'orientation'), 'android:noHistory' => 'true'} end unless app_element.elements["activity[@android:name='org.ruboto.RubotoDialog']"] app_element.add_element 'activity', {'android:name' => 'org.ruboto.RubotoDialog', 'android:exported' => 'false', 'android:theme' => '@android:style/Theme.Dialog'} end unless app_element.elements["service[@android:name='org.ruboto.RubotoService']"] app_element.add_element 'service', {'android:name' => 'org.ruboto.RubotoService', 'android:exported' => 'false'} end if sdk_element sdk_element.attributes['android:minSdkVersion'] = min_sdk sdk_element.attributes['android:targetSdkVersion'] = target else verify_manifest.add_element 'uses-sdk', {'android:minSdkVersion' => min_sdk, 'android:targetSdkVersion' => target} end save_manifest end end |
#update_project_properties_target_level(prop_file, target_level) ⇒ Object
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/ruboto/util/update.rb', line 34 def update_project_properties_target_level(prop_file, target_level) if (project_property_file = File.read(prop_file)) =~ TARGET_VERSION_REGEXP min_sdk = $2 if target_level unless target_level == min_sdk puts "Changing project target from #{min_sdk} to #{MINIMUM_SUPPORTED_SDK_LEVEL}." new_target_level = target_level end elsif min_sdk.to_i < MINIMUM_SUPPORTED_SDK_LEVEL puts "Upgrading project target from #{min_sdk} to #{MINIMUM_SUPPORTED_SDK_LEVEL}." new_target_level = MINIMUM_SUPPORTED_SDK_LEVEL end if new_target_level File.open(prop_file, 'w') { |f| f << project_property_file.gsub(TARGET_VERSION_REGEXP, "\\1#{new_target_level}") } end end end |
#update_ruboto(force = nil) ⇒ Object
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 |
# File 'lib/ruboto/util/update.rb', line 411 def update_ruboto(force=nil) source_files_pattern = 'ruboto{.rb,/**/*}' new_sources_dir = Ruboto::GEM_ROOT + "/assets/#{SCRIPTS_DIR}" new_sources = Dir.chdir(new_sources_dir) { Dir[source_files_pattern] }. select { |f| !(File.directory?("#{new_sources_dir}/#{f}") || File.basename(f) == '.' || File.basename(f) == '..') } old_sources = Dir.chdir("#{SCRIPTS_DIR}") { Dir[source_files_pattern] }. select { |f| !(File.directory?("#{SCRIPTS_DIR}/#{f}") || File.basename(f) == '.' || File.basename(f) == '..') } obsolete_sources = old_sources - new_sources - %w(ruboto/version.rb) obsolete_sources.each do |f| log_action("Deleting obsolete script #{f}") do FileUtils.rm_f f end end log_action('Copying ruboto/version.rb') do from = File.(Ruboto::GEM_ROOT + '/lib/ruboto/version.rb') to = File.("./#{SCRIPTS_DIR}/ruboto/version.rb") FileUtils.mkdir_p File.dirname(to) FileUtils.cp from, to end log_action('Copying additional ruboto script components') do new_sources.each do |from| to = File.(from, SCRIPTS_DIR) FileUtils.mkdir_p File.dirname(to) FileUtils.cp "#{new_sources_dir}/#{from}", to end end end |
#update_test(force, target_level = nil) ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
# File 'lib/ruboto/util/update.rb', line 52 def update_test(force, target_level = nil) root = Dir.getwd if !File.exists?("#{root}/test") || !File.exists?("#{root}/test/AndroidManifest.xml") || !File.exists?("#{root}/test/ant.properties") name = verify_strings.root.elements['string'].text.gsub(' ', '') puts "\nGenerating Android test project #{name} in #{root}..." system %Q{android create test-project -m "#{root.gsub('"', '\"')}" -n "#{name}Test" -p "#{root.gsub('"', '\"')}/test"} FileUtils.rm_rf File.join(root, 'test', 'src', verify_package.split('.')) puts 'Done' end Dir.chdir File.join(root, 'test') do update_project_properties_target_level('project.properties', target_level) instrumentation_property = "test.runner=org.ruboto.test.InstrumentationTestRunner\n" prop_file = 'ant.properties' prop_lines = (prop_lines_org = File.read(prop_file)).dup prop_lines.gsub!(/^tested.project.dir=.*$/, 'tested.project.dir=../') prop_lines << instrumentation_property unless prop_lines.include? instrumentation_property if prop_lines != prop_lines_org File.open(prop_file, 'w') { |f| f << prop_lines } end test_manifest = REXML::Document.new(File.read('AndroidManifest.xml')).root test_manifest.elements['application'].attributes['android:icon'] ||= '@drawable/ic_launcher' test_manifest.elements['instrumentation'].attributes['android:name'] = 'org.ruboto.test.InstrumentationTestRunner' # FIXME(uwe): Remove when "Android L" has been released. puts "update_test: target_level: #{target_level}" if target_level == 'L' if (sdk_element = test_manifest.elements['uses-sdk']) sdk_element.attributes['android:minSdkVersion'] = target_level sdk_element.attributes['android:targetSdkVersion'] = target_level else test_manifest.add_element 'uses-sdk', {'android:minSdkVersion' => target_level, 'android:targetSdkVersion' => target_level} end test_manifest.elements['instrumentation'].attributes['android:name'] = 'org.ruboto.test.InstrumentationTestRunner' end # EMXIF # TODO(uwe): Trying to push test scripts for faster test cycle, but failing... # if test_manifest.elements["uses-permission[@android:name='android.permission.WRITE_INTERNAL_STORAGE']"] # puts 'Found permission tag' # else # test_manifest.add_element 'uses-permission', {"android:name" => "android.permission.WRITE_INTERNAL_STORAGE"} # puts 'Added permission tag' # end # if test_manifest.elements["uses-permission[@android:name='android.permission.WRITE_EXTERNAL_STORAGE']"] # puts 'Found external permission tag' # else # test_manifest.add_element 'uses-permission', {"android:name" => "android.permission.WRITE_EXTERNAL_STORAGE"} # puts 'Added external permission tag' # end File.open('AndroidManifest.xml', 'w') { |f| REXML::Formatters::OrderedAttributes.new(4).write(test_manifest.document, f) } run_tests_override = <<-EOF <!-- BEGIN added by Ruboto --> <macrodef name="run-tests-helper"> <attribute name="emma.enabled" default="false"/> <element name="extra-instrument-args" optional="yes"/> <sequential> <xpath input="AndroidManifest.xml" expression="/manifest/@package" output="manifest.package" /> <echo>Running tests with failure detection...</echo> <exec executable="${adb}" failonerror="true" outputproperty="tests.output"> <arg line="${adb.device.arg}"/> <arg value="shell"/> <arg value="am"/> <arg value="instrument"/> <arg value="-w"/> <arg value="-e"/> <arg value="coverage"/> <arg value="@{emma.enabled}"/> <extra-instrument-args/> <arg value="${manifest.package}/${test.runner}"/> </exec> <echo message="${tests.output}"/> <fail message="Tests failed!!!"> <condition> <or> <contains string="${tests.output}" substring="INSTRUMENTATION_RESULT"/> <contains string="${tests.output}" substring="INSTRUMENTATION_FAILED"/> <contains string="${tests.output}" substring="FAILURES"/> <not> <matches string="${tests.output}" pattern="OK \\(\\d+ tests?\\)" multiline="true"/> </not> </or> </condition> </fail> </sequential> </macrodef> <target name="run-tests-quick" description="Runs tests with previously installed packages"> <run-tests-helper /> </target> <!-- END added by Ruboto --> EOF ant_script = File.read('build.xml') # FIXME(uwe): Remove when we stop support for updating from Ruboto 0.8.1 and older ant_script.gsub!(/\s*<!-- BEGIN added by ruboto(?:-core)? -->.*?<!-- END added by ruboto(?:-core)? -->\s*/m, '') # EMXIF ant_script.gsub!(/\s*<!-- BEGIN added by Ruboto -->.*?<!-- END added by Ruboto -->\s*/m, '') raise 'Bad ANT script' unless ant_script.gsub!(/\s*(<\/project>)/, "\n\n#{run_tests_override}\n\n\\1") File.open('build.xml', 'w') { |f| f << ant_script } end end |