Skip to content

Commit

Permalink
Use per-watch Watchman subscription names
Browse files Browse the repository at this point in the history
Summary: Updates the Watchman subscription name from `sane-sub` (a legacy of [`sane`](https://github.com/amasad/sane)), to a unique string per simultanous subscription, incorporating a more identifiable `metro-file-map` prefix, the PID, and the watched directory.

Reviewed By: huntie

Differential Revision: D40023944

fbshipit-source-id: 41ab74c13055455405fe6a670481d5347aa88320
  • Loading branch information
robhogan authored and facebook-github-bot committed Oct 5, 2022
1 parent 4bace2a commit 3b0e78a
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions packages/metro-file-map/src/watchers/WatchmanWatcher.js
Expand Up @@ -24,6 +24,7 @@ import type {Stats} from 'fs';
import * as common from './common';
import RecrawlWarning from './RecrawlWarning';
import assert from 'assert';
import {createHash} from 'crypto';
import EventEmitter from 'events';
import watchman from 'fb-watchman';
import * as fs from 'graceful-fs';
Expand All @@ -36,7 +37,7 @@ const CHANGE_EVENT = common.CHANGE_EVENT;
const DELETE_EVENT = common.DELETE_EVENT;
const ADD_EVENT = common.ADD_EVENT;
const ALL_EVENT = common.ALL_EVENT;
const SUB_NAME = 'sane-sub';
const SUB_PREFIX = 'metro-file-map';

/**
* Watches `dir`.
Expand All @@ -48,6 +49,7 @@ export default class WatchmanWatcher extends EventEmitter {
globs: $ReadOnlyArray<string>;
hasIgnore: boolean;
root: string;
subscriptionName: string;
watchProjectInfo: ?$ReadOnly<{
relativePath: string,
root: string,
Expand All @@ -56,8 +58,17 @@ export default class WatchmanWatcher extends EventEmitter {

constructor(dir: string, opts: WatcherOptions) {
super();

common.assignOptions(this, opts);
this.root = path.resolve(dir);

// Use a unique subscription name per process per watched directory
const watchKey = createHash('md5').update(this.root).digest('hex');
const readablePath = this.root
.replace(/[\/\\]/g, '-') // \ and / to -
.replace(/[^\-\w]/g, ''); // Remove non-word/hyphen
this.subscriptionName = `${SUB_PREFIX}-${process.pid}-${readablePath}-${watchKey}`;

this._init();
}

Expand Down Expand Up @@ -141,7 +152,7 @@ export default class WatchmanWatcher extends EventEmitter {
}

self.client.command(
['subscribe', getWatchRoot(), SUB_NAME, options],
['subscribe', getWatchRoot(), self.subscriptionName, options],
onSubscribe,
);
}
Expand All @@ -165,14 +176,20 @@ export default class WatchmanWatcher extends EventEmitter {
*/
_handleChangeEvent(resp: WatchmanSubscriptionEvent) {
debug(
'Received subscription response: %s (fresh: %s}, files: %s, enter: %s, leave: %s)',
'Received subscription response: %s (fresh: %s, files: %s, enter: %s, leave: %s)',
resp.subscription,
resp.is_fresh_instance,
resp.files?.length,
resp['state-enter'],
resp['state-leave'],
);
assert.equal(resp.subscription, SUB_NAME, 'Invalid subscription event.');

assert.equal(
resp.subscription,
this.subscriptionName,
'Invalid subscription event.',
);

if (resp.is_fresh_instance) {
this.emit('fresh_instance');
}
Expand Down

0 comments on commit 3b0e78a

Please sign in to comment.