| // 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. |
| |
| package fs_tool |
| |
| import ( |
| "context" |
| "fmt" |
| "github.com/google/uuid" |
| "io/fs" |
| "os" |
| |
| pb "beam.apache.org/playground/backend/internal/api/v1" |
| "beam.apache.org/playground/backend/internal/db/entity" |
| "beam.apache.org/playground/backend/internal/emulators" |
| "beam.apache.org/playground/backend/internal/logger" |
| ) |
| |
| const ( |
| fileMode = 0600 |
| logFileName = "logs.log" |
| ) |
| |
| // LifeCyclePaths contains all files/folders paths |
| type LifeCyclePaths struct { |
| SourceFileName string // {pipelineId}.{sourceFileExtension} |
| AbsoluteSourceFileFolderPath string // /path/to/workingDir/pipelinesFolder/{pipelineId}/src |
| AbsoluteSourceFilePath string // /path/to/workingDir/pipelinesFolder/{pipelineId}/src/{pipelineId}.{sourceFileExtension} |
| ExecutableFileName string // {pipelineId}.{executableFileExtension} |
| AbsoluteExecutableFileFolderPath string // /path/to/workingDir/pipelinesFolder/{pipelineId}/bin |
| AbsoluteExecutableFilePath string // /path/to/workingDir/pipelinesFolder/{pipelineId}/bin/{pipelineId}.{executableFileExtension} |
| AbsoluteBaseFolderPath string // /path/to/workingDir/pipelinesFolder/{pipelineId} |
| AbsoluteLogFilePath string // /path/to/workingDir/pipelinesFolder/{pipelineId}/logs.log |
| AbsoluteGraphFilePath string // /path/to/workingDir/pipelinesFolder/{pipelineId}/src/graph.dot |
| ProjectDir string // /path/to/workingDir/ |
| FindExecutableName func(context.Context, string) (string, error) |
| FindTestExecutableName func(context.Context, string) (string, error) |
| } |
| |
| // LifeCycle is used for preparing folders and files to process code for one code processing request. |
| type LifeCycle struct { |
| folderGlobs []string // folders that should be created to process code |
| Paths LifeCyclePaths |
| emulatorMockCluster emulators.EmulatorMockCluster |
| } |
| |
| // NewLifeCycle returns a corresponding LifeCycle depending on the given SDK. |
| func NewLifeCycle(sdk pb.Sdk, pipelineId uuid.UUID, pipelinesFolder string) (*LifeCycle, error) { |
| switch sdk { |
| case pb.Sdk_SDK_JAVA: |
| return newJavaLifeCycle(pipelineId, pipelinesFolder), nil |
| case pb.Sdk_SDK_GO: |
| return newGoLifeCycle(pipelineId, pipelinesFolder), nil |
| case pb.Sdk_SDK_PYTHON: |
| return newPythonLifeCycle(pipelineId, pipelinesFolder), nil |
| case pb.Sdk_SDK_SCIO: |
| return newScioLifeCycle(pipelineId, pipelinesFolder), nil |
| default: |
| return nil, fmt.Errorf("%s isn't supported now", sdk) |
| } |
| } |
| |
| // CreateFolders creates all folders which will be used for code execution. |
| func (lc *LifeCycle) CreateFolders() error { |
| for _, folder := range lc.folderGlobs { |
| err := os.MkdirAll(folder, fs.ModePerm) |
| if err != nil { |
| return err |
| } |
| } |
| return nil |
| } |
| |
| // DeleteFolders deletes all previously provisioned folders. |
| func (lc *LifeCycle) DeleteFolders() error { |
| for _, folder := range lc.folderGlobs { |
| err := os.RemoveAll(folder) |
| if err != nil { |
| return err |
| } |
| } |
| return nil |
| } |
| |
| // CreateSourceCodeFiles creates an executable file (i.e. file.{sourceFileExtension}). |
| func (lc *LifeCycle) CreateSourceCodeFiles(sources []entity.FileEntity) error { |
| if _, err := os.Stat(lc.Paths.AbsoluteSourceFileFolderPath); os.IsNotExist(err) { |
| return err |
| } |
| |
| for _, src := range sources { |
| filePath := lc.Paths.AbsoluteSourceFilePath |
| if !src.IsMain { |
| filePath = lc.Paths.AbsoluteSourceFileFolderPath + "/" + src.Name |
| } |
| err := os.WriteFile(filePath, []byte(src.Content), fileMode) |
| if err != nil { |
| return err |
| } |
| } |
| return nil |
| } |
| |
| func (lc *LifeCycle) GetPreparerParameters() map[string]string { |
| if lc.emulatorMockCluster == nil { |
| return map[string]string{} |
| } |
| return lc.emulatorMockCluster.GetPreparerParameters() |
| } |
| |
| func (lc *LifeCycle) StartEmulators(configuration emulators.EmulatorConfiguration) error { |
| kafkaMockClusters, err := emulators.PrepareMockClusters(configuration) |
| if err != nil { |
| logger.Errorf("Failed to start mock emulator: %v", err) |
| return err |
| } |
| lc.emulatorMockCluster = kafkaMockClusters[0] |
| return nil |
| } |
| |
| func (lc *LifeCycle) StopEmulators() { |
| if lc.emulatorMockCluster != nil { |
| lc.emulatorMockCluster.Stop() |
| } |
| } |