| 
									
										
										
										
											2017-11-12 01:48:29 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2018-07-30 23:08:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-12 01:48:29 +08:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-30 03:24:13 +08:00
										 |  |  | const Parser = require("../Parser"); | 
					
						
							| 
									
										
										
										
											2019-10-31 06:24:13 +08:00
										 |  |  | const JsonExportsDependency = require("../dependencies/JsonExportsDependency"); | 
					
						
							| 
									
										
										
										
											2023-06-02 03:44:37 +08:00
										 |  |  | const memoize = require("../util/memoize"); | 
					
						
							| 
									
										
										
										
											2021-07-06 16:14:22 +08:00
										 |  |  | const JsonData = require("./JsonData"); | 
					
						
							| 
									
										
										
										
											2017-11-12 01:48:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-29 01:12:11 +08:00
										 |  |  | /** @typedef {import("../../declarations/plugins/JsonModulesPluginParser").JsonModulesPluginParserOptions} JsonModulesPluginParserOptions */ | 
					
						
							| 
									
										
										
										
											2023-06-02 03:44:37 +08:00
										 |  |  | /** @typedef {import("../Module").BuildInfo} BuildInfo */ | 
					
						
							|  |  |  | /** @typedef {import("../Module").BuildMeta} BuildMeta */ | 
					
						
							| 
									
										
										
										
											2019-11-30 03:24:13 +08:00
										 |  |  | /** @typedef {import("../Parser").ParserState} ParserState */ | 
					
						
							|  |  |  | /** @typedef {import("../Parser").PreparsedAst} PreparsedAst */ | 
					
						
							| 
									
										
										
										
											2023-04-29 02:03:16 +08:00
										 |  |  | /** @typedef {import("./JsonModulesPlugin").RawJsonData} RawJsonData */ | 
					
						
							| 
									
										
										
										
											2017-11-12 01:48:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-02 03:44:37 +08:00
										 |  |  | const getParseJson = memoize(() => require("json-parse-even-better-errors")); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-30 03:24:13 +08:00
										 |  |  | class JsonParser extends Parser { | 
					
						
							| 
									
										
										
										
											2019-11-29 01:12:11 +08:00
										 |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2024-12-14 01:14:02 +08:00
										 |  |  | 	 * @param {JsonModulesPluginParserOptions} options parser options | 
					
						
							| 
									
										
										
										
											2019-11-29 01:12:11 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2024-12-14 01:14:02 +08:00
										 |  |  | 	constructor(options) { | 
					
						
							| 
									
										
										
										
											2019-11-30 19:17:48 +08:00
										 |  |  | 		super(); | 
					
						
							| 
									
										
										
										
											2024-12-14 01:14:02 +08:00
										 |  |  | 		this.options = options || {}; | 
					
						
							| 
									
										
										
										
											2019-11-29 01:12:11 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-24 04:52:05 +08:00
										 |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2019-11-30 03:24:13 +08:00
										 |  |  | 	 * @param {string | Buffer | PreparsedAst} source the source to parse | 
					
						
							| 
									
										
										
										
											2018-11-24 04:52:05 +08:00
										 |  |  | 	 * @param {ParserState} state the parser state | 
					
						
							|  |  |  | 	 * @returns {ParserState} the parser state | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-12 01:48:29 +08:00
										 |  |  | 	parse(source, state) { | 
					
						
							| 
									
										
										
										
											2019-11-30 03:24:13 +08:00
										 |  |  | 		if (Buffer.isBuffer(source)) { | 
					
						
							|  |  |  | 			source = source.toString("utf-8"); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-11-30 19:17:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-25 06:09:00 +08:00
										 |  |  | 		/** @type {NonNullable<JsonModulesPluginParserOptions["parse"]>} */ | 
					
						
							| 
									
										
										
										
											2019-12-01 04:46:05 +08:00
										 |  |  | 		const parseFn = | 
					
						
							| 
									
										
										
										
											2023-06-02 03:44:37 +08:00
										 |  |  | 			typeof this.options.parse === "function" | 
					
						
							|  |  |  | 				? this.options.parse | 
					
						
							|  |  |  | 				: getParseJson(); | 
					
						
							|  |  |  | 		/** @type {Buffer | RawJsonData | undefined} */ | 
					
						
							|  |  |  | 		let data; | 
					
						
							|  |  |  | 		try { | 
					
						
							|  |  |  | 			data = | 
					
						
							|  |  |  | 				typeof source === "object" | 
					
						
							|  |  |  | 					? source | 
					
						
							| 
									
										
										
										
											2024-08-02 02:36:27 +08:00
										 |  |  | 					: parseFn(source[0] === "\uFEFF" ? source.slice(1) : source); | 
					
						
							| 
									
										
										
										
											2024-07-31 15:37:05 +08:00
										 |  |  | 		} catch (err) { | 
					
						
							|  |  |  | 			throw new Error( | 
					
						
							|  |  |  | 				`Cannot parse JSON: ${/** @type {Error} */ (err).message}` | 
					
						
							|  |  |  | 			); | 
					
						
							| 
									
										
										
										
											2023-06-02 03:44:37 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		const jsonData = new JsonData(/** @type {Buffer | RawJsonData} */ (data)); | 
					
						
							|  |  |  | 		const buildInfo = /** @type {BuildInfo} */ (state.module.buildInfo); | 
					
						
							|  |  |  | 		buildInfo.jsonData = jsonData; | 
					
						
							|  |  |  | 		buildInfo.strict = true; | 
					
						
							|  |  |  | 		const buildMeta = /** @type {BuildMeta} */ (state.module.buildMeta); | 
					
						
							|  |  |  | 		buildMeta.exportsType = "default"; | 
					
						
							|  |  |  | 		buildMeta.defaultObject = | 
					
						
							| 
									
										
										
										
											2019-12-05 05:54:26 +08:00
										 |  |  | 			typeof data === "object" ? "redirect-warn" : false; | 
					
						
							| 
									
										
										
										
											2024-12-12 14:02:01 +08:00
										 |  |  | 		state.module.addDependency( | 
					
						
							| 
									
										
										
										
											2024-12-19 10:07:45 +08:00
										 |  |  | 			new JsonExportsDependency(jsonData, this.options.exportsDepth) | 
					
						
							| 
									
										
										
										
											2024-12-12 14:02:01 +08:00
										 |  |  | 		); | 
					
						
							| 
									
										
										
										
											2017-11-12 01:48:29 +08:00
										 |  |  | 		return state; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports = JsonParser; |