]> source.dussan.org Git - sonarqube.git/blob
3172c6f3bd07bda2f2691af54aaea57d212c4190
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2024 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.server.measure.index;
21
22 import javax.inject.Inject;
23 import org.sonar.api.config.Configuration;
24 import org.sonar.api.config.internal.MapSettings;
25 import org.sonar.server.es.Index;
26 import org.sonar.server.es.IndexDefinition;
27 import org.sonar.server.es.IndexType;
28 import org.sonar.server.es.IndexType.IndexRelationType;
29 import org.sonar.server.es.newindex.NewAuthorizedIndex;
30 import org.sonar.server.es.newindex.TypeMapping;
31 import org.sonar.server.permission.index.IndexAuthorizationConstants;
32
33 import static org.sonar.server.es.newindex.DefaultIndexSettingsElement.SEARCH_GRAMS_ANALYZER;
34 import static org.sonar.server.es.newindex.DefaultIndexSettingsElement.SORTABLE_ANALYZER;
35 import static org.sonar.server.es.newindex.SettingsConfiguration.MANUAL_REFRESH_INTERVAL;
36 import static org.sonar.server.es.newindex.SettingsConfiguration.newBuilder;
37
38 public class ProjectMeasuresIndexDefinition implements IndexDefinition {
39
40   public static final Index DESCRIPTOR = Index.withRelations("projectmeasures");
41   public static final IndexType.IndexMainType TYPE_AUTHORIZATION = IndexType.main(DESCRIPTOR, IndexAuthorizationConstants.TYPE_AUTHORIZATION);
42   public static final IndexRelationType TYPE_PROJECT_MEASURES = IndexType.relation(TYPE_AUTHORIZATION, "projectmeasure");
43
44   public static final String FIELD_UUID = "uuid";
45
46   /**
47    * Project key. Only projects and applications (qualifier=TRK, APP)
48    */
49   public static final String FIELD_KEY = "key";
50   public static final String FIELD_NAME = "name";
51   public static final String FIELD_QUALIFIER = "qualifier";
52   public static final String FIELD_ANALYSED_AT = "analysedAt";
53   public static final String FIELD_CREATED_AT = "createdAt";
54   public static final String FIELD_QUALITY_GATE_STATUS = "qualityGateStatus";
55   public static final String FIELD_TAGS = "tags";
56   public static final String FIELD_MEASURES = "measures";
57   public static final String SUB_FIELD_MEASURES_KEY = "key";
58   public static final String SUB_FIELD_MEASURES_VALUE = "value";
59   public static final String FIELD_MEASURES_MEASURE_KEY = FIELD_MEASURES + "." + SUB_FIELD_MEASURES_KEY;
60   public static final String FIELD_MEASURES_MEASURE_VALUE = FIELD_MEASURES + "." + SUB_FIELD_MEASURES_VALUE;
61   public static final String FIELD_LANGUAGES = "languages";
62   public static final String FIELD_NCLOC_DISTRIBUTION = "nclocLanguageDistribution";
63   public static final String SUB_FIELD_DISTRIB_LANGUAGE = "language";
64   public static final String SUB_FIELD_DISTRIB_NCLOC = "ncloc";
65   public static final String FIELD_NCLOC_DISTRIBUTION_LANGUAGE = FIELD_NCLOC_DISTRIBUTION + "." + SUB_FIELD_DISTRIB_LANGUAGE;
66   public static final String FIELD_NCLOC_DISTRIBUTION_NCLOC = FIELD_NCLOC_DISTRIBUTION + "." + SUB_FIELD_DISTRIB_NCLOC;
67
68   private final Configuration config;
69   private final boolean enableSource;
70
71   private ProjectMeasuresIndexDefinition(Configuration config, boolean enableSource) {
72     this.config = config;
73     this.enableSource = enableSource;
74   }
75
76   @Inject
77   public ProjectMeasuresIndexDefinition(Configuration config) {
78     this(config, false);
79   }
80
81   /**
82    * Keep the document sources in index so that indexer tests can verify content
83    * of indexed documents.
84    */
85   public static ProjectMeasuresIndexDefinition createForTest() {
86     return new ProjectMeasuresIndexDefinition(new MapSettings().asConfig(), true);
87   }
88
89   @Override
90   public void define(IndexDefinitionContext context) {
91     NewAuthorizedIndex index = context.createWithAuthorization(
92       DESCRIPTOR,
93       newBuilder(config)
94         .setRefreshInterval(MANUAL_REFRESH_INTERVAL)
95         .setDefaultNbOfShards(5)
96         .build())
97       .setEnableSource(enableSource);
98
99     TypeMapping mapping = index.createTypeMapping(TYPE_PROJECT_MEASURES);
100     mapping.keywordFieldBuilder(FIELD_UUID).disableNorms().build();
101     mapping.keywordFieldBuilder(FIELD_KEY).disableNorms().addSubFields(SORTABLE_ANALYZER).build();
102     mapping.keywordFieldBuilder(FIELD_QUALIFIER).disableNorms().build();
103     mapping.keywordFieldBuilder(FIELD_NAME).addSubFields(SORTABLE_ANALYZER, SEARCH_GRAMS_ANALYZER).build();
104     mapping.keywordFieldBuilder(FIELD_QUALITY_GATE_STATUS).build();
105     mapping.keywordFieldBuilder(FIELD_TAGS).build();
106     mapping.keywordFieldBuilder(FIELD_LANGUAGES).build();
107     mapping.nestedFieldBuilder(FIELD_MEASURES)
108       .addKeywordField(SUB_FIELD_MEASURES_KEY)
109       .addDoubleField(SUB_FIELD_MEASURES_VALUE)
110       .build();
111     mapping.nestedFieldBuilder(FIELD_NCLOC_DISTRIBUTION)
112       .addKeywordField(SUB_FIELD_DISTRIB_LANGUAGE)
113       .addIntegerField(SUB_FIELD_DISTRIB_NCLOC)
114       .build();
115     mapping.createDateTimeField(FIELD_ANALYSED_AT);
116     mapping.createDateTimeField(FIELD_CREATED_AT);
117   }
118 }