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

poapsis.ortserver.services.hierarchy-service.0.1.0-RC6.source-code.OrtRunService.kt Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2024 The ORT Server Authors (See )
 *
 * 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
 *
 *     https://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.
 *
 * SPDX-License-Identifier: Apache-2.0
 * License-Filename: LICENSE
 */

package org.eclipse.apoapsis.ortserver.services

import org.eclipse.apoapsis.ortserver.dao.dbQuery
import org.eclipse.apoapsis.ortserver.model.OrtRun
import org.eclipse.apoapsis.ortserver.model.OrtRunFilters
import org.eclipse.apoapsis.ortserver.model.repositories.OrtRunRepository
import org.eclipse.apoapsis.ortserver.model.repositories.ReporterJobRepository
import org.eclipse.apoapsis.ortserver.model.util.ListQueryParameters
import org.eclipse.apoapsis.ortserver.model.util.ListQueryResult

import org.jetbrains.exposed.sql.Database

import org.slf4j.LoggerFactory

/**
 * A service to interact with ORT runs.
 */
class OrtRunService(
    private val db: Database,
    private val ortRunRepository: OrtRunRepository,
    private val reporterJobRepository: ReporterJobRepository,
    private val reportStorageService: ReportStorageService
) {
    private val logger = LoggerFactory.getLogger(OrtRunService::class.java)

    suspend fun listOrtRuns(
        parameters: ListQueryParameters = ListQueryParameters.DEFAULT,
        filters: OrtRunFilters? = null
    ): ListQueryResult = db.dbQuery {
        ortRunRepository.list(parameters, filters)
    }

    /**
     * Delete the ORT run with the [ortRunId] and all its reports from storage and dependent database entities.
     * In case a report does not exist in storage, although it should, the operation continues, because
     * the report might have been manually deleted from storage. However, if there is a technical issue
     * during the deletion of a report from storage, the function fails and the ORT run is not deleted,
     * allowing to retry the delete operation.
     */
    suspend fun deleteOrtRun(ortRunId: Long) {
        reporterJobRepository.getForOrtRun(ortRunId)?.filenames?.forEach { filename ->
            runCatching {
                reportStorageService.deleteReport(ortRunId, filename)
            }.onFailure { e ->
                if (e is ReportNotFoundException) {
                    logger.warn("Report $filename for ORT run $ortRunId not found in storage. Continuing.")
                } else {
                    throw e
                }
            }
        }

        if (ortRunRepository.delete(ortRunId) == 0) {
            throw ResourceNotFoundException("ORT run with id '$ortRunId' not found.")
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy