Skip to content

Commit

Permalink
Ensure additional caffeine cache classes are registered for reflectio…
Browse files Browse the repository at this point in the history
…n if stats are enabled

Fixes #6230
  • Loading branch information
jamesnetherton committed Jun 27, 2024
1 parent dbeeea9 commit b00a01c
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,33 @@
*/
package org.apache.camel.quarkus.component.caffeine.deployment;

import java.util.function.BooleanSupplier;

import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.deployment.builditem.FeatureBuildItem;
import org.jboss.jandex.DotName;
import io.quarkus.deployment.builditem.nativeimage.NativeImageSystemPropertyBuildItem;
import org.apache.camel.quarkus.core.deployment.util.CamelSupport;

import static io.quarkus.caffeine.runtime.graal.CacheConstructorsFeature.REGISTER_RECORD_STATS_IMPLEMENTATIONS;

class CaffeineProcessor {
private static final String FEATURE = "camel-caffeine";
private static final DotName CACHE_LOADER_NAME = DotName.createSimple("com.github.benmanes.caffeine.cache.CacheLoader");

@BuildStep
FeatureBuildItem feature() {
return new FeatureBuildItem(FEATURE);
}

@BuildStep(onlyIf = CamelCaffeineStatsEnabled.class)
NativeImageSystemPropertyBuildItem registerRecordStatsImplementations() {
return new NativeImageSystemPropertyBuildItem(REGISTER_RECORD_STATS_IMPLEMENTATIONS, "true");
}

static final class CamelCaffeineStatsEnabled implements BooleanSupplier {
@Override
public boolean getAsBoolean() {
return CamelSupport.getOptionalConfigValue("camel.component.caffeine-cache.stats-enabled", boolean.class, false) ||
CamelSupport.getOptionalConfigValue("camel.component.caffeine-cache.statsEnabled", boolean.class, false);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
## ---------------------------------------------------------------------------
## Licensed to the Apache Software Foundation (ASF) under one or more
## contributor license agreements. See the NOTICE file distributed with
## this work for additional information regarding copyright ownership.
## The ASF licenses this file to You 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.
## ---------------------------------------------------------------------------

camel.component.caffeine-cache.stats-enabled = true

0 comments on commit b00a01c

Please sign in to comment.