blob: 2112bd07107bb1f6b8abd03705e5cd6bd2d4178f [file] [log] [blame]
Ben Gruver84051332012-10-20 14:53:55 -07001/*
2 * Copyright 2012, Google Inc.
3 * 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 are
7 * met:
8 *
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above
12 * copyright notice, this list of conditions and the following disclaimer
13 * in the documentation and/or other materials provided with the
14 * distribution.
15 * * Neither the name of Google Inc. nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32package org.jf.dexlib2.immutable;
33
Ben Gruver22c31852012-11-17 17:51:36 -080034import com.google.common.collect.ImmutableSet;
Ben Gruvere202aee2015-10-17 13:50:26 -070035import org.jf.dexlib2.Opcodes;
Ben Gruverf4662582012-11-04 13:56:09 -080036import org.jf.dexlib2.iface.ClassDef;
37import org.jf.dexlib2.iface.DexFile;
Ben Gruver2d7e1112012-11-12 22:55:06 -080038import org.jf.util.ImmutableUtils;
Ben Gruver84051332012-10-20 14:53:55 -070039
40import javax.annotation.Nonnull;
41import javax.annotation.Nullable;
Ben Gruver22c31852012-11-17 17:51:36 -080042import java.util.Collection;
Ben Gruver84051332012-10-20 14:53:55 -070043
44public class ImmutableDexFile implements DexFile {
Ben Gruver22c31852012-11-17 17:51:36 -080045 @Nonnull protected final ImmutableSet<? extends ImmutableClassDef> classes;
Ben Gruvere202aee2015-10-17 13:50:26 -070046 @Nonnull private final Opcodes opcodes;
Ben Gruver84051332012-10-20 14:53:55 -070047
Ben Gruvere202aee2015-10-17 13:50:26 -070048 @Deprecated
Ben Gruver22c31852012-11-17 17:51:36 -080049 public ImmutableDexFile(@Nullable Collection<? extends ClassDef> classes) {
50 this.classes = ImmutableClassDef.immutableSetOf(classes);
Ben Gruvere202aee2015-10-17 13:50:26 -070051 this.opcodes = Opcodes.forApi(19);
Ben Gruver84051332012-10-20 14:53:55 -070052 }
53
Ben Gruvere202aee2015-10-17 13:50:26 -070054 @Deprecated
Ben Gruver22c31852012-11-17 17:51:36 -080055 public ImmutableDexFile(@Nullable ImmutableSet<? extends ImmutableClassDef> classes) {
56 this.classes = ImmutableUtils.nullToEmptySet(classes);
Ben Gruvere202aee2015-10-17 13:50:26 -070057 this.opcodes = Opcodes.forApi(19);
58 }
59
60 public ImmutableDexFile(@Nonnull Opcodes opcodes, @Nullable Collection<? extends ClassDef> classes) {
61 this.classes = ImmutableClassDef.immutableSetOf(classes);
62 this.opcodes = opcodes;
63 }
64
65 public ImmutableDexFile(@Nonnull Opcodes opcodes, @Nullable ImmutableSet<? extends ImmutableClassDef> classes) {
66 this.classes = ImmutableUtils.nullToEmptySet(classes);
67 this.opcodes = opcodes;
Ben Gruver84051332012-10-20 14:53:55 -070068 }
69
70 public static ImmutableDexFile of(DexFile dexFile) {
71 if (dexFile instanceof ImmutableDexFile) {
72 return (ImmutableDexFile)dexFile;
73 }
Ben Gruvere202aee2015-10-17 13:50:26 -070074 return new ImmutableDexFile(dexFile.getOpcodes(), dexFile.getClasses());
Ben Gruver84051332012-10-20 14:53:55 -070075 }
76
Ben Gruver22c31852012-11-17 17:51:36 -080077 @Nonnull @Override public ImmutableSet<? extends ImmutableClassDef> getClasses() { return classes; }
Ben Gruvere202aee2015-10-17 13:50:26 -070078 @Nonnull @Override public Opcodes getOpcodes() { return opcodes; }
Ben Gruver84051332012-10-20 14:53:55 -070079}