aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/SuperModelRequestHandler.java
blob: d43d898f8c36edf3dc8a3e13f152a6177ce3f5b2 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server;

import com.yahoo.component.annotation.Inject;
import com.yahoo.cloud.config.ConfigserverConfig;
import com.yahoo.component.Version;
import com.yahoo.config.FileReference;
import com.yahoo.config.model.api.ConfigDefinitionRepo;
import com.yahoo.config.provision.ApplicationId;
import com.yahoo.vespa.config.ConfigKey;
import com.yahoo.vespa.config.GetConfigRequest;
import com.yahoo.vespa.config.protocol.ConfigResponse;
import com.yahoo.vespa.config.server.application.ApplicationVersions;
import com.yahoo.vespa.config.server.rpc.ConfigResponseFactory;

import java.util.Optional;
import java.util.Set;

/**
 * Handles request for supermodel config.
 *
 * @author Ulf Lilleengen
 */
public class SuperModelRequestHandler implements RequestHandler {

    private volatile SuperModelController handler;
    private final ConfigDefinitionRepo configDefinitionRepo;
    private final ConfigResponseFactory responseFactory;
    private final SuperModelManager superModelManager;
    private volatile boolean enabled = false;

    /**
     * Creates a supermodel controller
     */
    @Inject
    public SuperModelRequestHandler(ConfigDefinitionRepo configDefinitionRepo,
                                    ConfigserverConfig configserverConfig,
                                    SuperModelManager superModelManager) {
        this.configDefinitionRepo = configDefinitionRepo;
        this.responseFactory = ConfigResponseFactory.create(configserverConfig);
        this.superModelManager = superModelManager;
        updateHandler();
    }

    /**
     * Signals that config has been activated for an {@link com.yahoo.vespa.config.server.application.Application}
     * belonging to a tenant.
     *
     * @param applicationVersions The activated set of {@link com.yahoo.vespa.config.server.application.Application}s.
     */
    public synchronized void activateConfig(ApplicationVersions applicationVersions) {
        superModelManager.configActivated(applicationVersions);
        updateHandler();
    }

    public synchronized void removeApplication(ApplicationId applicationId) {
        superModelManager.applicationRemoved(applicationId);
        updateHandler();
    }

    private void updateHandler() {
        handler = new SuperModelController(
                superModelManager.getSuperModelConfigProvider(),
                configDefinitionRepo,
                superModelManager.getGeneration(),
                responseFactory);
    }

    public SuperModelController getHandler() { return handler; }

    @Override
    public ConfigResponse resolveConfig(ApplicationId appId, GetConfigRequest req, Optional<Version> vespaVersion) {
        return (handler == null) ? null : handler.resolveConfig(req);
    }

    @Override
    public Set<ConfigKey<?>> listConfigs(ApplicationId appId, Optional<Version> vespaVersion, boolean recursive) {
        throw new UnsupportedOperationException();
    }

    @Override
    public Set<ConfigKey<?>> listNamedConfigs(ApplicationId appId, Optional<Version> vespaVersion, ConfigKey<?> key, boolean recursive) {
        throw new UnsupportedOperationException();
    }

    @Override
    public Set<ConfigKey<?>> allConfigsProduced(ApplicationId appId, Optional<Version> vespaVersion) {
        throw new UnsupportedOperationException();
    }

    @Override
    public Set<String> allConfigIds(ApplicationId appID, Optional<Version> vespaVersion) {
        throw new UnsupportedOperationException();
    }

    @Override
    public boolean hasApplication(ApplicationId appId, Optional<Version> vespaVersion) {
        return enabled && appId.equals(ApplicationId.global());
    }

    @Override
    public ApplicationId resolveApplicationId(String hostName) {
        return ApplicationId.global();
    }

    @Override
    public Set<FileReference> listFileReferences(ApplicationId applicationId) {
        throw new UnsupportedOperationException();
    }

    @Override
    public boolean compatibleWith(Optional<Version> vespaVersion, ApplicationId application) {
        return true;
    }

    public void enable() {
        enabled = true;
        superModelManager.markAsComplete();
        updateHandler();
    }

}