aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/ApplicationStore.java
blob: 44db38c3ec29cc9cc23556503a02ef368aa76b58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.integration.deployment;

import com.yahoo.config.provision.ApplicationId;
import com.yahoo.config.provision.ApplicationName;
import com.yahoo.config.provision.TenantName;
import com.yahoo.config.provision.zone.ZoneId;

import java.util.Optional;

/**
 * Store for the application and tester packages.
 *
 * This will replace ArtifactRepository for tenant applications.
 *
 * @author smorgrav
 * @author jonmv
 */
public interface ApplicationStore {

    /** Returns the tenant application package of the given version. */
    byte[] get(TenantName tenant, ApplicationName application, ApplicationVersion applicationVersion);

    /** Find application package by given build number */
    default Optional<byte[]> find(TenantName tenant, ApplicationName application, long buildNumber) {
        // TODO(mpolden): Remove default once all implemenations catch up
        return Optional.empty();
    }

    /** Stores the given tenant application package of the given version. */
    void put(TenantName tenant, ApplicationName application, ApplicationVersion applicationVersion, byte[] applicationPackage);

    /** Removes applications older than the given version, for the given application, and returns whether something was removed. */
    boolean prune(TenantName tenant, ApplicationName application, ApplicationVersion olderThanVersion);

    /** Removes all application packages for the given application, including any development package. */
    void removeAll(TenantName tenant, ApplicationName application);

    /** Returns the tester application package of the given version. Does NOT contain the services.xml. */
    byte[] getTester(TenantName tenant, ApplicationName application, ApplicationVersion applicationVersion);

    /** Stores the given tester application package of the given version. Does NOT contain the services.xml. */
    void putTester(TenantName tenant, ApplicationName application, ApplicationVersion applicationVersion, byte[] testerPackage);

    /** Removes tester packages older than the given version, for the given tester, and returns whether something was removed. */
    boolean pruneTesters(TenantName tenant, ApplicationName application, ApplicationVersion olderThanVersion);

    /** Removes all tester packages for the given tester. */
    void removeAllTesters(TenantName tenant, ApplicationName application);

    /** Stores the given application package as the development package for the given application and zone. */
    void putDev(ApplicationId application, ZoneId zone, byte[] applicationPackage);

    /** Returns the development package for the given application and zone. */
    byte[] getDev(ApplicationId application, ZoneId zone);

}