124 lines
3.6 KiB
JavaScript
124 lines
3.6 KiB
JavaScript
/**
|
|
* 内置的ASR服务器模块
|
|
* 这个文件可以直接在Electron中运行,不需要外部依赖
|
|
*/
|
|
|
|
// 使用Electron内置的Node.js模块
|
|
const http = require('http')
|
|
const path = require('path')
|
|
const fs = require('fs')
|
|
|
|
// 输出环境信息
|
|
console.log('ASR Server (Embedded) starting...')
|
|
console.log('Node.js version:', process.version)
|
|
console.log('Current directory:', __dirname)
|
|
console.log('Current working directory:', process.cwd())
|
|
console.log('Command line arguments:', process.argv)
|
|
|
|
// 创建HTTP服务器
|
|
const server = http.createServer((req, res) => {
|
|
try {
|
|
if (req.url === '/' || req.url === '/index.html') {
|
|
// 尝试多个可能的路径
|
|
const possiblePaths = [
|
|
// 当前目录
|
|
path.join(__dirname, 'index.html'),
|
|
// 上级目录
|
|
path.join(__dirname, '..', 'index.html'),
|
|
// 应用根目录
|
|
path.join(process.cwd(), 'index.html')
|
|
]
|
|
|
|
console.log('Possible index.html paths:', possiblePaths)
|
|
|
|
// 查找第一个存在的文件
|
|
let indexPath = null
|
|
for (const p of possiblePaths) {
|
|
try {
|
|
if (fs.existsSync(p)) {
|
|
indexPath = p
|
|
console.log(`Found index.html at: ${p}`)
|
|
break
|
|
}
|
|
} catch (e) {
|
|
console.error(`Error checking existence of ${p}:`, e)
|
|
}
|
|
}
|
|
|
|
if (indexPath) {
|
|
// 读取文件内容并发送
|
|
fs.readFile(indexPath, (err, data) => {
|
|
if (err) {
|
|
console.error('Error reading index.html:', err)
|
|
res.writeHead(500)
|
|
res.end('Error reading index.html')
|
|
return
|
|
}
|
|
|
|
res.writeHead(200, { 'Content-Type': 'text/html' })
|
|
res.end(data)
|
|
})
|
|
} else {
|
|
// 如果找不到文件,返回一个简单的HTML页面
|
|
console.error('Could not find index.html, serving fallback page')
|
|
res.writeHead(200, { 'Content-Type': 'text/html' })
|
|
res.end(`
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>ASR Server</title>
|
|
<style>
|
|
body { font-family: sans-serif; padding: 2em; }
|
|
h1 { color: #333; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>ASR Server is running</h1>
|
|
<p>This is a fallback page because the index.html file could not be found.</p>
|
|
<p>Server is running at: http://localhost:34515</p>
|
|
<p>Current directory: ${__dirname}</p>
|
|
<p>Working directory: ${process.cwd()}</p>
|
|
</body>
|
|
</html>
|
|
`)
|
|
}
|
|
} else {
|
|
// 处理其他请求
|
|
res.writeHead(404)
|
|
res.end('Not found')
|
|
}
|
|
} catch (error) {
|
|
console.error('Error handling request:', error)
|
|
res.writeHead(500)
|
|
res.end('Server error')
|
|
}
|
|
})
|
|
|
|
// 添加进程错误处理
|
|
process.on('uncaughtException', (error) => {
|
|
console.error('[Server] Uncaught exception:', error)
|
|
// 不立即退出,给日志输出的时间
|
|
setTimeout(() => process.exit(1), 1000)
|
|
})
|
|
|
|
process.on('unhandledRejection', (reason, promise) => {
|
|
console.error('[Server] Unhandled rejection at:', promise, 'reason:', reason)
|
|
})
|
|
|
|
// 尝试启动服务器
|
|
try {
|
|
const port = 34515
|
|
server.listen(port, () => {
|
|
console.log(`[Server] Server running at http://localhost:${port}`)
|
|
})
|
|
|
|
// 处理服务器错误
|
|
server.on('error', (error) => {
|
|
console.error(`[Server] Failed to start server:`, error)
|
|
process.exit(1) // Exit if server fails to start
|
|
})
|
|
} catch (error) {
|
|
console.error('[Server] Critical error starting server:', error)
|
|
process.exit(1)
|
|
}
|