/** Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ let fs = require('fs'); let path = require('path'); let propertiesParser = require('properties-parser'); let events = require('cordova-common').events; class GradlePropertiesParser { /** * Loads and Edits Gradle Properties File. * * @param {String} platformDir is the path of the Android platform directory */ constructor (platformDir) { this._defaults = { // 10 seconds -> 6 seconds 'org.gradle.daemon': 'true', // to allow dex in process 'org.gradle.jvmargs': '-Xmx2048m', // allow NDK to be used - required by Gradle 1.5 plugin 'android.useDeprecatedNdk': 'true' // Shaves another 100ms, but produces a "try at own risk" warning. Not worth it (yet): // 'org.gradle.parallel': 'true' }; this.gradleFilePath = path.join(platformDir, 'gradle.properties'); } configure (userConfigs) { events.emit('verbose', '[Gradle Properties] Preparing Configuration'); this._initializeEditor(); events.emit('verbose', '[Gradle Properties] Appending default configuration properties'); this._configureProperties(this._defaults); events.emit('verbose', '[Gradle Properties] Appending custom configuration properties'); this._configureProperties(userConfigs); this._save(); } /** * Initialize the properties editor for parsing, setting, etc. */ _initializeEditor () { // Touch empty gradle.properties file if missing. if (!fs.existsSync(this.gradleFilePath)) { events.emit('verbose', '[Gradle Properties] File missing, creating file with Cordova defaults.'); fs.writeFileSync(this.gradleFilePath, '', 'utf-8'); } // Create an editor for parsing, getting, and setting configurations. this.gradleFile = propertiesParser.createEditor(this.gradleFilePath); } /** * Validate that defaults or user configuration properties are set and * set the missing items. */ _configureProperties (properties) { // Iterate though the properties and set only if missing. Object.keys(properties).forEach(key => { let value = this.gradleFile.get(key); if (!value) { // Handles the case of adding missing defaults or new properties that are missing. events.emit('verbose', `[Gradle Properties] Appending configuration item: ${key}=${properties[key]}`); this.gradleFile.set(key, properties[key]); } else if (value !== properties[key]) { if (this._defaults[key] && this._defaults[key] !== properties[key]) { // Since the value does not match default, we will notify the discrepancy with Cordova's recommended value. events.emit('info', `[Gradle Properties] Detected Gradle property "${key}" with the value of "${properties[key]}", Cordova's recommended value is "${this._defaults[key]}"`); } else { // When the current value exists but does not match the new value or does matches the default key value, the new value it set. events.emit('verbose', `[Gradle Properties] Updating Gradle property "${key}" with the value of "${properties[key]}"`); } // We will set the new value in either case. this.gradleFile.set(key, properties[key]); } }); } /** * Saves any changes that has been made to the properties file. */ _save () { events.emit('verbose', '[Gradle Properties] Updating and Saving File'); this.gradleFile.save(); } } module.exports = GradlePropertiesParser;