Skip to content

Package: RuntimeConfiguration

RuntimeConfiguration

nameinstructionbranchcomplexitylinemethod
RuntimeConfiguration(DriverConfiguration)
M: 7 C: 22
76%
M: 0 C: 2
100%
M: 0 C: 2
100%
M: 2 C: 7
78%
M: 0 C: 1
100%
getLoadAllThreshold()
M: 0 C: 3
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
getStatementLoaderFactory()
M: 0 C: 3
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
setStatementLoaderFactory(StatementLoaderFactory)
M: 4 C: 7
64%
M: 1 C: 1
50%
M: 1 C: 1
50%
M: 0 C: 3
100%
M: 0 C: 1
100%
static {...}
M: 0 C: 1
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 1
100%
M: 0 C: 1
100%

Coverage

1: /**
2: * Copyright (C) 2022 Czech Technical University in Prague
3: *
4: * This program is free software: you can redistribute it and/or modify it under
5: * the terms of the GNU General Public License as published by the Free Software
6: * Foundation, either version 3 of the License, or (at your option) any
7: * later version.
8: *
9: * This program is distributed in the hope that it will be useful, but WITHOUT
10: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11: * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
12: * details. You should have received a copy of the GNU General Public License
13: * along with this program. If not, see <http://www.gnu.org/licenses/>.
14: */
15: package cz.cvut.kbss.ontodriver.rdf4j.config;
16:
17: import cz.cvut.kbss.ontodriver.config.DriverConfiguration;
18: import cz.cvut.kbss.ontodriver.rdf4j.loader.DefaultStatementLoaderFactory;
19: import cz.cvut.kbss.ontodriver.rdf4j.loader.StatementLoaderFactory;
20:
21: /**
22: * Represents configuration which influences the driver during its active usage, not its initialization.
23: */
24: public class RuntimeConfiguration {
25:
26: private final int loadAllThreshold;
27:
28: private StatementLoaderFactory statementLoaderFactory = new DefaultStatementLoaderFactory();
29:
30: public RuntimeConfiguration(DriverConfiguration config) {
31:• if (config.isSet(Rdf4jConfigParam.LOAD_ALL_THRESHOLD)) {
32: try {
33: this.loadAllThreshold = Integer.parseInt(config.getProperty(Rdf4jConfigParam.LOAD_ALL_THRESHOLD));
34: } catch (NumberFormatException e) {
35: throw new IllegalArgumentException(
36: "Invalid value of the \"" + Rdf4jOntoDriverProperties.LOAD_ALL_THRESHOLD +
37: "\" parameter. Must be a valid integer.", e);
38: }
39: } else {
40: this.loadAllThreshold = Constants.DEFAULT_LOAD_ALL_THRESHOLD;
41: }
42: }
43:
44: public int getLoadAllThreshold() {
45: return loadAllThreshold;
46: }
47:
48: public StatementLoaderFactory getStatementLoaderFactory() {
49: return statementLoaderFactory;
50: }
51:
52: public void setStatementLoaderFactory(StatementLoaderFactory statementLoaderFactory) {
53:• assert statementLoaderFactory != null;
54: this.statementLoaderFactory = statementLoaderFactory;
55: }
56: }