aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/configchange/ReindexActionsFormatter.java
blob: 84c2051fa45384a2b160ed315ef229863837a56f (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
// 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 re-index actions for human readability.
 *
 * @author bjorncs
 */
class ReindexActionsFormatter {

    private final ReindexActions actions;

    ReindexActionsFormatter(ReindexActions actions) {
        this.actions = actions;
    }

    String format() {
        StringBuilder builder = new StringBuilder();
        for (ReindexActions.Entry entry : actions.getEntries()) {
            builder.append(entry.name() + ": Consider re-indexing document type '" + entry.getDocumentType() +
                           "' in cluster '" + entry.getClusterName() + "' because:\n");
            int counter = 1;
            for (String message : entry.getMessages()) {
                builder.append("    " + (counter++) + ") " + message + "\n");
            }
        }
        return builder.toString();
    }

}