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

com.yahoo.vespa.config.server.deploy.TenantFileSystemDirs Maven / Gradle / Ivy

There is a newer version: 8.441.21
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.deploy;

import com.yahoo.config.provision.TenantName;
import com.yahoo.io.IOUtils;
import com.yahoo.path.Path;
import com.yahoo.vespa.config.server.ConfigServerDB;

import java.io.File;

/*
 * Holds file system directories for a tenant
 *
 * @author Tony Vaagenes
 */
public class TenantFileSystemDirs {

    private final File serverDB;
    private final TenantName tenant;

    public TenantFileSystemDirs(ConfigServerDB configServerDB, TenantName tenant) {
        this(configServerDB.path(), tenant);
    }

    // For testing
    public TenantFileSystemDirs(File dir, TenantName tenant) {
        this.serverDB = dir;
        this.tenant = tenant;
        ConfigServerDB.createDirectory(sessionsPath());
    }

    public File sessionsPath() {
        return new File(serverDB, Path.fromString("tenants").append(tenant.value()).append("sessions").getRelative());
    }

    public File getUserApplicationDir(long generation) {
        return new File(sessionsPath(), String.valueOf(generation));
    }

    public void delete() {
        IOUtils.recursiveDeleteDir(new File(serverDB, Path.fromString("tenants").append(tenant.value()).getRelative()));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy