- Introduced blog routing using Next.js App Router - Implemented dynamic [slug] pages for blog posts - Added MDX-based content loading via lib/posts - Integrated shared TopBar layout with navigation - Established clear content, lib and component separation
160 lines
6.2 KiB
JavaScript
160 lines
6.2 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "Lockfile", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return Lockfile;
|
|
}
|
|
});
|
|
const _picocolors = require("../lib/picocolors");
|
|
const _log = /*#__PURE__*/ _interop_require_wildcard(require("./output/log"));
|
|
const _swc = require("./swc");
|
|
function _getRequireWildcardCache(nodeInterop) {
|
|
if (typeof WeakMap !== "function") return null;
|
|
var cacheBabelInterop = new WeakMap();
|
|
var cacheNodeInterop = new WeakMap();
|
|
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
})(nodeInterop);
|
|
}
|
|
function _interop_require_wildcard(obj, nodeInterop) {
|
|
if (!nodeInterop && obj && obj.__esModule) {
|
|
return obj;
|
|
}
|
|
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
return {
|
|
default: obj
|
|
};
|
|
}
|
|
var cache = _getRequireWildcardCache(nodeInterop);
|
|
if (cache && cache.has(obj)) {
|
|
return cache.get(obj);
|
|
}
|
|
var newObj = {
|
|
__proto__: null
|
|
};
|
|
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
for(var key in obj){
|
|
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
if (desc && (desc.get || desc.set)) {
|
|
Object.defineProperty(newObj, key, desc);
|
|
} else {
|
|
newObj[key] = obj[key];
|
|
}
|
|
}
|
|
}
|
|
newObj.default = obj;
|
|
if (cache) {
|
|
cache.set(obj, newObj);
|
|
}
|
|
return newObj;
|
|
}
|
|
const RETRY_DELAY_MS = 10;
|
|
const MAX_RETRY_MS = 1000;
|
|
class Lockfile {
|
|
constructor(bindings, nativeLockfile){
|
|
this.bindings = bindings;
|
|
this.nativeLockfile = nativeLockfile;
|
|
}
|
|
/**
|
|
* Attempts to create or acquire an exclusive lockfile on disk. Lockfiles are
|
|
* best-effort, depending on the platform.
|
|
*
|
|
* - If we fail to acquire the lock, we return `undefined`.
|
|
* - If we're on wasm, this always returns a dummy `Lockfile` object.
|
|
*/ static tryAcquire(path, unlockOnExit = true) {
|
|
const bindings = (0, _swc.getBindingsSync)();
|
|
if (bindings.isWasm) {
|
|
_log.info(`Skipping creating a lockfile at ${(0, _picocolors.cyan)(path)} because we're using WASM bindings`);
|
|
return new Lockfile(bindings, undefined);
|
|
} else {
|
|
let nativeLockfile;
|
|
try {
|
|
nativeLockfile = bindings.lockfileTryAcquireSync(path);
|
|
} catch (e) {
|
|
// this happens if there's an IO error (e.g. `ENOENT`), which is
|
|
// different than if we just didn't acquire the lock
|
|
throw Object.defineProperty(new Error('An IO error occurred while attempting to create and acquire the lockfile', {
|
|
cause: e
|
|
}), "__NEXT_ERROR_CODE", {
|
|
value: "E859",
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
}
|
|
if (nativeLockfile != null) {
|
|
const jsLockfile = new Lockfile(bindings, nativeLockfile);
|
|
if (unlockOnExit) {
|
|
const exitListener = ()=>{
|
|
// Best-Effort: If we don't do this, the operating system will
|
|
// release the lock for us. This gives an opportunity to delete the
|
|
// unlocked lockfile (which is not otherwise deleted on POSIX).
|
|
//
|
|
// This must be synchronous because `process.on('exit', ...)` is
|
|
// synchronous.
|
|
jsLockfile.unlockSync();
|
|
};
|
|
process.on('exit', exitListener);
|
|
jsLockfile.listener = exitListener;
|
|
}
|
|
return jsLockfile;
|
|
} else {
|
|
return undefined;
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
* Attempts to create or acquire a lockfile using `Lockfile.tryAcquire`. If
|
|
* that returns `undefined`, indicating that another process or caller has the
|
|
* lockfile, then this will output an error message and exit the process with
|
|
* a non-zero exit code.
|
|
*
|
|
* This will retry a small number of times. This can be useful when running
|
|
* processes in a loop, e.g. if cleanup isn't fully synchronous due to child
|
|
* parent/processes.
|
|
*/ static async acquireWithRetriesOrExit(path, processName, unlockOnExit = true) {
|
|
const startMs = Date.now();
|
|
let lockfile;
|
|
while(Date.now() - startMs < MAX_RETRY_MS){
|
|
lockfile = Lockfile.tryAcquire(path, unlockOnExit);
|
|
if (lockfile !== undefined) break;
|
|
await new Promise((resolve)=>setTimeout(resolve, RETRY_DELAY_MS));
|
|
}
|
|
if (lockfile === undefined) {
|
|
_log.error(`Unable to acquire lock at ${(0, _picocolors.cyan)(path)}, is another instance of ${(0, _picocolors.cyan)(processName)} running?`);
|
|
_log.info(`${(0, _picocolors.bold)('Suggestion:')} If you intended to restart ${(0, _picocolors.cyan)(processName)}, terminate the other process, and then try again.`);
|
|
process.exit(1);
|
|
}
|
|
return lockfile;
|
|
}
|
|
/**
|
|
* Releases the lockfile and closes the file descriptor.
|
|
*
|
|
* If this is not called, the lock will be released by the operating system
|
|
* when the file handle is closed during process exit.
|
|
*/ async unlock() {
|
|
const { nativeLockfile, listener } = this;
|
|
if (nativeLockfile !== undefined) {
|
|
await this.bindings.lockfileUnlock(nativeLockfile);
|
|
}
|
|
if (listener !== undefined) {
|
|
process.off('exit', listener);
|
|
}
|
|
}
|
|
/**
|
|
* A blocking version of `unlock`.
|
|
*/ unlockSync() {
|
|
const { nativeLockfile, listener } = this;
|
|
if (nativeLockfile !== undefined) {
|
|
this.bindings.lockfileUnlockSync(nativeLockfile);
|
|
}
|
|
if (listener !== undefined) {
|
|
process.off('exit', listener);
|
|
}
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=lockfile.js.map
|