aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkParamsInfo.java
diff options
context:
space:
mode:
authorGravatar dslomov <dslomov@google.com>2017-08-21 12:52:41 +0200
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2017-08-21 14:16:34 +0200
commit375f95b16e1a8b164d2caaa4d65a4c9b4e310bd3 (patch)
treefaf5464b37651fa52f76d63f060e6dd2b09dd522 /src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkParamsInfo.java
parente3684497a5a8c4bd42ff970b37c49dc70bcc3eae (diff)
Rename some of native declared providers according to the new naming scheme.
RELNOTES: None PiperOrigin-RevId: 165910455
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkParamsInfo.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkParamsInfo.java72
1 files changed, 72 insertions, 0 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkParamsInfo.java b/src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkParamsInfo.java
new file mode 100644
index 0000000000..5f91a259e0
--- /dev/null
+++ b/src/main/java/com/google/devtools/build/lib/rules/cpp/CcLinkParamsInfo.java
@@ -0,0 +1,72 @@
+// Copyright 2014 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.cpp;
+
+import com.google.common.base.Function;
+import com.google.common.collect.ImmutableMap;
+import com.google.devtools.build.lib.analysis.TransitiveInfoCollection;
+import com.google.devtools.build.lib.concurrent.ThreadSafety.Immutable;
+import com.google.devtools.build.lib.packages.Info;
+import com.google.devtools.build.lib.packages.NativeProvider;
+import com.google.devtools.build.lib.rules.cpp.CcLinkParamsStore.CcLinkParamsStoreImpl;
+
+/** A target that provides C linker parameters. */
+@Immutable
+public final class CcLinkParamsInfo extends Info {
+ public static final NativeProvider<CcLinkParamsInfo> PROVIDER =
+ new NativeProvider<CcLinkParamsInfo>(CcLinkParamsInfo.class, "link_params") {};
+ public static final Function<TransitiveInfoCollection, CcLinkParamsStore> TO_LINK_PARAMS =
+ input -> {
+ // ... then try Skylark.
+ CcLinkParamsInfo provider = input.get(PROVIDER);
+ if (provider != null) {
+ return provider.getCcLinkParamsStore();
+ }
+ return null;
+ };
+
+ private final CcLinkParamsStoreImpl store;
+
+ public CcLinkParamsInfo(CcLinkParamsStore store) {
+ super(PROVIDER, ImmutableMap.<String, Object>of());
+ this.store = new CcLinkParamsStoreImpl(store);
+ }
+
+ public static CcLinkParamsInfo merge(final Iterable<CcLinkParamsInfo> providers) {
+ CcLinkParamsStore ccLinkParamsStore =
+ new CcLinkParamsStore() {
+ @Override
+ protected void collect(
+ CcLinkParams.Builder builder, boolean linkingStatically, boolean linkShared) {
+ for (CcLinkParamsInfo provider : providers) {
+ builder.add(provider.getCcLinkParamsStore());
+ }
+ }
+ };
+ return new CcLinkParamsInfo(ccLinkParamsStore);
+ }
+
+ /** Returns the link params store. */
+ public CcLinkParamsStore getCcLinkParamsStore() {
+ return store;
+ }
+
+ /**
+ * Returns link parameters given static / shared linking settings.
+ */
+ public CcLinkParams getCcLinkParams(boolean linkingStatically, boolean linkShared) {
+ return store.get(linkingStatically, linkShared);
+ }
+}