UNPKG

dina-agi

Version:

DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.

178 lines (177 loc) 6.53 kB
"use strict"; var __create = Object.create; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __getProtoOf = Object.getPrototypeOf; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( // If the importer is in node compatibility mode or this is not an ESM // file that has been converted to a CommonJS file using a Babel- // compatible transform (i.e. "__esModule" has not been set), then set // "default" to the CommonJS "module.exports" for node compatibility. isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod )); var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); var backendAdb_exports = {}; __export(backendAdb_exports, { AdbBackend: () => AdbBackend }); module.exports = __toCommonJS(backendAdb_exports); var import_events = require("events"); var import_net = __toESM(require("net")); var import_assert = require("../../utils/isomorphic/assert"); var import_utilsBundle = require("../../utilsBundle"); class AdbBackend { async devices(options = {}) { const result = await runCommand("host:devices", options.host, options.port); const lines = result.toString().trim().split("\n"); return lines.map((line) => { const [serial, status] = line.trim().split(" "); return new AdbDevice(serial, status, options.host, options.port); }); } } class AdbDevice { constructor(serial, status, host, port) { this._closed = false; this.serial = serial; this.status = status; this.host = host; this.port = port; } async init() { } async close() { this._closed = true; } runCommand(command) { if (this._closed) throw new Error("Device is closed"); return runCommand(command, this.host, this.port, this.serial); } async open(command) { if (this._closed) throw new Error("Device is closed"); const result = await open(command, this.host, this.port, this.serial); result.becomeSocket(); return result; } } async function runCommand(command, host = "127.0.0.1", port = 5037, serial) { (0, import_utilsBundle.debug)("pw:adb:runCommand")(command, serial); const socket = new BufferedSocketWrapper(command, import_net.default.createConnection({ host, port })); try { if (serial) { await socket.write(encodeMessage(`host:transport:${serial}`)); const status2 = await socket.read(4); (0, import_assert.assert)(status2.toString() === "OKAY", status2.toString()); } await socket.write(encodeMessage(command)); const status = await socket.read(4); (0, import_assert.assert)(status.toString() === "OKAY", status.toString()); let commandOutput; if (!command.startsWith("shell:")) { const remainingLength = parseInt((await socket.read(4)).toString(), 16); commandOutput = await socket.read(remainingLength); } else { commandOutput = await socket.readAll(); } return commandOutput; } finally { socket.close(); } } async function open(command, host = "127.0.0.1", port = 5037, serial) { const socket = new BufferedSocketWrapper(command, import_net.default.createConnection({ host, port })); if (serial) { await socket.write(encodeMessage(`host:transport:${serial}`)); const status2 = await socket.read(4); (0, import_assert.assert)(status2.toString() === "OKAY", status2.toString()); } await socket.write(encodeMessage(command)); const status = await socket.read(4); (0, import_assert.assert)(status.toString() === "OKAY", status.toString()); return socket; } function encodeMessage(message) { let lenHex = message.length.toString(16); lenHex = "0".repeat(4 - lenHex.length) + lenHex; return Buffer.from(lenHex + message); } class BufferedSocketWrapper extends import_events.EventEmitter { constructor(command, socket) { super(); this._buffer = Buffer.from([]); this._isSocket = false; this._isClosed = false; this._command = command; this._socket = socket; this._connectPromise = new Promise((f) => this._socket.on("connect", f)); this._socket.on("data", (data) => { (0, import_utilsBundle.debug)("pw:adb:data")(data.toString()); if (this._isSocket) { this.emit("data", data); return; } this._buffer = Buffer.concat([this._buffer, data]); if (this._notifyReader) this._notifyReader(); }); this._socket.on("close", () => { this._isClosed = true; if (this._notifyReader) this._notifyReader(); this.close(); this.emit("close"); }); this._socket.on("error", (error) => this.emit("error", error)); } async write(data) { (0, import_utilsBundle.debug)("pw:adb:send")(data.toString().substring(0, 100) + "..."); await this._connectPromise; await new Promise((f) => this._socket.write(data, f)); } close() { if (this._isClosed) return; (0, import_utilsBundle.debug)("pw:adb")("Close " + this._command); this._socket.destroy(); } async read(length) { await this._connectPromise; (0, import_assert.assert)(!this._isSocket, "Can not read by length in socket mode"); while (this._buffer.length < length) await new Promise((f) => this._notifyReader = f); const result = this._buffer.slice(0, length); this._buffer = this._buffer.slice(length); (0, import_utilsBundle.debug)("pw:adb:recv")(result.toString().substring(0, 100) + "..."); return result; } async readAll() { while (!this._isClosed) await new Promise((f) => this._notifyReader = f); return this._buffer; } becomeSocket() { (0, import_assert.assert)(!this._buffer.length); this._isSocket = true; } } // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { AdbBackend });