Your IP : 216.73.216.17


Current Path : /etc/kibana/node_modules/@kbn/babel-code-parser/src/
Upload File :
Current File : //etc/kibana/node_modules/@kbn/babel-code-parser/src/code_parser.js

/*
 * Licensed to Elasticsearch B.V. under one or more contributor
 * license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright
 * ownership. Elasticsearch B.V. 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.
 */

import { canRequire } from './can_require';
import { readFile, readFileSync } from 'fs';
import { extname } from 'path';
import { promisify } from 'util';
import * as parser from '@babel/parser';
import traverse from '@babel/traverse';
import * as babelParserOptions from '@kbn/babel-preset/common_babel_parser_options';

const read = promisify(readFile);

function _cannotParseFile(filePath) {
  return extname(filePath) !== '.js';
}

function _parseAndTraverseFileContent(fileContent, visitorsGenerator) {
  const results = [];

  // Parse and get the code AST
  // All the babel parser plugins
  // were enabled
  const ast = parser.parse(fileContent, babelParserOptions);

  // Loop through the code AST with
  // the defined visitors
  traverse(ast, visitorsGenerator(results));

  return results;
}

export async function parseSingleFile(filePath, visitorsGenerator) {
  // Don't parse any other files than .js ones
  if (_cannotParseFile(filePath)) {
    return [];
  }

  // Read the file
  const content = await read(filePath, { encoding: 'utf8' });

  // return the results found on parse and traverse
  // the file content with the given visitors
  return _parseAndTraverseFileContent(content, visitorsGenerator);
}

export function parseSingleFileSync(filePath, visitorsGenerator) {
  // Don't parse any other files than .js ones
  if (_cannotParseFile(filePath)) {
    return [];
  }

  // Read the file
  const content = readFileSync(filePath, { encoding: 'utf8' });

  // return the results found on parse and traverse
  // the file content with the given visitors
  return _parseAndTraverseFileContent(content, visitorsGenerator);
}

export async function parseEntries(cwd, entries, strategy, results, wasParsed = {}) {
  // Assure that we always have a cwd
  const sanitizedCwd = cwd || process.cwd();

  // Test each entry against canRequire function
  const entriesQueue = entries.map(entry => canRequire(entry));

  while (entriesQueue.length) {
    // Get the first element in the queue as
    // select it as our current entry to parse
    const mainEntry = entriesQueue.shift();

    // Avoid parse the current entry if it is not valid
    // or it was already parsed
    if (typeof mainEntry !== 'string' || wasParsed[mainEntry]) {
      continue;
    }

    // Find new entries and adds them to the end of the queue
    entriesQueue.push(
      ...(await strategy(sanitizedCwd, parseSingleFile, mainEntry, wasParsed, results))
    );

    // Mark the current main entry as already parsed
    wasParsed[mainEntry] = true;
  }

  return results;
}