aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/configchange/RestartActionsFormatter.java
blob: c9df5f8f3f73f745eb2c0fe1b613723a4d994212 (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
// 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.configchange;

/**
 * Class used to format restart actions for human readability.
 *
 * @author geirst
 */
public class RestartActionsFormatter {

    private final RestartActions actions;

    public RestartActionsFormatter(RestartActions actions) {
        this.actions = actions;
    }

    public String format() {
        StringBuilder builder = new StringBuilder();
        for (RestartActions.Entry entry : actions.getEntries()) {
            builder.append("In cluster '" + entry.getClusterName() + "' of type '" + entry.getClusterType() + "':\n");
            builder.append("    Restart services of type '" + entry.getServiceType() + "' because:\n");
            int counter = 1;
            for (String message : entry.getMessages()) {
                builder.append("        " + counter++ + ") " + message + "\n");
            }
        }
        return builder.toString();
    }
}