PHP 7.4.33
Preview: RecrawlWarning.js.flow Size: 1.73 KB
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/metro-file-map/src/watchers/RecrawlWarning.js.flow
/**
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 * @flow strict
 * @format
 * @oncall react_native
 */

/**
 * Originally vendored from
 * https://github.com/amasad/sane/blob/64ff3a870c42e84f744086884bf55a4f9c22d376/src/utils/recrawl-warning-dedupe.js
 */

'use strict';

export default class RecrawlWarning {
  static RECRAWL_WARNINGS: Array<RecrawlWarning> = [];
  static REGEXP: RegExp =
    /Recrawled this watch (\d+) times?, most recently because:\n([^:]+)/;

  root: string;
  count: number;

  constructor(root: string, count: number) {
    this.root = root;
    this.count = count;
  }

  static findByRoot(root: string): ?RecrawlWarning {
    for (let i = 0; i < this.RECRAWL_WARNINGS.length; i++) {
      const warning = this.RECRAWL_WARNINGS[i];
      if (warning.root === root) {
        return warning;
      }
    }

    return undefined;
  }

  static isRecrawlWarningDupe(warningMessage: mixed): boolean {
    if (typeof warningMessage !== 'string') {
      return false;
    }
    const match = warningMessage.match(this.REGEXP);
    if (!match) {
      return false;
    }
    const count = Number(match[1]);
    const root = match[2];

    const warning = this.findByRoot(root);

    if (warning) {
      // only keep the highest count, assume count to either stay the same or
      // increase.
      if (warning.count >= count) {
        return true;
      } else {
        // update the existing warning to the latest (highest) count
        warning.count = count;
        return false;
      }
    } else {
      this.RECRAWL_WARNINGS.push(new RecrawlWarning(root, count));
      return false;
    }
  }
}

Directory Contents

Dirs: 0 × Files: 12
Name Size Perms Modified Actions
2.17 KB lrw-r--r-- 2025-03-28 11:04:32
Edit Download
2.04 KB lrw-r--r-- 2025-03-28 11:04:32
Edit Download
1.11 KB lrw-r--r-- 2025-03-28 11:04:32
Edit Download
2.38 KB lrw-r--r-- 2025-03-28 11:04:32
Edit Download
8.43 KB lrw-r--r-- 2025-03-28 11:04:32
Edit Download
11.65 KB lrw-r--r-- 2025-03-28 11:04:32
Edit Download
3.02 KB lrw-r--r-- 2025-03-28 11:04:32
Edit Download
3.77 KB lrw-r--r-- 2025-03-28 11:04:32
Edit Download
1.16 KB lrw-r--r-- 2025-03-28 11:04:32
Edit Download
1.73 KB lrw-r--r-- 2025-03-28 11:04:32
Edit Download
8.73 KB lrw-r--r-- 2025-03-28 11:04:32
Edit Download
9.21 KB lrw-r--r-- 2025-03-28 11:04:32
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).