cparsons | 0c5c1c6 | 2018-05-24 10:37:03 -0700 | [diff] [blame] | 1 | // 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 | |
| 15 | package com.google.devtools.build.lib.packages; |
| 16 | |
gregce | cf3a923 | 2020-07-20 15:17:52 -0700 | [diff] [blame] | 17 | import com.google.devtools.build.lib.starlarkbuildapi.core.StructApi; |
cparsons | 0c5c1c6 | 2018-05-24 10:37:03 -0700 | [diff] [blame] | 18 | import java.util.Map; |
adonovan | 450c7ad | 2020-09-14 13:00:21 -0700 | [diff] [blame] | 19 | import net.starlark.java.eval.Dict; |
| 20 | import net.starlark.java.eval.EvalException; |
| 21 | import net.starlark.java.eval.Starlark; |
| 22 | import net.starlark.java.eval.StarlarkThread; |
cparsons | 0c5c1c6 | 2018-05-24 10:37:03 -0700 | [diff] [blame] | 23 | |
| 24 | /** |
| 25 | * The provider for the built-in type {@code struct}. |
| 26 | * |
| 27 | * <p>Its singleton instance is {@link StructProvider#STRUCT}. |
| 28 | */ |
adonovan | b58650a | 2020-11-10 10:27:37 -0800 | [diff] [blame] | 29 | public final class StructProvider extends BuiltinProvider<StarlarkInfo> |
cparsons | 0c5c1c6 | 2018-05-24 10:37:03 -0700 | [diff] [blame] | 30 | implements StructApi.StructProviderApi { |
| 31 | |
adonovan | b58650a | 2020-11-10 10:27:37 -0800 | [diff] [blame] | 32 | /** Provider of "struct" instances. */ |
cparsons | 0c5c1c6 | 2018-05-24 10:37:03 -0700 | [diff] [blame] | 33 | public static final StructProvider STRUCT = new StructProvider(); |
| 34 | |
adonovan | b58650a | 2020-11-10 10:27:37 -0800 | [diff] [blame] | 35 | private StructProvider() { |
| 36 | super("struct", StarlarkInfo.class); |
cparsons | 0c5c1c6 | 2018-05-24 10:37:03 -0700 | [diff] [blame] | 37 | } |
| 38 | |
adonovan | b58650a | 2020-11-10 10:27:37 -0800 | [diff] [blame] | 39 | /** Implementation of {@code struct(**kwargs)} function exposed to Starlark. */ |
cparsons | 0c5c1c6 | 2018-05-24 10:37:03 -0700 | [diff] [blame] | 40 | @Override |
adonovan | 7891d3b | 2020-01-22 12:40:50 -0800 | [diff] [blame] | 41 | public StructImpl createStruct(Dict<String, Object> kwargs, StarlarkThread thread) |
| 42 | throws EvalException { |
adonovan | b58650a | 2020-11-10 10:27:37 -0800 | [diff] [blame] | 43 | if (kwargs.containsKey("to_json")) { |
adonovan | 7891d3b | 2020-01-22 12:40:50 -0800 | [diff] [blame] | 44 | throw Starlark.errorf("cannot override built-in struct function 'to_json'"); |
cparsons | 07460fc | 2018-06-20 10:41:48 -0700 | [diff] [blame] | 45 | } |
adonovan | b58650a | 2020-11-10 10:27:37 -0800 | [diff] [blame] | 46 | if (kwargs.containsKey("to_proto")) { |
adonovan | 7891d3b | 2020-01-22 12:40:50 -0800 | [diff] [blame] | 47 | throw Starlark.errorf("cannot override built-in struct function 'to_proto'"); |
cparsons | 07460fc | 2018-06-20 10:41:48 -0700 | [diff] [blame] | 48 | } |
adonovan | b58650a | 2020-11-10 10:27:37 -0800 | [diff] [blame] | 49 | return StarlarkInfo.create(this, kwargs, thread.getCallerLocation()); |
cparsons | 0c5c1c6 | 2018-05-24 10:37:03 -0700 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | /** |
hlopko | e1d9b58 | 2018-07-23 03:06:32 -0700 | [diff] [blame] | 53 | * Creates a struct with the given field values and message format for unknown fields. |
cparsons | 0c5c1c6 | 2018-05-24 10:37:03 -0700 | [diff] [blame] | 54 | * |
| 55 | * <p>The custom message is useful for objects that have fields but aren't exactly used as |
adonovan | 7891d3b | 2020-01-22 12:40:50 -0800 | [diff] [blame] | 56 | * providers, such as the {@code native} object, and the struct fields of {@code ctx} like {@code |
| 57 | * ctx.attr}. |
| 58 | */ |
adonovan | 28ed573 | 2020-11-04 09:39:32 -0800 | [diff] [blame] | 59 | public StarlarkInfo create(Map<String, Object> fields, String errorMessageFormatForUnknownField) { |
Googler | 157187d | 2023-01-12 00:04:46 -0800 | [diff] [blame] | 60 | return StarlarkInfoWithMessage.createWithCustomMessage( |
| 61 | this, fields, errorMessageFormatForUnknownField); |
cparsons | 0c5c1c6 | 2018-05-24 10:37:03 -0700 | [diff] [blame] | 62 | } |
| 63 | } |