!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/local/share/.cache/yarn/v6/npm-builder-util-24.8.1-integrity/node_modules/builder-util/out/   drwxr-xr-x
Free 13.09 GB of 57.97 GB (22.58%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     asyncTaskManager.js (2.53 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AsyncTaskManager = void 0;
const log_1 = require("./log");
const promise_1 = require("./promise");
class AsyncTaskManager {
    constructor(cancellationToken) {
        this.cancellationToken = cancellationToken;
        this.tasks = [];
        this.errors = [];
    }
    add(task) {
        if (this.cancellationToken == null || !this.cancellationToken.cancelled) {
            this.addTask(task());
        }
    }
    addTask(promise) {
        if (this.cancellationToken.cancelled) {
            log_1.log.debug({ reason: "cancelled", stack: new Error().stack }, "async task not added");
            if ("cancel" in promise) {
                ;
                promise.cancel();
            }
            return;
        }
        this.tasks.push(promise.catch(it => {
            log_1.log.debug({ error: it.message || it.toString() }, "async task error");
            this.errors.push(it);
            return Promise.resolve(null);
        }));
    }
    cancelTasks() {
        for (const task of this.tasks) {
            if ("cancel" in task) {
                ;
                task.cancel();
            }
        }
        this.tasks.length = 0;
    }
    async awaitTasks() {
        if (this.cancellationToken.cancelled) {
            this.cancelTasks();
            return [];
        }
        const checkErrors = () => {
            if (this.errors.length > 0) {
                this.cancelTasks();
                throwError(this.errors);
                return;
            }
        };
        checkErrors();
        let result = null;
        const tasks = this.tasks;
        let list = tasks.slice();
        tasks.length = 0;
        while (list.length > 0) {
            const subResult = await Promise.all(list);
            result = result == null ? subResult : result.concat(subResult);
            checkErrors();
            if (tasks.length === 0) {
                break;
            }
            else {
                if (this.cancellationToken.cancelled) {
                    this.cancelTasks();
                    return [];
                }
                list = tasks.slice();
                tasks.length = 0;
            }
        }
        return result || [];
    }
}
exports.AsyncTaskManager = AsyncTaskManager;
function throwError(errors) {
    if (errors.length === 1) {
        throw errors[0];
    }
    else if (errors.length > 1) {
        throw new promise_1.NestedError(errors, "Cannot cleanup: ");
    }
}
//# sourceMappingURL=asyncTaskManager.js.map

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0061 ]--