summaryrefslogtreecommitdiffstats
path: root/jack/tests/com/android/jack/tools/merger/MergerTestTools.java
blob: ef2c4a9f64b6974d78a98ba29a649222c49abb57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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
/*
 * 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.
 */

package com.android.jack.tools.merger;

import com.android.jack.DexAnnotationsComparator;
import com.android.jack.DexComparator;
import com.android.jack.Options;
import com.android.jack.TestTools;
import com.android.jack.backend.dex.rop.CodeItemBuilder;
import com.android.jack.util.ExecuteFile;
import com.android.sched.scheduler.ScheduleInstance;

import java.io.File;
import java.io.IOException;

import javax.annotation.Nonnull;

public class MergerTestTools {

  @Nonnull
  public boolean diff(@Nonnull File monoDex, @Nonnull File multiDex) throws IOException {
    ExecuteFile ef =
        new ExecuteFile("diff " + monoDex.getAbsolutePath() + " " + multiDex.getAbsolutePath());
    ef.setOut(System.out);
    ef.setErr(System.out);
    return !ef.run();
  }

  public boolean compareMonoDexWithOneDexPerType(@Nonnull File sourceFolder, boolean withDebug)
      throws Exception {
    File monoDex = TestTools.createTempFile("mono", ".dex");
    Options options = new Options();
    options.addProperty(Options.EMIT_LINE_NUMBER_DEBUG_INFO.getName(), Boolean.toString(withDebug));
    options.addProperty(ScheduleInstance.DEFAULT_RUNNER.getName(), "single-threaded");
    options.addProperty(CodeItemBuilder.FORCE_JUMBO.getName(), "true");
    TestTools
        .compileSourceToDex(options, sourceFolder, TestTools.getDefaultBootclasspathString(),
            monoDex, false /* zip */, null /* jarjarRules */, null /* flagFiles */,
            withDebug /* withDebugInfo */);

    File oneDexPerTypeMerged = buildOneDexPerType(sourceFolder, withDebug);


    new DexComparator().compare(monoDex, oneDexPerTypeMerged, false, true,
        false /* compareDebugInfoBinary */, true, 0);

    new DexAnnotationsComparator(monoDex, oneDexPerTypeMerged).compare();

    return diff(monoDex, oneDexPerTypeMerged);
  }

  public boolean compareMonoDexWithOneDexPerTypeByUsingJackFiles(@Nonnull File sourceFolder,
      boolean withDebug) throws Exception {
    File monoDex = TestTools.createTempFile("mono", ".dex");

    Options options = new Options();
    options.addProperty(Options.GENERATE_JACK_FILE.getName(), "true");
    File jackOutputFolder = TestTools.createTempDir("jackOutput","folder");
    options.addProperty(
        Options.DEX_OUTPUT_CONTAINER_TYPE.getName(), Options.Container.DIR.toString());
    options.addProperty(Options.JACK_FILE_OUTPUT_DIR.getName(), jackOutputFolder.getAbsolutePath());
    options.addProperty(
        Options.JACK_OUTPUT_CONTAINER_TYPE.getName(), Options.Container.DIR.toString());
    options.addProperty(Options.EMIT_LINE_NUMBER_DEBUG_INFO.getName(), Boolean.toString(withDebug));
    options.addProperty(ScheduleInstance.DEFAULT_RUNNER.getName(), "single-threaded");
    options.addProperty(CodeItemBuilder.FORCE_JUMBO.getName(), "true");
    TestTools.compileSourceToDex(options, sourceFolder, null, monoDex, false);


    File oneDexPerTypeMerged = buildOneDexPerTypeFromJack(jackOutputFolder, true);

    new DexComparator().compare(monoDex, oneDexPerTypeMerged, false, true,
        false /* compareDebugInfoBinary */, true, 0);

    new DexAnnotationsComparator(monoDex, oneDexPerTypeMerged).compare();

    return diff(monoDex, oneDexPerTypeMerged);
  }

  public File buildOneDexPerTypeFromJack(@Nonnull File sourceFolder, boolean withDebug)
      throws Exception {
    File multiDex = TestTools.createTempFile("multi", ".dex");
    File multiDexFolder = TestTools.createTempDir("multi", "dex");
    Options options = new Options();
    options.addProperty(Options.EMIT_LINE_NUMBER_DEBUG_INFO.getName(), Boolean.toString(withDebug));
    options.addProperty(ScheduleInstance.DEFAULT_RUNNER.getName(), "single-threaded");
    options.addProperty(Options.GENERATE_ONE_DEX_PER_TYPE.getName(), "true");
    options.addProperty(Options.DEX_FILE_FOLDER.getName(), multiDexFolder.getAbsolutePath());

    TestTools.compileJackToDex(options, sourceFolder, multiDex, false);

    return multiDex;
  }

  public File buildOneDexPerType(@Nonnull File sourceFolder, boolean withDebug) throws Exception {
    Options options;
    File multiDex = TestTools.createTempFile("multi", ".dex");
    File multiDexFolder = TestTools.createTempDir("multi", "dex");
    options = new Options();
    options.addProperty(Options.EMIT_LINE_NUMBER_DEBUG_INFO.getName(), Boolean.toString(withDebug));
    options.addProperty(ScheduleInstance.DEFAULT_RUNNER.getName(), "single-threaded");
    options.addProperty(Options.GENERATE_ONE_DEX_PER_TYPE.getName(), "true");
    options.addProperty(Options.DEX_FILE_FOLDER.getName(), multiDexFolder.getAbsolutePath());
    TestTools
        .compileSourceToDex(options, sourceFolder, TestTools.getDefaultBootclasspathString(),
            multiDex, false /* zip */, null /* jarjarRules */, null /* flagFiles */,
            withDebug /* withDebugInfo */);

    return multiDex;
  }
}