| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- #!/usr/bin/env node
- const { execSync } = require('child_process')
- const path = require('path')
- // 项目根:bat-tool/getip -> 上两级;打包时若在 app.asar 内则用 app.asar.unpacked
- let PROJECT_ROOT = path.resolve(__dirname, '..', '..')
- if (PROJECT_ROOT.includes('app.asar') && !PROJECT_ROOT.includes('app.asar.unpacked')) {
- PROJECT_ROOT = PROJECT_ROOT.replace('app.asar', 'app.asar.unpacked')
- }
- function getAdbPath() {
- const configPath = path.join(PROJECT_ROOT, 'configs', 'config.js')
- const config = require(configPath)
- return config.adbPath?.path
- ? path.resolve(PROJECT_ROOT, config.adbPath.path)
- : path.join(PROJECT_ROOT, 'lib', 'scrcpy-adb', 'adb.exe')
- }
- function getConnectedDeviceIds(adbPath) {
- const out = execSync(`"${adbPath}" devices`, { encoding: 'utf-8' })
- return out
- .split('\n')
- .filter((line) => line.trim() && !line.startsWith('List') && line.includes('\tdevice'))
- .map((line) => line.trim().split('\t')[0])
- .filter((id) => id && !id.includes(':'))
- }
- function parseInetFromOutput(out, skipLoopback = false) {
- const re = /inet\s+(\d+\.\d+\.\d+\.\d+)/g
- const ips = []
- let m
- while ((m = re.exec(out || '')) !== null) ips.push(m[1])
- if (ips.length === 0) return null
- if (skipLoopback) {
- const nonLoop = ips.find((ip) => ip !== '127.0.0.1')
- return nonLoop || null
- }
- return ips[0]
- }
- function adbShellCmd(adbPath, deviceId, shellCmd) {
- const id = deviceId.indexOf(' ') >= 0 ? `"${deviceId}"` : deviceId
- return `"${adbPath}" -s ${id} shell ${shellCmd}`
- }
- function getDeviceIp(adbPath, deviceId) {
- const run = (shellCmd) => {
- try {
- return execSync(adbShellCmd(adbPath, deviceId, shellCmd), { encoding: 'utf-8' })
- } catch (e) {
- return ''
- }
- }
- let out = run('ip -4 addr show wlan0')
- let ip = parseInetFromOutput(out)
- if (ip) return ip
- out = run('ip -4 addr show eth0')
- ip = parseInetFromOutput(out)
- if (ip) return ip
- out = run('ip route get 1.1.1.1')
- let m = out.match(/\bsrc\s+(\d+\.\d+\.\d+\.\d+)\b/)
- if (m) return m[1]
- m = out.match(/\bfrom\s+(\d+\.\d+\.\d+\.\d+)\b/)
- if (m) return m[1]
- for (const prop of ['dhcp.wlan0.ipaddress', 'net.wlan0.ipaddress', 'dhcp.eth0.ipaddress']) {
- out = run('getprop ' + prop)
- ip = (out || '').trim()
- if (/^\d+\.\d+\.\d+\.\d+$/.test(ip)) return ip
- }
- out = run('ip -4 addr show')
- return parseInetFromOutput(out, true)
- }
- function run() {
- const adbPath = getAdbPath()
- const devices = getConnectedDeviceIds(adbPath)
- if (devices.length === 0) {
- process.stderr.write('No devices found. Please connect a device via USB.\n')
- process.exit(1)
- }
- const deviceId = devices[0]
- const ip = getDeviceIp(adbPath, deviceId)
- if (ip) {
- process.stdout.write(ip + '\n')
- process.exit(0)
- }
- process.stderr.write('Could not get device IP. Check WiFi on device.\n')
- process.exit(1)
- }
- run()
|