mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
* Changing the optimizer's use to logWithMetadata * Switching ensureEsVersion to logWithMetadata * Changing pid logging to use logWithMetadata * Changing server/plugins to use logWithMetadata * Changing saved objects onBeforeWrite to logWithMetata * Changing server/status to server.logWithMetadata * Changing ui settings to use logWithMetadata * Removing _.template's usage from within log_format * Fixing initializing plugin log message * Fixing ensureEsVersion tests * Fixing health check tests * Fixing a few more forgotten tests
216 lines
6 KiB
JavaScript
216 lines
6 KiB
JavaScript
/*
|
|
* 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 { configModel } from './dll_config_model';
|
|
import { fromRoot } from '../../utils';
|
|
import { PUBLIC_PATH_PLACEHOLDER } from '../public_path_placeholder';
|
|
import fs from 'fs';
|
|
import mkdirp from 'mkdirp';
|
|
import webpack from 'webpack';
|
|
import { promisify } from 'util';
|
|
import path from 'path';
|
|
|
|
const readFileAsync = promisify(fs.readFile);
|
|
const mkdirpAsync = promisify(mkdirp);
|
|
const existsAsync = promisify(fs.exists);
|
|
const writeFileAsync = promisify(fs.writeFile);
|
|
|
|
export class DllCompiler {
|
|
static getRawDllConfig(uiBundles = {}, babelLoaderCacheDir = '', threadLoaderPoolConfig = {}) {
|
|
return {
|
|
uiBundles,
|
|
babelLoaderCacheDir,
|
|
threadLoaderPoolConfig,
|
|
context: fromRoot('.'),
|
|
entryName: 'vendors',
|
|
dllName: '[name]',
|
|
manifestName: '[name]',
|
|
styleName: '[name]',
|
|
entryExt: '.entry.dll.js',
|
|
dllExt: '.bundle.dll.js',
|
|
manifestExt: '.manifest.dll.json',
|
|
styleExt: '.style.dll.css',
|
|
outputPath: fromRoot('built_assets/dlls'),
|
|
publicPath: PUBLIC_PATH_PLACEHOLDER
|
|
};
|
|
}
|
|
|
|
constructor(uiBundles, threadLoaderPoolConfig, logWithMetadata) {
|
|
this.rawDllConfig = DllCompiler.getRawDllConfig(
|
|
uiBundles,
|
|
uiBundles.getCacheDirectory('babel'),
|
|
threadLoaderPoolConfig
|
|
);
|
|
this.logWithMetadata = logWithMetadata || (() => null);
|
|
}
|
|
|
|
async init() {
|
|
await this.ensureEntryFileExists();
|
|
await this.ensureManifestFileExists();
|
|
await this.ensureOutputPathExists();
|
|
}
|
|
|
|
async upsertEntryFile(content) {
|
|
await this.upsertFile(this.getEntryPath(), content);
|
|
}
|
|
|
|
async upsertFile(filePath, content = '') {
|
|
await this.ensurePathExists(filePath);
|
|
await writeFileAsync(filePath, content, 'utf8');
|
|
}
|
|
|
|
getDllPath() {
|
|
return this.resolvePath(
|
|
`${this.rawDllConfig.entryName}${this.rawDllConfig.dllExt}`
|
|
);
|
|
}
|
|
|
|
getEntryPath() {
|
|
return this.resolvePath(
|
|
`${this.rawDllConfig.entryName}${this.rawDllConfig.entryExt}`
|
|
);
|
|
}
|
|
|
|
getManifestPath() {
|
|
return this.resolvePath(
|
|
`${this.rawDllConfig.entryName}${this.rawDllConfig.manifestExt}`
|
|
);
|
|
}
|
|
|
|
getStylePath() {
|
|
return this.resolvePath(
|
|
`${this.rawDllConfig.entryName}${this.rawDllConfig.styleExt}`
|
|
);
|
|
}
|
|
|
|
async ensureEntryFileExists() {
|
|
await this.ensureFileExists(this.getEntryPath());
|
|
}
|
|
|
|
async ensureManifestFileExists() {
|
|
await this.ensureFileExists(
|
|
this.getManifestPath(),
|
|
JSON.stringify({
|
|
name: this.rawDllConfig.entryName,
|
|
content: {}
|
|
})
|
|
);
|
|
}
|
|
|
|
async ensureStyleFileExists() {
|
|
await this.ensureFileExists(this.getStylePath());
|
|
}
|
|
|
|
async ensureFileExists(filePath, content) {
|
|
const exists = await this.ensurePathExists(filePath);
|
|
|
|
if (!exists) {
|
|
await this.upsertFile(filePath, content);
|
|
}
|
|
}
|
|
|
|
async ensurePathExists(filePath) {
|
|
const exists = await existsAsync(filePath);
|
|
|
|
if (!exists) {
|
|
await mkdirpAsync(path.dirname(filePath));
|
|
}
|
|
|
|
return exists;
|
|
}
|
|
|
|
async ensureOutputPathExists() {
|
|
await this.ensurePathExists(this.rawDllConfig.outputPath);
|
|
}
|
|
|
|
dllExistsSync() {
|
|
return this.existsSync(this.getDllPath());
|
|
}
|
|
|
|
existsSync(filePath) {
|
|
return fs.existsSync(filePath);
|
|
}
|
|
|
|
resolvePath() {
|
|
return path.resolve(this.rawDllConfig.outputPath, ...arguments);
|
|
}
|
|
|
|
async readEntryFile() {
|
|
return await this.readFile(this.getEntryPath());
|
|
}
|
|
|
|
async readFile(filePath, content) {
|
|
await this.ensureFileExists(filePath, content);
|
|
return await readFileAsync(filePath, 'utf8');
|
|
}
|
|
|
|
async run(dllEntries) {
|
|
const dllConfig = this.dllConfigGenerator(this.rawDllConfig);
|
|
await this.upsertEntryFile(dllEntries);
|
|
await this.runWebpack(dllConfig());
|
|
|
|
// Style dll file isn't always created but we are
|
|
// expecting it to exist always as we are referencing
|
|
// it from the bootstrap template
|
|
//
|
|
// NOTE: We should review the way we deal with the css extraction
|
|
// in ours webpack builds. The industry standard is about to
|
|
// only extract css for production but we are extracting it
|
|
// in every single compilation.
|
|
await this.ensureStyleFileExists();
|
|
}
|
|
|
|
dllConfigGenerator(dllConfig) {
|
|
return configModel.bind(this, dllConfig);
|
|
}
|
|
|
|
async runWebpack(config) {
|
|
return new Promise((resolve, reject) => {
|
|
this.logWithMetadata(['info', 'optimize:dynamic_dll_plugin'], 'Client vendors dll compilation started');
|
|
|
|
webpack(config, (err, stats) => {
|
|
// If a critical error occurs or we have
|
|
// errors in the stats compilation,
|
|
// reject the promise and logs the errors
|
|
const webpackErrors = err || (stats.hasErrors() && stats.toString({
|
|
all: false,
|
|
colors: true,
|
|
errors: true,
|
|
errorDetails: true,
|
|
moduleTrace: true
|
|
}));
|
|
|
|
if (webpackErrors) {
|
|
this.logWithMetadata(
|
|
['fatal', 'optimize:dynamic_dll_plugin'],
|
|
`Client vendors dll compilation failed`
|
|
);
|
|
return reject(webpackErrors);
|
|
}
|
|
|
|
// Otherwise let it proceed
|
|
this.logWithMetadata(
|
|
['info', 'optimize:dynamic_dll_plugin'],
|
|
`Client vendors dll compilation finished with success`
|
|
);
|
|
return resolve(stats);
|
|
});
|
|
});
|
|
}
|
|
}
|