All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.dapr.workflows.runtime.WorkflowRuntimeBuilder Maven / Gradle / Ivy

/*
 * Copyright 2024 The Dapr Authors
 * 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 io.dapr.workflows.runtime;

import com.microsoft.durabletask.DurableTaskGrpcWorkerBuilder;
import io.dapr.utils.NetworkUtils;
import io.dapr.workflows.Workflow;
import io.dapr.workflows.internal.ApiTokenClientInterceptor;
import io.grpc.ClientInterceptor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;

public class WorkflowRuntimeBuilder {
  private static volatile WorkflowRuntime instance;
  private DurableTaskGrpcWorkerBuilder builder;
  private Logger logger;
  private Set workflows = new HashSet();
  private Set activities = new HashSet();
  private static ClientInterceptor WORKFLOW_INTERCEPTOR = new ApiTokenClientInterceptor();
  private final Set activitySet = Collections.synchronizedSet(new HashSet<>());
  private final Set workflowSet = Collections.synchronizedSet(new HashSet<>());

  /**
   * Constructs the WorkflowRuntimeBuilder.
   */
  public WorkflowRuntimeBuilder() {
    this(LoggerFactory.getLogger(WorkflowRuntimeBuilder.class));
  }

  WorkflowRuntimeBuilder(Logger logger) {
    this.builder = new DurableTaskGrpcWorkerBuilder().grpcChannel(
        NetworkUtils.buildGrpcManagedChannel(WORKFLOW_INTERCEPTOR));
    this.logger = logger;
  }

  /**
   * Returns a WorkflowRuntime object.
   *
   * @return A WorkflowRuntime object.
   */
  public WorkflowRuntime build() {
    if (instance == null) {
      synchronized (WorkflowRuntime.class) {
        if (instance == null) {
          instance = new WorkflowRuntime(this.builder.build());
        }
      }
    }
    this.logger.info("List of registered workflows: " + this.workflowSet);
    this.logger.info("List of registered activites: " + this.activitySet);
    this.logger.info("Successfully built dapr workflow runtime");
    return instance;
  }

  /**
   * Registers a Workflow object.
   *
   * @param    any Workflow type
   * @param clazz the class being registered
   * @return the WorkflowRuntimeBuilder
   */
  public  WorkflowRuntimeBuilder registerWorkflow(Class clazz) {
    this.builder = this.builder.addOrchestration(
        new OrchestratorWrapper<>(clazz)
    );
    this.workflowSet.add(clazz.getCanonicalName());
    this.logger.info("Registered Workflow: " +  clazz.getSimpleName());
    this.workflows.add(clazz.getSimpleName());
    return this;
  }

  /**
   * Registers an Activity object.
   *
   * @param clazz the class being registered
   * @param    any WorkflowActivity type
   */
  public  void registerActivity(Class clazz) {
    this.builder = this.builder.addActivity(
        new ActivityWrapper<>(clazz)
    );
    this.activitySet.add(clazz.getCanonicalName());
    this.logger.info("Registered Activity: " +  clazz.getSimpleName());
    this.activities.add(clazz.getSimpleName());
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy