Source: core/preprocess_c_source_codes.js

/*
 * This file is part of PKM (Persistent Knowledge Monitor).
 * Copyright (c) 2020 Capgemini Group, Commissariat à l'énergie atomique et aux énergies alternatives,
 *                    OW2, Sysgo AG, Technikon, Tree Technology, Universitat Politècnica de València.
 * 
 * PKM is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License version 3 as published by
 * the Free Software Foundation.
 * 
 * PKM is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 * 
 * You should have received a copy of the GNU Affero General Public License
 * along with PKM.  If not, see <https://www.gnu.org/licenses/>.
 */

/** Preprocess C Source Codes
 * 
 * @memberof PKM
 * @instance
 * @param {Array.<Object>} c_source_code_documents - C source code documents
 * @param {Object} [options] - options
 * 
 * @return {Promise.<Array.<Object>>} a promise which result is the preprocessed C source code documents
 */
function preprocess_c_source_codes(c_source_code_documents, options = {})
{
	return new Promise(function(resolve, reject)
	{
		const dont_split = (options !== undefined) && options.dont_split;
		
		if(dont_split)
		{
			resolve(c_source_code_documents);
		}
		else
		{
			let splitted_c_source_code_documents = [];
			
			c_source_code_documents.forEach((c_source_code_document) =>
			{
				c_source_code_document.globals.forEach((global) =>
				{
					splitted_c_source_code_documents.push({ type : c_source_code_document.type, sourceFile : c_source_code_document.sourceFile, globals : [ global ] });
				});
			});
			
			resolve(splitted_c_source_code_documents);
		}
	}.bind(this));
}

module.exports.preprocess_c_source_codes = preprocess_c_source_codes;