UNPKG

chrome-devtools-frontend

Version:
165 lines (149 loc) 5.78 kB
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. /** * This file contains helpers to load the correct path to various scripts and * directories. It is the Node equivalent of devtools_paths.py. * * Note that not all paths implemented in devtools_paths.py are implemented * here. Please add any paths you need that are missing. */ const path = require('path'); const os = require('os'); /** * You would think we can use __filename here but we cannot because __filename * has any symlinks resolved. This means we can't use it to tell if the user is * using the external repo with a standalone build setup because the symlink * from chromium/src/third_party/devtools-frontend => devtools-frontend repo * gets resolved by Node before it gives us __filename. * * We can use process.argv[1], which is the path to the file currently being * executed without any symlinks resolution. If we assume that file is always in * the devtools-frontend repository/directory, we can use that file as the * starting point for figuring out if we're in Chromium or not. until we find * the scripts directory, at which point we've found this file and can use it * for all subsequent logic. * * e.g. the user executes a script: scripts/test/run_lint_check_css.js * * process.argv[1] = * /full/path/devtools-frontend/src/scripts/test/run_lint_check_css.js */ const PATH_TO_EXECUTED_FILE = process.argv[1]; function pathIsMostTopLevelPath(filePath) { /** * On Linux/Mac, if we do path.dirname(X) as many times as possible, it will * eventually equal `/`. On Windows, it will end up equalling C:\, and * path.dirname('C:\') === 'C:\', so we use that to figure out if we've made * it as far up the tree as we can. */ return filePath === path.sep || path.dirname(filePath) === filePath; } const _lookUpCaches = new Map( [['chromium', null]], ); /** * This function figures out if we're within a chromium directory, and therefore * we are in the integrated workflow mode, rather than working in a standalone * devtools-frontend repository. */ function isInChromiumDirectory() { const cached = _lookUpCaches.get('chromium'); if (cached) { return cached; } let potentialChromiumDir = PATH_TO_EXECUTED_FILE; let isInChromium = false; while (!pathIsMostTopLevelPath(potentialChromiumDir)) { potentialChromiumDir = path.dirname(potentialChromiumDir); if (path.basename(potentialChromiumDir) === 'chromium') { isInChromium = true; break; } } const result = {isInChromium, chromiumDirectory: potentialChromiumDir}; _lookUpCaches.set('chromium', result); return result; } /** * Returns the path to the root of the devtools-frontend repository. * * If we're in Chromium, this will be /path/to/chromium/src/third_party/devtools-frontend/src * If it's standalone, it will be /path/to/devtools-frontend */ function devtoolsRootPath() { const nodeScriptFileThatIsBeingExecuted = PATH_TO_EXECUTED_FILE; let devtoolsRootFolder = nodeScriptFileThatIsBeingExecuted; while (path.basename(devtoolsRootFolder) !== 'devtools-frontend') { devtoolsRootFolder = path.dirname(devtoolsRootFolder); // We reached the end and can't find devtools-frontend. if (pathIsMostTopLevelPath(devtoolsRootFolder)) { throw new Error( 'Could not find devtools-frontend in path. If you have cloned the repository to a different directory name, it will not work.'); } } // In Chromium the path to the source code for devtools-frontend is: // third_party/devtools-frontend/src const {isInChromium} = isInChromiumDirectory(); if (isInChromium) { return path.join(devtoolsRootFolder, 'src'); } // But if you're in a standalone repo it's just the devtools-frontend folder. return devtoolsRootFolder; } /** * Returns the path to the root of the main repository we're in. * if we're in Chromium, this is /path/to/chromium/src * if we're in standalone, this is /path/to/devtools-frontend * * Note this is different to devtoolsRootPath(), which always returns the path * to the devtools-frontend source code. */ function rootPath() { const {isInChromium, chromiumDirectory} = isInChromiumDirectory(); if (isInChromium) { return path.join(chromiumDirectory, 'src'); } return devtoolsRootPath(); } /** * Path to the third_party directory. Used because if we're running in Chromium * land we need to use e.g. the Node executable from Chromium's third_party * directory, not from the devtools-frontend third_party directory. */ function thirdPartyPath() { return path.join(rootPath(), 'third_party'); } function nodePath() { const paths = { 'darwin': path.join('mac', 'node-darwin-x64', 'bin', 'node'), 'linux': path.join('linux', 'node-linux-x64', 'bin', 'node'), 'win32': path.join('win', 'node.exe'), }; return path.join(thirdPartyPath(), 'node', paths[os.platform()]); } /** * The path to the devtools-frontend node_modules folder. */ function nodeModulesPath() { return path.join(devtoolsRootPath(), 'node_modules'); } function stylelintExecutablePath() { return path.join(nodeModulesPath(), 'stylelint', 'bin', 'stylelint.js'); } function downloadedChromeBinaryPath() { const paths = { 'linux': path.join('chrome-linux', 'chrome'), 'darwin': path.join('chrome', 'chrome-mac', 'Chromium.app', 'Contents', 'MacOS', 'Chromium'), 'win32': path.join('chrome-win', 'chrome.exe'), }; return path.join(thirdPartyPath(), 'chrome', paths[os.platform()]); } module.exports = { thirdPartyPath, nodePath, devtoolsRootPath, nodeModulesPath, stylelintExecutablePath, downloadedChromeBinaryPath };