All files WatchCommand.js

0% Statements 0/417
0% Branches 0/182
0% Functions 0/37
0% Lines 0/412

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
import cliProgress from 'cli-progress';
import { randomUUID } from 'crypto';
import FormData from 'form-data';
import fs from 'fs';
import mime from 'mime-types';
import path from 'path';
 
import databaseService from '../services/DatabaseService.js';
import logger from '../services/LoggingService.js';
import { createSignalHandler } from '../services/SignalHandler.js';
import watchService from '../services/WatchService.js';
import uploadServiceFactory from '../services/upload/UploadServiceFactory.js';
 
import appConfig from '../config/config.js';
import ErrorHandler from '../errors/ErrorHandler.js';
import { cleanupManager } from '../utils/CleanupManager.js';
import FileOperations from '../utils/FileOperations.js';
import fileSanitizer from '../utils/FileSanitizer.js';
import watchEventHandler from '../utils/WatchEventHandler.js';
import UploadCommand from './UploadCommand.js';
 
/**
 * Watch Command Handler
 * Monitors directories for changes and triggers uploads
 */
export class WatchCommand {
  constructor() {
    this.errorHandler = new ErrorHandler(logger);
    this.uploadCommand = new UploadCommand();
    this.uploadService = null;
    this.databaseService = databaseService;
    this.isShuttingDown = false;
 
    // Progress bars tracking
    this.progressBars = null;
    this.progressMetrics = {
      individual: { start: null, processed: 0, total: 0 },
      batch: { start: null, processed: 0, total: 0 },
      'full-structure': { start: null, processed: 0, total: 0 },
    };
 
    // Upload statistics tracking
    this.uploadStats = {
      totalUploads: 0,
      totalFiles: 0,
      successCount: 0,
      failureCount: 0,
      retryCount: 0,
      lastUploadTime: null,
      uploadDetails: [],
    };
 
    // Signal handling
    this.signalHandler = createSignalHandler(logger, cleanupManager);
    this.sessionId = null;
  }
 
  /**
   * Execute the watch command
   * @param {Object} options - Command options
   * @returns {Promise<void>}
   */
  async execute(options) {
    try {
      // Validate configuration
      this.#validateOptions(options); // TDOO: Looks like this function is empty
 
      // Parse directories to watch
      const directories = this.#parseDirectories(options.directories);
 
      if (directories.length === 0) {
        throw new Error(
          'No directories specified. Use --directories or WATCH_DIRECTORIES env var',
        );
      }
 
      // Validate watch configuration
      try {
        appConfig.validateWatchConfig(directories);
      } catch (error) {
        logger.error(`Configuration error: ${error.message}`);
        throw error;
      }
 
      // Parse watch options
      const watchOptions = this.#parseWatchOptions(options);
 
      // Clear log if requested
      if (options.clearLog) {
        logger.clearLogFile();
        logger.info('Log file cleared');
      }
 
      // Initialize upload service
      // In cross-tenant mode, use the sourceApi for initial connection check
      // In single API mode, use the specified API target or default
      try {
        if (appConfig.isCrossTenantMode()) {
          // Cross-tenant mode: use sourceApi for the upload service
          this.uploadService =
            await uploadServiceFactory.getApiServiceForTarget(
              appConfig.api.sourceTarget,
            );
          logger.info(
            `Upload service initialized for cross-tenant mode (source: ${appConfig.api.sourceTarget})`,
          );
        } else if (
          appConfig.api.activeTarget &&
          appConfig.api.activeTarget !== 'default'
        ) {
          // Single API mode with specific target
          this.uploadService =
            await uploadServiceFactory.getApiServiceForTarget(
              appConfig.api.activeTarget,
            );
          logger.info(
            `Upload service initialized for API target: ${appConfig.api.activeTarget}`,
          );
        } else {
          // Default mode
          this.uploadService = await uploadServiceFactory.getUploadService(
            options.forceSupabase,
          );
          logger.info(
            `Upload service initialized: ${this.uploadService.getServiceName()}`,
          );
        }
      } catch (error) {
        logger.error(`Failed to initialize upload service: ${error.message}`);
        throw error;
      }
 
      // Reset upload statistics
      this.uploadStats = {
        totalUploads: 0,
        totalFiles: 0,
        successCount: 0,
        failureCount: 0,
        retryCount: 0,
        lastUploadTime: null,
        uploadDetails: [],
      };
 
      // Initialize session tracking
      const sessionId = randomUUID();
      logger.initializeSession(sessionId);
 
      // Initialize progress bars
      this.#initializeProgressBars();
 
      // Log startup
      logger.info('═══════════════════════════════════════════════════════');
      logger.info('🟢 WATCH MODE STARTED');
      logger.info('═══════════════════════════════════════════════════════');
      logger.info(`📁 Watching ${directories.length} director(y/ies):`);
      directories.forEach((dirConfig) => {
        const dirPath = dirConfig.path || dirConfig;
        const folderStructure = dirConfig.folderStructure || 'default';
        logger.info(
          `   → ${path.resolve(dirPath)} [structure: ${folderStructure}]`,
        );
      });
      logger.info(`🎯 Strategy: ${watchOptions.strategy}`);
      logger.info(`⏱️ Debounce: ${watchOptions.debounceMs}ms`);
      logger.info(`📦 Batch size: ${watchOptions.batchSize}`);
      logger.info('═══════════════════════════════════════════════════════\n');
 
      // Initialize watchers with directory configurations
      for (const dirConfig of directories) {
        const dirPath = dirConfig.path || dirConfig;
        await watchService.addWatcher(
          dirPath,
          {
            usePolling: watchOptions.usePolling,
            interval: watchOptions.interval,
            stabilityThreshold: watchOptions.stabilityThreshold,
            ignored: this.#parseIgnorePatterns(options.ignore),
          },
          dirConfig,
        );
      }
 
      // Enable auto-processing if configured
      if (options.autoProcessing !== false) {
        watchService.enableAutoProcessing({
          batchSize: watchOptions.batchSize,
        });
        logger.info('🔄 Auto-processing pipeline enabled');
      }
 
      // Set event handler with directory configurations
      watchService.setEventHandler(async (eventType, filePath) => {
        await this.#handleFileEvent(
          eventType,
          filePath,
          options,
          watchOptions,
          directories,
        );
      });
 
      // Start watching
      await watchService.start();
 
      // Wait for all watchers to complete initial scan before processing
      await watchService.waitForWatchersReady();
 
      // Setup signal handlers for graceful shutdown
      this.#setupSignalHandlers();
 
      // Keep process alive
      logger.info('💡 Press Ctrl+C to stop watching\n');
      await this.#keepProcessAlive();
    } catch (error) {
      this.errorHandler.handleFatalError(error, { command: 'watch' });
    }
  }
 
  /**
   * Handle file events
   * @private
   * @param {string} eventType - Type of event
   * @param {string} filePath - Path to file
   * @param {Object} options - Command options
   * @param {Object} watchOptions - Parsed watch options
   * @param {Array<Object>} directories - Array of directory configurations
   * @returns {Promise<void>}
   */
  async #handleFileEvent(
    eventType,
    filePath,
    options,
    watchOptions,
    directories = [],
  ) {
    try {
      // Skip if dry-run
      if (options.dryRun) {
        logger.info(`[DRY RUN] Would upload: ${filePath}`);
        return;
      }
 
      // Skip remove events
      if (eventType === 'remove' || eventType === 'unlink') {
        logger.debug(`Skipping file removal event: ${filePath}`);
        return;
      }
 
      // Skip if auto-processing is enabled (it handles file processing)
      if (options.autoProcessing !== false) {
        logger.debug(
          `[AutoProcessing] File event skipped (auto-processing is handling it): ${filePath}`,
        );
        return;
      }
 
      // Find which directory this file belongs to
      const watchDir = this.#findWatchDirectory(filePath, directories);
      const folderStructure = watchDir?.folderStructure || 'default';
 
      // Execute upload based on strategy
      switch (watchOptions.strategy) {
        case 'individual':
          try {
            await this.#uploadIndividual(filePath, options);
          } catch (strategyError) {
            logger.error(
              `Error in individual upload: ${strategyError.message}`,
            );
            throw strategyError;
          }
          break;
        case 'batch':
          try {
            await this.#uploadBatch(
              filePath,
              options,
              watchOptions,
              directories,
            );
          } catch (strategyError) {
            logger.error(`Error in batch upload: ${strategyError.message}`);
            throw strategyError;
          }
          break;
        case 'full-structure':
          try {
            await this.#uploadFullStructure(
              filePath,
              options,
              watchOptions,
              directories,
            );
          } catch (strategyError) {
            logger.error(
              `Error in full-structure upload: ${strategyError.message}`,
            );
            throw strategyError;
          }
          break;
        default:
          logger.warn(`Unknown strategy: ${watchOptions.strategy}`);
      }
 
      // Increment upload counter
      const stats = watchService.getStats();
      logger.info(
        `📊 Stats: +${stats.filesAdded} files, +${stats.filesModified} modified`,
      );
    } catch (error) {
      logger.error(`Error handling file event: ${error.message}`);
      logger.error(`Stack: ${error.stack}`);
      // Log the full error for debugging
      if (error.code) {
        logger.debug(`Error code: ${error.code}`);
      }
    }
  }
 
  /**
   * Find which watch directory a file belongs to
   * @private
   * @param {string} filePath - Path to file
   * @param {Array<Object>} directories - Array of directory configurations
   * @returns {Object|null} Directory configuration or null
   */
  #findWatchDirectory(filePath, directories) {
    const normalizedFilePath = path.resolve(filePath);
 
    for (const dirConfig of directories) {
      const dirPath = dirConfig.path || dirConfig;
      const normalizedDirPath = path.resolve(dirPath);
 
      if (normalizedFilePath.startsWith(normalizedDirPath)) {
        return dirConfig;
      }
    }
 
    return null;
  }
 
  /**
   * Retry upload with exponential backoff
   * @private
   * @param {Function} uploadFn - Function that performs the upload
   * @param {number} maxRetries - Maximum number of retries
   * @param {number} initialBackoffMs - Initial backoff in milliseconds
   * @returns {Promise<any>} Upload result
   * @throws {Error} If all retries fail
   */
  async #retryUpload(uploadFn, maxRetries = 3, initialBackoffMs = 1000) {
    let lastError;
 
    for (let attempt = 1; attempt <= maxRetries; attempt++) {
      try {
        return await uploadFn();
      } catch (error) {
        lastError = error;
 
        if (attempt === maxRetries) {
          throw error;
        }
 
        const backoffMs = initialBackoffMs * Math.pow(2, attempt - 1);
        logger.warn(
          `Upload failed (attempt ${attempt}/${maxRetries}), retrying in ${backoffMs}ms: ${error.message}`,
        );
 
        this.uploadStats.retryCount++;
 
        // Wait before retrying
        await new Promise((resolve) => setTimeout(resolve, backoffMs));
      }
    }
 
    throw lastError;
  }
 
  /**
   * Prepare a file for upload with metadata
   * @private
   * @param {string} filePath - Absolute path to file
   * @param {Object} options - Command options
   * @returns {Object} File object for upload
   */
  #prepareFileForUpload(filePath, options) {
    const stats = FileOperations.getFileStats(filePath);
 
    return {
      path: filePath,
      name: path.basename(filePath),
      relativePath: path.basename(filePath),
      contentType: mime.lookup(filePath) || 'application/octet-stream',
      size: stats?.size || 0,
      metadata: {
        source: 'watch-mode',
        timestamp: new Date().toISOString(),
        watchSource: path.dirname(filePath),
      },
    };
  }
 
  /**
   * Upload individual file
   * @private
   * @param {string} filePath - File path to upload
   * @param {Object} options - Command options
   * @returns {Promise<void>}
   */
  async #uploadIndividual(filePath, options) {
    const startTime = Date.now();
    try {
      logger.info(`📤 [INDIVIDUAL] Uploading: ${filePath}`);
 
      // Get file object from event handler
      const files = await watchEventHandler.getFilesForUpload('individual', {
        sourceDir: path.dirname(filePath),
      });
 
      if (files.length === 0) {
        logger.warn(`No valid files to upload for: ${filePath}`);
        return;
      }
 
      const file = files[0];
      logger.info(`   File: ${file.name} (${this.#formatFileSize(file.size)})`);
 
      // Validate file exists and is accessible
      if (!FileOperations.fileExists(file.path)) {
        throw new Error(`File not accessible: ${file.path}`);
      }
 
      // ✅ CRITICAL: Validate file has been evaluated by watcher
      const validatedFiles = this.#validateFilesAreWatched([file]);
      if (validatedFiles.length === 0) {
        logger.warn(
          `⚠️  File was not properly evaluated by watcher: ${file.name}`,
        );
        this.uploadStats.failureCount++;
        this.uploadStats.uploadDetails.push({
          timestamp: new Date().toISOString(),
          fileName: file.name,
          strategy: 'individual',
          status: 'rejected',
          reason: 'Not evaluated by watcher',
          duration: Date.now() - startTime,
        });
        return;
      }
 
      // Prepare file for upload with metadata
      const fileForUpload = this.#prepareFileForUpload(file.path, options);
 
      // Create upload with retries
      const result = await this.#retryUpload(
        async () => {
          const uploadResult = await this.uploadService.upload(
            [fileForUpload],
            {
              strategy: 'individual',
              sourceType: 'watch-mode',
            },
          );
          return uploadResult;
        },
        3,
        1000,
      );
 
      // Update statistics
      this.uploadStats.totalUploads++;
      this.uploadStats.totalFiles++;
      this.uploadStats.successCount++;
      this.uploadStats.lastUploadTime = new Date();
 
      // Record upload details
      this.uploadStats.uploadDetails.push({
        timestamp: new Date().toISOString(),
        fileName: file.name,
        size: file.size,
        strategy: 'individual',
        status: 'success',
        duration: Date.now() - startTime,
      });
 
      logger.info(`✅ Upload successful: ${file.name}`);
      watchService.stats.uploadsTriggered++;
    } catch (error) {
      this.uploadStats.failureCount++;
      logger.error(`❌ Error uploading individual file: ${error.message}`);
 
      // Record failed upload
      this.uploadStats.uploadDetails.push({
        timestamp: new Date().toISOString(),
        fileName: path.basename(filePath),
        strategy: 'individual',
        status: 'failed',
        error: error.message,
        duration: Date.now() - startTime,
      });
    }
  }
 
  /**
   * Upload batch of files
   * @private
   * @param {string} filePath - Triggering file path
   * @param {Object} options - Command options
   * @param {Object} watchOptions - Watch options
   * @returns {Promise<void>}
   */
  /**
   * Upload batch of files
   * @private
   * @param {string} filePath - Triggering file path
   * @param {Object} options - Command options
   * @param {Object} watchOptions - Watch options
   * @param {Array<Object>} directories - Array of directory configurations
   * @returns {Promise<void>}
   */
  async #uploadBatch(filePath, options, watchOptions, directories = []) {
    const startTime = Date.now();
    try {
      logger.info(`📤 [BATCH] Upload triggered by: ${filePath}`);
 
      // Find the watch directory for this file
      const watchDirConfig = this.#findWatchDirectory(filePath, directories);
      const folderStructure = watchDirConfig?.folderStructure || 'default';
 
      // Get batch of files from event handler
      const files = await watchEventHandler.getFilesForUpload('batch', {
        batchSize: watchOptions.batchSize,
        sourceDir: path.dirname(filePath),
      });
 
      if (files.length === 0) {
        logger.warn('No valid files found for batch upload');
        return;
      }
 
      // Log batch details
      logger.info(`   Batch size: ${files.length} files`);
      logger.info(`   Folder structure: ${folderStructure}`);
      let totalSize = 0;
      files.forEach((file) => {
        totalSize += file.size;
        logger.debug(`   - ${file.name} (${this.#formatFileSize(file.size)})`);
      });
 
      logger.info(`   Total size: ${this.#formatFileSize(totalSize)}`);
 
      // Validate all files exist
      const invalidFiles = files.filter(
        (f) => !FileOperations.fileExists(f.path),
      );
      if (invalidFiles.length > 0) {
        throw new Error(`${invalidFiles.length} file(s) not accessible`);
      }
 
      // ✅ CRITICAL: Validate files have been evaluated by watcher
      const validatedFiles = this.#validateFilesAreWatched(files);
      if (validatedFiles.length === 0) {
        logger.warn(
          `⚠️  None of the ${files.length} files were properly evaluated by watcher`,
        );
        this.uploadStats.failureCount += files.length;
        this.uploadStats.uploadDetails.push({
          timestamp: new Date().toISOString(),
          fileCount: files.length,
          strategy: 'batch',
          status: 'rejected',
          reason: 'No files evaluated by watcher',
          duration: Date.now() - startTime,
        });
        return;
      }
 
      if (validatedFiles.length < files.length) {
        logger.warn(
          `⚠️  Only ${validatedFiles.length}/${files.length} files were properly evaluated by watcher. Uploading only validated files.`,
        );
      }
 
      // Prepare files for upload
      const filesForUpload = validatedFiles.map((f) =>
        this.#prepareFileForUpload(f.path, options),
      );
 
      // Create upload with retries
      const result = await this.#retryUpload(
        async () => {
          const uploadResult = await this.uploadService.upload(filesForUpload, {
            strategy: 'batch',
            batchSize: watchOptions.batchSize,
            sourceType: 'watch-mode',
          });
          return uploadResult;
        },
        3,
        1000,
      );
 
      // Update statistics
      this.uploadStats.totalUploads++;
      this.uploadStats.totalFiles += files.length;
      this.uploadStats.successCount += files.length;
      this.uploadStats.lastUploadTime = new Date();
 
      // Record upload details
      this.uploadStats.uploadDetails.push({
        timestamp: new Date().toISOString(),
        fileCount: files.length,
        strategy: 'batch',
        folderStructure,
        status: 'success',
        duration: Date.now() - startTime,
      });
 
      logger.info(`✅ Batch upload successful: ${files.length} files`);
      watchService.stats.uploadsTriggered++;
 
      // Clear processed events
      watchEventHandler.clearProcessed();
    } catch (error) {
      this.uploadStats.failureCount += files?.length || 1;
      logger.error(`❌ Error uploading batch: ${error.message}`);
 
      // Record failed upload
      this.uploadStats.uploadDetails.push({
        timestamp: new Date().toISOString(),
        strategy: 'batch',
        status: 'failed',
        error: error.message,
        duration: Date.now() - startTime,
      });
    }
  }
 
  /**
   * Upload full directory structure
   * @private
   * @param {string} filePath - Triggering file path
   * @param {Object} options - Command options
   * @param {Object} watchOptions - Watch options
   * @param {Array<Object>} directories - Array of directory configurations
   * @returns {Promise<void>}
   */
  async #uploadFullStructure(
    filePath,
    options,
    watchOptions,
    directories = [],
  ) {
    const startTime = Date.now();
    try {
      logger.info(`📤 [FULL-STRUCTURE] Upload triggered by: ${filePath}`);
 
      // Find the watch directory for this file
      const watchDirConfig = this.#findWatchDirectory(filePath, directories);
      const folderStructure = watchDirConfig?.folderStructure || 'default';
 
      // Get full structure from event handler
      const files = await watchEventHandler.getFilesForUpload(
        'full-structure',
        {
          sourceDir: path.dirname(filePath),
        },
      );
 
      if (files.length === 0) {
        logger.warn('No valid files found for full structure upload');
        return;
      }
 
      // Log structure details
      logger.info(`   Structure size: ${files.length} files`);
      logger.info(`   Folder structure: ${folderStructure}`);
      let totalSize = 0;
      const directoriesInStructure = new Set();
 
      files.forEach((file) => {
        totalSize += file.size;
        const dir = path.dirname(file.path);
        directoriesInStructure.add(dir);
      });
 
      logger.info(`   Directories: ${directoriesInStructure.size}`);
      logger.info(`   Total size: ${this.#formatFileSize(totalSize)}`);
 
      // Validate all files exist
      const invalidFiles = files.filter(
        (f) => !FileOperations.fileExists(f.path),
      );
      if (invalidFiles.length > 0) {
        throw new Error(
          `${invalidFiles.length} file(s) not accessible in structure`,
        );
      }
 
      // ✅ CRITICAL: Validate files have been evaluated by watcher
      const validatedFiles = this.#validateFilesAreWatched(files);
      if (validatedFiles.length === 0) {
        logger.warn(
          `⚠️  None of the ${files.length} files were properly evaluated by watcher`,
        );
        this.uploadStats.failureCount += files.length;
        this.uploadStats.uploadDetails.push({
          timestamp: new Date().toISOString(),
          fileCount: files.length,
          strategy: 'full-structure',
          status: 'rejected',
          reason: 'No files evaluated by watcher',
          duration: Date.now() - startTime,
        });
        return;
      }
 
      if (validatedFiles.length < files.length) {
        logger.warn(
          `⚠️  Only ${validatedFiles.length}/${files.length} files were properly evaluated by watcher. Uploading only validated files.`,
        );
      }
 
      // Prepare files for upload
      const filesForUpload = validatedFiles.map((f) =>
        this.#prepareFileForUpload(f.path, options),
      );
 
      // Create upload with retries
      const result = await this.#retryUpload(
        async () => {
          const uploadResult = await this.uploadService.upload(filesForUpload, {
            strategy: 'full-structure',
            sourceType: 'watch-mode',
            metadata: {
              totalFiles: files.length,
              totalDirectories: directoriesInStructure.size,
              totalSize: totalSize,
              folderStructure: folderStructure,
            },
          });
          return uploadResult;
        },
        3,
        1000,
      );
 
      // Update statistics
      this.uploadStats.totalUploads++;
      this.uploadStats.totalFiles += files.length;
      this.uploadStats.successCount += files.length;
      this.uploadStats.lastUploadTime = new Date();
 
      // Record upload details
      this.uploadStats.uploadDetails.push({
        timestamp: new Date().toISOString(),
        fileCount: files.length,
        dirCount: directories.size,
        strategy: 'full-structure',
        status: 'success',
        duration: Date.now() - startTime,
      });
 
      logger.info(
        `✅ Full structure upload successful: ${files.length} files in ${directories.size} directories`,
      );
      watchService.stats.uploadsTriggered++;
 
      // Clear processed events
      watchEventHandler.clearProcessed();
    } catch (error) {
      this.uploadStats.failureCount += files?.length || 1;
      logger.error(`❌ Error uploading full structure: ${error.message}`);
 
      // Record failed upload
      this.uploadStats.uploadDetails.push({
        timestamp: new Date().toISOString(),
        strategy: 'full-structure',
        status: 'failed',
        error: error.message,
        duration: Date.now() - startTime,
      });
    }
  }
 
  /**
   * Validate that files have been properly evaluated by the watcher
   * CRITICAL: Ensures NO files are uploaded without watcher evaluation
   * @private
   * @param {Array<Object>} files - Files to validate
   * @returns {Array<Object>} Only files that have been evaluated by watcher
   */
  #validateFilesAreWatched(files) {
    if (!files || files.length === 0) {
      return [];
    }
 
    // Get watched directories from WatchService
    const watchedDirs = watchService.getWatchedDirs();
 
    if (!watchedDirs || watchedDirs.length === 0) {
      logger.warn(
        '⚠️  No directories are being watched. Cannot validate files.',
      );
      // ALLOW all files if no watch dirs configured (fail-safe)
      return files;
    }
 
    // Normalize all watched directories for comparison
    const normalizedWatchedDirs = watchedDirs.map((dir) => path.resolve(dir));
 
    // Filter files that are within watched directories
    const validatedFiles = files.filter((file) => {
      const normalizedFilePath = path.resolve(file.path);
 
      const isWatched = normalizedWatchedDirs.some((watchDir) => {
        return (
          normalizedFilePath.startsWith(watchDir + path.sep) ||
          normalizedFilePath.startsWith(watchDir)
        );
      });
 
      if (!isWatched) {
        logger.debug(`📍 File not in watched directories: ${file.path}`);
      }
 
      return isWatched;
    });
 
    // Log validation results
    if (validatedFiles.length < files.length) {
      logger.warn(
        `⚠️  Only ${validatedFiles.length}/${files.length} files passed watcher validation`,
      );
    }
 
    return validatedFiles;
  }
 
  /**
   * Validate command options
   * @private
   * @param {Object} options - Options to validate
   * @throws {Error} If validation fails
   */
  #validateOptions(options) {
    // Options are validated during parsing
  }
 
  /**
   * Format file size for display
   * @private
   * @param {number} bytes - Number of bytes
   * @returns {string} Formatted file size
   */
  #formatFileSize(bytes) {
    if (bytes === 0) return '0 B';
    const k = 1024;
    const sizes = ['B', 'KB', 'MB', 'GB'];
    const i = Math.floor(Math.log(bytes) / Math.log(k));
    return Math.round((bytes / Math.pow(k, i)) * 100) / 100 + ' ' + sizes[i];
  }
 
  /**
   * Parse directories from string or array
   * @private
   * @param {string|Array} directoriesStr - Directories string or array
   * @returns {Array<Object>} Parsed directory configurations
   */
  #parseDirectories(directoriesStr) {
    try {
      const config = appConfig.getWatchConfig();
      let directoriesArray = [];
 
      // Priority 1: CLI option
      if (directoriesStr) {
        directoriesArray = directoriesStr
          .split(',')
          .map((dir) => dir.trim())
          .filter((dir) => dir.length > 0)
          .map((dir) => ({
            path: dir,
            folderStructure: 'default',
          }));
 
        return directoriesArray;
      }
 
      // Priority 2: Environment config with JSON format
      if (
        config.directoryConfigs &&
        Object.keys(config.directoryConfigs).length > 0
      ) {
        directoriesArray = Object.entries(config.directoryConfigs).map(
          ([dirPath, folderStructure]) => ({
            path: dirPath,
            folderStructure: folderStructure || 'default',
          }),
        );
 
        return directoriesArray;
      }
 
      // Priority 3: Environment config with legacy format
      if (config.directories && config.directories.length > 0) {
        directoriesArray = config.directories.map((dir) => ({
          path: dir,
          folderStructure: 'default',
        }));
 
        return directoriesArray;
      }
 
      return [];
    } catch (error) {
      logger.debug(`Error parsing directories: ${error.message}`);
      return [];
    }
  }
 
  /**
   * Parse watch-specific options
   * @private
   * @param {Object} options - Command options
   * @returns {Object} Parsed watch options
   */
  #parseWatchOptions(options) {
    const config = appConfig.getWatchConfig();
 
    return {
      strategy: options.strategy || config.strategy || 'batch',
      debounceMs: parseInt(options.debounce) || config.debounceMs || 1000,
      batchSize: parseInt(options.batchSize) || config.batchSize || 10,
      usePolling:
        options.poll !== undefined ? true : config.usePolling || false,
      interval: parseInt(options.poll) || config.pollInterval || 100,
      stabilityThreshold: config.stabilityThreshold || 300,
      autoDetect: options.autoDetect || config.autoDetect || false,
      autoOrganize: options.autoOrganize || config.autoOrganize || false,
    };
  }
 
  /**
   * Parse ignore patterns from CLI
   * @private
   * @param {string|undefined} ignoreStr - Comma-separated patterns
   * @returns {Array<string>} Ignore patterns
   */
  #parseIgnorePatterns(ignoreStr) {
    const defaultPatterns = [
      '/(^|[\\/\\\\])\\.|node_modules|\\.git/', // Hidden files, node_modules, .git
    ];
 
    if (!ignoreStr && !process.env.WATCH_IGNORE_PATTERNS) {
      return defaultPatterns;
    }
 
    const patterns = (ignoreStr || process.env.WATCH_IGNORE_PATTERNS || '')
      .split(',')
      .map((p) => p.trim())
      .filter((p) => p.length > 0);
 
    return [...defaultPatterns, ...patterns];
  }
 
  /**
   * Setup signal handlers for graceful shutdown
   * @private
   */
  #setupSignalHandlers() {
    // Register database cleanup
    cleanupManager.registerResource('Database', databaseService, async () => {
      return await databaseService.cleanup();
    });
 
    // Register watch service cleanup
    cleanupManager.registerResource('WatchService', watchService, async () => {
      return await watchService.stop('signal-received');
    });
 
    // Register logging flush
    cleanupManager.registerResource('Logging', logger, () => {
      logger.flush();
    });
 
    // Register progress bars cleanup
    cleanupManager.registerResource('ProgressBars', this.progressBars, () => {
      this.#stopProgressBars();
    });
 
    // Create signal handlers
    const signalHandlers = {
      SIGINT: async () => {
        await this.#onShutdown('SIGINT');
      },
      SIGTERM: async () => {
        await this.#onShutdown('SIGTERM');
      },
      SIGHUP: async () => {
        await this.#onShutdown('SIGHUP');
      },
      SIGQUIT: async () => {
        await this.#onShutdown('SIGQUIT');
      },
    };
 
    // Register with signal handler
    this.signalHandler.registerSignalHandlers(signalHandlers);
 
    logger.debug('WatchCommand: Signal handlers configured');
  }
 
  /**
   * Handle graceful shutdown triggered by signal
   * @private
   * @param {string} signal - Signal name that triggered shutdown
   * @returns {Promise<void>}
   */
  async #onShutdown(signal) {
    try {
      // Print final statistics
      const stats = watchService.getStats();
      logger.info('\n═══════════════════════════════════════════════════════');
      logger.info('📊 WATCH SESSION SUMMARY');
      logger.info('═══════════════════════════════════════════════════════');
      logger.info(`📄 Files added: ${stats.filesAdded}`);
      logger.info(`✏️ Files modified: ${stats.filesModified}`);
      logger.info(`🗑️ Files removed: ${stats.filesRemoved}`);
      logger.info(`📤 Uploads triggered: ${stats.uploadsTriggered}`);
      logger.info(`⚠️ Errors encountered: ${stats.errorsEncountered}`);
      logger.info('═══════════════════════════════════════════════════════\n');
 
      // Generate and display final session report
      await this.#generateAndDisplaySessionReport(this.sessionId);
    } catch (error) {
      logger.error(`Error during shutdown handling: ${error.message}`);
    }
  }
 
  /**
   * Keep process alive indefinitely
   * @private
   * @returns {Promise<void>}
   */
  #keepProcessAlive() {
    return new Promise(() => {
      // Never resolves - process will run until signal is received
    });
  }
 
  /**
   * Initialize progress bars for upload tracking
   * @private
   * @returns {void}
   */
  #initializeProgressBars() {
    this.progressBars = new cliProgress.MultiBar({
      clearOnComplete: false,
      hideCursor: true,
      fps: 5,
      stopOnComplete: false,
      format:
        '{name} | {bar} | {percentage}% | {value}/{total} | ⏱️  ETA: {eta_formatted} | 🚀 {speed}',
      barCompleteChar: '█',
      barIncompleteChar: '░',
      hideCursor: true,
      formatBar: (processed, total, width) => {
        const ratio = processed / total;
        const filled = Math.round(ratio * width);
        const empty = width - filled;
        return '█'.repeat(filled) + '░'.repeat(empty);
      },
    });
 
    // Create bars for each strategy
    this.progressBars.individual = this.progressBars.create(0, 0, {
      name: '📁 Individual',
      speed: '0 files/min',
    });
 
    this.progressBars.batch = this.progressBars.create(0, 0, {
      name: '📦 Batch     ',
      speed: '0 files/min',
    });
 
    this.progressBars['full-structure'] = this.progressBars.create(0, 0, {
      name: '🗂️  Full-Str ',
      speed: '0 files/min',
    });
 
    // Initialize metrics
    this.progressMetrics = {
      individual: { start: null, processed: 0, total: 0 },
      batch: { start: null, processed: 0, total: 0 },
      'full-structure': { start: null, processed: 0, total: 0 },
    };
  }
 
  /**
   * Update progress bar for a specific strategy
   * @private
   * @param {string} strategy - Upload strategy name
   * @param {number} processed - Number of processed files
   * @param {number} total - Total number of files
   * @returns {void}
   */
  #updateProgressBar(strategy, processed, total) {
    if (!this.progressBars || !this.progressBars[strategy]) {
      return;
    }
 
    const metrics = this.progressMetrics[strategy];
 
    // Initialize start time if not already done
    if (metrics.start === null) {
      metrics.start = Date.now();
    }
 
    metrics.processed = processed;
    metrics.total = total;
 
    // Calculate speed (files per minute)
    const elapsedMs = Date.now() - metrics.start;
    const elapsedMin = elapsedMs / 60000;
    const speed = elapsedMin > 0 ? (processed / elapsedMin).toFixed(1) : '0';
 
    // Update bar
    this.progressBars[strategy].setTotal(total);
    this.progressBars[strategy].update(processed, {
      speed: `${speed} files/min`,
    });
  }
 
  /**
   * Complete a progress bar for a strategy
   * @private
   * @param {string} strategy - Upload strategy name
   * @param {Object} results - Upload results (successCount, failureCount, duration)
   * @returns {void}
   */
  #completeProgressBar(strategy, results) {
    if (!this.progressBars || !this.progressBars[strategy]) {
      return;
    }
 
    const metrics = this.progressMetrics[strategy];
    const bar = this.progressBars[strategy];
    const total = results.fileCount || metrics.total;
    const duration = results.duration || 0;
 
    // Calculate final speed
    const durationSec = duration / 1000;
    const speed =
      durationSec > 0 ? (total / (durationSec / 60)).toFixed(1) : '0';
 
    // Set to complete
    bar.setTotal(total);
    bar.update(total, {
      speed: `${speed} files/min`,
    });
  }
 
  /**
   * Calculate ETA (Estimated Time to Arrival)
   * @private
   * @param {number} startTime - Start timestamp
   * @param {number} processed - Number of processed items
   * @param {number} total - Total number of items
   * @returns {string} Formatted ETA string
   */
  #calculateETA(startTime, processed, total) {
    if (processed === 0 || total === 0) {
      return '--:--:--';
    }
 
    const elapsedMs = Date.now() - startTime;
    const avgTimePerItem = elapsedMs / processed;
    const remainingItems = total - processed;
    const remainingMs = remainingItems * avgTimePerItem;
 
    const hours = Math.floor(remainingMs / 3600000);
    const minutes = Math.floor((remainingMs % 3600000) / 60000);
    const seconds = Math.floor((remainingMs % 60000) / 1000);
 
    if (hours > 0) {
      return `${hours}h ${minutes}m`;
    } else if (minutes > 0) {
      return `${minutes}m ${seconds}s`;
    } else {
      return `${seconds}s`;
    }
  }
 
  /**
   * Stop and cleanup progress bars
   * @private
   * @returns {void}
   */
  #stopProgressBars() {
    if (this.progressBars) {
      try {
        this.progressBars.stop();
      } catch (error) {
        logger.debug(`Error stopping progress bars: ${error.message}`);
      }
    }
  }
 
  /**
   * Generate and display final session report
   * @private
   * @param {string} sessionId - Session ID to generate report for
   * @returns {Promise<void>}
   */
  async #generateAndDisplaySessionReport(sessionId) {
    try {
      // Get final statistics from DatabaseService
      const stats = await databaseService.getSessionStatistics(sessionId);
 
      // Generate formatted report
      const report = logger.formatSessionReport();
 
      // Display report in console
      console.log(report);
 
      // Save report to file
      await this.#saveReportToFile(sessionId, report);
 
      logger.info(
        `Session report generated successfully for session: ${sessionId}`,
      );
    } catch (error) {
      logger.error(`Error generating session report: ${error.message}`);
    }
  }
 
  /**
   * Save session report to file
   * @private
   * @param {string} sessionId - Session ID
   * @param {string} report - Report content to save
   * @returns {Promise<void>}
   */
  async #saveReportToFile(sessionId, report) {
    try {
      const logDir = path.join(process.cwd(), 'logs', 'sessions');
      const timestamp = Date.now();
      const fileName = `session-${sessionId}-${timestamp}.log`;
      const filePath = path.join(logDir, fileName);
 
      // Create directory if it doesn't exist
      if (!fs.existsSync(logDir)) {
        fs.mkdirSync(logDir, { recursive: true });
      }
 
      // Write report to file
      fs.writeFileSync(filePath, report, 'utf-8');
 
      logger.info(`Session report saved to: ${filePath}`);
    } catch (error) {
      logger.error(`Error saving report to file: ${error.message}`);
    }
  }
 
  /**
   * Generate intelligent recommendations based on session statistics
   * @private
   * @param {Object} stats - Session statistics object
   * @returns {string} Formatted recommendations
   */
  #generateRecommendations(stats) {
    const recommendations = [];
 
    // Analyze success rate
    const successRate =
      (stats.totalSuccessCount /
        (stats.totalSuccessCount + stats.totalFailureCount)) *
      100;
    if (successRate >= 95) {
      recommendations.push(
        '✅ Excellent performance! Success rate is outstanding.',
      );
    } else if (successRate >= 80) {
      recommendations.push(
        '⚠️ Good performance, but there is room for improvement.',
      );
    } else {
      recommendations.push('❌ Poor performance. Check logs for issues.');
    }
 
    // Analyze retries
    if (stats.retryStats.totalRetries === 0) {
      recommendations.push(
        '✅ No retries needed - upload system is very stable.',
      );
    } else if (stats.retryStats.totalRetries <= 5) {
      recommendations.push('ℹ️ Low retry count - system is fairly stable.');
    } else {
      recommendations.push(
        '⚠️ High retry count - consider optimizing upload settings.',
      );
    }
 
    // Analyze strategies
    const byStrategy = stats.byStrategy;
    const strategies = Object.entries(byStrategy)
      .filter(([_, s]) => s.uploadCount > 0)
      .sort((a, b) => {
        const aSpeed =
          a[1].totalDuration > 0
            ? a[1].totalFiles / (a[1].totalDuration / 60000)
            : 0;
        const bSpeed =
          b[1].totalDuration > 0
            ? b[1].totalFiles / (b[1].totalDuration / 60000)
            : 0;
        return bSpeed - aSpeed;
      });
 
    if (strategies.length > 0) {
      const fastest = strategies[0];
      const speed = (
        fastest[1].totalFiles /
        (fastest[1].totalDuration / 60000)
      ).toFixed(1);
      recommendations.push(
        `💡 Most efficient strategy: ${fastest[0]} (${speed} files/min)`,
      );
    }
 
    // Format recommendations for display
    let result = '';
    recommendations.forEach((rec, idx) => {
      result += `│ ${rec}\n`;
    });
 
    return result;
  }
}
 
// Export singleton instance
export default new WatchCommand();