Skip to content

Commit

Permalink
fix(windows): fix some startup problem under windows platform
Browse files Browse the repository at this point in the history
  • Loading branch information
DEgITx committed Nov 10, 2019
1 parent 656f8f7 commit a397d09
Show file tree
Hide file tree
Showing 5 changed files with 87 additions and 37 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
"cheerio": "^1.0.0-rc.2",
"compare-versions": "^3.5.0",
"debug": "^4.1.1",
"detect-onebyte-encoding": "^1.0.2",
"detect-onebyte-encoding": "^1.0.3",
"electron-context-menu": "^0.15.0",
"electron-log": "^3.0.8",
"electron-updater": "^4.1.2",
Expand Down
17 changes: 15 additions & 2 deletions src/background/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ autoUpdater.on('update-downloaded', () => {
let tray = undefined

app.on("ready", async () => {
sphinx = await startSphinx(() => {
let rootPath;
({ sphinx, rootPath } = await startSphinx(() => {

mainWindow = createWindow("main", {
width: 1000,
Expand Down Expand Up @@ -333,7 +334,14 @@ app.on("ready", async () => {
}, app.getPath("userData"), () => {
stopped = true
app.quit()
})
}, {
noWindowsReEncoding: process.argv.includes('--noreencoding')
}))
// After configuration of sphinx user directory can be changed
if(app.getPath("userData") !== rootPath) {
logT('app', 'changed configuration user directory:', rootPath)
app.setPath("userData", rootPath);
}
});

let stopProtect = false
Expand Down Expand Up @@ -363,6 +371,11 @@ const stop = () => {
else if(sphinx)
{
sphinx.stop()
if(sphinx.windowsEncodingFix) {
logT('app', 'perform restart because of bad config');
app.relaunch({ args: process.argv.slice(1).concat(['--noreencoding']) })
app.exit(0)
}
}
else
{
Expand Down
7 changes: 7 additions & 0 deletions src/background/detectOneByte.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = (str) => {
for(let i = 0; i < str.length; i++) {
if(str.charCodeAt(i) > 191)
return false;
}
return true;
}
4 changes: 2 additions & 2 deletions src/background/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ io.on('connection', (socket) =>

const start = async () =>
{
sphinx = await startSphinx(() => {
({ sphinx } = await startSphinx(() => {
dbPatcher(() => {
spider = new spiderCall((...data) => io.sockets.emit(...data), (message, callback) => {
socketMessages[message] = callback
}, path.resolve(packageJson.serverDataDirectory), packageJson.version, 'production')
}, null, sphinx)
}, path.resolve(packageJson.serverDataDirectory), () => {})
}, path.resolve(packageJson.serverDataDirectory), () => {}))
}
start()

Expand Down
94 changes: 62 additions & 32 deletions src/background/sphinx.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ const _ = require('lodash')
const isRunning = require('is-running')
const portCheck = require('./portCheck')
const detectOnebyteEncoding = require('detect-onebyte-encoding')
const isOneByteEncoding = require('./detectOneByte')
const {promisify} = require('util');
const mkdirp = promisify(require('mkdirp'))

const findGoodPort = async (port, host) => {
while (!(await portCheck(port, host))) {
Expand All @@ -22,12 +25,12 @@ const findGoodPort = async (port, host) => {
return port
}

const writeSphinxConfig = async (path, dbPath) => {
const writeSphinxConfig = async (rootPath, dbPath, params = {}) => {
appConfig.sphinx.port = await findGoodPort(appConfig.sphinx.port)
appConfig.sphinx.interfacePort = await findGoodPort(appConfig.sphinx.interfacePort)
appConfig.sphinx = appConfig.sphinx

let config = `
let generateConfig = () => (`
index torrents
{
type = rt
Expand Down Expand Up @@ -109,12 +112,40 @@ const writeSphinxConfig = async (path, dbPath) => {
preopen_indexes = 1
unlink_old = 1
workers = threads # for RT to work
pid_file = ${path}/searchd.pid
log = ${path}/searchd.log
query_log = ${path}/query.log
binlog_path = ${path}
pid_file = ${rootPath}/searchd.pid
log = ${rootPath}/searchd.log
query_log = ${rootPath}/query.log
binlog_path = ${rootPath}
}
`;
`);

let config = generateConfig()

// fix db path under windows platform (one-byte path)
let windowsEncodingFix = false;
if(/^win/.test(process.platform) && (!isOneByteEncoding(dbPath) || !isOneByteEncoding(rootPath)))
{
logT('sphinx', 'detected non-one byte encoding, trying to fix config for db path', dbPath, params.noWindowsReEncoding)
let encoding = detectOnebyteEncoding(rootPath + dbPath)
if (encoding !== 'utf8' && !params.noWindowsReEncoding) {
config = iconv.encode(config, encoding)
logT('sphinx', 'config encoded to', encoding)
windowsEncodingFix = true
} else {
logT('sphinx', 'config encoded with utf8, moving config to some root directory')
while(!isOneByteEncoding(dbPath) || !(fs.statSync(dbPath).mode & 0x92))
dbPath = path.dirname(dbPath)
while(!isOneByteEncoding(rootPath) || !(fs.statSync(rootPath).mode & 0x92))
rootPath = path.dirname(rootPath)
dbPath += "/RatsConfig"
rootPath += "/RatsConfig"
await mkdirp(dbPath)
await mkdirp(rootPath)
logT('sphinx', 'changed root directory', rootPath)
logT('sphinx', 'changed db directory', dbPath)
config = generateConfig()
}
}

// clear dir in test env
if(env && env.name === 'test')
Expand All @@ -127,10 +158,10 @@ const writeSphinxConfig = async (path, dbPath) => {
}
});

fs.readdirSync(path).forEach(function(file, index){
fs.readdirSync(rootPath).forEach(function(file, index){
if(!file.startsWith('binlog'))
return;
const curPath = path + "/" + file;
const curPath = rootPath + "/" + file;
if (!fs.lstatSync(curPath).isDirectory()) {
fs.unlinkSync(curPath);
}
Expand All @@ -139,9 +170,9 @@ const writeSphinxConfig = async (path, dbPath) => {
}

// clean query.log because it too large and don't consist any good info
if(fs.existsSync(`${path}/query.log`))
if(fs.existsSync(`${rootPath}/query.log`))
{
fs.unlinkSync(`${path}/query.log`)
fs.unlinkSync(`${rootPath}/query.log`)
}

let isInitDb = false
Expand All @@ -151,33 +182,20 @@ const writeSphinxConfig = async (path, dbPath) => {
isInitDb = true
}

// fix db path under windows platform (one-byte path)
if(/^win/.test(process.platform))
{
let encoding = detectOnebyteEncoding(dbPath)
let encoding2 = detectOnebyteEncoding(path)
if(encoding != encoding2)
{
encoding = detectOnebyteEncoding(config)
}
config = iconv.encode(config, encoding)
logT('sphinx', 'config encoded to', encoding)
}

fs.writeFileSync(`${path}/sphinx.conf`, config)
logT('sphinx', `writed sphinx config to ${path}`)
fs.writeFileSync(`${rootPath}/sphinx.conf`, config)
logT('sphinx', `writed sphinx config to ${rootPath}`)
logT('sphinx', 'db path:', dbPath)

return {isInitDb}
return {isInitDb, rootPath, dbPath, windowsEncodingFix}
}

module.exports = async (callback, dataDirectory, onClose) => {
module.exports = async (callback, dataDirectory, onClose, params = {}) => {
const start = async (callback) => {

const sphinxPath = path.resolve(appPath('searchd'))
logT('sphinx', 'Sphinx Path:', sphinxPath)

const sphinxConfigDirectory = dataDirectory
let sphinxConfigDirectory = dataDirectory
appConfig['dbPath'] = appConfig.dbPath && appConfig.dbPath.length > 0 ? appConfig.dbPath : sphinxConfigDirectory;
// on portable dir can move database directory
if(!fs.existsSync(appConfig.dbPath) && fs.existsSync(sphinxConfigDirectory))
Expand All @@ -191,7 +209,13 @@ module.exports = async (callback, dataDirectory, onClose) => {
if(isSphinxExternal)
logT('sphinx', `founded running sphinx instance in ${sphinxPid}, using it`)

const { isInitDb } = isSphinxExternal ? {isInitDb: false} : await writeSphinxConfig(sphinxConfigDirectory, appConfig.dbPath)
const { isInitDb, rootPath, dbPath, windowsEncodingFix } = isSphinxExternal ? {isInitDb: false} : await writeSphinxConfig(sphinxConfigDirectory, appConfig.dbPath, params)
// on windows directory can be changed during sphinx bug with one byte path
if (rootPath != sphinxConfigDirectory || dbPath != appConfig.dbPath)
{
sphinxConfigDirectory = rootPath;
appConfig.dbPath = dbPath;
}

const config = `${sphinxConfigDirectory}/sphinx.conf`
const options = ['--config', config]
Expand Down Expand Up @@ -228,7 +252,13 @@ module.exports = async (callback, dataDirectory, onClose) => {
{
sphinx.fixDatabase()
}


if(windowsEncodingFix && data.includes('failed to parse config file'))
{
logT('sphinx', 'encoding rewrite failed, forcing restart of application to fix that problem')
sphinx.windowsEncodingFix = true;
}

const checkOptimized = String(data).match(/index ([\w]+): optimized/)
if(checkOptimized)
{
Expand Down Expand Up @@ -321,7 +351,7 @@ module.exports = async (callback, dataDirectory, onClose) => {

if (isSphinxExternal && callback) setTimeout(()=>{logT('sphinx', 'external sphinx signalled');callback()}, 0);

return sphinx
return {sphinx, rootPath: sphinxConfigDirectory, dbPath}
}

return await start(callback)
Expand Down

0 comments on commit a397d09

Please sign in to comment.