Compare commits

...

9 Commits

11 changed files with 464 additions and 188 deletions

View File

@@ -1,63 +1,31 @@
# This file is a template, and might need editing before it works on your project.
# To contribute improvements to CI/CD templates, please follow the Development guide at:
# https://docs.gitlab.com/ee/development/cicd/templates.html
# This specific template is located at:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Android.gitlab-ci.yml
# Read more about this script on this blog post https://about.gitlab.com/2018/10/24/setting-up-gitlab-ci-for-android-projects/, by Jason Lenny
# If you are interested in using Android with FastLane for publishing take a look at the Android-Fastlane template.
image: eclipse-temurin:17-jdk-jammy image: eclipse-temurin:17-jdk-jammy
variables: variables:
# ANDROID_COMPILE_SDK is the version of Android you're compiling with.
# It should match compileSdkVersion.
ANDROID_COMPILE_SDK: "34" ANDROID_COMPILE_SDK: "34"
# ANDROID_BUILD_TOOLS is the version of the Android build tools you are using.
# It should match buildToolsVersion.
ANDROID_BUILD_TOOLS: "33.0.2" ANDROID_BUILD_TOOLS: "33.0.2"
# It's what version of the command line tools we're going to download from the official site.
# Official Site-> https://developer.android.com/studio/index.html
# There, look down below at the cli tools only, sdk tools package is of format:
# commandlinetools-os_type-ANDROID_SDK_TOOLS_latest.zip
# when the script was last modified for latest compileSdkVersion, it was which is written down below
ANDROID_SDK_TOOLS: "9477386" ANDROID_SDK_TOOLS: "9477386"
# Keystore credentials stored as GitLab CI/CD variables
KEYSTORE_PASSWORD: $KS_PASSWORD
KEY_ALIAS: $KS_ALIAS
KEY_PASSWORD: $KS_KEY_PASSWORD
# Packages installation before running script
before_script: before_script:
- apt-get --quiet update --yes - apt-get --quiet update --yes
- apt-get --quiet install --yes wget unzip - apt-get --quiet install --yes wget unzip
# Setup path as android_home for moving/exporting the downloaded sdk into it
- export ANDROID_HOME="${PWD}/android-sdk-root" - export ANDROID_HOME="${PWD}/android-sdk-root"
# Create a new directory at specified location
- install -d $ANDROID_HOME - install -d $ANDROID_HOME
# Here we are installing androidSDK tools from official source,
# (the key thing here is the url from where you are downloading these sdk tool for command line, so please do note this url pattern there and here as well)
# after that unzipping those tools and
# then running a series of SDK manager commands to install necessary android SDK packages that'll allow the app to build
- wget --no-verbose --output-document=$ANDROID_HOME/cmdline-tools.zip https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_SDK_TOOLS}_latest.zip - wget --no-verbose --output-document=$ANDROID_HOME/cmdline-tools.zip https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_SDK_TOOLS}_latest.zip
- unzip -q -d "$ANDROID_HOME/cmdline-tools" "$ANDROID_HOME/cmdline-tools.zip" - unzip -q -d "$ANDROID_HOME/cmdline-tools" "$ANDROID_HOME/cmdline-tools.zip"
- mv -T "$ANDROID_HOME/cmdline-tools/cmdline-tools" "$ANDROID_HOME/cmdline-tools/tools" - mv -T "$ANDROID_HOME/cmdline-tools/cmdline-tools" "$ANDROID_HOME/cmdline-tools/tools"
- export PATH=$PATH:$ANDROID_HOME/cmdline-tools/latest/bin:$ANDROID_HOME/cmdline-tools/tools/bin - export PATH=$PATH:$ANDROID_HOME/cmdline-tools/latest/bin:$ANDROID_HOME/cmdline-tools/tools/bin
# Nothing fancy here, just checking sdkManager version
- sdkmanager --version - sdkmanager --version
# use yes to accept all licenses
- yes | sdkmanager --licenses > /dev/null || true - yes | sdkmanager --licenses > /dev/null || true
- sdkmanager "platforms;android-${ANDROID_COMPILE_SDK}" - sdkmanager "platforms;android-${ANDROID_COMPILE_SDK}"
- sdkmanager "platform-tools" - sdkmanager "platform-tools"
- sdkmanager "build-tools;${ANDROID_BUILD_TOOLS}" - sdkmanager "build-tools;${ANDROID_BUILD_TOOLS}"
# Not necessary, but just for surity
- chmod +x ./gradlew - chmod +x ./gradlew
# Basic android and gradle stuff
# Check linting
lintDebug: lintDebug:
interruptible: true interruptible: true
stage: build stage: build
@@ -69,7 +37,6 @@ lintDebug:
expose_as: "lint-report" expose_as: "lint-report"
when: always when: always
# Make Project
assembleDebug: assembleDebug:
interruptible: true interruptible: true
stage: build stage: build
@@ -78,8 +45,68 @@ assembleDebug:
artifacts: artifacts:
paths: paths:
- app/build/outputs/ - app/build/outputs/
# Job for building signed release APK for tags containing "release" on any branch
assembleRelease:
stage: build
script:
- |
if [[ "$CI_COMMIT_TAG" =~ release ]]; then
echo "Decoding keystore file from Base64"
# Debug: Print the first few characters of BASE64_KEYSTORE
echo "First 20 characters of BASE64_KEYSTORE: ${BASE64_KEYSTORE:0:20}..."
# Check if BASE64_KEYSTORE is a file path
if [[ "$BASE64_KEYSTORE" == /* ]] && [[ -f "$BASE64_KEYSTORE" ]]; then
echo "BASE64_KEYSTORE appears to be a file path. Reading content..."
BASE64_CONTENT=$(cat "$BASE64_KEYSTORE")
else
echo "BASE64_KEYSTORE is not a file path. Using as-is."
BASE64_CONTENT="$BASE64_KEYSTORE"
fi
# Remove any potential whitespace or newline characters
CLEANED_KEYSTORE=$(echo "$BASE64_CONTENT" | tr -d '[:space:]')
# Attempt to decode and save to a file
if echo "$CLEANED_KEYSTORE" | base64 -d > "$CI_PROJECT_DIR/app/keystore.jks" 2>/tmp/base64_error; then
echo "Keystore file decoded successfully"
else
echo "Error decoding keystore file:"
cat /tmp/base64_error
echo "First 20 characters of cleaned content: ${CLEANED_KEYSTORE:0:20}..."
exit 1
fi
# Check if the keystore file was created and has content
if [ -s "$CI_PROJECT_DIR/app/keystore.jks" ]; then
echo "Keystore file created successfully"
# Print file size for verification
ls -l "$CI_PROJECT_DIR/app/keystore.jks"
else
echo "Error: Keystore file is empty or not created"
exit 1
fi
echo "Building signed release APK"
./gradlew assembleRelease \
-Pandroid.injected.signing.store.file="$CI_PROJECT_DIR/app/keystore.jks" \
-Pandroid.injected.signing.store.password="$KEYSTORE_PASSWORD" \
-Pandroid.injected.signing.key.alias="$KEY_ALIAS" \
-Pandroid.injected.signing.key.password="$KEY_PASSWORD"
else
echo "Tag '$CI_COMMIT_TAG' does not contain 'release'. Skipping release build."
fi
artifacts:
paths:
- app/build/outputs/
expire_in: never
rules:
- if: $CI_COMMIT_TAG =~ /release/
when: always
- when: never
# Run all tests, if any fails, interrupt the pipeline(fail it)
debugTests: debugTests:
needs: [lintDebug, assembleDebug] needs: [lintDebug, assembleDebug]
interruptible: true interruptible: true

View File

@@ -21,7 +21,7 @@ android {
minSdk 21 minSdk 21
targetSdk 34 targetSdk 34
versionCode 130 versionCode 130
versionName "2.1.130" versionName "2.1.130 -usb"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
@@ -30,6 +30,7 @@ android {
release { release {
minifyEnabled false minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.debug
} }
} }
compileOptions { compileOptions {
@@ -63,6 +64,7 @@ android {
dependencies { dependencies {
implementation "com.google.dagger:hilt-android:2.46" implementation "com.google.dagger:hilt-android:2.46"
implementation 'androidx.activity:activity:1.8.0' implementation 'androidx.activity:activity:1.8.0'
implementation 'androidx.compose.ui:ui-android:1.7.6'
kapt "com.google.dagger:hilt-android-compiler:2.46" kapt "com.google.dagger:hilt-android-compiler:2.46"
implementation 'androidx.core:core-ktx:1.12.0' implementation 'androidx.core:core-ktx:1.12.0'

View File

@@ -68,6 +68,7 @@
<activity <activity
android:name="com.example.hpostesting.presentation.usb_teminal.UsbTerminalActivity" android:name="com.example.hpostesting.presentation.usb_teminal.UsbTerminalActivity"
android:exported="false" android:exported="false"
android:launchMode="singleInstance"
android:screenOrientation="portrait" /> android:screenOrientation="portrait" />
<activity <activity
android:name="com.example.hpostesting.presentation.deviceinfo.DeviceActivity" android:name="com.example.hpostesting.presentation.deviceinfo.DeviceActivity"
@@ -198,6 +199,7 @@
android:exported="true" android:exported="true"
android:permission="" android:permission=""
android:screenOrientation="portrait" android:screenOrientation="portrait"
android:launchMode="singleInstance"
android:theme="@style/AppTheme.NoActionBar"> android:theme="@style/AppTheme.NoActionBar">
<intent-filter> <intent-filter>
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />

View File

@@ -73,8 +73,15 @@ class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) { override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState) super.onCreate(savedInstanceState)
sharedPreference = getSharedPreferences("HEMOCUBE", Context.MODE_PRIVATE)
sharedPreference = getSharedPreferences("HEMOCUBE", Context.MODE_PRIVATE)
val action = intent?.action
if (action == UsbManager.ACTION_USB_DEVICE_ATTACHED || action == UsbManager.ACTION_USB_DEVICE_DETACHED) {
// If the activity is triggered by USB events, simply finish it
checkAndUpdateUsbConnection()
finish()
return
}
binding = ActivityMainBinding.inflate(layoutInflater) binding = ActivityMainBinding.inflate(layoutInflater)
setContentView(binding.root) setContentView(binding.root)
binding.myToolbar.title = "Test Type" binding.myToolbar.title = "Test Type"
@@ -150,7 +157,7 @@ class MainActivity : AppCompatActivity() {
} }
(device.productId == 24577 && device.vendorId == 1027) || (device.productId == 8963 && device.vendorId == 1659) || (device.productId == 4614 && device.vendorId == 7111) -> { (device.productId == 24577 && device.vendorId == 1027) || (device.productId == 8963 && device.vendorId == 1659) || (device.productId == 4614 && device.vendorId == 7111) -> {
changeUI() // changeUI()
DataHolder.deviceType.postValue(Constants.DEVICE_TYPE_TRUEHEME) DataHolder.deviceType.postValue(Constants.DEVICE_TYPE_TRUEHEME)
Constants.DEVICE_TYPE_TRUEHEME Constants.DEVICE_TYPE_TRUEHEME
} }

View File

@@ -116,6 +116,7 @@ class GalleryFragment : Fragment() {
binding.btnUsbTerminal.setOnClickListener { binding.btnUsbTerminal.setOnClickListener {
startActivity(Intent(requireContext(), UsbTerminalActivity::class.java)) startActivity(Intent(requireContext(), UsbTerminalActivity::class.java))
} }
binding.btnSubmit.setOnClickListener { binding.btnSubmit.setOnClickListener {
startActivity(Intent(requireContext(), HemocubeBufferCheckActivity::class.java)) startActivity(Intent(requireContext(), HemocubeBufferCheckActivity::class.java))
} }

View File

@@ -36,11 +36,7 @@ import androidx.core.content.ContextCompat
import androidx.core.view.get import androidx.core.view.get
import com.example.hpostesting.data.constant.Constants import com.example.hpostesting.data.constant.Constants
import com.example.hpostesting.data.constant.DataHolder import com.example.hpostesting.data.constant.DataHolder
import com.example.hpostesting.data.constant.HemoCubeCommands
import com.example.hpostesting.data.constant.LanguageManager import com.example.hpostesting.data.constant.LanguageManager
import com.example.hpostesting.presentation.deviceinfo.DeviceFragment
import com.example.hpostesting.presentation.utils.DeviceCommunicationHandler
import com.example.hpostesting.presentation.utils.UsbServiceListener
import com.example.hpostesting.util.UsbService import com.example.hpostesting.util.UsbService
import com.hoho.android.usbserial.driver.UsbSerialDriver import com.hoho.android.usbserial.driver.UsbSerialDriver
import com.hoho.android.usbserial.driver.UsbSerialProber import com.hoho.android.usbserial.driver.UsbSerialProber
@@ -59,35 +55,47 @@ class UsbTerminalActivity : AppCompatActivity() {
private var mConnection: UsbDeviceConnection? = null private var mConnection: UsbDeviceConnection? = null
lateinit var mService: UsbService lateinit var mService: UsbService
private var deviceId = "" private var deviceId = ""
private var isResuming = false
private val TAG = "Calibration" private val TAG = "Calibration"
private val broadcastReceiver = object : BroadcastReceiver() { private val broadcastReceiver = object : BroadcastReceiver() {
override fun onReceive(context: Context, intent: Intent) { override fun onReceive(context: Context, intent: Intent) {
synchronized(this) { synchronized(this) {
val device: UsbDevice? = intent.getParcelableExtra(UsbManager.EXTRA_DEVICE) val device: UsbDevice? = intent.getParcelableExtra(UsbManager.EXTRA_DEVICE)
if (intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, false)) { when (intent.action) {
device?.apply { UsbManager.ACTION_USB_DEVICE_DETACHED -> {
connectUsb(true) Log.d(TAG, "USB device detached")
DataHolder.usbConnected.postValue(true) cleanupUsb()
DataHolder.usbConnected.postValue(false)
}
UsbManager.ACTION_USB_DEVICE_ATTACHED -> {
Log.d(TAG, "USB device attached")
isResuming = true
connectUsb(false)
}
else -> {
if (intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, false)) {
device?.let {
connectUsb(true)
DataHolder.usbConnected.postValue(true)
}
} else {
Log.e(TAG, "USB permission denied")
DataHolder.usbConnected.postValue(false)
}
} }
} else {
onErrorReported("permission denied for device")
DataHolder.usbConnected.postValue(true)
} }
} }
} }
} }
private val connection = object : ServiceConnection { private val connection = object : ServiceConnection {
override fun onServiceConnected(className: ComponentName, service: IBinder) { override fun onServiceConnected(className: ComponentName, service: IBinder) {
val binder = service as UsbService.UsbServiceBinder val binder = service as UsbService.UsbServiceBinder
mService = binder.getService() mService = binder.getService()
usbTerminalViewModel.isServiceConnected = true usbTerminalViewModel.isServiceConnected = true
mConnection.let { mService.connect(mDriver, mConnection!!) } mConnection?.let { mService.connect(mDriver, it) }
moveToNext() moveToNext()
} }
@@ -106,21 +114,34 @@ class UsbTerminalActivity : AppCompatActivity() {
super.onCreate(savedInstanceState) super.onCreate(savedInstanceState)
binding = ActivityUsbTerminalBinding.inflate(layoutInflater) binding = ActivityUsbTerminalBinding.inflate(layoutInflater)
setContentView(binding.root) setContentView(binding.root)
// setSupportActionBar(binding.myToolbar) sharedPreferences = getSharedPreferences("HEMOCUBE", Context.MODE_PRIVATE)
supportActionBar?.setDisplayHomeAsUpEnabled(true)
val filter = IntentFilter().apply {
addAction(UsbManager.ACTION_USB_DEVICE_ATTACHED)
addAction(UsbManager.ACTION_USB_DEVICE_DETACHED)
addAction(Constants.HEMOCUBE_USB_PERMISSION)
}
registerReceiver(broadcastReceiver, filter)
setupListener() setupListener()
connectUsb(false) connectUsb(false)
} }
override fun onResume() {
super.onResume()
isResuming = true
connectUsb(false)
}
private fun setupListener() { private fun setupListener() {
DataHolder.usbConnected.observe(this) { DataHolder.usbConnected.observe(this) { isConnected ->
Log.d("USB OBSERVE", "HemoCube called -> $it") Log.d("USB OBSERVE", "HemoCube called -> $isConnected")
if (it) { myMenu?.get(0)?.icon = ContextCompat.getDrawable(
myMenu?.get(0)?.icon = this,
ContextCompat.getDrawable(this, R.drawable.ic_baseline_usb_24) if (isConnected) R.drawable.ic_baseline_usb_24
} else { else R.drawable.ic_baseline_usb_off_24
myMenu?.get(0)?.icon = )
ContextCompat.getDrawable(this, R.drawable.ic_baseline_usb_off_24) if (!isConnected) {
Toast.makeText(this, "Device is Disconnected", Toast.LENGTH_SHORT).show() Toast.makeText(this, "Device is Disconnected", Toast.LENGTH_SHORT).show()
} }
} }
@@ -128,55 +149,78 @@ class UsbTerminalActivity : AppCompatActivity() {
open fun connectUsb(permissionGranted: Boolean) { open fun connectUsb(permissionGranted: Boolean) {
Log.d(TAG, "connectUsb() called, permission variable = $permissionGranted") Log.d(TAG, "connectUsb() called, permission variable = $permissionGranted")
val manager = getSystemService(Context.USB_SERVICE) as UsbManager
val availableDrivers = UsbSerialProber.getDefaultProber().findAllDrivers(manager)
if (availableDrivers.isEmpty()) { try {
onErrorReported("No Device is Connected") val manager = getSystemService(Context.USB_SERVICE) as UsbManager
} else { val availableDrivers = UsbSerialProber.getDefaultProber().findAllDrivers(manager)
if (availableDrivers.isEmpty()) {
onErrorReported("No Device Connected")
DataHolder.usbConnected.postValue(false)
return
}
mDriver = availableDrivers[0] mDriver = availableDrivers[0]
mConnection = manager.openDevice(mDriver.device) mConnection = manager.openDevice(mDriver.device)
if (mConnection == null) {
requestUserPermission(manager, mDriver.device) when {
} else { mConnection == null -> requestUserPermission(manager, mDriver.device)
setupService() else -> {
setupService()
DataHolder.usbConnected.postValue(true)
// Ensure fragment is loaded and state is restored
Handler(Looper.getMainLooper()).postDelayed({
(supportFragmentManager.findFragmentById(binding.fgDevice.id) as? UsbTerminalFragment)?.let {
it.loadCommandState()
it.resumeExecution()
}
}, 1000) // Slightly longer delay to ensure stability
isResuming = false
}
} }
} catch (e: Exception) {
Log.e(TAG, "USB Connection Error: ${e.message}")
onErrorReported("USB Connection Failed: ${e.localizedMessage}")
DataHolder.usbConnected.postValue(false)
} }
} }
fun onErrorReported(msg: String) {
Toast.makeText(this, msg, Toast.LENGTH_SHORT).show()
if (!isFinishing) onBackPressed()
}
private fun moveToNext() { private fun moveToNext() {
if (supportFragmentManager.isDestroyed) return if (!supportFragmentManager.isDestroyed) {
supportFragmentManager.beginTransaction()
supportFragmentManager.beginTransaction().replace(binding.fgDevice.id, UsbTerminalFragment()) .replace(binding.fgDevice.id, UsbTerminalFragment())
.commit() .commit()
}
} }
@SuppressLint("MutableImplicitPendingIntent") @SuppressLint("MutableImplicitPendingIntent")
private fun requestUserPermission(manager: UsbManager, device: UsbDevice) { private fun requestUserPermission(manager: UsbManager, device: UsbDevice) {
val mPendingIntent: PendingIntent val mPendingIntent = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.S) { PendingIntent.getBroadcast(
mPendingIntent = PendingIntent.getBroadcast( this, 0,
this, 0, Intent(Constants.HEMOCUBE_USB_PERMISSION), PendingIntent.FLAG_MUTABLE Intent(Constants.HEMOCUBE_USB_PERMISSION),
PendingIntent.FLAG_MUTABLE
) )
} else { } else {
mPendingIntent = PendingIntent.getBroadcast( PendingIntent.getBroadcast(
this, this, 0,
0,
Intent(Constants.HEMOCUBE_USB_PERMISSION), Intent(Constants.HEMOCUBE_USB_PERMISSION),
PendingIntent.FLAG_ONE_SHOT or PendingIntent.FLAG_IMMUTABLE PendingIntent.FLAG_ONE_SHOT or PendingIntent.FLAG_IMMUTABLE
) )
} }
val filter = IntentFilter(Constants.HEMOCUBE_USB_PERMISSION) registerReceiver(
registerReceiver(broadcastReceiver, filter) broadcastReceiver,
IntentFilter(Constants.HEMOCUBE_USB_PERMISSION)
)
manager.requestPermission(device, mPendingIntent) manager.requestPermission(device, mPendingIntent)
} }
fun onErrorReported(msg: String) {
Toast.makeText(this, msg, Toast.LENGTH_SHORT).show()
}
fun setupService() { fun setupService() {
val intent = Intent(this, UsbService::class.java) val intent = Intent(this, UsbService::class.java)
bindService(intent, connection, Context.BIND_AUTO_CREATE) bindService(intent, connection, Context.BIND_AUTO_CREATE)
@@ -184,15 +228,31 @@ class UsbTerminalActivity : AppCompatActivity() {
override fun onCreateOptionsMenu(menu: Menu?): Boolean { override fun onCreateOptionsMenu(menu: Menu?): Boolean {
menuInflater.inflate(R.menu.my_menu, menu) menuInflater.inflate(R.menu.my_menu, menu)
myMenu = menu
return true return true
} }
override fun onDestroy() { override fun onDestroy() {
super.onDestroy() super.onDestroy()
unregisterReceiver(broadcastReceiver)
if (usbTerminalViewModel.isServiceConnected) { if (usbTerminalViewModel.isServiceConnected) {
mService.disconnect() mService.disconnect()
unbindService(connection) unbindService(connection)
usbTerminalViewModel.isServiceConnected = false usbTerminalViewModel.isServiceConnected = false
} }
cleanupUsb()
}
private fun cleanupUsb() {
try {
if (usbTerminalViewModel.isServiceConnected) {
mService.disconnect()
unbindService(connection)
}
} catch (e: Exception) {
Log.e(TAG, "Error during USB cleanup: ${e.message}")
}
mConnection?.close()
mConnection = null
} }
} }

View File

@@ -13,94 +13,276 @@
package com.example.hpostesting.presentation.usb_teminal package com.example.hpostesting.presentation.usb_teminal
// Fragment Class
import android.content.Context import android.content.Context
import android.content.SharedPreferences import android.content.SharedPreferences
import android.os.Bundle import android.os.Bundle
import android.os.Handler
import android.os.Looper
import android.text.method.ScrollingMovementMethod import android.text.method.ScrollingMovementMethod
import android.util.Log
import android.view.LayoutInflater import android.view.LayoutInflater
import android.view.View import android.view.View
import android.view.ViewGroup import android.view.ViewGroup
import androidx.fragment.app.Fragment import androidx.fragment.app.Fragment
import androidx.fragment.app.activityViewModels import androidx.fragment.app.activityViewModels
import androidx.lifecycle.MutableLiveData import androidx.lifecycle.MutableLiveData
import com.example.hpostesting.data.constant.HemoCubeCommands
import com.example.hpostesting.presentation.utils.UsbServiceListener import com.example.hpostesting.presentation.utils.UsbServiceListener
import com.google.firebase.crashlytics.ktx.crashlytics
import com.google.firebase.ktx.Firebase
import `in`.sminnovations.hpostesting.databinding.FragmentUsbTerminalBinding import `in`.sminnovations.hpostesting.databinding.FragmentUsbTerminalBinding
// UsbTerminalFragment.kt
class UsbTerminalFragment : Fragment() { class UsbTerminalFragment : Fragment() {
private lateinit var binding: FragmentUsbTerminalBinding private lateinit var binding: FragmentUsbTerminalBinding
private val usbTerminalViewModel: UsbTerminalViewModel by activityViewModels() private val usbTerminalViewModel: UsbTerminalViewModel by activityViewModels()
private lateinit var sharedPreferences: SharedPreferences private lateinit var sharedPreferences: SharedPreferences
private var startListening = MutableLiveData(false) private var startListening = MutableLiveData(false)
private var resultData: String = "" private var resultData = StringBuilder()
private var commandQueue: MutableList<String> = mutableListOf()
private var currentCommand: String? = null
private var isExecuting = false
companion object {
private const val PREF_COMMAND_QUEUE = "command_queue"
private const val PREF_CURRENT_COMMAND = "current_command"
private const val PREF_RESULT_DATA = "result_data"
private const val PREF_EXECUTION_STATE = "execution_state"
}
override fun onCreateView( override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?, inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
): View { ): View {
binding = FragmentUsbTerminalBinding.inflate(inflater, container, false) binding = FragmentUsbTerminalBinding.inflate(inflater, container, false)
sharedPreferences = sharedPreferences = requireContext().getSharedPreferences("HEMOCUBE", Context.MODE_PRIVATE)
requireContext().getSharedPreferences("HEMOCUBE", Context.MODE_PRIVATE) setupClickListeners()
return binding.root return binding.root
} }
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState) super.onViewCreated(view, savedInstanceState)
initViews() initViews()
loadCommandState()
}
private fun setupClickListeners() {
binding.clearQueueButton.setOnClickListener { clearQueue() }
binding.sendCommand.setOnClickListener {
binding.etCommands.text.toString().trim().let { commands ->
if (commands.isNotEmpty()) {
addToQueue(commands)
binding.etCommands.text.clear()
}
}
}
} }
private fun initViews() { private fun initViews() {
binding.messageCommand.movementMethod = ScrollingMovementMethod() binding.messageCommand.apply {
usbTerminalViewModel.messages.observe(viewLifecycleOwner) { movementMethod = ScrollingMovementMethod()
binding.messageCommand.text = it
} }
binding.sendCommand.setOnClickListener {
callCommand(binding.etCommands.text.trim().toString()) usbTerminalViewModel.messages.observe(viewLifecycleOwner) { message ->
binding.messageCommand.text = message
scrollToBottom()
} }
listenToHemoCube() listenToHemoCube()
callCommand("I") callCommand("I")
} }
private fun callCommand(command: String) { private fun addToQueue(commandStr: String) {
usbTerminalViewModel.progressBar.postValue(true) val commands = if (commandStr.contains(" ")) {
(activity as UsbTerminalActivity).mService.sendAndListenToHemoCubeTxt( commandStr.split("").filter { it.isNotBlank() }
command, } else {
object : UsbServiceListener { listOf(commandStr)
override fun onUsbRead(data: ByteArray?) { }
//nothing
}
override fun onUsbError(e: Exception?) { commandQueue.addAll(commands)
usbTerminalViewModel.progressBar.postValue(false) saveCommandState()
} appendFormattedMessage("\nAdded commands to queue: ${commands.joinToString(" ")}")
}) processNextCommand()
}
fun loadCommandState() {
val prefs = sharedPreferences
prefs.apply {
// Restore command queue
val savedQueue = getStringSet(PREF_COMMAND_QUEUE, setOf())?.toMutableList() ?: mutableListOf()
commandQueue.clear()
commandQueue.addAll(savedQueue)
// Restore current command
currentCommand = getString(PREF_CURRENT_COMMAND, null)
// Restore result data
getString(PREF_RESULT_DATA, null)?.let {
resultData = StringBuilder(it)
usbTerminalViewModel.messages.postValue(it)
}
// Restore execution state
isExecuting = getBoolean(PREF_EXECUTION_STATE, false)
}
}
fun resumeExecution() {
try {
// Force re-establish connection and resume
if (currentCommand != null || commandQueue.isNotEmpty()) {
// Slight delay to ensure USB connection is stable
Handler(Looper.getMainLooper()).postDelayed({
processNextCommand()
}, 500)
}
} catch (e: Exception) {
Log.e("UsbTerminalFragment", "Error resuming execution: ${e.message}")
appendFormattedMessage("Error resuming: ${e.localizedMessage}")
}
}
private fun processNextCommand() {
if (!isExecuting && currentCommand == null && commandQueue.isNotEmpty()) {
currentCommand = commandQueue.removeAt(0)
isExecuting = true
saveCommandState()
callCommand(currentCommand!!)
}
}
private fun callCommand(command: String) {
try {
val usbActivity = activity as? UsbTerminalActivity
usbActivity?.mService?.let { service ->
usbTerminalViewModel.progressBar.postValue(true)
appendFormattedMessage("Sending command: $command \n")
service.sendAndListenToHemoCubeTxt(
command,
object : UsbServiceListener {
override fun onUsbRead(data: ByteArray?) {
// Optional: Handle read if needed
}
override fun onUsbError(e: Exception?) {
activity?.runOnUiThread {
handleCommandError(e)
}
}
}
)
} ?: run {
// If service is not available, log and handle error
Log.e("UsbTerminalFragment", "USB Service not available")
handleCommandError(Exception("USB Service not available"))
}
} catch (e: Exception) {
handleCommandError(e)
}
}
private fun handleCommandError(e: Exception?) {
val errorMessage = e?.localizedMessage ?: "Unknown error"
Log.e("UsbTerminalFragment", "Command error: $errorMessage")
appendFormattedMessage("Error: $errorMessage")
// Ensure we don't completely stop execution
usbTerminalViewModel.progressBar.postValue(false)
isExecuting = false
// Important: Do NOT clear the current command or queue
saveCommandState()
// Try to process next command
processNextCommand()
} }
private fun listenToHemoCube() { private fun listenToHemoCube() {
val fullReadOutput = StringBuilder()
startListening.postValue(true) startListening.postValue(true)
try { try {
(activity as UsbTerminalActivity).mService.listenToHemoCube(object : UsbServiceListener { (activity as? UsbTerminalActivity)?.mService?.listenToHemoCube(
override fun onUsbRead(data: ByteArray?) { object : UsbServiceListener {
data?.let { override fun onUsbRead(data: ByteArray?) {
val stringData = String(it) data?.let { handleUsbData(String(it)) }
fullReadOutput.append(stringData) }
resultData += stringData
usbTerminalViewModel.messages.postValue(resultData) override fun onUsbError(e: Exception?) {
activity?.runOnUiThread {
Log.e("UsbTerminalFragment", "USB Listen Error: ${e?.message}")
// Do not completely stop execution
appendFormattedMessage("USB Listen Error: ${e?.localizedMessage}")
}
} }
} }
)
override fun onUsbError(e: Exception?) {
usbTerminalViewModel.messages.postValue(e!!.localizedMessage)
usbTerminalViewModel.progressBar.postValue(false)
}
})
} catch (e: Exception) { } catch (e: Exception) {
usbTerminalViewModel.messages.postValue(e.localizedMessage) Log.e("UsbTerminalFragment", "Error setting up USB listener: ${e.message}")
Firebase.crashlytics.recordException(e) appendFormattedMessage("Error setting up USB listener: ${e.localizedMessage}")
} }
} }
}
private fun handleUsbData(stringData: String) {
resultData.append(stringData)
activity?.runOnUiThread {
usbTerminalViewModel.messages.postValue(resultData.toString())
scrollToBottom()
if (currentCommand != null && stringData.contains("${currentCommand}C")) {
isExecuting = false
currentCommand = null
if (commandQueue.isEmpty()) {
sharedPreferences.edit().clear().apply()
appendFormattedMessage("\nAll commands completed")
} else {
processNextCommand()
}
saveCommandState()
}
}
}
fun clearQueue() {
commandQueue.clear()
currentCommand = null
isExecuting = false
saveCommandState()
appendFormattedMessage("\nCommand queue cleared")
}
private fun scrollToBottom() {
binding.messageCommand.post {
(binding.messageCommand.layout.getLineTop(binding.messageCommand.lineCount) -
binding.messageCommand.height).takeIf { it > 0 }?.let {
binding.messageCommand.scrollTo(0, it)
}
}
}
private fun appendFormattedMessage(message: String) {
resultData.append("\n").append(message)
usbTerminalViewModel.messages.postValue(resultData.toString())
scrollToBottom()
}
private fun saveCommandState() {
sharedPreferences.edit().apply {
putStringSet(PREF_COMMAND_QUEUE, commandQueue.toSet())
putString(PREF_CURRENT_COMMAND, currentCommand)
putString(PREF_RESULT_DATA, resultData.toString())
putBoolean(PREF_EXECUTION_STATE, isExecuting)
apply()
}
}
override fun onDestroyView() {
super.onDestroyView()
startListening.value = false
clearQueue()
}
}

View File

@@ -23,8 +23,6 @@ import javax.inject.Inject
@HiltViewModel @HiltViewModel
class UsbTerminalViewModel @Inject constructor( class UsbTerminalViewModel @Inject constructor(
private val hemoCubeDao: HemoCubeDao,
private val repository: Repository,
) : ViewModel() { ) : ViewModel() {
var isServiceConnected = false var isServiceConnected = false
val progressBar = MutableLiveData(false) val progressBar = MutableLiveData(false)

View File

@@ -0,0 +1,5 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:autoMirrored="true" android:height="24dp" android:tint="#000000" android:viewportHeight="24" android:viewportWidth="24" android:width="24dp">
<path android:fillColor="@android:color/white" android:pathData="M2.01,21L23,12 2.01,3 2,10l15,2 -15,2z"/>
</vector>

View File

@@ -11,59 +11,51 @@
~ // from ShanMukha Innovations Pvt. Ltd. ~ // from ShanMukha Innovations Pvt. Ltd.
--> -->
<RelativeLayout <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_marginStart="8dp" android:orientation="vertical"
android:layout_marginEnd="8dp" android:padding="16dp">
>
<TextView <Button
android:id="@+id/message_command" android:id="@+id/clearQueueButton"
style="@style/title1_1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dp"
android:gravity="start|bottom"
android:text="Start"
android:scrollbars = "vertical"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true"
android:layout_above="@+id/ll_commands"
android:visibility="visible"
android:textColor="@color/black"
android:textSize="18sp"
/>
<RelativeLayout
android:id="@+id/ll_commands"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_alignParentEnd="true" android:text="Clar All Commands" />
android:layout_alignParentStart="true"
android:layout_alignParentBottom="true" <TextView
android:id="@+id/messageCommand"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@android:color/darker_gray"
android:padding="8dp"
android:scrollbars="vertical"
android:textColor="@android:color/white" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:orientation="horizontal"> android:orientation="horizontal">
<EditText <EditText
android:id="@+id/et_commands" android:id="@+id/etCommands"
android:layout_width="match_parent" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="10dp" android:layout_weight="1"
android:hint="@string/commands" android:hint="Enter command"
android:layout_alignParentStart="true" android:inputType="text"
android:imeOptions="actionDone" android:maxLines="1"
android:textSize="18sp" android:minHeight="48dp" />
android:layout_marginBottom="10dp"
/>
<ImageView
android:id="@+id/send_command"
android:layout_width="32dp"
android:layout_height="26dp"
android:layout_alignParentEnd="true"
android:layout_centerInParent="true"
android:src="@drawable/ic_baseline_send_24"/>
</RelativeLayout>
<Button
android:id="@+id/sendCommand"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:text="Send" />
</RelativeLayout> </LinearLayout>
</LinearLayout>

View File

@@ -12,7 +12,7 @@
--> -->
<resources> <resources>
<string name="app_name">HPOS Testing</string> <string name="app_name">HPOS ALPHA Testing</string>
<string-array name="instrument"> <string-array name="instrument">
<item>TestRight</item> <item>TestRight</item>