forked from kiwix/kiwix-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kiwix#2536 from s-ayush2903/fix/s-ayush2903/kiwix#…
…2447-unselected-books-being-deisplayed-in-browser-on-host-books fix: Only selected Books are being displayed in Browser
- Loading branch information
Showing
3 changed files
with
63 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
app/src/main/java/org/kiwix/kiwixmobile/webserver/KiwixServer.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Kiwix Android | ||
* Copyright (c) 2020 Kiwix <android.kiwix.org> | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
package org.kiwix.kiwixmobile.webserver | ||
|
||
import android.util.Log | ||
import org.kiwix.kiwixlib.JNIKiwixException | ||
import org.kiwix.kiwixlib.JNIKiwixServer | ||
import org.kiwix.kiwixlib.Library | ||
import javax.inject.Inject | ||
|
||
private const val TAG = "KiwixServer" | ||
|
||
class KiwixServer @Inject constructor(private val jniKiwixServer: JNIKiwixServer) { | ||
|
||
class Factory @Inject constructor() { | ||
fun createKiwixServer(selectedBooksPath: ArrayList<String>): KiwixServer { | ||
val kiwixLibrary = Library() | ||
selectedBooksPath.forEach { path -> | ||
try { | ||
kiwixLibrary.addBook(path) | ||
} catch (e: JNIKiwixException) { | ||
Log.v(TAG, "Couldn't add book with path:{ $path }") | ||
} | ||
} | ||
return KiwixServer(JNIKiwixServer(kiwixLibrary)) | ||
} | ||
} | ||
|
||
fun startServer(port: Int): Boolean { | ||
jniKiwixServer.setPort(port) | ||
return jniKiwixServer.start() | ||
} | ||
|
||
fun stopServer() = jniKiwixServer.stop() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters