-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Creates an AndroidOptimizedJarInfo to pass the optimized jar from Sta…
…rlark to Native Blaze. Begin_PUBLIC Internal Change END_PUBLIC PiperOrigin-RevId: 514473826 Change-Id: I41c5b6e334a3417324352b10619ff9147ae2f68f
- Loading branch information
1 parent
3ce2b71
commit 3d8ccd8
Showing
4 changed files
with
140 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
src/main/java/com/google/devtools/build/lib/rules/android/AndroidOptimizedJarInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// Copyright 2023 The Bazel Authors. All rights reserved. | ||
// | ||
// 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.google.devtools.build.lib.rules.android; | ||
|
||
import com.google.devtools.build.lib.actions.Artifact; | ||
import com.google.devtools.build.lib.concurrent.ThreadSafety.Immutable; | ||
import com.google.devtools.build.lib.packages.BuiltinProvider; | ||
import com.google.devtools.build.lib.packages.NativeInfo; | ||
import com.google.devtools.build.lib.starlarkbuildapi.android.AndroidOptimizedJarInfoApi; | ||
import net.starlark.java.eval.EvalException; | ||
|
||
/** A provider for Android Optimized artifacts */ | ||
@Immutable | ||
public class AndroidOptimizedJarInfo extends NativeInfo | ||
implements AndroidOptimizedJarInfoApi<Artifact> { | ||
|
||
public static final String PROVIDER_NAME = "AndroidOptimizedJarInfo"; | ||
public static final Provider PROVIDER = new Provider(); | ||
|
||
private final Artifact optimizedJar; | ||
|
||
public AndroidOptimizedJarInfo(Artifact optimizedJar) { | ||
this.optimizedJar = optimizedJar; | ||
} | ||
|
||
@Override | ||
public Provider getProvider() { | ||
return PROVIDER; | ||
} | ||
|
||
@Override | ||
public Artifact getOptimizedJar() { | ||
return optimizedJar; | ||
} | ||
|
||
/** Provider for {@link AndroidOptimizedJarInfo}. */ | ||
public static class Provider extends BuiltinProvider<AndroidOptimizedJarInfo> | ||
implements AndroidOptimizedJarInfoApi.Provider<Artifact> { | ||
private Provider() { | ||
super(PROVIDER_NAME, AndroidOptimizedJarInfo.class); | ||
} | ||
|
||
public String getName() { | ||
return PROVIDER_NAME; | ||
} | ||
|
||
@Override | ||
public AndroidOptimizedJarInfo createInfo(Artifact optimizedJar) throws EvalException { | ||
return new AndroidOptimizedJarInfo(optimizedJar); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
...va/com/google/devtools/build/lib/starlarkbuildapi/android/AndroidOptimizedJarInfoApi.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
// Copyright 2023 The Bazel Authors. All rights reserved. | ||
// | ||
// 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.google.devtools.build.lib.starlarkbuildapi.android; | ||
|
||
import com.google.devtools.build.docgen.annot.StarlarkConstructor; | ||
import com.google.devtools.build.lib.starlarkbuildapi.FileApi; | ||
import com.google.devtools.build.lib.starlarkbuildapi.core.ProviderApi; | ||
import com.google.devtools.build.lib.starlarkbuildapi.core.StructApi; | ||
import net.starlark.java.annot.Param; | ||
import net.starlark.java.annot.ParamType; | ||
import net.starlark.java.annot.StarlarkBuiltin; | ||
import net.starlark.java.annot.StarlarkMethod; | ||
import net.starlark.java.eval.EvalException; | ||
|
||
/** Supplies a optimized jar from Android Rules. */ | ||
@StarlarkBuiltin( | ||
name = "AndroidOptimizedJarInfo", | ||
doc = | ||
"Do not use this module. It is intended for migration purposes only. If you depend on it, " | ||
+ "you will be broken when it is removed.", | ||
documented = false) | ||
public interface AndroidOptimizedJarInfoApi<FileT extends FileApi> extends StructApi { | ||
|
||
/** Name of this info object. */ | ||
String NAME = "AndroidOptimizedJarInfo"; | ||
|
||
@StarlarkMethod( | ||
name = "optimized_jar", | ||
doc = "The optimized jar.", | ||
documented = false, | ||
structField = true) | ||
FileT getOptimizedJar(); | ||
|
||
/** Provider for {@link AndroidOptimizedJarInfoApi}. */ | ||
@StarlarkBuiltin( | ||
name = "Provider", | ||
doc = | ||
"Do not use this module. It is intended for migration purposes only. If you depend on " | ||
+ "it, you will be broken when it is removed.", | ||
documented = false) | ||
interface Provider<FileT extends FileApi> extends ProviderApi { | ||
|
||
@StarlarkMethod( | ||
name = NAME, | ||
doc = "The <code>AndroidOptimizedJarInfo</code> constructor.", | ||
documented = false, | ||
parameters = { | ||
@Param( | ||
name = "optimized_jar", | ||
allowedTypes = { | ||
@ParamType(type = FileApi.class), | ||
}, | ||
named = true, | ||
doc = "The optimized jar."), | ||
}, | ||
selfCall = true) | ||
@StarlarkConstructor | ||
AndroidOptimizedJarInfoApi<FileT> createInfo(FileT optimizedJar) throws EvalException; | ||
} | ||
} |