blob: 04a02fbf2338898a66b2306ddb790de23bde0f47 [file] [log] [blame]
cparsons0c5c1c62018-05-24 10:37:03 -07001// Copyright 2018 The Bazel Authors. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package com.google.devtools.build.lib.packages;
16
gregcecf3a9232020-07-20 15:17:52 -070017import com.google.devtools.build.lib.starlarkbuildapi.core.StructApi;
cparsons0c5c1c62018-05-24 10:37:03 -070018import java.util.Map;
adonovan450c7ad2020-09-14 13:00:21 -070019import net.starlark.java.eval.Dict;
20import net.starlark.java.eval.EvalException;
21import net.starlark.java.eval.Starlark;
22import net.starlark.java.eval.StarlarkThread;
cparsons0c5c1c62018-05-24 10:37:03 -070023
24/**
25 * The provider for the built-in type {@code struct}.
26 *
27 * <p>Its singleton instance is {@link StructProvider#STRUCT}.
28 */
adonovanb58650a2020-11-10 10:27:37 -080029public final class StructProvider extends BuiltinProvider<StarlarkInfo>
cparsons0c5c1c62018-05-24 10:37:03 -070030 implements StructApi.StructProviderApi {
31
adonovanb58650a2020-11-10 10:27:37 -080032 /** Provider of "struct" instances. */
cparsons0c5c1c62018-05-24 10:37:03 -070033 public static final StructProvider STRUCT = new StructProvider();
34
adonovanb58650a2020-11-10 10:27:37 -080035 private StructProvider() {
36 super("struct", StarlarkInfo.class);
cparsons0c5c1c62018-05-24 10:37:03 -070037 }
38
adonovanb58650a2020-11-10 10:27:37 -080039 /** Implementation of {@code struct(**kwargs)} function exposed to Starlark. */
cparsons0c5c1c62018-05-24 10:37:03 -070040 @Override
adonovan7891d3b2020-01-22 12:40:50 -080041 public StructImpl createStruct(Dict<String, Object> kwargs, StarlarkThread thread)
42 throws EvalException {
adonovanb58650a2020-11-10 10:27:37 -080043 if (kwargs.containsKey("to_json")) {
adonovan7891d3b2020-01-22 12:40:50 -080044 throw Starlark.errorf("cannot override built-in struct function 'to_json'");
cparsons07460fc2018-06-20 10:41:48 -070045 }
adonovanb58650a2020-11-10 10:27:37 -080046 if (kwargs.containsKey("to_proto")) {
adonovan7891d3b2020-01-22 12:40:50 -080047 throw Starlark.errorf("cannot override built-in struct function 'to_proto'");
cparsons07460fc2018-06-20 10:41:48 -070048 }
adonovanb58650a2020-11-10 10:27:37 -080049 return StarlarkInfo.create(this, kwargs, thread.getCallerLocation());
cparsons0c5c1c62018-05-24 10:37:03 -070050 }
51
52 /**
hlopkoe1d9b582018-07-23 03:06:32 -070053 * Creates a struct with the given field values and message format for unknown fields.
cparsons0c5c1c62018-05-24 10:37:03 -070054 *
55 * <p>The custom message is useful for objects that have fields but aren't exactly used as
adonovan7891d3b2020-01-22 12:40:50 -080056 * providers, such as the {@code native} object, and the struct fields of {@code ctx} like {@code
57 * ctx.attr}.
58 */
adonovan28ed5732020-11-04 09:39:32 -080059 public StarlarkInfo create(Map<String, Object> fields, String errorMessageFormatForUnknownField) {
Googler157187d2023-01-12 00:04:46 -080060 return StarlarkInfoWithMessage.createWithCustomMessage(
61 this, fields, errorMessageFormatForUnknownField);
cparsons0c5c1c62018-05-24 10:37:03 -070062 }
63}