mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 10:33:59 -05:00
Collecting raw data points for job time and queue time for a few days. Briefly discussed with Matt, will be reverting in a few days.
175 lines
7.3 KiB
TypeScript
175 lines
7.3 KiB
TypeScript
// Copyright (c) 2016, Compiler Explorer Authors
|
|
// All rights reserved.
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without
|
|
// modification, are permitted provided that the following conditions are met:
|
|
//
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
// this list of conditions and the following disclaimer.
|
|
// * Redistributions in binary form must reproduce the above copyright
|
|
// notice, this list of conditions and the following disclaimer in the
|
|
// documentation and/or other materials provided with the distribution.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
import child_process from 'child_process';
|
|
|
|
import fs from 'fs-extra';
|
|
import _ from 'underscore';
|
|
|
|
import {CacheableValue} from '../types/cache.interfaces';
|
|
|
|
import {BaseCache} from './cache/base';
|
|
import {Cache} from './cache/base.interfaces';
|
|
import {createCacheFromConfig} from './cache/from-config';
|
|
import {CompilationQueue, Job} from './compilation-queue';
|
|
import {FormattingHandler} from './handlers/formatting';
|
|
import {logger} from './logger';
|
|
import {CompilerProps} from './properties';
|
|
import {PropertyGetter} from './properties.interfaces';
|
|
|
|
export class CompilationEnvironment {
|
|
ceProps: PropertyGetter;
|
|
compilationQueue: CompilationQueue;
|
|
compilerProps: CompilerProps;
|
|
okOptions: RegExp;
|
|
badOptions: RegExp;
|
|
cache: Cache;
|
|
executableCache: Cache;
|
|
compilerCache: Cache;
|
|
reportCacheEvery: number;
|
|
multiarch: string | null;
|
|
baseEnv: Record<string, string | undefined>;
|
|
formatHandler: FormattingHandler;
|
|
|
|
constructor(compilerProps, compilationQueue, doCache) {
|
|
this.ceProps = compilerProps.ceProps;
|
|
this.compilationQueue = compilationQueue;
|
|
this.compilerProps = compilerProps.get.bind(compilerProps);
|
|
// So people running local instances don't break suddenly when updating
|
|
const deprecatedAllowed = this.ceProps('optionsWhitelistRe', '.*');
|
|
const deprecatedForbidden = this.ceProps('optionsBlacklistRe', '(?!)');
|
|
|
|
this.okOptions = new RegExp(this.ceProps('optionsAllowedRe', deprecatedAllowed));
|
|
this.badOptions = new RegExp(this.ceProps('optionsForbiddenRe', deprecatedForbidden));
|
|
this.cache = createCacheFromConfig(
|
|
'default',
|
|
doCache === undefined || doCache ? this.ceProps('cacheConfig', '') : '',
|
|
);
|
|
this.executableCache = createCacheFromConfig(
|
|
'executable',
|
|
doCache === undefined || doCache ? this.ceProps('executableCacheConfig', '') : '',
|
|
);
|
|
this.compilerCache = createCacheFromConfig(
|
|
'compiler',
|
|
doCache === undefined || doCache ? this.ceProps('compilerCacheConfig', '') : '',
|
|
);
|
|
this.reportCacheEvery = this.ceProps('cacheReportEvery', 100);
|
|
this.multiarch = null;
|
|
try {
|
|
const multi = child_process.execSync('gcc -print-multiarch').toString().trim();
|
|
if (multi) {
|
|
logger.info(`Multiarch: ${multi}`);
|
|
this.multiarch = multi;
|
|
} else {
|
|
logger.info('No multiarch');
|
|
}
|
|
} catch (err) {
|
|
logger.warn(`Unable to get multiarch: ${err}`);
|
|
}
|
|
this.baseEnv = {};
|
|
const envs = this.ceProps('environmentPassThrough', 'LD_LIBRARY_PATH,PATH,HOME').split(',');
|
|
_.each(envs, environmentVariable => {
|
|
if (!environmentVariable) return;
|
|
this.baseEnv[environmentVariable] = process.env[environmentVariable];
|
|
});
|
|
// I'm not sure that this is the best design; but each compiler having its own means each constructs its own
|
|
// handler, and passing it in from the outside is a pain as each compiler's constructor needs it.
|
|
this.formatHandler = new FormattingHandler(this.ceProps);
|
|
}
|
|
|
|
getEnv(needsMulti: boolean) {
|
|
const env = {...this.baseEnv};
|
|
if (needsMulti && this.multiarch) {
|
|
env.LIBRARY_PATH = '/usr/lib/' + this.multiarch;
|
|
env.C_INCLUDE_PATH = '/usr/include/' + this.multiarch;
|
|
env.CPLUS_INCLUDE_PATH = '/usr/include/' + this.multiarch;
|
|
}
|
|
return env;
|
|
}
|
|
|
|
async cacheGet(object: CacheableValue) {
|
|
const result = await this.cache.get(BaseCache.hash(object));
|
|
if (this.cache.gets % this.reportCacheEvery === 0) {
|
|
this.cache.report();
|
|
}
|
|
if (!result.hit) return null;
|
|
return JSON.parse(result.data);
|
|
}
|
|
|
|
async cachePut(object: CacheableValue, result: object, creator: string | undefined) {
|
|
const key = BaseCache.hash(object);
|
|
return this.cache.put(key, JSON.stringify(result), creator);
|
|
}
|
|
|
|
async compilerCacheGet(object: CacheableValue) {
|
|
const key = BaseCache.hash(object);
|
|
const result = await this.compilerCache.get(key);
|
|
if (this.ceProps('logCompilerCacheAccesses', false)) {
|
|
logger.info(`Cache ${JSON.stringify(object)} hash ${key} ${result.hit ? 'hit' : 'miss'}`);
|
|
}
|
|
if (!result.hit) return null;
|
|
return JSON.parse(result.data);
|
|
}
|
|
|
|
async compilerCachePut(object: CacheableValue, result: object, creator: string | undefined) {
|
|
const key = BaseCache.hash(object);
|
|
return this.compilerCache.put(key, JSON.stringify(result), creator);
|
|
}
|
|
|
|
async executableGet(object: CacheableValue, destinationFolder: string) {
|
|
const key = BaseCache.hash(object) + '_exec';
|
|
const result = await this.executableCache.get(key);
|
|
if (!result.hit) return null;
|
|
const filepath = destinationFolder + '/' + key;
|
|
await fs.writeFile(filepath, result.data);
|
|
return filepath;
|
|
}
|
|
|
|
executablePut(object: CacheableValue, filepath: string) {
|
|
const key = BaseCache.hash(object) + '_exec';
|
|
return this.executableCache.put(key, fs.readFileSync(filepath));
|
|
}
|
|
|
|
enqueue<T>(job: Job<T>, silent?: boolean) {
|
|
const enqueue_time = performance.now();
|
|
return this.compilationQueue.enqueue(async () => {
|
|
const launch_time = performance.now();
|
|
const res = await job();
|
|
const finish_time = performance.now();
|
|
if (!silent) {
|
|
logger.info(
|
|
`(compilation wall clock time: ${Math.round(finish_time - launch_time)} ms, queue time: ${
|
|
launch_time - enqueue_time
|
|
} ms)`,
|
|
);
|
|
}
|
|
return res;
|
|
});
|
|
}
|
|
|
|
findBadOptions(options: string[]) {
|
|
return _.filter(options, option => !this.okOptions.test(option) || this.badOptions.test(option));
|
|
}
|
|
}
|