summaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/fef/verify_feature.cpp
blob: 92234ed391cd95b9480a90729f37e40a50de098d (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 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "verify_feature.h"
#include "blueprintresolver.h"

#include <vespa/log/log.h>
LOG_SETUP(".fef.verify_feature");

namespace search {
namespace fef {

bool verifyFeature(const BlueprintFactory &factory,
                   const IIndexEnvironment &indexEnv,
                   const std::string &featureName,
                   const std::string &desc)
{
    indexEnv.hintFeatureMotivation(IIndexEnvironment::VERIFY_SETUP);
    BlueprintResolver resolver(factory, indexEnv);
    resolver.addSeed(featureName);
    bool result = resolver.compile();
    if (!result) {
        LOG(error, "rank feature verification failed: %s (%s)",
            featureName.c_str(), desc.c_str());
    }
    return result;
}

} // namespace fef
} // namespace search