This commit is contained in:
2026-01-13 16:04:25 +09:00
parent d4770af62f
commit 2bb94e2856
23 changed files with 1406 additions and 1103 deletions
+29 -36
View File
@@ -3,21 +3,14 @@ import androidx.compose.material.*
import androidx.compose.runtime.*
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.unit.dp
import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
import kotlinx.coroutines.launch
import network.KisAuthService
import org.jetbrains.exposed.sql.*
import org.jetbrains.exposed.sql.transactions.transaction
import androidx.compose.runtime.*
import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
import model.AppConfig
import model.KisSession
import network.LlamaServerManager
import org.jetbrains.exposed.sql.selectAll
import org.jetbrains.exposed.sql.transactions.transaction
import ui.DashboardScreen
import ui.SettingsScreen
@@ -25,58 +18,58 @@ import ui.SettingsScreen
enum class AppScreen { Settings, Dashboard }
fun main() = application {
// 앱 경로 기준 리소스 위치 설정
// 앱 실행 시 필요한 바이너리 경로 (실행 파일 위치)
val binPath = "./src/main/resources/bin/llama-server"
val modelPath = "./src/main/resources/models/gemma-2-9b-it-Q4_K_M.gguf"
LaunchedEffect(Unit) {
LlamaServerManager.startServer(binPath, modelPath)
}
Window(onCloseRequest = ::exitApplication, title = "KIS AI 자동매매") {
var currentScreen by remember { mutableStateOf(AppScreen.Settings) }
// 1. 초기 상태를 null로 두어 로딩 전임을 표시
var savedConfig by remember { mutableStateOf<AppConfig?>(null) }
var token by remember { mutableStateOf("") }
var selectedStockCode by remember { mutableStateOf<String?>(null) }
var isLoaded by remember { mutableStateOf(false) }
val scope = rememberCoroutineScope()
// 앱 시작 시 DB에서 마지막 설정 로드
// 1. 앱 시작 시 DB에서 마지막 설정 로드 (KisSession에 주입)
LaunchedEffect(Unit) {
DatabaseFactory.init()
val loaded = transaction {
transaction {
ConfigTable.selectAll().lastOrNull()?.let {
AppConfig(
appKey = it[ConfigTable.appKey],
secretKey = it[ConfigTable.secretKey],
accountNo = it[ConfigTable.accountNo],
KisSession.config = AppConfig(
realAppKey = it[ConfigTable.realAppKey],
realSecretKey = it[ConfigTable.realSecretKey],
realAccountNo = it[ConfigTable.realAccountNo],
vtsAppKey = it[ConfigTable.vtsAppKey],
vtsSecretKey = it[ConfigTable.vtsSecretKey],
vtsAccountNo = it[ConfigTable.vtsAccountNo],
isSimulation = it[ConfigTable.isSimulation],
modelPath = it[ConfigTable.modelPath]
)
}
}
// 로드된 값이 있으면 업데이트, 없으면 기본 객체 생성
savedConfig = loaded ?: AppConfig()
isLoaded = true
}
// savedConfig가 로드될 때까지 기다림 (깜빡임 방지 및 데이터 보장)
if (savedConfig == null) {
Box(Modifier.fillMaxSize(), contentAlignment = Alignment.Center) {
CircularProgressIndicator()
}
if (!isLoaded) {
// 로딩 중 표시
CircularProgressIndicator()
} else {
when (currentScreen) {
AppScreen.Settings -> {
SettingsScreen(
initialConfig = savedConfig!!, // !! 사용하여 null 아님을 보장
onAuthSuccess = { config, accessToken ->
savedConfig = config
token = accessToken
onAuthSuccess = {
// 2. 설정 및 인증 완료 시점의 처리
val config = KisSession.config
// LLM 서버 시작 (설정된 모델 경로 사용)
if (config.modelPath.isNotEmpty()) {
LlamaServerManager.startServer(binPath, config.modelPath)
}
// 대시보드로 화면 전환
currentScreen = AppScreen.Dashboard
}
)
}
AppScreen.Dashboard -> {
DashboardScreen(config = savedConfig!!, token = token)
// 이제 모든 서비스는 KisSession.config를 전역 참조함
DashboardScreen()
}
}
}