private void loadConfigurationManager() { log.trace(() -> "Initializing configuration cache."); @NotNull Parameters params = new Parameters(); FileBasedConfigurationBuilder<FileBasedConfiguration> builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration.class) .configure(params.properties() .setFileName(PROPERTIES_FILE)); try { this.config = builder.getConfiguration(); } catch (ConfigurationException e) { log.fatal(e); throw new RuntimeException("Couldnt load configuration file " + PROPERTIES_FILE); } }
/** * Save property for standalone profile. * * @param pair the pair */ public void savePropertyForStandaloneProfile(final Pair<String, String> pair) { try { final File file = getStandaloneProfileConfigurationDirectory(); final Parameters params = new Parameters(); final FileBasedConfigurationBuilder<FileBasedConfiguration> builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration.class) .configure(params.properties().setFile(new File(file, getApplicationName() + ".properties"))); final Configuration config = builder.getConfiguration(); config.setProperty(pair.getKey(), pair.getValue()); builder.save(); } catch (final Exception e) { throw Throwables.propagate(e); } }
private static FileBasedConfiguration createPropertiesConfiguration(Reader reader) throws ConfigurationException, IOException { if (reader == null) { throw new NullPointerException("reader: null"); } FileBasedConfigurationBuilder<FileBasedConfiguration> builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration.class) .configure(new Parameters() .properties() .setListDelimiterHandler(new DefaultListDelimiterHandler(','))); FileBasedConfiguration config = builder.getConfiguration(); config.read(reader); return config; }
private static FileBasedConfiguration createConfiguration(Reader reader) throws ConfigurationException { if (reader == null) { throw new NullPointerException("reader: null"); } FileBasedConfigurationBuilder<FileBasedConfiguration> builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>(XMLConfiguration.class) .configure(new Parameters().xml()); FileBasedConfiguration fileBasedConfiguration = builder.getConfiguration(); FileHandler handler = new FileHandler(fileBasedConfiguration); handler.load(reader); return fileBasedConfiguration; }
protected Pair<XMLConfiguration, URL> createXmlConfiguration(String fileName) { List<Lookup> lookups = Arrays.asList(new SystemPropertiesLookup(), new HomeLookup(), new ConfigLookup()); Parameters params = new Parameters(); FallbackBasePathLocationStrategy locationStrategy = new FallbackBasePathLocationStrategy(FileLocatorUtils.DEFAULT_LOCATION_STRATEGY, home); FileBasedConfigurationBuilder<XMLConfiguration> builder = new FileBasedConfigurationBuilder<>(XMLConfiguration.class) .configure(params.xml().setDefaultLookups(lookups).setLocationStrategy(locationStrategy).setFileName(fileName) .setSchemaValidation(true).setEntityResolver(new ResourceSchemaResolver())); try { XMLConfiguration xmlConfiguration = builder.getConfiguration(); return new ImmutablePair<>(xmlConfiguration, locationStrategy.getLocatedUrl()); } catch (ConfigurationException e) { throw new ConfigException(e); } }
@Override public void showBoard() { File paramFile = new File("config/mainboardfx.properties"); try { final FileBasedConfigurationBuilder<FileBasedConfiguration> builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>( PropertiesConfiguration.class) .configure( new FileBasedBuilderParametersImpl().setFile(paramFile).setEncoding("utf8")); cfg = builder.getConfiguration(); } catch (ConfigurationException ex) { QLog.l().logger() .error("Не загружен файл конфигурации " + paramFile.getAbsolutePath(), ex); throw new ServerException( "Не загружен файл конфигурации " + paramFile.getAbsolutePath()); } super.showBoard(); }
private FileBasedConfigurationBuilder<XMLConfiguration> getConfigurationBuilder() { if (this.configurationBuilder == null) { final Parameters params = new Parameters(); this.configurationBuilder = new FileBasedConfigurationBuilder<XMLConfiguration>(XMLConfiguration.class) .configure(params.xml() .setURL(this.getFileName()) .setValidating(false)); this.configurationBuilder.setAutoSave(true); // If the file has not yet been written to the disk, as this is the first execution or the file has been deleted (deletion is a legitimate way to "reset to factory settings"), write it now. if (this.isConfigurationInitialisationEnabled() && !this.getDefaultFile().exists()) { // Reinitialise in order to pick up the newly created file. this.propertiesFile = null; this.save(); this.configurationBuilder = null; this.getConfigurationBuilder(); } } return this.configurationBuilder; }
/** * Instantiates a new config. */ private Config() { try { Parameters params = new Parameters(); FileBasedConfigurationBuilder<FileBasedConfiguration> builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>( PropertiesConfiguration.class); builder.configure(params.fileBased().setFileName("nlp.properties") .setLocationStrategy(new ClasspathLocationStrategy())); configuration = builder.getConfiguration(); // Adding TEKSTO_HOME path to Configuration String homePath = System.getenv(TEKSTO_HOME); if (homePath != null && !homePath.isEmpty()) { configuration.setProperty(MODEL_PATH, homePath + "/Models"); } } catch (ConfigurationException e) { LOG.error(e, e); } }
/** * Builds the Configuration object from the properties file (apache commons * properties file format). <br> * The values provided in the config file will be overwritten environment * variables (if present) * * List of the properties <br> * loginsight.host = host name <br> * loginsight.port = port number <br> * loginsight.user = User name <br> * loginsight.password = password <br> * loginsight.ingestion.agentId = agentId <br> * loginsight.connection.scheme = http protocol scheme <br> * loginsight.ingestion.port = Ingestion port number <br> * * @param configFileName * Name of the config file to read * @return Newly created Configuration object */ public static Configuration buildFromConfig(String configFileName) { try { List<FileLocationStrategy> subs = Arrays.asList(new ProvidedURLLocationStrategy(), new FileSystemLocationStrategy(), new ClasspathLocationStrategy()); FileLocationStrategy strategy = new CombinedLocationStrategy(subs); FileBasedConfigurationBuilder<PropertiesConfiguration> builder = new FileBasedConfigurationBuilder<PropertiesConfiguration>( PropertiesConfiguration.class).configure( new Parameters().fileBased().setLocationStrategy(strategy).setFileName(configFileName)); PropertiesConfiguration propConfig = builder.getConfiguration(); Map<String, String> propMap = new HashMap<String, String>(); Iterator<String> keys = propConfig.getKeys(); keys.forEachRemaining(key -> { logger.info(key + ":" + propConfig.getString(key)); propMap.put(key, propConfig.getString(key)); }); Configuration config = Configuration.buildConfig(propMap); config.loadFromEnv(); return config; } catch (ConfigurationException e1) { throw new RuntimeException("Unable to load config", e1); } }
@Test public void testOverride() { Parameters params = new Parameters(); FileBasedConfigurationBuilder<FileBasedConfiguration> builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration.class) .configure(params.properties() .setFileName("file.properties")); Configuration config = null; try { config = builder.getConfiguration(); config.setProperty("somekey", "somevalue"); builder.save(); } catch (ConfigurationException e) { e.printStackTrace(); } }
@Test public void readFromBuilder() throws ConfigurationException { // Arrange final FileBasedBuilderParameters params = new Parameters() .fileBased() .setThrowExceptionOnMissing(true) .setEncoding("UTF-8") .setFileName(Resources.getResource("example.json").toString()); // Act final FileBasedConfigurationBuilder<JsonConfiguration> builder = new FileBasedConfigurationBuilder<>( JsonConfiguration.class); final JsonConfiguration sut = builder.configure(params).getConfiguration(); // Assert assertThat(sut.getString("name"), is("testName")); }
/** * Applies the specified function to the specified set of parameters contained in the input file. * * @param input The specified name of file to encrypt * @param mustBeModified the specified set of parameters * @param function the specified function to apply to the set of specified parameters */ private void modifyAndSave(String input, Set<String> mustBeModified, Function<String, String> function) { Path inputFilePath = Paths.get(input); if (Files.exists(inputFilePath) && Files.isRegularFile(inputFilePath) && Files.isReadable(inputFilePath)) { try { Parameters params = new Parameters(); FileBasedConfigurationBuilder<PropertiesConfiguration> builder = // new FileBasedConfigurationBuilder<>(PropertiesConfiguration.class) // .configure(params.fileBased() // .setFile(inputFilePath.toFile())); // PropertiesConfiguration config = builder.getConfiguration(); mustBeModified.stream().filter(config::containsKey) .forEach(key -> config.setProperty(key, function.apply(config.getString(key)))); builder.save(); } catch (ConfigurationException e) { LOGGER.error("unable to read {} {}", input, e); } } else { LOGGER.debug("No readable file at {}", input); } }
private AliceRecognition() { try { CombinedConfiguration config = new CombinedConfiguration(new MergeCombiner()); config.addConfiguration(new SystemConfiguration()); config.addConfiguration(new FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration.class) .configure(new Parameters().properties().setFileName(ALICE_PROPERTIES)).getConfiguration()); this.enabled = config.getBoolean(ALICE_ENABLED, false); String url = config.getString(ALICE_SERVICE_URL, null); String accessToken = config.getString(ALICE_ACCESS_TOKEN, null); String command = config.getString(ALICE_COMMAND, null); if(enabled && !StringUtils.isEmpty(url) && !StringUtils.isEmpty(accessToken)) { this.client = new AliceClient(url, command); this.client.setAuthToken(accessToken); this.enabled = this.client.isAvailable(); } } catch (Exception e) { LOGGER.error("Unable to initialize Alice: " + e.getMessage()); } }
public static void init() throws ConfigurationException { configManager = new Configurations(); builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration.class) .configure(configManager.getParameters().fileBased().setFile(App.appFileUtil.getHotkeysFile())); config = builder.getConfiguration(); loadHotkeys(); }
public static void init(String worldLocation) throws ConfigurationException { log.debug("World Location for properties: " + worldLocation); configManager = new Configurations(); if(worldLocation == null){ builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration.class) .configure(configManager.getParameters().fileBased().setFileName(defaultWorldPropertiesLocation)); }else { builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration.class) .configure(configManager.getParameters().fileBased().setFileName(worldLocation)); } config = builder.getConfiguration(); }
public static void init() throws ConfigurationException { configManager = new Configurations(); builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration.class) .configure(configManager.getParameters().fileBased().setFile(App.appFileUtil.getAppPropFile())); config = builder.getConfiguration(); }
public static void firstInit() throws Exception{ configManager = new Configurations(); builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration.class) .configure(configManager.getParameters().fileBased().setFileName("src/main/resources/app.properties")); config = builder.getConfiguration(); }
private ConfigurationManager() throws ConfigurationException{ FileBasedConfigurationBuilder<PropertiesConfiguration> builder = new FileBasedConfigurationBuilder<PropertiesConfiguration>(PropertiesConfiguration.class) .configure(new Parameters().properties() .setFileName(configFilePath) .setThrowExceptionOnMissing(true) .setListDelimiterHandler(new DefaultListDelimiterHandler(';')) .setIncludesAllowed(false)); config = builder.getConfiguration(); }
private static PropertiesConfiguration getPropertiesConfiguration(final String fileName) throws ConfigurationException { val propertiesPath = ofNullable(ClassLoader.getSystemClassLoader().getResource(fileName)) .map(URL::getFile) .orElseThrow(IllegalArgumentException::new); return new FileBasedConfigurationBuilder<>(PropertiesConfiguration.class) .configure(new Parameters().properties().setFile(new File(propertiesPath))) .getConfiguration(); }
private Config() { // https://issues.apache.org/jira/browse/CONFIGURATION-677 /*BuilderParameters params = new Parameters().properties() .setFileName(CONFIG_NAME) .setLocationStrategy(new HomeDirectoryLocationStrategy()) .setEncoding("UTF-8");*/ // workaround: HomeDirectoryLocationStrategy location = new HomeDirectoryLocationStrategy(); File configFile = new File(location.getHomeDirectory(), CONFIG_NAME); BuilderParameters params = new Parameters().properties() .setFile(configFile) .setEncoding("UTF-8"); builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>( PropertiesConfiguration.class, params.getParameters(), true); builder.setAutoSave(true); try { config = builder.getConfiguration(); logger.info("User configuration has been loaded from: {}", configFile); } catch(ConfigurationException cex) { logger.error("Error loading configuration", cex); throw new IllegalStateException("Error loading/creating configuration"); } }
private static Configuration loadConfiguration() throws IOException, ConfigurationException { Configurations configurations = new Configurations(); File file = Constants.SETTINGS_FILE_XML; if (!file.exists()) { XMLConfiguration tempConfiguration = new XMLConfiguration(); new FileHandler(tempConfiguration).save(file); } FileBasedConfigurationBuilder<XMLConfiguration> builder = configurations.xmlBuilder(file); builder.setAutoSave(true); return builder.getConfiguration(); }
private Set<String> readExtensionNames(final File folder) throws Exception { try (final InputStream extensionsXML = getClass().getResourceAsStream("extensions.xml")) { new File(folder, "bin/platform").mkdirs(); Files.copy(extensionsXML, new File(folder, "bin/platform/extensions.xml").toPath()); } final File hybrisPlatformDirectory = new File(folder, "bin/platform"); final File platformExtensionsFile = new File(hybrisPlatformDirectory, "extensions.xml"); final FileBasedConfigurationBuilder<XMLConfiguration> builder = new FileBasedConfigurationBuilder<>( XMLConfiguration.class).configure(new Parameters().xml().setFile(platformExtensionsFile)); final XMLConfiguration platformExtensionsConfiguration = builder.getConfiguration(); final List<String> extensionNames = Lists .newArrayList(platformExtensionsConfiguration.getList(String.class, "extensions.extension[@name]")); return new HashSet<>(extensionNames); }
/** * Instantiates a new config. */ private Config() { try { Parameters params = new Parameters(); FileBasedConfigurationBuilder<FileBasedConfiguration> builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>( PropertiesConfiguration.class); builder.configure(params.fileBased().setFileName("pdf2xml.properties").setLocationStrategy(new ClasspathLocationStrategy())); configuration = builder.getConfiguration(); } catch (ConfigurationException e) { LOG.error(e, e); } }
private Configuration getHeapSpankJarConfiguration() throws ConfigurationException { Parameters params = new Parameters(); FileBasedConfigurationBuilder<FileBasedConfiguration> builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration.class) .configure(params.properties() .setFileName(PROPERTIES_FILE) .setLocationStrategy(new ClasspathLocationStrategy()) ); Configuration config = builder.getConfiguration(); return config; }
private Configuration getHomeFolderConfiguration() throws ConfigurationException { File homeDir = new File( System.getProperty("user.home")); File heapSpankProperties = new File(homeDir, this.PROPERTIES_FILE); Parameters params = new Parameters(); FileBasedConfigurationBuilder<FileBasedConfiguration> builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration.class) .configure(params.properties() .setFile(heapSpankProperties)); return builder.getConfiguration(); }
private Configuration getCurrentFolderConfiguration() throws ConfigurationException { URL location = ApacheCommonsConfigFile.class.getProtectionDomain().getCodeSource().getLocation(); File heapSpankjarFile = new File(location.getFile()); File dirOfHeapSpankjarFile = new File(location.getFile()).getParentFile(); File heapSpankProperties = new File(dirOfHeapSpankjarFile, this.PROPERTIES_FILE); Parameters params = new Parameters(); FileBasedConfigurationBuilder<FileBasedConfiguration> builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration.class) .configure(params.properties() .setFile(heapSpankProperties)); return builder.getConfiguration(); }
private ApplicationConfig() { Parameters params = new Parameters(); FileBasedConfigurationBuilder<FileBasedConfiguration> builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>( PropertiesConfiguration.class) .configure(params.properties() .setFileName("application.properties")); try { config = builder.getConfiguration(); } catch (ConfigurationException e) { logger.error("failed to load application.properties: {}", e, e.getMessage()); } }
public JacksonConfigurationBuilderProvider(final Class<T> configurationClass) { super( FileBasedConfigurationBuilder.class.getName(), // Normal builder. ReloadingFileBasedConfigurationBuilder.class.getName(), // Reloading builder. configurationClass.getName(), // Configuration class. Collections.singleton(FileBasedBuilderParametersImpl.class.getName()) // Parameter class. ); }
private void checkRole(String user, File roleFile, String... roles) throws Exception { Configurations configs = new Configurations(); FileBasedConfigurationBuilder<PropertiesConfiguration> roleBuilder = configs.propertiesBuilder(roleFile); PropertiesConfiguration roleConfig = roleBuilder.getConfiguration(); for (String r : roles) { String storedUsers = (String) roleConfig.getProperty(r); System.out.println("users in role: " + r + " ; " + storedUsers); List<String> userList = StringUtil.splitStringList(storedUsers, ","); assertTrue(userList.contains(user)); } }
private boolean checkPassword(String user, String password, File userFile) throws Exception { Configurations configs = new Configurations(); FileBasedConfigurationBuilder<PropertiesConfiguration> userBuilder = configs.propertiesBuilder(userFile); PropertiesConfiguration userConfig = userBuilder.getConfiguration(); String storedPassword = (String) userConfig.getProperty(user); HashProcessor processor = PasswordMaskingUtil.getHashProcessor(storedPassword); return processor.compare(password.toCharArray(), storedPassword); }
private SolverFactory() { Configuration configuration = null; try { String baseDir = System.getProperty("user.dir"); FileBasedConfigurationBuilder<PropertiesConfiguration> builder = new FileBasedConfigurationBuilder<PropertiesConfiguration>(PropertiesConfiguration.class) .configure(new Parameters().properties() .setFileName(String.format("%s%s%s", baseDir, File.separator, PROPERTY_FILE))); configuration = builder.getConfiguration(); } catch (Exception ce) { //log.error("There went something wrong while reading the clingo configuration. Using Default configruation.", ce); } if (configuration!=null) { clingoParameters = getClingoParameters(configuration); clingoExec = configuration.getString("clingo.exec", "clingo.exe"); } else { //defaults if (OsUtils.isUnix()) clingoExec = "clingo"; else if (OsUtils.isWindows()) clingoExec = "clingo.exe"; clingoParameters = new String[] {"--warn=no-atom-undefined", "--quiet=0,2,2", "--verbose=0", "--project"}; } }
/** * Adds the configuration stored on disk to the current set of parameters. The * file <code>fileName</code> must be a valid configuration file as per Javas * <code>Properties</code> class. * * @param fileName */ public static void setConfiguration(String fileName) { try { AptaLogger.log(Level.INFO, Configuration.class, "Reading configuration from file."); builder = new FileBasedConfigurationBuilder<org.apache.commons.configuration2.FileBasedConfiguration>( PropertiesConfiguration.class) .configure(new Parameters().properties().setFileName(fileName) .setListDelimiterHandler(new DefaultListDelimiterHandler(','))); // Create a composite configuration which allows to keep user parameters and defaults separated CompositeConfiguration cc = new CompositeConfiguration(); cc.addConfiguration(builder.getConfiguration(), true); // changes will be saved in the user config cc.addConfiguration(getDefaultParametersBuilder().getConfiguration(), false); parameters = cc; } catch (Exception e) { AptaLogger.log(Level.SEVERE, Configuration.class, "Error, could not read configuration file. Please check it for correctness"); AptaLogger.log(Level.SEVERE, Configuration.class, e); e.printStackTrace(); } // TODO: Sanity checks! }
/** * Creates an empty configuration and configures the class * @param filename location at which the config should be stored in the future */ public static void createConfiguration(Path filePath) { try { builder = new FileBasedConfigurationBuilder<FileBasedConfiguration>(PropertiesConfiguration.class) .configure(new Parameters().properties() //.setFile(filePath.toFile()) .setListDelimiterHandler(new DefaultListDelimiterHandler(','))); org.apache.commons.configuration2.Configuration userParameters = builder.getConfiguration(); //We need to explicitly save the file before setting it in the builder, for whatever reason... builder.getFileHandler().save(filePath.toFile()); builder.getFileHandler().setFile(filePath.toFile()); // Create a composite configuration which allows to keep user parameters and defaults separated CompositeConfiguration cc = new CompositeConfiguration(); cc.addConfiguration(builder.getConfiguration(), true); // changes will be saved in the user config cc.addConfiguration(getDefaultParametersBuilder().getConfiguration(), false); parameters = cc; } catch (Exception e) { AptaLogger.log(Level.SEVERE, Configuration.class, "Error, could not create configuration file."); AptaLogger.log(Level.SEVERE, Configuration.class, e); e.printStackTrace(); } }