Compare commits
2 Commits
review_usb
...
navigation
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b22de3cf8b | ||
|
|
0b6d78dfbb |
7
.gitignore
vendored
7
.gitignore
vendored
@@ -1,7 +1,12 @@
|
|||||||
*.iml
|
*.iml
|
||||||
.gradle
|
.gradle
|
||||||
/local.properties
|
/local.properties
|
||||||
/.idea
|
/.idea/caches
|
||||||
|
/.idea/libraries
|
||||||
|
/.idea/modules.xml
|
||||||
|
/.idea/workspace.xml
|
||||||
|
/.idea/navEditor.xml
|
||||||
|
/.idea/assetWizardSettings.xml
|
||||||
.DS_Store
|
.DS_Store
|
||||||
/build
|
/build
|
||||||
/captures
|
/captures
|
||||||
|
|||||||
101
.gitlab-ci.yml
101
.gitlab-ci.yml
@@ -1,101 +0,0 @@
|
|||||||
# 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
|
|
||||||
|
|
||||||
variables:
|
|
||||||
|
|
||||||
# ANDROID_COMPILE_SDK is the version of Android you're compiling with.
|
|
||||||
# It should match compileSdkVersion.
|
|
||||||
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"
|
|
||||||
|
|
||||||
# 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"
|
|
||||||
|
|
||||||
# Packages installation before running script
|
|
||||||
before_script:
|
|
||||||
- apt-get --quiet update --yes
|
|
||||||
- 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"
|
|
||||||
# Create a new directory at specified location
|
|
||||||
- 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
|
|
||||||
- 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"
|
|
||||||
- export PATH=$PATH:$ANDROID_HOME/cmdline-tools/latest/bin:$ANDROID_HOME/cmdline-tools/tools/bin
|
|
||||||
|
|
||||||
# Nothing fancy here, just checking sdkManager version
|
|
||||||
- sdkmanager --version
|
|
||||||
|
|
||||||
# use yes to accept all licenses
|
|
||||||
- yes | sdkmanager --licenses > /dev/null || true
|
|
||||||
- sdkmanager "platforms;android-${ANDROID_COMPILE_SDK}"
|
|
||||||
- sdkmanager "platform-tools"
|
|
||||||
- sdkmanager "build-tools;${ANDROID_BUILD_TOOLS}"
|
|
||||||
|
|
||||||
# Not necessary, but just for surity
|
|
||||||
- chmod +x ./gradlew
|
|
||||||
|
|
||||||
# Basic android and gradle stuff
|
|
||||||
# Check linting
|
|
||||||
lintDebug:
|
|
||||||
interruptible: true
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- ./gradlew -Pci --console=plain :app:lintDebug -PbuildDir=lint
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- app/lint/reports/lint-results-debug.html
|
|
||||||
expose_as: "lint-report"
|
|
||||||
when: always
|
|
||||||
|
|
||||||
# Make Project
|
|
||||||
assembleDebug:
|
|
||||||
interruptible: true
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- ./gradlew assembleDebug
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- app/build/outputs/
|
|
||||||
|
|
||||||
# Run all tests, if any fails, interrupt the pipeline(fail it)
|
|
||||||
debugTests:
|
|
||||||
needs: [lintDebug, assembleDebug]
|
|
||||||
interruptible: true
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- ./gradlew -Pci --console=plain :app:testDebug
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- app/build/test-results/
|
|
||||||
|
|
||||||
publishTestResults:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- echo "Publishing JUnit test results"
|
|
||||||
needs: [debugTests]
|
|
||||||
artifacts:
|
|
||||||
when: always
|
|
||||||
reports:
|
|
||||||
junit: app/build/test-results/testDebugUnitTest/*.xml
|
|
||||||
2
.idea/compiler.xml
generated
2
.idea/compiler.xml
generated
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="CompilerConfiguration">
|
<component name="CompilerConfiguration">
|
||||||
<bytecodeTargetLevel target="17" />
|
<bytecodeTargetLevel target="11" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
||||||
4
.idea/gradle.xml
generated
4
.idea/gradle.xml
generated
@@ -4,15 +4,15 @@
|
|||||||
<component name="GradleSettings">
|
<component name="GradleSettings">
|
||||||
<option name="linkedExternalProjectsSettings">
|
<option name="linkedExternalProjectsSettings">
|
||||||
<GradleProjectSettings>
|
<GradleProjectSettings>
|
||||||
|
<option name="testRunner" value="GRADLE" />
|
||||||
|
<option name="distributionType" value="DEFAULT_WRAPPED" />
|
||||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||||
<option name="gradleJvm" value="#GRADLE_LOCAL_JAVA_HOME" />
|
|
||||||
<option name="modules">
|
<option name="modules">
|
||||||
<set>
|
<set>
|
||||||
<option value="$PROJECT_DIR$" />
|
<option value="$PROJECT_DIR$" />
|
||||||
<option value="$PROJECT_DIR$/app" />
|
<option value="$PROJECT_DIR$/app" />
|
||||||
</set>
|
</set>
|
||||||
</option>
|
</option>
|
||||||
<option name="resolveExternalAnnotations" value="false" />
|
|
||||||
</GradleProjectSettings>
|
</GradleProjectSettings>
|
||||||
</option>
|
</option>
|
||||||
</component>
|
</component>
|
||||||
|
|||||||
6
.idea/kotlinc.xml
generated
6
.idea/kotlinc.xml
generated
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="KotlinJpsPluginSettings">
|
|
||||||
<option name="version" value="1.8.21" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
40
.idea/misc.xml
generated
Normal file
40
.idea/misc.xml
generated
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="DesignSurface">
|
||||||
|
<option name="filePathToZoomLevelMap">
|
||||||
|
<map>
|
||||||
|
<entry key="app/src/main/res/drawable/ic_baseline_cancel_24.xml" value="0.1965" />
|
||||||
|
<entry key="app/src/main/res/drawable/ic_baseline_check_circle_24.xml" value="0.243" />
|
||||||
|
<entry key="app/src/main/res/drawable/ic_baseline_dot_24.xml" value="0.1785" />
|
||||||
|
<entry key="app/src/main/res/drawable/ic_baseline_file_download_24.xml" value="0.243" />
|
||||||
|
<entry key="app/src/main/res/drawable/ic_baseline_home_24.xml" value="0.243" />
|
||||||
|
<entry key="app/src/main/res/drawable/ic_baseline_new_label_24.xml" value="0.243" />
|
||||||
|
<entry key="app/src/main/res/drawable/ic_baseline_usb_24.xml" value="0.157" />
|
||||||
|
<entry key="app/src/main/res/drawable/ic_baseline_usb_off_24.xml" value="0.157" />
|
||||||
|
<entry key="app/src/main/res/drawable/progressbar_drawable.xml" value="0.1885" />
|
||||||
|
<entry key="app/src/main/res/drawable/result_background_green.xml" value="0.243" />
|
||||||
|
<entry key="app/src/main/res/drawable/result_background_red.xml" value="0.1785" />
|
||||||
|
<entry key="app/src/main/res/drawable/result_background_tellow.xml" value="0.1785" />
|
||||||
|
<entry key="app/src/main/res/font/inter_bold.xml" value="0.33487179487179486" />
|
||||||
|
<entry key="app/src/main/res/layout/activity_main.xml" value="0.165" />
|
||||||
|
<entry key="app/src/main/res/layout/activity_splash.xml" value="0.24375" />
|
||||||
|
<entry key="app/src/main/res/layout/activity_test_right.xml" value="0.24375" />
|
||||||
|
<entry key="app/src/main/res/layout/fragment_test_right_exp_reference.xml" value="0.25" />
|
||||||
|
<entry key="app/src/main/res/layout/fragment_test_right_exp_sample.xml" value="0.25" />
|
||||||
|
<entry key="app/src/main/res/layout/fragment_test_right_process.xml" value="0.24375" />
|
||||||
|
<entry key="app/src/main/res/layout/fragment_test_right_results.xml" value="0.25" />
|
||||||
|
<entry key="app/src/main/res/layout/table_item.xml" value="0.22407407407407406" />
|
||||||
|
<entry key="app/src/main/res/menu/menu.xml" value="0.25" />
|
||||||
|
<entry key="app/src/main/res/menu/my_menu.xml" value="0.25" />
|
||||||
|
<entry key="app/src/main/res/mipmap-anydpi-v26/hpos_icon.xml" value="0.1505" />
|
||||||
|
<entry key="app/src/main/res/mipmap-anydpi-v26/hpos_icon_round.xml" value="0.1505" />
|
||||||
|
</map>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="Android Studio default JDK" project-jdk-type="JavaSDK">
|
||||||
|
<output url="file://$PROJECT_DIR$/build/classes" />
|
||||||
|
</component>
|
||||||
|
<component name="ProjectType">
|
||||||
|
<option name="id" value="Android" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
3
app/.gitignore
vendored
3
app/.gitignore
vendored
@@ -1,4 +1,3 @@
|
|||||||
/build
|
/build
|
||||||
/release
|
/google-services.json
|
||||||
/google-services*
|
|
||||||
/idea
|
/idea
|
||||||
157
app/build.gradle
157
app/build.gradle
@@ -2,30 +2,23 @@ plugins {
|
|||||||
id 'com.android.application'
|
id 'com.android.application'
|
||||||
id 'org.jetbrains.kotlin.android'
|
id 'org.jetbrains.kotlin.android'
|
||||||
id 'com.google.firebase.appdistribution'
|
id 'com.google.firebase.appdistribution'
|
||||||
id 'dagger.hilt.android.plugin'
|
|
||||||
id 'com.google.gms.google-services'
|
id 'com.google.gms.google-services'
|
||||||
id 'androidx.navigation.safeargs.kotlin'
|
|
||||||
id 'kotlin-kapt'
|
|
||||||
id 'com.google.firebase.crashlytics'
|
|
||||||
}
|
}
|
||||||
//apply plugin: 'kotlin-android'
|
//apply plugin: 'kotlin-android'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdk 34
|
compileSdk 32
|
||||||
namespace 'in.sminnovations.hpostesting'
|
|
||||||
|
|
||||||
// dev -> development, quality -> qc, uat -> User Acceptance Testing, preprod -> preproduction, prod -> production, iocl -> iocl-iisc production
|
|
||||||
// server -> for server switching for internal test
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "in.sminnovations.hpostesting.server"
|
applicationId "com.example.hpos"
|
||||||
minSdk 21
|
minSdk 21
|
||||||
targetSdk 34
|
targetSdk 32
|
||||||
versionCode 130
|
versionCode 1
|
||||||
versionName "2.1.130"
|
versionName "1.0"
|
||||||
|
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
minifyEnabled false
|
minifyEnabled false
|
||||||
@@ -33,143 +26,41 @@ android {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_17
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
targetCompatibility JavaVersion.VERSION_17
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
}
|
}
|
||||||
kotlinOptions {
|
kotlinOptions {
|
||||||
jvmTarget = '17'
|
jvmTarget = '1.8'
|
||||||
}
|
}
|
||||||
dataBinding {
|
dataBinding {
|
||||||
enabled = true
|
enabled = true
|
||||||
}
|
}
|
||||||
buildFeatures {
|
|
||||||
viewBinding true
|
|
||||||
buildConfig = true
|
|
||||||
}
|
|
||||||
lint {
|
|
||||||
abortOnError false
|
|
||||||
checkReleaseBuilds false
|
|
||||||
}
|
|
||||||
packagingOptions {
|
|
||||||
exclude 'mockito-extensions/org.mockito.plugins.MockMaker'
|
|
||||||
}
|
|
||||||
// testOptions {
|
|
||||||
// unitTests {
|
|
||||||
// includeAndroidResources = true
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation "com.google.dagger:hilt-android:2.46"
|
|
||||||
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"
|
|
||||||
|
|
||||||
implementation 'androidx.core:core-ktx:1.12.0'
|
implementation 'androidx.core:core-ktx:1.7.0'
|
||||||
implementation 'androidx.appcompat:appcompat:1.6.1'
|
implementation 'androidx.appcompat:appcompat:1.5.1'
|
||||||
implementation 'com.google.android.material:material:1.11.0'
|
implementation 'com.google.android.material:material:1.7.0'
|
||||||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
||||||
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.7.0'
|
|
||||||
implementation 'androidx.fragment:fragment-ktx:1.6.2'
|
|
||||||
|
|
||||||
//firebase
|
|
||||||
implementation platform('com.google.firebase:firebase-bom:32.1.0')
|
|
||||||
implementation("com.google.firebase:firebase-perf-ktx")
|
|
||||||
implementation("com.google.firebase:firebase-crashlytics-ktx")
|
|
||||||
implementation("com.google.firebase:firebase-config-ktx")
|
|
||||||
implementation("com.google.firebase:firebase-analytics-ktx")
|
|
||||||
implementation 'com.google.firebase:firebase-firestore-ktx'
|
|
||||||
implementation 'com.google.firebase:firebase-auth-ktx'
|
|
||||||
implementation 'com.google.firebase:firebase-storage-ktx'
|
|
||||||
implementation 'com.firebaseui:firebase-ui-firestore:8.0.2'
|
|
||||||
implementation 'com.google.android.gms:play-services-auth:21.0.0'
|
|
||||||
implementation 'com.google.android.gms:play-services-location:21.1.0'
|
|
||||||
implementation 'com.google.android.gms:play-services-ads-identifier:18.0.1'
|
|
||||||
implementation 'com.google.android.things:androidthings:1.0'
|
|
||||||
implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta12'
|
|
||||||
implementation("com.google.firebase:firebase-appdistribution-api-ktx:16.0.0-beta12")
|
|
||||||
implementation 'androidx.preference:preference-ktx:1.2.1'
|
|
||||||
implementation 'androidx.preference:preference-ktx:1.2.1'
|
|
||||||
implementation 'io.nats:jnats:2.11.4'
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Testing
|
|
||||||
testImplementation 'junit:junit:4.13.2'
|
testImplementation 'junit:junit:4.13.2'
|
||||||
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
||||||
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
|
||||||
androidTestImplementation 'com.android.support.test:rules:1.0.2'
|
|
||||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
||||||
testImplementation "androidx.work:work-testing:2.9.0"
|
|
||||||
androidTestImplementation 'androidx.test:core-ktx:1.5.0'
|
|
||||||
testImplementation 'androidx.fragment:fragment-testing:1.6.2'
|
|
||||||
testImplementation "org.robolectric:robolectric:4.7"
|
|
||||||
|
|
||||||
// mockk
|
|
||||||
testImplementation 'io.mockk:mockk:1.10.6'
|
|
||||||
|
|
||||||
// Mockito dependencies
|
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1"
|
||||||
testImplementation 'org.mockito:mockito-core:3.12.4'
|
implementation 'com.opencsv:opencsv:4.6'
|
||||||
androidTestImplementation 'org.mockito:mockito-android:3.12.4'
|
implementation 'com.github.mik3y:usb-serial-for-android:3.4.6'
|
||||||
androidTestImplementation 'org.mockito:mockito-inline:3.12.4'
|
|
||||||
androidTestImplementation 'org.mockito:mockito-android:3.12.4'
|
|
||||||
testImplementation 'org.powermock:powermock-api-mockito2:2.0.9'
|
|
||||||
testImplementation 'org.powermock:powermock-module-junit4:2.0.9'
|
|
||||||
|
|
||||||
testImplementation "androidx.arch.core:core-testing:2.2.0"
|
implementation "androidx.fragment:fragment-ktx:1.5.5"
|
||||||
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.1'
|
|
||||||
|
|
||||||
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0"
|
implementation 'com.opencsv:opencsv:4.6'
|
||||||
implementation 'com.opencsv:opencsv:5.9'
|
|
||||||
implementation 'com.github.mik3y:usb-serial-for-android:3.8.0'
|
|
||||||
|
|
||||||
implementation "androidx.fragment:fragment-ktx:1.6.2"
|
// implementation 'androidx.appcompat:appcompat:1.1.0'
|
||||||
// CSV read, write
|
// implementation "androidx.core:core-ktx:+"
|
||||||
implementation 'com.opencsv:opencsv:5.9'
|
// implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||||
|
|
||||||
// Barcode scanner
|
}
|
||||||
implementation 'com.journeyapps:zxing-android-embedded:4.3.0'
|
//repositories {
|
||||||
|
// mavenCentral()
|
||||||
// Google ML Kit using play services
|
//}
|
||||||
implementation 'com.google.android.gms:play-services-code-scanner:16.1.0'
|
|
||||||
|
|
||||||
//Room
|
|
||||||
implementation "androidx.room:room-ktx:2.6.1"
|
|
||||||
implementation "androidx.room:room-runtime:2.6.1"
|
|
||||||
kapt ("androidx.room:room-compiler:2.6.1")
|
|
||||||
implementation "net.zetetic:android-database-sqlcipher:4.4.0"
|
|
||||||
|
|
||||||
//image
|
|
||||||
implementation 'com.github.bumptech.glide:glide:4.13.2'
|
|
||||||
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.2'
|
|
||||||
|
|
||||||
// Navigation Component
|
|
||||||
implementation "androidx.navigation:navigation-fragment-ktx:2.7.7"
|
|
||||||
implementation "androidx.navigation:navigation-ui-ktx:2.7.7"
|
|
||||||
|
|
||||||
//Dagger - Hilt
|
|
||||||
implementation "com.google.dagger:hilt-android:2.46"
|
|
||||||
kapt "com.google.dagger:hilt-android-compiler:2.46"
|
|
||||||
kapt "androidx.hilt:hilt-compiler:1.1.0"
|
|
||||||
|
|
||||||
// Retrofit + GSON
|
|
||||||
implementation "com.squareup.retrofit2:retrofit:2.9.0"
|
|
||||||
implementation "com.squareup.retrofit2:converter-gson:2.9.0"
|
|
||||||
implementation("com.squareup.okhttp3:okhttp:4.9.3")
|
|
||||||
|
|
||||||
implementation "androidx.preference:preference-ktx:1.2.1"
|
|
||||||
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1'
|
|
||||||
|
|
||||||
implementation("androidx.work:work-runtime-ktx:2.9.0")
|
|
||||||
|
|
||||||
// implementation("io.nats:jnats:2.11.2")
|
|
||||||
// implementation 'com.google.android.play:core:1.10.3'
|
|
||||||
|
|
||||||
implementation fileTree(dir: 'libs', include: ['*.aar'])
|
|
||||||
implementation 'io.nats:jnats:2.11.4'
|
|
||||||
implementation 'org.apache.commons:commons-math3:3.6.1'
|
|
||||||
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.17'
|
|
||||||
implementation 'androidx.security:security-crypto:1.1.0-alpha03'
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
{
|
|
||||||
"project_info": {
|
|
||||||
"project_number": "650071678820",
|
|
||||||
"project_id": "hpos-af3cc",
|
|
||||||
"storage_bucket": "hpos-af3cc.appspot.com"
|
|
||||||
},
|
|
||||||
"client": [
|
|
||||||
{
|
|
||||||
"client_info": {
|
|
||||||
"mobilesdk_app_id": "1:650071678820:android:f6fd45e2f6a63aef6c6471",
|
|
||||||
"android_client_info": {
|
|
||||||
"package_name": "in.sminnovations.hpostesting.server"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"oauth_client": [
|
|
||||||
{
|
|
||||||
"client_id": "650071678820-to41afi9f0gi5r3k6v7pe1e5p96nupcs.apps.googleusercontent.com",
|
|
||||||
"client_type": 3
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"api_key": [
|
|
||||||
{
|
|
||||||
"current_key": "AIzaSyAVdNGCev_AFX0qmuZJF6kxzRzXUTeAW5I"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"services": {
|
|
||||||
"appinvite_service": {
|
|
||||||
"other_platform_oauth_client": [
|
|
||||||
{
|
|
||||||
"client_id": "650071678820-to41afi9f0gi5r3k6v7pe1e5p96nupcs.apps.googleusercontent.com",
|
|
||||||
"client_type": 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"configuration_version": "1"
|
|
||||||
}
|
|
||||||
Binary file not shown.
@@ -1,37 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 3,
|
|
||||||
"artifactType": {
|
|
||||||
"type": "APK",
|
|
||||||
"kind": "Directory"
|
|
||||||
},
|
|
||||||
"applicationId": "in.sminnovations.hpostesting.dev",
|
|
||||||
"variantName": "release",
|
|
||||||
"elements": [
|
|
||||||
{
|
|
||||||
"type": "SINGLE",
|
|
||||||
"filters": [],
|
|
||||||
"attributes": [],
|
|
||||||
"versionCode": 127,
|
|
||||||
"versionName": "2.1.127",
|
|
||||||
"outputFile": "app-release.apk"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"elementType": "File",
|
|
||||||
"baselineProfiles": [
|
|
||||||
{
|
|
||||||
"minApi": 28,
|
|
||||||
"maxApi": 30,
|
|
||||||
"baselineProfiles": [
|
|
||||||
"baselineProfiles/1/app-release.dm"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"minApi": 31,
|
|
||||||
"maxApi": 2147483647,
|
|
||||||
"baselineProfiles": [
|
|
||||||
"baselineProfiles/0/app-release.dm"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"minSdkVersionForDexing": 21
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
package com.example.hpos
|
||||||
|
|
||||||
|
import androidx.test.platform.app.InstrumentationRegistry
|
||||||
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||||
|
|
||||||
|
import org.junit.Test
|
||||||
|
import org.junit.runner.RunWith
|
||||||
|
|
||||||
|
import org.junit.Assert.*
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Instrumented test, which will execute on an Android device.
|
||||||
|
*
|
||||||
|
* See [testing documentation](http://d.android.com/tools/testing).
|
||||||
|
*/
|
||||||
|
@RunWith(AndroidJUnit4::class)
|
||||||
|
class ExampleInstrumentedTest {
|
||||||
|
@Test
|
||||||
|
fun useAppContext() {
|
||||||
|
// Context of the app under test.
|
||||||
|
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
|
||||||
|
assertEquals("com.example.refactoredapp", appContext.packageName)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,55 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting
|
|
||||||
|
|
||||||
import androidx.test.core.app.ActivityScenario
|
|
||||||
import androidx.test.espresso.Espresso.onView
|
|
||||||
import androidx.test.espresso.matcher.ViewMatchers.withId
|
|
||||||
|
|
||||||
import androidx.test.ext.junit.runners.AndroidJUnit4
|
|
||||||
//import com.example.hpostesting.R
|
|
||||||
import com.example.hpostesting.presentation.assurance.AssuranceControlsActivity
|
|
||||||
import `in`.sminnovations.hpostesting.databinding.ActivityAssuranceControlsBinding
|
|
||||||
import org.junit.Test
|
|
||||||
import org.junit.runner.RunWith
|
|
||||||
|
|
||||||
import org.junit.Assert.*
|
|
||||||
|
|
||||||
@RunWith(AndroidJUnit4::class)
|
|
||||||
class AssuranceControlsActivityTest {
|
|
||||||
//
|
|
||||||
// @Test
|
|
||||||
// fun testViewBinding() {
|
|
||||||
// val activityScenario = ActivityScenario.launch(AssuranceControlsActivity::class.java)
|
|
||||||
// activityScenario.onActivity { activity ->
|
|
||||||
// assertNotNull(activity.binding)
|
|
||||||
// assertEquals(ActivityAssuranceControlsBinding::class.java, activity.binding.javaClass)
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// @Test
|
|
||||||
// fun testSharedPreferencesInitialization() {
|
|
||||||
// val activityScenario = ActivityScenario.launch(AssuranceControlsActivity::class.java)
|
|
||||||
// activityScenario.onActivity { activity ->
|
|
||||||
// assertNotNull(activity.sharedPreference)
|
|
||||||
// assertEquals("HEMOCUBE", activity.sharedPreference.getString("HEMOCUBE", null))
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// @Test
|
|
||||||
// fun testFragmentTransaction() {
|
|
||||||
// val activityScenario = ActivityScenario.launch(AssuranceControlsActivity::class.java)
|
|
||||||
// onView(withId(R.id.fgAssuranceControls)).check(matches(isDisplayed())) // Using Espresso for UI verification
|
|
||||||
// }
|
|
||||||
}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting
|
|
||||||
|
|
||||||
import androidx.test.ext.junit.runners.AndroidJUnit4
|
|
||||||
import androidx.test.platform.app.InstrumentationRegistry
|
|
||||||
import org.junit.Assert.*
|
|
||||||
import org.junit.Test
|
|
||||||
import org.junit.runner.RunWith
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Instrumented test, which will execute on an Android device.
|
|
||||||
*
|
|
||||||
* See [testing documentation](http://d.android.com/tools/testing).
|
|
||||||
*/
|
|
||||||
@RunWith(AndroidJUnit4::class)
|
|
||||||
class ExampleInstrumentedTest {
|
|
||||||
@Test
|
|
||||||
fun useAppContext() {
|
|
||||||
// Context of the app under test.
|
|
||||||
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
|
|
||||||
// assertEquals("com.example.refactoredapp", appContext.packageName)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
<!--
|
|
||||||
~ // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
~ // Notice: All information contained herein is, and remains
|
|
||||||
~ // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
~ // if any. The intellectual and technical concepts contained
|
|
||||||
~ // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
~ // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
~ // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
~ // Dissemination of this information or reproduction of this material
|
|
||||||
~ // is strictly forbidden unless prior written permission is obtained
|
|
||||||
~ // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
-->
|
|
||||||
|
|
||||||
<vector android:height="24dp" android:tint="@color/primary"
|
|
||||||
android:viewportHeight="24" android:viewportWidth="24"
|
|
||||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
||||||
<path android:fillColor="@color/primary" android:pathData="M19,9h-4V3H9v6H5l7,7 7,-7zM5,18v2h14v-2H5z"/>
|
|
||||||
</vector>
|
|
||||||
@@ -1,206 +1,57 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools">
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
package="com.example.hpos">
|
||||||
|
|
||||||
<uses-permission
|
|
||||||
android:name="android.permission.AUTHENTICATE_ACCOUNTS"
|
|
||||||
android:maxSdkVersion="22" />
|
|
||||||
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
|
||||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||||
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
|
||||||
<uses-permission
|
|
||||||
android:name="android.permission.BATTERY_STATS"
|
|
||||||
tools:ignore="ProtectedPermissions" />
|
|
||||||
|
|
||||||
<uses-feature android:name="android.hardware.camera" />
|
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.CAMERA" />
|
|
||||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
||||||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
||||||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
||||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
||||||
|
|
||||||
<uses-feature android:name="android.hardware.usb.host" />
|
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.USB_PERMISSION" />
|
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
|
||||||
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
|
|
||||||
<uses-permission android:name="android.permission.ACCOUNT_MANAGER"
|
|
||||||
tools:ignore="ProtectedPermissions" />
|
|
||||||
|
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:name="com.example.hpostesting.HPOSTestingApplication"
|
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
android:dataExtractionRules="@xml/data_extraction_rules"
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
||||||
android:fullBackupContent="@xml/backup_rules"
|
android:fullBackupContent="@xml/backup_rules"
|
||||||
android:icon="@mipmap/hpos_icon"
|
android:icon="@mipmap/hpos_icon"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:largeHeap="true"
|
|
||||||
android:roundIcon="@mipmap/hpos_icon_round"
|
android:roundIcon="@mipmap/hpos_icon_round"
|
||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
android:theme="@style/Theme.HPOSTesting"
|
android:theme="@style/Theme.HPOS"
|
||||||
tools:targetApi="31">
|
tools:targetApi="31">
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.dashboard.UpdateValuesActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:screenOrientation="portrait"/>
|
|
||||||
|
|
||||||
<service
|
<service
|
||||||
android:name="com.example.hpostesting.util.MyAuthenticatorService"
|
android:name="com.example.hpos.presentation.testRight.UsbService"
|
||||||
android:exported="true"
|
|
||||||
android:permission="android.permission.BIND_AUTOFILL_SERVICE">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.accounts.AccountAuthenticator" />
|
|
||||||
</intent-filter>
|
|
||||||
|
|
||||||
<meta-data
|
|
||||||
android:name="android.accounts.AccountAuthenticator"
|
|
||||||
android:resource="@xml/authenticator" />
|
|
||||||
</service>
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.dashboard.ui.PasswordResetActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:screenOrientation="portrait" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.usb_teminal.UsbTerminalActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:launchMode="singleInstance"
|
|
||||||
android:screenOrientation="portrait" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.deviceinfo.DeviceActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:theme="@style/Theme.HPOS.NoActionBar" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.hemocube.DigitalCardActivity"
|
|
||||||
android:exported="false" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.diagnostics.DiagnosticsActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:theme="@style/Theme.HPOS.NoActionBar" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.hb_test.HBTestActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:theme="@style/Theme.HPOS.NoActionBar" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.autodac.AutoDacActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:theme="@style/Theme.HPOS.NoActionBar" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.jig.JigActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:theme="@style/Theme.HPOS.NoActionBar" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.deviceprovision.DeviceProvisionActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:theme="@style/Theme.HPOS.NoActionBar" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.calibration.CalibrationActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:theme="@style/Theme.HPOS.NoActionBar" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.assurance.AssuranceControlsActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:screenOrientation="portrait"
|
|
||||||
android:theme="@style/Theme.HPOS.NoActionBar" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.hemocube.HemocubeActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:noHistory="true"
|
|
||||||
android:parentActivityName="com.example.hpostesting.presentation.MainActivity"
|
|
||||||
android:screenOrientation="portrait"
|
|
||||||
android:theme="@style/Theme.HPOS.NoActionBar"
|
|
||||||
android:windowSoftInputMode="adjustPan" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.trueheme.TrueHemeActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:noHistory="true"
|
|
||||||
android:parentActivityName="com.example.hpostesting.presentation.MainActivity"
|
|
||||||
android:theme="@style/Theme.HPOS.NoActionBar"
|
|
||||||
android:windowSoftInputMode="adjustPan" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.buffercheck.HemocubeBufferCheckActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:noHistory="true"
|
|
||||||
android:parentActivityName="com.example.hpostesting.presentation.MainActivity"
|
|
||||||
android:theme="@style/Theme.HPOS.NoActionBar"
|
|
||||||
android:windowSoftInputMode="adjustPan" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.KitScanActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:noHistory="true"
|
|
||||||
android:theme="@style/Theme.HPOS.NoActionBar" />
|
|
||||||
<activity
|
|
||||||
android:name="com.example.hpostesting.presentation.dashboard.DashboardActivity"
|
|
||||||
android:exported="true"
|
|
||||||
android:permission=""
|
|
||||||
android:label="@string/title_activity_dashboard"
|
|
||||||
android:screenOrientation="portrait"
|
|
||||||
android:theme="@style/Theme.HPOS.NoActionBar"
|
|
||||||
tools:ignore="AppLinkUrlError,MissingClass">
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.VIEW" />
|
|
||||||
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
|
|
||||||
<data android:scheme="content" />
|
|
||||||
<data android:scheme="file" />
|
|
||||||
<data android:mimeType="application/vnd.android.package-archive" />
|
|
||||||
</intent-filter>
|
|
||||||
</activity>
|
|
||||||
|
|
||||||
<service
|
|
||||||
android:name="com.example.hpostesting.util.UsbService"
|
|
||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
android:exported="false" />
|
android:exported="false" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.example.hpostesting.presentation.SplashActivity"
|
android:name="com.example.hpos.presentation.SplashActivity"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:noHistory="true"
|
android:noHistory="true"
|
||||||
android:theme="@style/AppTheme.NoActionBar">
|
android:theme="@style/AppTheme.NoActionBar">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
|
||||||
<category android:name="android.intent.category.HOME" />
|
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
|
||||||
<category android:name="android.intent.category.MONKEY" />
|
|
||||||
<category android:name="android.intent.category.LAUNCHER_APP" />
|
|
||||||
</intent-filter>
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.MAIN" />
|
|
||||||
|
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.example.hpostesting.presentation.testRight.TestRightActivity"
|
android:name="com.example.hpos.presentation.testRight.TestRightActivity"
|
||||||
android:exported="true"
|
android:exported="false"
|
||||||
android:noHistory="true"
|
android:windowSoftInputMode="adjustPan"
|
||||||
android:permission=""
|
android:parentActivityName="com.example.hpos.presentation.MainActivity">
|
||||||
android:parentActivityName="com.example.hpostesting.presentation.MainActivity"
|
<!-- <intent-filter>-->
|
||||||
android:theme="@style/Theme.HPOS.NoActionBar"
|
<!-- <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />-->
|
||||||
android:windowSoftInputMode="adjustPan">
|
<!-- </intent-filter>-->
|
||||||
|
|
||||||
<!-- <intent-filter> -->
|
<!-- <meta-data-->
|
||||||
<!-- <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> -->
|
<!-- android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"-->
|
||||||
<!-- </intent-filter> -->
|
<!-- android:resource="@xml/device_filter" />-->
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
<!-- android:theme="@style/Theme.HPOS.ActionBar"-->
|
||||||
<!-- <meta-data -->
|
|
||||||
<!-- android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" -->
|
|
||||||
<!-- android:resource="@xml/device_filter" /> -->
|
|
||||||
</activity> <!-- android:theme="@style/Theme.HPOS.ActionBar" -->
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.example.hpostesting.presentation.MainActivity"
|
android:name="com.example.hpos.presentation.MainActivity"
|
||||||
android:exported="true"
|
android:exported="true">
|
||||||
android:permission=""
|
|
||||||
android:screenOrientation="portrait"
|
|
||||||
android:launchMode="singleInstance"
|
|
||||||
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" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
@@ -208,21 +59,9 @@
|
|||||||
<meta-data
|
<meta-data
|
||||||
android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
|
android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
|
||||||
android:resource="@xml/device_filter" />
|
android:resource="@xml/device_filter" />
|
||||||
|
|
||||||
</activity>
|
</activity>
|
||||||
<activity
|
|
||||||
android:name="com.journeyapps.barcodescanner.CaptureActivity"
|
|
||||||
android:screenOrientation="portrait"
|
|
||||||
android:stateNotNeeded="true"
|
|
||||||
tools:replace="android:screenOrientation" /> <!-- ${applicationId} -->
|
|
||||||
<provider
|
|
||||||
android:name="androidx.core.content.FileProvider"
|
|
||||||
android:authorities="${applicationId}.fileprovider"
|
|
||||||
android:exported="false"
|
|
||||||
android:grantUriPermissions="true">
|
|
||||||
<meta-data
|
|
||||||
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
||||||
android:resource="@xml/file_paths" />
|
|
||||||
</provider>
|
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
#
|
|
||||||
# // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
# // Notice: All information contained herein is, and remains
|
|
||||||
# // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
# // if any. The intellectual and technical concepts contained
|
|
||||||
# // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
# // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
# // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
# // Dissemination of this information or reproduction of this material
|
|
||||||
# // is strictly forbidden unless prior written permission is obtained
|
|
||||||
# // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
#
|
|
||||||
|
|
||||||
BASE_URL= https://datacollection.micropcr.com/api/
|
|
||||||
11
app/src/main/java/com/example/hpos/MyApplication.kt
Normal file
11
app/src/main/java/com/example/hpos/MyApplication.kt
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
package com.example.hpos
|
||||||
|
|
||||||
|
import android.app.Application
|
||||||
|
|
||||||
|
class MyApplication : Application() {
|
||||||
|
|
||||||
|
// private val sampleDetails = PatientDetails("Change it later");
|
||||||
|
// fun getSampleDetails() : PatientDetails = sampleDetails
|
||||||
|
// fun setSampleDetails(sample: SampleDetails) {sampleDetails = sample}
|
||||||
|
|
||||||
|
}
|
||||||
27
app/src/main/java/com/example/hpos/data/DataHolder.kt
Normal file
27
app/src/main/java/com/example/hpos/data/DataHolder.kt
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
package com.example.hpos.data
|
||||||
|
|
||||||
|
import androidx.lifecycle.MutableLiveData
|
||||||
|
import com.example.hpos.data.model.TestRightDeviceConstants
|
||||||
|
import com.example.hpos.data.model.TestType
|
||||||
|
|
||||||
|
object DataHolder {
|
||||||
|
|
||||||
|
var selectedTestType: TestType = TestType.SICKLECERT
|
||||||
|
|
||||||
|
val usbConnected = MutableLiveData(true)
|
||||||
|
|
||||||
|
var isStoragePermissionGranted = false
|
||||||
|
var isAppFolderCreated = false
|
||||||
|
var appFolderPath = ""
|
||||||
|
var isReferenceTaken = false
|
||||||
|
var sampleReadCounter = 0
|
||||||
|
|
||||||
|
var deviceConstant: TestRightDeviceConstants? = null
|
||||||
|
var deviceSerialNumber: String = "ABCD"
|
||||||
|
|
||||||
|
/* Contains wavelength -> pixel no.*/
|
||||||
|
val wavelengthToPixelArray = ArrayList<Double>()
|
||||||
|
|
||||||
|
/* (For reference/baseline) Contains pixel no. -> Intensity of light falling on that pixel */
|
||||||
|
val intensityReferenceArray = ArrayList<Double>()
|
||||||
|
}
|
||||||
@@ -1,17 +1,4 @@
|
|||||||
/*
|
package com.example.hpos.data
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.util
|
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.SharedPreferences
|
import android.content.SharedPreferences
|
||||||
7
app/src/main/java/com/example/hpos/data/Repository.kt
Normal file
7
app/src/main/java/com/example/hpos/data/Repository.kt
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
package com.example.hpos.data
|
||||||
|
|
||||||
|
import com.example.hpos.data.model.TestInfo
|
||||||
|
|
||||||
|
interface Repository {
|
||||||
|
suspend fun saveToDatabase(info: TestInfo)
|
||||||
|
}
|
||||||
12
app/src/main/java/com/example/hpos/data/RepositoryImpl.kt
Normal file
12
app/src/main/java/com/example/hpos/data/RepositoryImpl.kt
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
package com.example.hpos.data
|
||||||
|
|
||||||
|
import com.example.hpos.data.model.TestInfo
|
||||||
|
|
||||||
|
class RepositoryImpl : Repository {
|
||||||
|
|
||||||
|
override suspend fun saveToDatabase(info: TestInfo) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
package com.example.hpos.data.constant
|
||||||
|
|
||||||
|
object Constants {
|
||||||
|
const val ACTION_USB_PERMISSION = "shanmukha.in.sickle_cell.USB_PERMISSION"
|
||||||
|
|
||||||
|
const val WRITE_TIMEOUT_MILLIS = 30000 // 30 sec
|
||||||
|
const val READ_TIMEOUT_MILLIS = 60000 // 1 min
|
||||||
|
const val DELAY_BETWEEN_COMMANDS: Long = 1000
|
||||||
|
|
||||||
|
const val TEST_RIGHT_TOTAL_PIXEL = 3694
|
||||||
|
|
||||||
|
const val MAXIMUM_TEST_ALLOWED_BEFORE_REFERENCE = 9999
|
||||||
|
|
||||||
|
const val RANGE_IN_RESULT_CALCULATIONS = 10
|
||||||
|
|
||||||
|
const val WAVELENGTH_OF_INTEREST_ONE = 427
|
||||||
|
const val WAVELENGTH_OF_INTEREST_TWO = 555
|
||||||
|
|
||||||
|
const val MIN_WAVELENGTH_RANGE_TO_RECORD = 350
|
||||||
|
const val MAX_WAVELENGTH_RANGE_TO_RECORD = 750
|
||||||
|
|
||||||
|
const val DEVICE_PRODUCT_ID = 24597
|
||||||
|
const val DEVICE_VENDOR_ID = 1027
|
||||||
|
|
||||||
|
const val ERROR_NORMAL = 400
|
||||||
|
const val ERROR_CRITICAL = 401
|
||||||
|
|
||||||
|
const val NO_OF_TIMES_TO_RUN_SAMPLE = 1
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
package com.example.hpos.data.constant
|
||||||
|
|
||||||
|
enum class TestRightCommands(val command: String) {
|
||||||
|
led2Set50("led2 50\r"),
|
||||||
|
led2Set100("led2 100\r"),
|
||||||
|
read("read\r"),
|
||||||
|
autoset("autoset\r"),
|
||||||
|
run("run\r"),
|
||||||
|
printInRange("print 239 339\r"),
|
||||||
|
printAll("print\r"),
|
||||||
|
testByEnter("\n\r")
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
package com.example.hpos.data.model
|
||||||
|
|
||||||
|
data class CalculationVariableForTest(
|
||||||
|
var pixelNo: Int,
|
||||||
|
var wavelength: Double,
|
||||||
|
var invertedPixelNo: Int,
|
||||||
|
var I0: Double,
|
||||||
|
var I: Double,
|
||||||
|
var absorbance: Double)
|
||||||
|
{
|
||||||
|
constructor() : this(0, 0.0, 0, 0.0, 0.0, 0.0)
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
package com.example.hpos.data.model
|
||||||
|
|
||||||
|
data class ErrorMessage (
|
||||||
|
val message: String,
|
||||||
|
val code: Int
|
||||||
|
)
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
package com.example.hpos.data.model
|
||||||
|
|
||||||
|
data class PatientData(
|
||||||
|
val name: String,
|
||||||
|
val age: Int,
|
||||||
|
val gender: String,
|
||||||
|
var results: TestRightResultType
|
||||||
|
)
|
||||||
11
app/src/main/java/com/example/hpos/data/model/TestInfo.kt
Normal file
11
app/src/main/java/com/example/hpos/data/model/TestInfo.kt
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
package com.example.hpos.data.model
|
||||||
|
|
||||||
|
data class TestInfo(
|
||||||
|
val value: String,
|
||||||
|
val number1: String,
|
||||||
|
val number2: String,
|
||||||
|
val result: String,
|
||||||
|
val resultConfirmatory: String,
|
||||||
|
val directoryPath: String,
|
||||||
|
val fullPath: String
|
||||||
|
)
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
package com.example.hpos.data.model
|
||||||
|
|
||||||
|
data class TestRightCalculationData(
|
||||||
|
var absorbanceOne: Double?,
|
||||||
|
var wavelengthOfAbsorbanceOne: Double?,
|
||||||
|
var absorbanceTwo: Double?,
|
||||||
|
var wavelengthOfAbsorbanceTwo: Double?,
|
||||||
|
var ratioMinRange: Double?,
|
||||||
|
var ratioMaxRange: Double?,
|
||||||
|
var ratioValue: Double?,
|
||||||
|
var result: TestRightResultType
|
||||||
|
) {
|
||||||
|
constructor() : this(null, null, null, null, null, null, null, TestRightResultType.UNDEFINED)
|
||||||
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
package com.example.hpos.data.model
|
||||||
|
|
||||||
|
data class TestRightDeviceConstants(
|
||||||
|
var a: String,
|
||||||
|
var b: String,
|
||||||
|
val c: String,
|
||||||
|
val d: String
|
||||||
|
)
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
package com.example.hpos.data.model
|
||||||
|
|
||||||
|
enum class TestRightResultType {
|
||||||
|
NORMAL,
|
||||||
|
SICKLECELLTRAIT,
|
||||||
|
SICKLECELLDISEASE,
|
||||||
|
UNDEFINED
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
package com.example.hpos.data.model
|
||||||
|
|
||||||
|
enum class TestType {
|
||||||
|
SICKLECERT,
|
||||||
|
SICKLEFIND
|
||||||
|
}
|
||||||
@@ -0,0 +1,94 @@
|
|||||||
|
package com.example.hpos.domain
|
||||||
|
|
||||||
|
import com.example.hpos.data.constant.Constants
|
||||||
|
import com.example.hpos.data.model.TestRightCalculationData
|
||||||
|
import com.example.hpos.data.model.TestRightResultType
|
||||||
|
|
||||||
|
class ResultCalculationWithAvgImpl : TestRightResultCalculation {
|
||||||
|
|
||||||
|
private val testRightCalculationData = TestRightCalculationData()
|
||||||
|
|
||||||
|
override fun getResults(wavelengthToAbsorbance: ArrayList<ArrayList<Double>>): TestRightCalculationData {
|
||||||
|
|
||||||
|
val startWavelengthOne =
|
||||||
|
Constants.WAVELENGTH_OF_INTEREST_ONE - Constants.RANGE_IN_RESULT_CALCULATIONS
|
||||||
|
val endWavelengthOne =
|
||||||
|
Constants.WAVELENGTH_OF_INTEREST_ONE + Constants.RANGE_IN_RESULT_CALCULATIONS + 1
|
||||||
|
var sumOfAbsorbanceAtOne = 0.0
|
||||||
|
var noOfAbsorbanceRecordedOne = 0
|
||||||
|
|
||||||
|
val startWavelengthTwo =
|
||||||
|
Constants.WAVELENGTH_OF_INTEREST_TWO - Constants.RANGE_IN_RESULT_CALCULATIONS
|
||||||
|
val endWavelengthTwo =
|
||||||
|
Constants.WAVELENGTH_OF_INTEREST_TWO + Constants.RANGE_IN_RESULT_CALCULATIONS + 1
|
||||||
|
var sumOfAbsorbanceAtTwo = 0.0
|
||||||
|
var noOfAbsorbanceRecordedTwo = 0
|
||||||
|
|
||||||
|
for (each in wavelengthToAbsorbance) {
|
||||||
|
if (each[0] >= startWavelengthOne && each[0] < endWavelengthOne) {
|
||||||
|
sumOfAbsorbanceAtOne += each[1]
|
||||||
|
noOfAbsorbanceRecordedOne++
|
||||||
|
}
|
||||||
|
if (each[0] >= startWavelengthTwo && each[0] < endWavelengthTwo) {
|
||||||
|
sumOfAbsorbanceAtTwo += each[1]
|
||||||
|
noOfAbsorbanceRecordedTwo++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val avgAbsorbanceOne = (sumOfAbsorbanceAtOne / noOfAbsorbanceRecordedOne)
|
||||||
|
val avgAbsorbanceTwo = (sumOfAbsorbanceAtTwo / noOfAbsorbanceRecordedTwo)
|
||||||
|
|
||||||
|
testRightCalculationData.absorbanceOne = avgAbsorbanceOne
|
||||||
|
testRightCalculationData.absorbanceTwo = avgAbsorbanceTwo
|
||||||
|
|
||||||
|
testRightCalculationData.result = calculateResultsAndRatio(avgAbsorbanceOne, avgAbsorbanceTwo)
|
||||||
|
return testRightCalculationData
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun calculateResultsAndRatio(
|
||||||
|
absorbanceAtWaveOne: Double,
|
||||||
|
absorbanceAtWaveTwo: Double
|
||||||
|
): TestRightResultType {
|
||||||
|
|
||||||
|
if (absorbanceAtWaveOne != Double.MIN_VALUE && absorbanceAtWaveTwo != Double.MIN_VALUE && absorbanceAtWaveOne != 0.0) {
|
||||||
|
val value = absorbanceAtWaveTwo / absorbanceAtWaveOne
|
||||||
|
testRightCalculationData.ratioValue = value
|
||||||
|
|
||||||
|
if (value < 0.24 || value == 0.0) {
|
||||||
|
testRightCalculationData.ratioMinRange = 0.0
|
||||||
|
testRightCalculationData.ratioMaxRange = 0.24
|
||||||
|
return TestRightResultType.NORMAL
|
||||||
|
} else if (value >= 0.24 && value < 0.30) {
|
||||||
|
testRightCalculationData.ratioMinRange = 0.24
|
||||||
|
testRightCalculationData.ratioMaxRange = 0.30
|
||||||
|
return TestRightResultType.SICKLECELLTRAIT
|
||||||
|
} else if (value >= 0.30) {
|
||||||
|
testRightCalculationData.ratioMinRange = 0.30
|
||||||
|
testRightCalculationData.ratioMaxRange = 999.0
|
||||||
|
return TestRightResultType.SICKLECELLDISEASE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return TestRightResultType.UNDEFINED
|
||||||
|
|
||||||
|
// if (absorbanceAtWaveOne != Double.MIN_VALUE && absorbanceAtWaveTwo != Double.MIN_VALUE && absorbanceAtWaveOne != 0.0) {
|
||||||
|
// val value = absorbanceAtWaveTwo / absorbanceAtWaveOne
|
||||||
|
//
|
||||||
|
// if (value < 0.24 || value == 0.0) {
|
||||||
|
// return TestRightResultType.NORMAL
|
||||||
|
// } else if (value >= 0.24 && value < 0.30) {
|
||||||
|
// return TestRightResultType.SICKLECELLTRAIT
|
||||||
|
// } else if (value >= 0.30) {
|
||||||
|
// return TestRightResultType.SICKLECELLDISEASE
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// }
|
||||||
|
|
||||||
|
// return TestRightResultType.UNDEFINED
|
||||||
|
// Log.d(TAG, "value = $value")
|
||||||
|
// println("value = $value")
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,101 @@
|
|||||||
|
package com.example.hpos.domain
|
||||||
|
|
||||||
|
import android.util.Log
|
||||||
|
import com.example.hpos.data.constant.Constants
|
||||||
|
import com.example.hpos.data.model.TestRightResultType
|
||||||
|
import kotlin.math.log10
|
||||||
|
|
||||||
|
class ResultCalculationWithFirstImpl {
|
||||||
|
|
||||||
|
private val TAG = "Testright"
|
||||||
|
|
||||||
|
fun getResults(
|
||||||
|
wavelengthToPixelArray: ArrayList<ArrayList<Double>>,
|
||||||
|
intensityReferenceArray: ArrayList<ArrayList<Double>>,
|
||||||
|
intensitySampleArray: ArrayList<ArrayList<Double>>
|
||||||
|
) : TestRightResultType {
|
||||||
|
var pixelNoWithWave_427 = 0
|
||||||
|
var pixelNoWithWave_555 = 0
|
||||||
|
|
||||||
|
Log.d(TAG, "wavelengthToPixelArray size = ${wavelengthToPixelArray.size}")
|
||||||
|
// println("wavelengthToPixelArray size = ${wavelengthToPixelArray.size}")
|
||||||
|
for (each in wavelengthToPixelArray) {
|
||||||
|
var diff = each[0] - 427
|
||||||
|
if (pixelNoWithWave_427 == 0 && diff >= 0 && diff < 1) {
|
||||||
|
pixelNoWithWave_427 = each[1].toInt()
|
||||||
|
}
|
||||||
|
|
||||||
|
diff = each[0] - 555
|
||||||
|
if (pixelNoWithWave_555 == 0 && diff >= 0 && diff < 1) {
|
||||||
|
pixelNoWithWave_555 = each[1].toInt()
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pixelNoWithWave_427 != 0 && pixelNoWithWave_555 != 0) {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Log.d(TAG, "pixelOfInterest_427 = ${pixelNoWithWave_427}")
|
||||||
|
Log.d(TAG, "pixelOfInterest_555 = ${pixelNoWithWave_555}")
|
||||||
|
|
||||||
|
// println("pixelOfInterest_427 = ${pixelNoWithWave_427}")
|
||||||
|
// println("pixelOfInterest_555 = ${pixelNoWithWave_555}")
|
||||||
|
|
||||||
|
val invertedPixel_427 = (Constants.TEST_RIGHT_TOTAL_PIXEL + 1) - pixelNoWithWave_427
|
||||||
|
val invertedPixel_555 = (Constants.TEST_RIGHT_TOTAL_PIXEL + 1) - pixelNoWithWave_555
|
||||||
|
|
||||||
|
var io_427 = 0.0
|
||||||
|
var io_555 = 0.0
|
||||||
|
|
||||||
|
for (each in intensityReferenceArray) {
|
||||||
|
if (each[0].toInt() == invertedPixel_427) {
|
||||||
|
io_427 = each[1]
|
||||||
|
}
|
||||||
|
if (each[0].toInt() == invertedPixel_555) {
|
||||||
|
io_555 = each[1]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Log.d(TAG, "I0 values are I0_427 = $io_427 , IO_555 = $io_555")
|
||||||
|
// println("I0 values are I0_427 = $io_427 , IO_555 = $io_555")
|
||||||
|
|
||||||
|
var i_427 = 0.0
|
||||||
|
var i_555 = 0.0
|
||||||
|
|
||||||
|
for (each in intensitySampleArray) {
|
||||||
|
if (each[0].toInt() == invertedPixel_427) {
|
||||||
|
i_427 = each[1]
|
||||||
|
}
|
||||||
|
if (each[0].toInt() == invertedPixel_555) {
|
||||||
|
i_555 = each[1]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Log.d(TAG, "I values are I_427 = $i_427 , I_555 = $i_555")
|
||||||
|
// println("I values are I_427 = $i_427 , I_555 = $i_555")
|
||||||
|
|
||||||
|
val absorbanceAtPixelWithWave_427 = log10(io_427 / i_427)
|
||||||
|
val absorbanceAtPixelWithWave_555 = log10(io_555 / i_555)
|
||||||
|
Log.d(
|
||||||
|
TAG,
|
||||||
|
"absorbance values are for 427 = $absorbanceAtPixelWithWave_427 , for 555 = $absorbanceAtPixelWithWave_555"
|
||||||
|
)
|
||||||
|
// println("absorbance values are for 427 = $absorbanceAtPixelWithWave_427 , for 555 = $absorbanceAtPixelWithWave_555")
|
||||||
|
|
||||||
|
var value = 0.0
|
||||||
|
if (absorbanceAtPixelWithWave_427 != 0.0 && absorbanceAtPixelWithWave_555 != 0.0) {
|
||||||
|
value = absorbanceAtPixelWithWave_555 / absorbanceAtPixelWithWave_427
|
||||||
|
}
|
||||||
|
Log.d(TAG, "value = $value")
|
||||||
|
// println("value = $value")
|
||||||
|
|
||||||
|
|
||||||
|
if (value < 0.24 || value == 0.0) {
|
||||||
|
return TestRightResultType.NORMAL
|
||||||
|
} else if (value >= 0.24 && value < 0.30) {
|
||||||
|
return TestRightResultType.SICKLECELLTRAIT
|
||||||
|
} else if (value >= 0.30) {
|
||||||
|
return TestRightResultType.SICKLECELLDISEASE
|
||||||
|
}
|
||||||
|
return TestRightResultType.UNDEFINED
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
package com.example.hpos.domain
|
||||||
|
|
||||||
|
import com.example.hpos.data.constant.Constants
|
||||||
|
import com.example.hpos.data.model.TestRightCalculationData
|
||||||
|
import com.example.hpos.data.model.TestRightResultType
|
||||||
|
|
||||||
|
class ResultCalculationWithMaxImpl : TestRightResultCalculation {
|
||||||
|
|
||||||
|
val testRightCalculationData = TestRightCalculationData()
|
||||||
|
|
||||||
|
override fun getResults(wavelengthToAbsorbance: ArrayList<ArrayList<Double>>): TestRightCalculationData {
|
||||||
|
|
||||||
|
val startWavelengthOne =
|
||||||
|
Constants.WAVELENGTH_OF_INTEREST_ONE - Constants.RANGE_IN_RESULT_CALCULATIONS
|
||||||
|
val endWavelengthOne =
|
||||||
|
Constants.WAVELENGTH_OF_INTEREST_ONE + Constants.RANGE_IN_RESULT_CALCULATIONS + 1
|
||||||
|
var maxAbsorbanceAtOne = -999999.0
|
||||||
|
var wavelengthOfAbsorbanceOne = 0.0
|
||||||
|
|
||||||
|
val startWavelengthTwo =
|
||||||
|
Constants.WAVELENGTH_OF_INTEREST_TWO - Constants.RANGE_IN_RESULT_CALCULATIONS
|
||||||
|
val endWavelengthTwo =
|
||||||
|
Constants.WAVELENGTH_OF_INTEREST_TWO + Constants.RANGE_IN_RESULT_CALCULATIONS + 1
|
||||||
|
var maxAbsorbanceAtTwo = -999999.0
|
||||||
|
var wavelengthOfAbsorbanceTwo = 0.0
|
||||||
|
|
||||||
|
for (each in wavelengthToAbsorbance) {
|
||||||
|
if (each[0] >= startWavelengthOne && each[0] < endWavelengthOne) {
|
||||||
|
if (each[1] > maxAbsorbanceAtOne) {
|
||||||
|
maxAbsorbanceAtOne = each[1]
|
||||||
|
wavelengthOfAbsorbanceOne = each[0]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (each[0] >= startWavelengthTwo && each[0] < endWavelengthTwo) {
|
||||||
|
// maxAbsorbanceAtTwo = max(maxAbsorbanceAtTwo, each[1])
|
||||||
|
if (each[1] > maxAbsorbanceAtTwo) {
|
||||||
|
maxAbsorbanceAtTwo = each[1]
|
||||||
|
wavelengthOfAbsorbanceTwo = each[0]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
testRightCalculationData.absorbanceOne = maxAbsorbanceAtOne
|
||||||
|
testRightCalculationData.wavelengthOfAbsorbanceOne = wavelengthOfAbsorbanceOne
|
||||||
|
testRightCalculationData.absorbanceTwo = maxAbsorbanceAtTwo
|
||||||
|
testRightCalculationData.wavelengthOfAbsorbanceTwo = wavelengthOfAbsorbanceTwo
|
||||||
|
|
||||||
|
testRightCalculationData.result = calculateResultsAndRatio(maxAbsorbanceAtOne, maxAbsorbanceAtTwo)
|
||||||
|
return testRightCalculationData
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun calculateResultsAndRatio(
|
||||||
|
absorbanceAtWaveOne: Double,
|
||||||
|
absorbanceAtWaveTwo: Double
|
||||||
|
): TestRightResultType {
|
||||||
|
if (absorbanceAtWaveOne != Double.MIN_VALUE && absorbanceAtWaveTwo != Double.MIN_VALUE && absorbanceAtWaveOne != 0.0) {
|
||||||
|
val value = absorbanceAtWaveTwo / absorbanceAtWaveOne
|
||||||
|
testRightCalculationData.ratioValue = value
|
||||||
|
|
||||||
|
if (value < 0.28 || value == 0.0) {
|
||||||
|
testRightCalculationData.ratioMinRange = 0.0
|
||||||
|
testRightCalculationData.ratioMaxRange = 0.28
|
||||||
|
return TestRightResultType.NORMAL
|
||||||
|
} else if (value >= 0.28 && value < 0.285) {
|
||||||
|
testRightCalculationData.ratioMinRange = 0.28
|
||||||
|
testRightCalculationData.ratioMaxRange = 0.285
|
||||||
|
return TestRightResultType.UNDEFINED
|
||||||
|
} else if (value >= 0.285 && value < 0.52) {
|
||||||
|
testRightCalculationData.ratioMinRange = 0.285
|
||||||
|
testRightCalculationData.ratioMaxRange = 0.52
|
||||||
|
return TestRightResultType.SICKLECELLTRAIT
|
||||||
|
} else if (value >= 0.52 && value < 0.525) {
|
||||||
|
testRightCalculationData.ratioMinRange = 0.52
|
||||||
|
testRightCalculationData.ratioMaxRange = 0.525
|
||||||
|
return TestRightResultType.UNDEFINED
|
||||||
|
}else if (value >= 0.525) {
|
||||||
|
testRightCalculationData.ratioMinRange = 0.525
|
||||||
|
testRightCalculationData.ratioMaxRange = 999.0
|
||||||
|
return TestRightResultType.SICKLECELLDISEASE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return TestRightResultType.UNDEFINED
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,61 +1,61 @@
|
|||||||
/*
|
package com.example.hpos.domain
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.domain
|
|
||||||
|
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
import com.example.hpostesting.data.constant.Constants
|
import com.example.hpos.data.constant.Constants
|
||||||
import com.example.hpostesting.data.model.patient.UserData
|
import com.example.hpos.data.model.PatientData
|
||||||
import com.example.hpostesting.data.model.test.TestRightCalculationData
|
import com.example.hpos.data.model.TestRightCalculationData
|
||||||
import com.example.hpostesting.data.repository.LocalFileRepository
|
import com.opencsv.CSVWriter
|
||||||
|
import java.io.File
|
||||||
|
import java.io.FileWriter
|
||||||
import java.util.Collections.sort
|
import java.util.Collections.sort
|
||||||
|
|
||||||
class SaveRawData(private val localFileRepository: LocalFileRepository) {
|
class SaveRawData {
|
||||||
|
|
||||||
private val TAG = "saverawdata"
|
private val TAG = "saverawdata"
|
||||||
|
|
||||||
fun saveCsv(folderPath: String, fileName: String, matrix: ArrayList<ArrayList<Double>>) {
|
fun saveCsv(folderPath: String, fileName: String, matrix: ArrayList<ArrayList<Double>>) {
|
||||||
// try {
|
// try {
|
||||||
val fullPath = "$folderPath/$fileName"
|
val fullPath = "$folderPath/$fileName"
|
||||||
|
val writer = CSVWriter(FileWriter(fullPath))
|
||||||
|
|
||||||
sort(matrix) { one: ArrayList<Double>, two: ArrayList<Double> ->
|
sort(matrix) { one: ArrayList<Double>, two: ArrayList<Double> ->
|
||||||
one[0].compareTo(two[0])
|
one[0].compareTo(two[0])
|
||||||
}
|
|
||||||
|
|
||||||
val content = ArrayList<Array<String>>()
|
|
||||||
content.add(arrayOf("NM", "CA"))
|
|
||||||
|
|
||||||
for (eachRow in matrix) {
|
|
||||||
|
|
||||||
if (eachRow[0] >= Constants.MIN_WAVELENGTH_RANGE_TO_RECORD && eachRow[0] < Constants.MAX_WAVELENGTH_RANGE_TO_RECORD + 1) {
|
|
||||||
val rowContent =
|
|
||||||
arrayOf(
|
|
||||||
String.format("%.10f", eachRow[0]),
|
|
||||||
String.format("%.10f", eachRow[1])
|
|
||||||
)
|
|
||||||
content.add(rowContent)
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
localFileRepository.saveCsvToDisk(fullPath, content)
|
val content = ArrayList<Array<String>>()
|
||||||
|
content.add(arrayOf("NM", "CA"))
|
||||||
|
|
||||||
|
for (eachRow in matrix) {
|
||||||
|
|
||||||
|
if (eachRow[0] >= Constants.MIN_WAVELENGTH_RANGE_TO_RECORD && eachRow[0] < Constants.MAX_WAVELENGTH_RANGE_TO_RECORD + 1) {
|
||||||
|
// val rowContent = arrayOf(String.format("%.3f", eachRow[0]), String.format("%.3f", eachRow[1]))
|
||||||
|
val rowContent =
|
||||||
|
arrayOf(
|
||||||
|
String.format("%.10f", eachRow[0]),
|
||||||
|
String.format("%.10f", eachRow[1])
|
||||||
|
)
|
||||||
|
content.add(rowContent)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
writer.writeAll(content) // data is adding to csv
|
||||||
|
writer.close()
|
||||||
|
|
||||||
|
// } catch (e: Exception) {
|
||||||
|
// Log.e(TAG, e.toString())
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
fun saveLog(folderPath: String, fileName: String, calculationData: TestRightCalculationData) {
|
fun saveLog(folderPath: String, fileName: String, calculationData: TestRightCalculationData) {
|
||||||
val fullPath = folderPath + fileName
|
val fileObj = File(folderPath, fileName)
|
||||||
localFileRepository.saveTextToDisk(fullPath, getLogStringFromObj(calculationData))
|
val writer = FileWriter(fileObj)
|
||||||
|
|
||||||
|
writer.append(getLogStringFromObj(calculationData))
|
||||||
|
writer.flush()
|
||||||
|
writer.close()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getLogStringFromObj(calculationData: TestRightCalculationData): String {
|
fun getLogStringFromObj(calculationData: TestRightCalculationData): String {
|
||||||
var outputString = "Test calculation logs ==>\n"
|
var outputString = "Test calculation logs ==>\n"
|
||||||
outputString += "Absorbance one = ${
|
outputString += "Absorbance one = ${
|
||||||
String.format(
|
String.format(
|
||||||
@@ -96,23 +96,24 @@ class SaveRawData(private val localFileRepository: LocalFileRepository) {
|
|||||||
folderPath: String,
|
folderPath: String,
|
||||||
fileName: String,
|
fileName: String,
|
||||||
calculationData: TestRightCalculationData,
|
calculationData: TestRightCalculationData,
|
||||||
testDetails: UserData?,
|
patientData: PatientData
|
||||||
) {
|
) {
|
||||||
val fullPath = folderPath + fileName
|
val fileObj = File(folderPath, fileName)
|
||||||
localFileRepository.saveTextToDisk(
|
val writer = FileWriter(fileObj)
|
||||||
fullPath,
|
|
||||||
getLogStringFromObjWithPatientData(calculationData, testDetails)
|
writer.append(getLogStringFromObjWithPatientData(calculationData, patientData))
|
||||||
)
|
writer.flush()
|
||||||
|
writer.close()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getLogStringFromObjWithPatientData(
|
private fun getLogStringFromObjWithPatientData(
|
||||||
calculationData: TestRightCalculationData,
|
calculationData: TestRightCalculationData,
|
||||||
testDetails: UserData?,
|
patientData: PatientData
|
||||||
): String {
|
): String {
|
||||||
var outputString = "Test calculation logs ==>\n"
|
var outputString = "Test calculation logs ==>\n"
|
||||||
outputString += "Name = ${testDetails?.name}\n"
|
outputString += "Name = ${patientData.name}\n"
|
||||||
outputString += "ID = ${testDetails?._id}\n"
|
outputString += "Age = ${patientData.age}\n"
|
||||||
// outputString += "Gender = ${patientData.gender}\n"
|
outputString += "Gender = ${patientData.gender}\n"
|
||||||
outputString += "Absorbance one = ${
|
outputString += "Absorbance one = ${
|
||||||
String.format(
|
String.format(
|
||||||
"%.3f",
|
"%.3f",
|
||||||
62
app/src/main/java/com/example/hpos/domain/SaveRawDataTest.kt
Normal file
62
app/src/main/java/com/example/hpos/domain/SaveRawDataTest.kt
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
package com.example.hpos.domain
|
||||||
|
|
||||||
|
import android.util.Log
|
||||||
|
import com.example.hpos.data.model.CalculationVariableForTest
|
||||||
|
import com.opencsv.CSVWriter
|
||||||
|
import java.io.File
|
||||||
|
import java.io.FileOutputStream
|
||||||
|
import java.io.FileWriter
|
||||||
|
|
||||||
|
class SaveRawDataTest {
|
||||||
|
|
||||||
|
private val TAG = "SaveRawDataTest"
|
||||||
|
|
||||||
|
fun saveCsv(folderPath: String, fileName: String, calculationData: ArrayList<CalculationVariableForTest>) {
|
||||||
|
|
||||||
|
// try {
|
||||||
|
val fullPath = "$folderPath/$fileName"
|
||||||
|
val writer = CSVWriter(FileWriter(fullPath))
|
||||||
|
val content = ArrayList<Array<String>>()
|
||||||
|
|
||||||
|
// Header
|
||||||
|
var rowContent =
|
||||||
|
arrayOf("pixel no", "wavelength", "invertedPixelNo", "I0", "I", "absorbance")
|
||||||
|
content.add(rowContent)
|
||||||
|
|
||||||
|
for (eachRow in calculationData) {
|
||||||
|
rowContent = arrayOf(
|
||||||
|
eachRow.pixelNo.toString(),
|
||||||
|
eachRow.wavelength.toString(),
|
||||||
|
eachRow.invertedPixelNo.toString(),
|
||||||
|
eachRow.I0.toString(),
|
||||||
|
eachRow.I.toString(),
|
||||||
|
eachRow.absorbance.toString()
|
||||||
|
)
|
||||||
|
content.add(rowContent)
|
||||||
|
}
|
||||||
|
|
||||||
|
writer.writeAll(content) // data is adding to csv
|
||||||
|
writer.close()
|
||||||
|
// } catch (e: Exception){
|
||||||
|
// Log.e(TAG, e.toString())
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveLog(folderPath: String, fileName: String, isReference: Boolean, fullString: String) {
|
||||||
|
val fileObj = File(folderPath, fileName)
|
||||||
|
|
||||||
|
// Log.d(TAG, "$folderPath --- $fileName")
|
||||||
|
val writer = FileWriter(fileObj)
|
||||||
|
|
||||||
|
if (isReference)
|
||||||
|
writer.append("\nREFERENCE OUTPUT\n")
|
||||||
|
else
|
||||||
|
writer.append("\nSAMPLE OUTPUT\n")
|
||||||
|
|
||||||
|
writer.append(fullString)
|
||||||
|
writer.flush()
|
||||||
|
writer.close()
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
package com.example.hpos.domain
|
||||||
|
|
||||||
|
import com.example.hpos.data.constant.Constants
|
||||||
|
import com.example.hpos.data.model.TestRightCalculationData
|
||||||
|
import com.example.hpos.data.model.TestRightResultType
|
||||||
|
|
||||||
|
class SickleFindResultCaluculationWithMaxImpl : TestRightResultCalculation{
|
||||||
|
|
||||||
|
val testRightCalculationData = TestRightCalculationData()
|
||||||
|
|
||||||
|
override fun getResults(wavelengthToAbsorbance: ArrayList<ArrayList<Double>>): TestRightCalculationData {
|
||||||
|
|
||||||
|
val startWavelengthOne =
|
||||||
|
Constants.WAVELENGTH_OF_INTEREST_ONE - Constants.RANGE_IN_RESULT_CALCULATIONS
|
||||||
|
val endWavelengthOne =
|
||||||
|
Constants.WAVELENGTH_OF_INTEREST_ONE + Constants.RANGE_IN_RESULT_CALCULATIONS + 1
|
||||||
|
var maxAbsorbanceAtOne = -999999.0
|
||||||
|
var wavelengthOfAbsorbanceOne = 0.0
|
||||||
|
|
||||||
|
val startWavelengthTwo =
|
||||||
|
Constants.WAVELENGTH_OF_INTEREST_TWO - Constants.RANGE_IN_RESULT_CALCULATIONS
|
||||||
|
val endWavelengthTwo =
|
||||||
|
Constants.WAVELENGTH_OF_INTEREST_TWO + Constants.RANGE_IN_RESULT_CALCULATIONS + 1
|
||||||
|
var maxAbsorbanceAtTwo = -999999.0
|
||||||
|
var wavelengthOfAbsorbanceTwo = 0.0
|
||||||
|
|
||||||
|
for (each in wavelengthToAbsorbance) {
|
||||||
|
if (each[0] >= startWavelengthOne && each[0] < endWavelengthOne) {
|
||||||
|
if (each[1] > maxAbsorbanceAtOne) {
|
||||||
|
maxAbsorbanceAtOne = each[1]
|
||||||
|
wavelengthOfAbsorbanceOne = each[0]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (each[0] >= startWavelengthTwo && each[0] < endWavelengthTwo) {
|
||||||
|
// maxAbsorbanceAtTwo = max(maxAbsorbanceAtTwo, each[1])
|
||||||
|
if (each[1] > maxAbsorbanceAtTwo) {
|
||||||
|
maxAbsorbanceAtTwo = each[1]
|
||||||
|
wavelengthOfAbsorbanceTwo = each[0]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
testRightCalculationData.absorbanceOne = maxAbsorbanceAtOne
|
||||||
|
testRightCalculationData.wavelengthOfAbsorbanceOne = wavelengthOfAbsorbanceOne
|
||||||
|
testRightCalculationData.absorbanceTwo = maxAbsorbanceAtTwo
|
||||||
|
testRightCalculationData.wavelengthOfAbsorbanceTwo = wavelengthOfAbsorbanceTwo
|
||||||
|
|
||||||
|
testRightCalculationData.result = calculateResultsAndRatio(maxAbsorbanceAtOne, maxAbsorbanceAtTwo)
|
||||||
|
return testRightCalculationData
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun calculateResultsAndRatio(
|
||||||
|
absorbanceAtWaveOne: Double,
|
||||||
|
absorbanceAtWaveTwo: Double
|
||||||
|
): TestRightResultType {
|
||||||
|
if (absorbanceAtWaveOne != Double.MIN_VALUE && absorbanceAtWaveTwo != Double.MIN_VALUE && absorbanceAtWaveOne != 0.0) {
|
||||||
|
val value = absorbanceAtWaveTwo / absorbanceAtWaveOne
|
||||||
|
testRightCalculationData.ratioValue = value
|
||||||
|
|
||||||
|
if (value < 0.30 || value == 0.0) {
|
||||||
|
testRightCalculationData.ratioMinRange = 0.0
|
||||||
|
testRightCalculationData.ratioMaxRange = 0.30
|
||||||
|
return TestRightResultType.NORMAL
|
||||||
|
} else if (value >= 0.30 && value < 0.31) {
|
||||||
|
testRightCalculationData.ratioMinRange = 0.30
|
||||||
|
testRightCalculationData.ratioMaxRange = 0.31
|
||||||
|
return TestRightResultType.UNDEFINED
|
||||||
|
} else if (value >= 0.31) {
|
||||||
|
testRightCalculationData.ratioMinRange = 0.31
|
||||||
|
testRightCalculationData.ratioMaxRange = 999.0
|
||||||
|
return TestRightResultType.SICKLECELLDISEASE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return TestRightResultType.UNDEFINED
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
package com.example.hpos.domain
|
||||||
|
|
||||||
|
import com.example.hpos.data.model.TestRightCalculationData
|
||||||
|
|
||||||
|
interface TestRightResultCalculation {
|
||||||
|
fun getResults(
|
||||||
|
wavelengthToAbsorbance: ArrayList<ArrayList<Double>>
|
||||||
|
): TestRightCalculationData
|
||||||
|
}
|
||||||
171
app/src/main/java/com/example/hpos/presentation/MainActivity.kt
Normal file
171
app/src/main/java/com/example/hpos/presentation/MainActivity.kt
Normal file
@@ -0,0 +1,171 @@
|
|||||||
|
package com.example.hpos.presentation
|
||||||
|
|
||||||
|
import android.content.BroadcastReceiver
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
import android.content.IntentFilter
|
||||||
|
import android.hardware.usb.UsbDevice
|
||||||
|
import android.hardware.usb.UsbManager
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.util.Log
|
||||||
|
import android.view.Gravity
|
||||||
|
import android.view.Menu
|
||||||
|
import android.view.MenuItem
|
||||||
|
import android.widget.Toast
|
||||||
|
import androidx.appcompat.app.ActionBarDrawerToggle
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import androidx.core.content.ContextCompat
|
||||||
|
import androidx.core.view.GravityCompat
|
||||||
|
import androidx.core.view.get
|
||||||
|
import androidx.lifecycle.ViewModelProvider
|
||||||
|
import com.example.hpos.R
|
||||||
|
import com.example.hpos.data.DataHolder
|
||||||
|
import com.example.hpos.data.constant.Constants
|
||||||
|
import com.example.hpos.data.model.TestType
|
||||||
|
import com.example.hpos.databinding.ActivityMainBinding
|
||||||
|
import com.example.hpos.presentation.testRight.TestRightActivity
|
||||||
|
import com.example.hpos.util.MyViewModelFactory
|
||||||
|
import com.hoho.android.usbserial.driver.UsbSerialProber
|
||||||
|
|
||||||
|
|
||||||
|
class MainActivity : AppCompatActivity()
|
||||||
|
// , SerialInputOutputManager.Listener
|
||||||
|
{
|
||||||
|
|
||||||
|
private lateinit var binding: ActivityMainBinding
|
||||||
|
private lateinit var viewModel: MainViewModel
|
||||||
|
|
||||||
|
private var myMenu: Menu? = null
|
||||||
|
|
||||||
|
private val TAG = "MainActivity"
|
||||||
|
|
||||||
|
private var mUsbReceiver: BroadcastReceiver = object : BroadcastReceiver() {
|
||||||
|
override fun onReceive(context: Context?, intent: Intent) {
|
||||||
|
val action = intent.action
|
||||||
|
if (UsbManager.ACTION_USB_DEVICE_DETACHED == action) {
|
||||||
|
DataHolder.usbConnected.value = false
|
||||||
|
// Toast.makeText(context, "Detached", Toast.LENGTH_SHORT).show()
|
||||||
|
} else if (UsbManager.ACTION_USB_DEVICE_ATTACHED == action) {
|
||||||
|
DataHolder.usbConnected.value = true
|
||||||
|
// Toast.makeText(context, "Attached", Toast.LENGTH_SHORT).show()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
binding = ActivityMainBinding.inflate(layoutInflater)
|
||||||
|
setContentView(binding.root)
|
||||||
|
viewModel = ViewModelProvider(
|
||||||
|
this,
|
||||||
|
MyViewModelFactory(applicationContext)
|
||||||
|
)[MainViewModel::class.java]
|
||||||
|
|
||||||
|
setSupportActionBar(binding.myToolbar)
|
||||||
|
|
||||||
|
setupNavigationDrawer()
|
||||||
|
|
||||||
|
setupListeners()
|
||||||
|
|
||||||
|
val filter = IntentFilter()
|
||||||
|
filter.addAction(UsbManager.ACTION_USB_DEVICE_DETACHED)
|
||||||
|
filter.addAction(UsbManager.ACTION_USB_DEVICE_ATTACHED)
|
||||||
|
registerReceiver(mUsbReceiver, filter)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupNavigationDrawer() {
|
||||||
|
// Pass the ActionBarToggle action into the drawerListener
|
||||||
|
val actionBarToggle = ActionBarDrawerToggle(this, binding.drawerLayout, 0, 0)
|
||||||
|
binding.drawerLayout.addDrawerListener(actionBarToggle)
|
||||||
|
|
||||||
|
// For the Navigation drawer
|
||||||
|
supportActionBar?.setDisplayHomeAsUpEnabled(true)
|
||||||
|
|
||||||
|
// Call syncState() on the action bar so it'll automatically change to the back button when the drawer layout is open
|
||||||
|
actionBarToggle.syncState()
|
||||||
|
|
||||||
|
// Call setNavigationItemSelectedListener on the NavigationView to detect when items are clicked
|
||||||
|
binding.navView.setNavigationItemSelectedListener { menuItem: MenuItem ->
|
||||||
|
when (menuItem.itemId) {
|
||||||
|
R.id.about_us -> {
|
||||||
|
Toast.makeText(this, "Test clicked", Toast.LENGTH_SHORT).show()
|
||||||
|
true
|
||||||
|
}
|
||||||
|
R.id.download_report -> {
|
||||||
|
Toast.makeText(this, "Download clicked", Toast.LENGTH_SHORT).show()
|
||||||
|
true
|
||||||
|
}
|
||||||
|
R.id.settings -> {
|
||||||
|
Toast.makeText(this, "Settings clicked", Toast.LENGTH_SHORT).show()
|
||||||
|
true
|
||||||
|
}
|
||||||
|
else -> {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun checkAndUpdateUsbConnection() {
|
||||||
|
val availableDrivers = UsbSerialProber.getDefaultProber().findAllDrivers(getSystemService(Context.USB_SERVICE) as UsbManager)
|
||||||
|
if (availableDrivers.isNotEmpty() && availableDrivers[0].device.productId == Constants.DEVICE_PRODUCT_ID && availableDrivers[0].device.vendorId == Constants.DEVICE_VENDOR_ID){
|
||||||
|
Log.d(TAG, "Device matched -> product = ${availableDrivers[0].device.productId}, vendor = ${availableDrivers[0].device.vendorId}")
|
||||||
|
DataHolder.usbConnected.value = true
|
||||||
|
} else if (availableDrivers.isNotEmpty()) {
|
||||||
|
Log.d(TAG, "Device NOT matched -> product = ${availableDrivers[0].device.productId}, vendor = ${availableDrivers[0].device.vendorId}")
|
||||||
|
Toast.makeText(this, "Device Not Compatible", Toast.LENGTH_SHORT).show()
|
||||||
|
DataHolder.usbConnected.value = false
|
||||||
|
} else {
|
||||||
|
Log.d(TAG, "Device NOT Connected")
|
||||||
|
DataHolder.usbConnected.value = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupListeners() {
|
||||||
|
|
||||||
|
binding.cvItem1.setOnClickListener {
|
||||||
|
DataHolder.selectedTestType = TestType.SICKLECERT
|
||||||
|
val i = Intent(applicationContext, TestRightActivity::class.java)
|
||||||
|
startActivity(i)
|
||||||
|
}
|
||||||
|
|
||||||
|
binding.cvItem2.setOnClickListener {
|
||||||
|
DataHolder.selectedTestType = TestType.SICKLEFIND
|
||||||
|
val i = Intent(applicationContext, TestRightActivity::class.java)
|
||||||
|
startActivity(i)
|
||||||
|
}
|
||||||
|
|
||||||
|
DataHolder.usbConnected.observe(this){
|
||||||
|
// Log.d(TAG, "usbConnected observer called with value -> $it")
|
||||||
|
if (it){
|
||||||
|
myMenu?.get(0)?.icon = ContextCompat.getDrawable(this, R.drawable.ic_baseline_usb_24)
|
||||||
|
} else {
|
||||||
|
// Log.d(TAG, "into no block -> $it")
|
||||||
|
myMenu?.get(0)?.icon = ContextCompat.getDrawable(this, R.drawable.ic_baseline_usb_off_24)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onCreateOptionsMenu(menu: Menu?): Boolean {
|
||||||
|
menuInflater.inflate(R.menu.my_menu, menu)
|
||||||
|
myMenu = menu
|
||||||
|
checkAndUpdateUsbConnection()
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
// override the onSupportNavigateUp() function to launch the Drawer when the hamburger icon is clicked
|
||||||
|
override fun onSupportNavigateUp(): Boolean {
|
||||||
|
binding.drawerLayout.openDrawer(binding.navView)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
// override the onBackPressed() function to close the Drawer when the back button is clicked
|
||||||
|
override fun onBackPressed() {
|
||||||
|
if (binding.drawerLayout.isDrawerOpen(GravityCompat.START)) {
|
||||||
|
binding.drawerLayout.closeDrawer(GravityCompat.START)
|
||||||
|
} else {
|
||||||
|
super.onBackPressed()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
package com.example.hpos.presentation
|
||||||
|
|
||||||
|
import androidx.lifecycle.ViewModel
|
||||||
|
|
||||||
|
class MainViewModel : ViewModel() {
|
||||||
|
|
||||||
|
}
|
||||||
39
app/src/main/java/com/example/hpos/presentation/RVAdapter.kt
Normal file
39
app/src/main/java/com/example/hpos/presentation/RVAdapter.kt
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
package com.example.hpos.presentation
|
||||||
|
|
||||||
|
import android.view.LayoutInflater
|
||||||
|
import android.view.View
|
||||||
|
import android.view.ViewGroup
|
||||||
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
|
import com.example.hpos.R
|
||||||
|
import com.example.hpos.data.model.PatientData
|
||||||
|
|
||||||
|
class RVAdapter : RecyclerView.Adapter<RVAdapter.ViewHolder>() {
|
||||||
|
|
||||||
|
private val dataset = ArrayList<PatientData>()
|
||||||
|
|
||||||
|
class ViewHolder(view: View) : RecyclerView.ViewHolder(view) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
|
||||||
|
return ViewHolder(
|
||||||
|
LayoutInflater.from(parent.context)
|
||||||
|
.inflate(R.layout.table_item, parent, false)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun getItemCount(): Int {
|
||||||
|
return dataset.size
|
||||||
|
}
|
||||||
|
|
||||||
|
fun updateDataSet(newDataSet: ArrayList<PatientData>) {
|
||||||
|
dataset.clear()
|
||||||
|
dataset.addAll(newDataSet)
|
||||||
|
notifyDataSetChanged()
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,118 @@
|
|||||||
|
package com.example.hpos.presentation
|
||||||
|
|
||||||
|
import android.Manifest
|
||||||
|
import android.content.Intent
|
||||||
|
import android.content.pm.PackageManager
|
||||||
|
import android.net.Uri
|
||||||
|
import android.os.Build
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.os.Environment
|
||||||
|
import android.provider.Settings
|
||||||
|
import android.widget.Toast
|
||||||
|
import androidx.activity.result.contract.ActivityResultContracts
|
||||||
|
import androidx.annotation.RequiresApi
|
||||||
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
|
import androidx.core.content.ContextCompat
|
||||||
|
import com.example.hpos.data.DataHolder
|
||||||
|
import com.example.hpos.databinding.ActivitySplashBinding
|
||||||
|
import com.example.hpos.util.MyUtils
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Splash Activity
|
||||||
|
* Used for preprocessing of data, permissions
|
||||||
|
*/
|
||||||
|
class SplashActivity : AppCompatActivity() {
|
||||||
|
|
||||||
|
private lateinit var binding: ActivitySplashBinding
|
||||||
|
|
||||||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
|
super.onCreate(savedInstanceState)
|
||||||
|
binding = ActivitySplashBinding.inflate(layoutInflater)
|
||||||
|
setContentView(binding.root)
|
||||||
|
|
||||||
|
checkForPermissions()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun checkForPermissions() {
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
|
||||||
|
getPermissionsAboveAndroidR()
|
||||||
|
} else {
|
||||||
|
getPermissionsBelowAndroidR()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@RequiresApi(Build.VERSION_CODES.R)
|
||||||
|
private fun getPermissionsAboveAndroidR() {
|
||||||
|
// Checking if permission is already granted or not.
|
||||||
|
if (!Environment.isExternalStorageManager()) {
|
||||||
|
val storagePermissionResultLauncher =
|
||||||
|
registerForActivityResult(ActivityResultContracts.StartActivityForResult()) {
|
||||||
|
if (Environment.isExternalStorageManager()) {
|
||||||
|
DataHolder.isStoragePermissionGranted = true
|
||||||
|
moveToLandingPage()
|
||||||
|
} else {
|
||||||
|
DataHolder.isStoragePermissionGranted = false
|
||||||
|
Toast.makeText(
|
||||||
|
this,
|
||||||
|
"You must grant permission to storage to use the app",
|
||||||
|
Toast.LENGTH_SHORT
|
||||||
|
).show()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val intent = Intent()
|
||||||
|
intent.action = Settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION
|
||||||
|
intent.data = Uri.fromParts("package", this.packageName, null)
|
||||||
|
storagePermissionResultLauncher.launch(intent)
|
||||||
|
} else {
|
||||||
|
DataHolder.isStoragePermissionGranted = true
|
||||||
|
moveToLandingPage()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun getPermissionsBelowAndroidR() {
|
||||||
|
val requestPermissionLauncher =
|
||||||
|
registerForActivityResult(ActivityResultContracts.RequestPermission()) { isGranted: Boolean ->
|
||||||
|
if (isGranted) {
|
||||||
|
DataHolder.isStoragePermissionGranted = true
|
||||||
|
moveToLandingPage()
|
||||||
|
} else {
|
||||||
|
DataHolder.isStoragePermissionGranted = false
|
||||||
|
Toast.makeText(
|
||||||
|
this,
|
||||||
|
"You must grant permission to storage to use the app",
|
||||||
|
Toast.LENGTH_SHORT
|
||||||
|
).show()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ContextCompat.checkSelfPermission(
|
||||||
|
this,
|
||||||
|
Manifest.permission.READ_EXTERNAL_STORAGE
|
||||||
|
) != PackageManager.PERMISSION_GRANTED || ContextCompat.checkSelfPermission(
|
||||||
|
this,
|
||||||
|
Manifest.permission.WRITE_EXTERNAL_STORAGE
|
||||||
|
) != PackageManager.PERMISSION_GRANTED
|
||||||
|
) {
|
||||||
|
requestPermissionLauncher.launch(Manifest.permission.WRITE_EXTERNAL_STORAGE)
|
||||||
|
} else {
|
||||||
|
DataHolder.isStoragePermissionGranted = true
|
||||||
|
moveToLandingPage()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun moveToLandingPage() {
|
||||||
|
createAppFolder()
|
||||||
|
val i = Intent(applicationContext, MainActivity::class.java)
|
||||||
|
startActivity(i)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun createAppFolder() {
|
||||||
|
val folderPath = MyUtils.createAppFolder(applicationContext)
|
||||||
|
if (folderPath != null){
|
||||||
|
DataHolder.isAppFolderCreated = true
|
||||||
|
DataHolder.appFolderPath = folderPath
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
package com.example.hpos.presentation
|
||||||
|
|
||||||
|
interface UsbServiceListener {
|
||||||
|
fun onUsbRead(data: ByteArray?)
|
||||||
|
fun onUsbError(e: Exception?)
|
||||||
|
}
|
||||||
@@ -1,52 +1,32 @@
|
|||||||
/*
|
package com.example.hpos.presentation.testRight
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.presentation.testRight
|
|
||||||
|
|
||||||
import android.app.PendingIntent
|
import android.app.PendingIntent
|
||||||
import android.content.BroadcastReceiver
|
import android.content.*
|
||||||
import android.content.ComponentName
|
|
||||||
import android.content.Context
|
|
||||||
import android.content.Intent
|
|
||||||
import android.content.IntentFilter
|
|
||||||
import android.content.ServiceConnection
|
|
||||||
import android.hardware.usb.UsbDevice
|
import android.hardware.usb.UsbDevice
|
||||||
import android.hardware.usb.UsbDeviceConnection
|
import android.hardware.usb.UsbDeviceConnection
|
||||||
import android.hardware.usb.UsbManager
|
import android.hardware.usb.UsbManager
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.os.IBinder
|
import android.os.IBinder
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
import android.view.Menu
|
import android.view.*
|
||||||
import android.widget.Toast
|
import android.widget.Toast
|
||||||
import androidx.activity.viewModels
|
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import androidx.core.content.ContextCompat
|
import androidx.core.content.ContextCompat
|
||||||
import androidx.core.view.get
|
import androidx.core.view.get
|
||||||
import com.example.hpostesting.data.constant.DataHolder
|
import androidx.lifecycle.ViewModelProvider
|
||||||
import com.example.hpostesting.data.constant.Constants
|
import com.example.hpos.R
|
||||||
import com.example.hpostesting.util.UsbService
|
import com.example.hpos.data.DataHolder
|
||||||
|
import com.example.hpos.data.constant.Constants
|
||||||
|
import com.example.hpos.databinding.ActivityTestRightBinding
|
||||||
|
import com.example.hpos.util.MyViewModelFactory
|
||||||
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
|
||||||
import dagger.hilt.android.AndroidEntryPoint
|
|
||||||
import `in`.sminnovations.hpostesting.R
|
|
||||||
import `in`.sminnovations.hpostesting.databinding.ActivityTestRightBinding
|
|
||||||
|
|
||||||
|
|
||||||
@AndroidEntryPoint
|
|
||||||
class TestRightActivity : AppCompatActivity() {
|
class TestRightActivity : AppCompatActivity() {
|
||||||
|
|
||||||
private lateinit var binding: ActivityTestRightBinding
|
private lateinit var binding: ActivityTestRightBinding
|
||||||
private val viewModel by viewModels<TestRightViewModel>()
|
private lateinit var viewModel: TestRightViewModel
|
||||||
private var myMenu: Menu? = null
|
private var myMenu: Menu? = null
|
||||||
|
|
||||||
private lateinit var mDriver: UsbSerialDriver
|
private lateinit var mDriver: UsbSerialDriver
|
||||||
@@ -78,8 +58,6 @@ class TestRightActivity : AppCompatActivity() {
|
|||||||
val binder = service as UsbService.UsbServiceBinder
|
val binder = service as UsbService.UsbServiceBinder
|
||||||
mService = binder.getService()
|
mService = binder.getService()
|
||||||
viewModel.isServiceConnected = true
|
viewModel.isServiceConnected = true
|
||||||
|
|
||||||
// Todo: Uncomment this
|
|
||||||
mConnection.let { mService.connect(mDriver, mConnection!!) }
|
mConnection.let { mService.connect(mDriver, mConnection!!) }
|
||||||
moveToNext()
|
moveToNext()
|
||||||
}
|
}
|
||||||
@@ -93,6 +71,10 @@ class TestRightActivity : AppCompatActivity() {
|
|||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
binding = ActivityTestRightBinding.inflate(layoutInflater)
|
binding = ActivityTestRightBinding.inflate(layoutInflater)
|
||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
|
viewModel = ViewModelProvider(
|
||||||
|
this,
|
||||||
|
MyViewModelFactory(this.applicationContext)
|
||||||
|
)[TestRightViewModel::class.java]
|
||||||
|
|
||||||
setSupportActionBar(binding.myToolbar)
|
setSupportActionBar(binding.myToolbar)
|
||||||
supportActionBar?.setDisplayHomeAsUpEnabled(true)
|
supportActionBar?.setDisplayHomeAsUpEnabled(true)
|
||||||
@@ -117,6 +99,11 @@ class TestRightActivity : AppCompatActivity() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// private fun testing() {
|
||||||
|
// supportFragmentManager.beginTransaction()
|
||||||
|
// .replace(binding.flMain.id, TestRightExpSample()).commit()
|
||||||
|
// }
|
||||||
|
|
||||||
private fun connectUsb(permissionGranted: Boolean) {
|
private 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 manager = getSystemService(Context.USB_SERVICE) as UsbManager
|
||||||
@@ -127,7 +114,11 @@ class TestRightActivity : AppCompatActivity() {
|
|||||||
} else {
|
} else {
|
||||||
mDriver = availableDrivers[0]
|
mDriver = availableDrivers[0]
|
||||||
|
|
||||||
viewModel.testDetails?.deviceId = mDriver.device.serialNumber.toString()
|
if (mDriver.device.productId != Constants.DEVICE_PRODUCT_ID || mDriver.device.vendorId != Constants.DEVICE_VENDOR_ID){
|
||||||
|
Toast.makeText(this, "Device Connected is not supported", Toast.LENGTH_SHORT).show()
|
||||||
|
onBackPressed()
|
||||||
|
return
|
||||||
|
}
|
||||||
DataHolder.deviceSerialNumber = mDriver.device.serialNumber.toString()
|
DataHolder.deviceSerialNumber = mDriver.device.serialNumber.toString()
|
||||||
mConnection = manager.openDevice(mDriver.device)
|
mConnection = manager.openDevice(mDriver.device)
|
||||||
|
|
||||||
@@ -139,21 +130,26 @@ class TestRightActivity : AppCompatActivity() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Request user permission. The response will be received in the BroadcastReceiver
|
||||||
|
*/
|
||||||
private fun requestUserPermission(manager: UsbManager, device: UsbDevice) {
|
private fun requestUserPermission(manager: UsbManager, device: UsbDevice) {
|
||||||
|
// Log.d(TAG, "requestUserPermissions() called -> vendor id = ${device.vendorId} & product id = ${device.productId}")
|
||||||
|
|
||||||
val mPendingIntent: PendingIntent
|
val mPendingIntent: PendingIntent
|
||||||
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.S) {
|
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.S) {
|
||||||
mPendingIntent = PendingIntent.getBroadcast(
|
mPendingIntent = PendingIntent.getBroadcast(
|
||||||
this,
|
this,
|
||||||
0,
|
0,
|
||||||
Intent(Constants.ACTION_USB_PERMISSION),
|
Intent(Constants.ACTION_USB_PERMISSION),
|
||||||
PendingIntent.FLAG_IMMUTABLE
|
PendingIntent.FLAG_MUTABLE
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
mPendingIntent = PendingIntent.getBroadcast(
|
mPendingIntent = PendingIntent.getBroadcast(
|
||||||
this,
|
this,
|
||||||
0,
|
0,
|
||||||
Intent(Constants.ACTION_USB_PERMISSION),
|
Intent(Constants.ACTION_USB_PERMISSION),
|
||||||
PendingIntent.FLAG_ONE_SHOT or PendingIntent.FLAG_IMMUTABLE
|
PendingIntent.FLAG_ONE_SHOT
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -188,6 +184,11 @@ class TestRightActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
fun onErrorReported(msg: String) {
|
fun onErrorReported(msg: String) {
|
||||||
Toast.makeText(this, msg, Toast.LENGTH_SHORT).show()
|
Toast.makeText(this, msg, Toast.LENGTH_SHORT).show()
|
||||||
|
// Snackbar.make(binding.clParent, msg, Snackbar.LENGTH_LONG)
|
||||||
|
// .setAction("CLOSE") { Toast.makeText(this, "Will soon", Toast.LENGTH_SHORT).show() }
|
||||||
|
// .setActionTextColor(resources.getColor(R.color.white))
|
||||||
|
// .show()
|
||||||
|
|
||||||
if (!isFinishing)
|
if (!isFinishing)
|
||||||
onBackPressed()
|
onBackPressed()
|
||||||
}
|
}
|
||||||
@@ -197,6 +198,16 @@ class TestRightActivity : AppCompatActivity() {
|
|||||||
myMenu = menu
|
myMenu = menu
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// override fun onOptionsItemSelected(item: MenuItem) = when (item.itemId) {
|
||||||
|
// R.id.action_usb -> {
|
||||||
|
//// Toast.makeText(this, "USB Connected", Toast.LENGTH_SHORT).show()
|
||||||
|
//// myMenu?.get(0)?.icon = ContextCompat.getDrawable(this, R.drawable.ic_baseline_usb_off_24)
|
||||||
|
// true
|
||||||
|
// }
|
||||||
|
// else -> {super.onOptionsItemSelected(item)}
|
||||||
|
// }
|
||||||
|
|
||||||
override fun onDestroy() {
|
override fun onDestroy() {
|
||||||
super.onDestroy()
|
super.onDestroy()
|
||||||
if (viewModel.isServiceConnected) {
|
if (viewModel.isServiceConnected) {
|
||||||
@@ -205,4 +216,10 @@ class TestRightActivity : AppCompatActivity() {
|
|||||||
viewModel.isServiceConnected = false
|
viewModel.isServiceConnected = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// fun View.setAllEnabled(enabled: Boolean) {
|
||||||
|
// isEnabled = enabled
|
||||||
|
// if (this is ViewGroup) children.forEach { child -> child.setAllEnabled(enabled) }
|
||||||
|
// }
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,17 +1,4 @@
|
|||||||
/*
|
package com.example.hpos.presentation.testRight
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.presentation.testRight
|
|
||||||
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.os.Handler
|
import android.os.Handler
|
||||||
@@ -21,28 +8,32 @@ import android.view.LayoutInflater
|
|||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
import android.widget.Toast
|
import android.widget.Toast
|
||||||
|
import androidx.core.view.children
|
||||||
import androidx.fragment.app.Fragment
|
import androidx.fragment.app.Fragment
|
||||||
import androidx.fragment.app.activityViewModels
|
import androidx.fragment.app.activityViewModels
|
||||||
import com.example.hpostesting.data.constant.DataHolder
|
import com.example.hpos.R
|
||||||
import com.example.hpostesting.data.constant.Constants
|
import com.example.hpos.data.DataHolder
|
||||||
import com.example.hpostesting.data.constant.TestRightCommands
|
import com.example.hpos.data.constant.Constants
|
||||||
import com.example.hpostesting.data.model.ErrorMessage
|
import com.example.hpos.data.constant.TestRightCommands
|
||||||
import com.example.hpostesting.presentation.utils.UsbServiceListener
|
import com.example.hpos.data.model.ErrorMessage
|
||||||
import com.example.hpostesting.presentation.utils.MyDialogListener
|
import com.example.hpos.databinding.FragmentTestRightExpReferenceBinding
|
||||||
import com.example.hpostesting.presentation.utils.UIUtils
|
import com.example.hpos.presentation.UsbServiceListener
|
||||||
import dagger.hilt.android.AndroidEntryPoint
|
import com.example.hpos.presentation.utils.MyDialogListener
|
||||||
import `in`.sminnovations.hpostesting.R
|
import com.example.hpos.presentation.utils.UIUtils
|
||||||
import `in`.sminnovations.hpostesting.databinding.FragmentTestRightExpReferenceBinding
|
|
||||||
|
|
||||||
|
|
||||||
@AndroidEntryPoint
|
|
||||||
class TestRightExpReference : Fragment() {
|
class TestRightExpReference : Fragment() {
|
||||||
|
|
||||||
private lateinit var binding: FragmentTestRightExpReferenceBinding
|
private lateinit var binding: FragmentTestRightExpReferenceBinding
|
||||||
private val viewModel: TestRightViewModel by activityViewModels()
|
private val viewModel: TestRightViewModel by activityViewModels()
|
||||||
|
|
||||||
private val TAG = "TestRightExpReference"
|
private val TAG = "TestRightExpReference"
|
||||||
|
|
||||||
override fun onCreateView(
|
override fun onCreateView(
|
||||||
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
inflater: LayoutInflater, container: ViewGroup?,
|
||||||
|
savedInstanceState: Bundle?
|
||||||
): View {
|
): View {
|
||||||
|
// Inflate the layout for this fragment
|
||||||
binding = FragmentTestRightExpReferenceBinding.inflate(inflater, container, false)
|
binding = FragmentTestRightExpReferenceBinding.inflate(inflater, container, false)
|
||||||
return binding.root
|
return binding.root
|
||||||
}
|
}
|
||||||
@@ -50,26 +41,34 @@ class TestRightExpReference : Fragment() {
|
|||||||
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||||
super.onViewCreated(view, savedInstanceState)
|
super.onViewCreated(view, savedInstanceState)
|
||||||
setupListeners()
|
setupListeners()
|
||||||
|
|
||||||
|
// if (DataHolder.isReferenceTaken)
|
||||||
|
// moveToSamplePage()
|
||||||
|
//
|
||||||
|
// DataHolder.sampleReadCounter <= Constants.MAXIMUM_TEST_ALLOWED_BEFORE_REFERENCE
|
||||||
|
|
||||||
if (DataHolder.deviceConstant == null) {
|
if (DataHolder.deviceConstant == null) {
|
||||||
viewModel.progressBar.postValue(true)
|
viewModel.progressBar.postValue(true)
|
||||||
Handler(Looper.getMainLooper()).postDelayed(
|
Handler(Looper.getMainLooper()).postDelayed(
|
||||||
{ sendCmdToFetchDeviceConstant() }, Constants.DELAY_BETWEEN_COMMANDS
|
{ sendCmdToFetchDeviceConstant() },
|
||||||
|
Constants.DELAY_BETWEEN_COMMANDS
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupListeners() {
|
private fun setupListeners() {
|
||||||
binding.btnSetReference.setOnClickListener {
|
binding.btnSetReference.setOnClickListener {
|
||||||
UIUtils.createAlertDialog(requireContext(),
|
UIUtils.createAlertDialog(
|
||||||
|
requireContext(),
|
||||||
getString(R.string.have_you_placed),
|
getString(R.string.have_you_placed),
|
||||||
getString(R.string.please_place),
|
getString(R.string.please_place),
|
||||||
getString(R.string.no),
|
getString(R.string.no),
|
||||||
getString(R.string.yes),
|
getString(R.string.yes),
|
||||||
object : MyDialogListener {
|
object : MyDialogListener {
|
||||||
override fun onClickNegativeButton() {
|
override fun onClickNegativeButton() {
|
||||||
|
// Todo: Only for testing
|
||||||
|
// viewModel.progressBar.postValue(true)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onClickPositiveButton() {
|
override fun onClickPositiveButton() {
|
||||||
startTakingReference()
|
startTakingReference()
|
||||||
}
|
}
|
||||||
@@ -77,15 +76,16 @@ class TestRightExpReference : Fragment() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
viewModel.errorTriggered.observe(viewLifecycleOwner) {
|
viewModel.errorTriggered.observe(viewLifecycleOwner) {
|
||||||
if (it != null) {
|
if (it != null){
|
||||||
UIUtils.onShowErrorToast(requireContext(), it.message)
|
UIUtils.onShowErrorToast(requireContext(), it.message)
|
||||||
if (it.code == Constants.ERROR_CRITICAL) {
|
if (it.code == Constants.ERROR_CRITICAL){
|
||||||
activity?.onBackPressed()
|
activity?.onBackPressed()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
viewModel.progressBar.observe(viewLifecycleOwner) {
|
viewModel.progressBar.observe(viewLifecycleOwner) {
|
||||||
|
// Log.d(TAG, "SURYA OBSERVER Activated outcome = $it")
|
||||||
if (it) {
|
if (it) {
|
||||||
binding.progressBar.visibility = View.VISIBLE
|
binding.progressBar.visibility = View.VISIBLE
|
||||||
binding.clParent.alpha = 0.5f
|
binding.clParent.alpha = 0.5f
|
||||||
@@ -96,6 +96,7 @@ class TestRightExpReference : Fragment() {
|
|||||||
binding.btnSetReference.isEnabled = true
|
binding.btnSetReference.isEnabled = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -106,17 +107,19 @@ class TestRightExpReference : Fragment() {
|
|||||||
* 4. command print
|
* 4. command print
|
||||||
*/
|
*/
|
||||||
private fun startTakingReference() {
|
private fun startTakingReference() {
|
||||||
|
// requireActivity().runOnUiThread {
|
||||||
sendCmdToSetLed()
|
sendCmdToSetLed()
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// private fun sendCmdToFetchDeviceConstant(recursive: Boolean) {
|
||||||
private fun sendCmdToFetchDeviceConstant() {
|
private fun sendCmdToFetchDeviceConstant() {
|
||||||
Log.d(TAG, "sendCmdToFetchDeviceConstant() called")
|
Log.d(TAG, "sendCmdToFetchDeviceConstant() called")
|
||||||
|
|
||||||
viewModel.progressBar.postValue(true)
|
viewModel.progressBar.postValue(true)
|
||||||
val fullReadOutput = StringBuilder()
|
val fullReadOutput = StringBuilder()
|
||||||
|
|
||||||
(activity as TestRightActivity).mService.eventDrivenWrite(
|
(activity as TestRightActivity).mService.eventDrivenWrite(TestRightCommands.read,
|
||||||
TestRightCommands.read,
|
|
||||||
object : UsbServiceListener {
|
object : UsbServiceListener {
|
||||||
override fun onUsbRead(data: ByteArray?) {
|
override fun onUsbRead(data: ByteArray?) {
|
||||||
data?.let {
|
data?.let {
|
||||||
@@ -126,7 +129,8 @@ class TestRightExpReference : Fragment() {
|
|||||||
|
|
||||||
if (stringData.contains("OK", true)) {
|
if (stringData.contains("OK", true)) {
|
||||||
Log.d(
|
Log.d(
|
||||||
TAG, "onUsbRead() called in sendCmdToFetchDeviceConstant() found OK"
|
TAG,
|
||||||
|
"onUsbRead() called in sendCmdToFetchDeviceConstant() found OK"
|
||||||
)
|
)
|
||||||
viewModel.mapDeviceConstants(fullReadOutput.toString())
|
viewModel.mapDeviceConstants(fullReadOutput.toString())
|
||||||
viewModel.progressBar.postValue(false)
|
viewModel.progressBar.postValue(false)
|
||||||
@@ -134,11 +138,7 @@ class TestRightExpReference : Fragment() {
|
|||||||
Log.d(TAG, "results = FINE")
|
Log.d(TAG, "results = FINE")
|
||||||
viewModel.progressBar.postValue(false)
|
viewModel.progressBar.postValue(false)
|
||||||
|
|
||||||
viewModel.errorTriggered.postValue(
|
viewModel.errorTriggered.postValue(ErrorMessage("Please Try Again!!", Constants.ERROR_CRITICAL))
|
||||||
ErrorMessage(
|
|
||||||
"Please Try Again!!", Constants.ERROR_CRITICAL
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -146,11 +146,7 @@ class TestRightExpReference : Fragment() {
|
|||||||
|
|
||||||
override fun onUsbError(e: Exception?) {
|
override fun onUsbError(e: Exception?) {
|
||||||
Log.e(TAG, "onUsbIoError() called in sendCmdToFetchDeviceConstant() -> $e")
|
Log.e(TAG, "onUsbIoError() called in sendCmdToFetchDeviceConstant() -> $e")
|
||||||
viewModel.errorTriggered.postValue(
|
viewModel.errorTriggered.postValue(ErrorMessage("Please Try Again this step", Constants.ERROR_NORMAL))
|
||||||
ErrorMessage(
|
|
||||||
"Please Try Again this step", Constants.ERROR_NORMAL
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
viewModel.progressBar.postValue(false)
|
viewModel.progressBar.postValue(false)
|
||||||
}
|
}
|
||||||
@@ -175,7 +171,8 @@ class TestRightExpReference : Fragment() {
|
|||||||
Runnable {
|
Runnable {
|
||||||
viewModel.progressBar.postValue(false)
|
viewModel.progressBar.postValue(false)
|
||||||
sendCmdToAutoset()
|
sendCmdToAutoset()
|
||||||
}, Constants.DELAY_BETWEEN_COMMANDS
|
},
|
||||||
|
Constants.DELAY_BETWEEN_COMMANDS
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -206,7 +203,8 @@ class TestRightExpReference : Fragment() {
|
|||||||
Runnable {
|
Runnable {
|
||||||
viewModel.progressBar.postValue(false)
|
viewModel.progressBar.postValue(false)
|
||||||
sendCmdToRun()
|
sendCmdToRun()
|
||||||
}, Constants.DELAY_BETWEEN_COMMANDS
|
},
|
||||||
|
Constants.DELAY_BETWEEN_COMMANDS
|
||||||
)
|
)
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -239,10 +237,12 @@ class TestRightExpReference : Fragment() {
|
|||||||
Runnable {
|
Runnable {
|
||||||
viewModel.progressBar.postValue(false)
|
viewModel.progressBar.postValue(false)
|
||||||
sendCmdToFetchLightIntensities()
|
sendCmdToFetchLightIntensities()
|
||||||
}, Constants.DELAY_BETWEEN_COMMANDS
|
},
|
||||||
|
Constants.DELAY_BETWEEN_COMMANDS
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onUsbError(e: Exception?) {
|
override fun onUsbError(e: Exception?) {
|
||||||
@@ -256,23 +256,24 @@ class TestRightExpReference : Fragment() {
|
|||||||
Log.d(TAG, "sendCmdToFetchLightIntensities() called")
|
Log.d(TAG, "sendCmdToFetchLightIntensities() called")
|
||||||
viewModel.progressBar.postValue(true)
|
viewModel.progressBar.postValue(true)
|
||||||
val fullReadOutput = StringBuilder()
|
val fullReadOutput = StringBuilder()
|
||||||
|
|
||||||
DataHolder.testExp = true
|
|
||||||
(activity as TestRightActivity).mService.eventDrivenWrite(TestRightCommands.printAll,
|
(activity as TestRightActivity).mService.eventDrivenWrite(TestRightCommands.printAll,
|
||||||
object : UsbServiceListener {
|
object : UsbServiceListener {
|
||||||
override fun onUsbRead(data: ByteArray?) {
|
override fun onUsbRead(data: ByteArray?) {
|
||||||
data?.let {
|
data?.let {
|
||||||
val stringData = String(it)
|
val stringData = String(it)
|
||||||
fullReadOutput.append(stringData)
|
fullReadOutput.append(stringData)
|
||||||
if (stringData.trim().isNotEmpty() && fullReadOutput.substring(
|
|
||||||
Math.max(
|
// Log.d(TAG, stringData)
|
||||||
fullReadOutput.length - 15, 0
|
// if (stringData.contains("OK", true)) {
|
||||||
)
|
// if (fullReadOutput.substring(Math.max(fullReadOutput.length - 15, 0)).contains("OK", true)) {
|
||||||
).contains("OK [0]", true)
|
if (stringData.trim().isNotEmpty() && fullReadOutput.substring(Math.max(fullReadOutput.length - 15, 0)).contains("OK [0]", true)) {
|
||||||
) {
|
|
||||||
|
|
||||||
Log.d(TAG, "onUsbRead() called in sendCmdToFetchLightIntensities()")
|
Log.d(TAG, "onUsbRead() called in sendCmdToFetchLightIntensities()")
|
||||||
|
// Log.d(TAG, fullReadOutput.toString())
|
||||||
|
|
||||||
viewModel.mapIntensityValues(fullReadOutput.toString(), true)
|
viewModel.mapIntensityValues(fullReadOutput.toString(), true)
|
||||||
|
// viewModel.saveLogTest(requireContext().applicationContext, true, fullReadOutput.toString())
|
||||||
|
|
||||||
DataHolder.isReferenceTaken = true
|
DataHolder.isReferenceTaken = true
|
||||||
|
|
||||||
Handler(Looper.getMainLooper()).postDelayed(
|
Handler(Looper.getMainLooper()).postDelayed(
|
||||||
@@ -287,11 +288,7 @@ class TestRightExpReference : Fragment() {
|
|||||||
|
|
||||||
override fun onUsbError(e: Exception?) {
|
override fun onUsbError(e: Exception?) {
|
||||||
Log.e(TAG, "onUsbIoError() called in sendCmdToFetchLightIntensities() -> $e")
|
Log.e(TAG, "onUsbIoError() called in sendCmdToFetchLightIntensities() -> $e")
|
||||||
viewModel.errorTriggered.postValue(
|
viewModel.errorTriggered.postValue(ErrorMessage("Please Try Again this step", Constants.ERROR_NORMAL))
|
||||||
ErrorMessage(
|
|
||||||
"Please Try Again this step", Constants.ERROR_NORMAL
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
viewModel.progressBar.postValue(false)
|
viewModel.progressBar.postValue(false)
|
||||||
}
|
}
|
||||||
@@ -1,19 +1,5 @@
|
|||||||
/*
|
package com.example.hpos.presentation.testRight
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.presentation.testRight
|
|
||||||
|
|
||||||
import android.content.Intent
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.os.Handler
|
import android.os.Handler
|
||||||
import android.os.Looper
|
import android.os.Looper
|
||||||
@@ -23,20 +9,20 @@ 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 com.example.hpostesting.data.constant.DataHolder
|
import com.example.hpos.R
|
||||||
import com.example.hpostesting.data.constant.Constants
|
import com.example.hpos.data.DataHolder
|
||||||
import com.example.hpostesting.data.constant.TestRightCommands
|
import com.example.hpos.data.PreferenceUtility
|
||||||
import com.example.hpostesting.data.model.ErrorMessage
|
import com.example.hpos.data.constant.Constants
|
||||||
import com.example.hpostesting.data.model.test.TestType
|
import com.example.hpos.data.constant.TestRightCommands
|
||||||
import com.example.hpostesting.presentation.MainActivity
|
import com.example.hpos.data.model.ErrorMessage
|
||||||
import com.example.hpostesting.presentation.utils.UsbServiceListener
|
import com.example.hpos.data.model.PatientData
|
||||||
import com.example.hpostesting.presentation.utils.MyDialogListener
|
import com.example.hpos.data.model.TestRightResultType
|
||||||
import com.example.hpostesting.presentation.utils.UIUtils
|
import com.example.hpos.data.model.TestType
|
||||||
import dagger.hilt.android.AndroidEntryPoint
|
import com.example.hpos.databinding.FragmentTestRightExpSampleBinding
|
||||||
import `in`.sminnovations.hpostesting.R
|
import com.example.hpos.presentation.UsbServiceListener
|
||||||
import `in`.sminnovations.hpostesting.databinding.FragmentTestRightExpSampleBinding
|
import com.example.hpos.presentation.utils.MyDialogListener
|
||||||
|
import com.example.hpos.presentation.utils.UIUtils
|
||||||
|
|
||||||
@AndroidEntryPoint
|
|
||||||
class TestRightExpSample : Fragment() {
|
class TestRightExpSample : Fragment() {
|
||||||
|
|
||||||
private lateinit var binding: FragmentTestRightExpSampleBinding
|
private lateinit var binding: FragmentTestRightExpSampleBinding
|
||||||
@@ -48,7 +34,16 @@ class TestRightExpSample : Fragment() {
|
|||||||
inflater: LayoutInflater, container: ViewGroup?,
|
inflater: LayoutInflater, container: ViewGroup?,
|
||||||
savedInstanceState: Bundle?
|
savedInstanceState: Bundle?
|
||||||
): View {
|
): View {
|
||||||
|
// Inflate the layout for this fragment
|
||||||
binding = FragmentTestRightExpSampleBinding.inflate(inflater, container, false)
|
binding = FragmentTestRightExpSampleBinding.inflate(inflater, container, false)
|
||||||
|
// if (DataHolder.sampleReadCounter > Constants.MAXIMUM_TEST_ALLOWED_BEFORE_REFERENCE) {
|
||||||
|
// binding.btnUpdateReference.enable()
|
||||||
|
// binding.clInstructions.setAllEnabled(false)
|
||||||
|
// } else {
|
||||||
|
// binding.btnUpdateReference.disable()
|
||||||
|
// binding.clInstructions.setAllEnabled(false)
|
||||||
|
// }
|
||||||
|
|
||||||
return binding.root
|
return binding.root
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -79,45 +74,58 @@ class TestRightExpSample : Fragment() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
binding.btnSubmit.setOnClickListener {
|
binding.btnSubmit.setOnClickListener {
|
||||||
UIUtils.createAlertDialog(
|
val details = checkAndReturnPatientDetails()
|
||||||
requireContext(),
|
if (details != null) {
|
||||||
"WARNING",
|
viewModel.patientDetails = details
|
||||||
"Please check if you have placed the sample of this person ${viewModel.testDetails?._id}",
|
|
||||||
getString(R.string.no),
|
|
||||||
"Yes",
|
|
||||||
object : MyDialogListener {
|
|
||||||
override fun onClickNegativeButton() {}
|
|
||||||
override fun onClickPositiveButton() {
|
|
||||||
UIUtils.createAlertDialog(
|
|
||||||
requireContext(),
|
|
||||||
getString(R.string.have_you_placed_sample),
|
|
||||||
getString(R.string.please_place_sample),
|
|
||||||
getString(R.string.no),
|
|
||||||
getString(R.string.yes_and_run),
|
|
||||||
object : MyDialogListener {
|
|
||||||
override fun onClickNegativeButton() {}
|
|
||||||
override fun onClickPositiveButton() {
|
|
||||||
startAcquiring()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
// }
|
|
||||||
}
|
|
||||||
|
|
||||||
binding.tvSkip.setOnClickListener {
|
UIUtils.createAlertDialog(
|
||||||
DataHolder.sampleReadCounter = 0
|
requireContext(),
|
||||||
DataHolder.isReferenceTaken = false
|
getString(R.string.have_you_placed_sample),
|
||||||
val i = Intent(requireContext(), MainActivity::class.java)
|
getString(R.string.please_place_sample),
|
||||||
startActivity(i)
|
getString(R.string.no),
|
||||||
|
getString(R.string.yes_and_run),
|
||||||
|
object : MyDialogListener {
|
||||||
|
override fun onClickNegativeButton() {}
|
||||||
|
override fun onClickPositiveButton() {
|
||||||
|
startAcquiring()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
binding.etNameBlock.setOnClickListener { binding.etName.isErrorEnabled = false }
|
||||||
|
binding.etAgeBlock.setOnClickListener { binding.etAge.isErrorEnabled = false }
|
||||||
|
binding.etGenderBlock.setOnClickListener { binding.ddGender.isErrorEnabled = false }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun checkAndReturnPatientDetails(): PatientData? {
|
||||||
|
val name = binding.etName.editText?.text?.trim()
|
||||||
|
if (name.isNullOrEmpty()) {
|
||||||
|
binding.etName.error = getString(R.string.name_error)
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
val age = binding.etAge.editText?.text?.trim()
|
||||||
|
if (age.isNullOrEmpty()) {
|
||||||
|
binding.etAge.error = getString(R.string.age_error)
|
||||||
|
return null
|
||||||
|
} else if (age.toString().toInt() < 0 || age.toString().toInt() > 199) {
|
||||||
|
binding.etAge.error = getString(R.string.age_error_out_of_bound)
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
val gender = binding.ddGender.editText?.text
|
||||||
|
if (gender.isNullOrEmpty()) {
|
||||||
|
binding.ddGender.error = getString(R.string.gender_error)
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
return PatientData(name.toString(), age.toString().toInt(), gender.toString(), TestRightResultType.UNDEFINED)
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Executing the commands sequentially each after successfully executing one.
|
* Executing the commands sequentially each after successfully executing one.
|
||||||
* 1. command run
|
* 1. command run
|
||||||
* 2. command print
|
* 2. command print
|
||||||
*/
|
*/
|
||||||
private fun startAcquiring() {
|
private fun startAcquiring() {
|
||||||
|
// binding.progressBar.visibility = View.VISIBLE
|
||||||
sendCmdToRun()
|
sendCmdToRun()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -133,6 +141,9 @@ class TestRightExpSample : Fragment() {
|
|||||||
val stringData = String(it)
|
val stringData = String(it)
|
||||||
fullReadOutput.append(stringData)
|
fullReadOutput.append(stringData)
|
||||||
Log.d(TAG, stringData)
|
Log.d(TAG, stringData)
|
||||||
|
// if (stringData.contains("OK", true)) {
|
||||||
|
// if (stringData.contains("OK", true) || fullReadOutput.substring(Math.max(fullReadOutput.length - 15, 0)).contains("OK", true)) {
|
||||||
|
// if (fullReadOutput.substring(Math.max(fullReadOutput.length - 15, 0)).contains("OK", true)) {
|
||||||
if (fullReadOutput.substring(Math.max(fullReadOutput.length - 15, 0)).contains("OK [0]", true)) {
|
if (fullReadOutput.substring(Math.max(fullReadOutput.length - 15, 0)).contains("OK [0]", true)) {
|
||||||
Log.d(TAG, "onUsbRead() called in sendCmdToRun()")
|
Log.d(TAG, "onUsbRead() called in sendCmdToRun()")
|
||||||
Handler(Looper.getMainLooper()).postDelayed(
|
Handler(Looper.getMainLooper()).postDelayed(
|
||||||
@@ -160,8 +171,6 @@ class TestRightExpSample : Fragment() {
|
|||||||
Log.d(TAG, "sendCmdToFetchLightIntensities() called")
|
Log.d(TAG, "sendCmdToFetchLightIntensities() called")
|
||||||
viewModel.progressBar.postValue(true)
|
viewModel.progressBar.postValue(true)
|
||||||
val fullReadOutput = StringBuilder()
|
val fullReadOutput = StringBuilder()
|
||||||
|
|
||||||
DataHolder.testExp = false
|
|
||||||
(activity as TestRightActivity).mService.eventDrivenWrite(TestRightCommands.printAll,
|
(activity as TestRightActivity).mService.eventDrivenWrite(TestRightCommands.printAll,
|
||||||
object : UsbServiceListener {
|
object : UsbServiceListener {
|
||||||
override fun onUsbRead(data: ByteArray?) {
|
override fun onUsbRead(data: ByteArray?) {
|
||||||
@@ -169,10 +178,17 @@ class TestRightExpSample : Fragment() {
|
|||||||
val stringData = String(it)
|
val stringData = String(it)
|
||||||
fullReadOutput.append(stringData)
|
fullReadOutput.append(stringData)
|
||||||
Log.d(TAG, stringData)
|
Log.d(TAG, stringData)
|
||||||
|
// if (stringData.contains("OK", true)) {
|
||||||
|
// if (stringData.contains("OK", true) || stringData.contains("O", true) || stringData.contains("K", true)) {
|
||||||
|
// if (stringData.contains("OK", true) || fullReadOutput.substring(Math.max(fullReadOutput.length - 15, 0)).contains("OK", true)) {
|
||||||
|
// if (fullReadOutput.substring(Math.max(fullReadOutput.length - 15, 0)).contains("OK", true)) {
|
||||||
if (stringData.trim().isNotEmpty() && fullReadOutput.substring(Math.max(fullReadOutput.length - 15, 0)).contains("OK [0]", true)) {
|
if (stringData.trim().isNotEmpty() && fullReadOutput.substring(Math.max(fullReadOutput.length - 15, 0)).contains("OK [0]", true)) {
|
||||||
Log.d(TAG, "onUsbRead() called in sendCmdToFetchLightIntensities()")
|
Log.d(TAG, "onUsbRead() called in sendCmdToFetchLightIntensities()")
|
||||||
|
|
||||||
viewModel.mapIntensityValues(fullReadOutput.toString(), false)
|
viewModel.mapIntensityValues(fullReadOutput.toString(), false)
|
||||||
|
// viewModel.saveLogTest(requireContext().applicationContext, false, fullReadOutput.toString())
|
||||||
|
|
||||||
|
// showResultsAfterAcquiring()
|
||||||
Handler(Looper.getMainLooper()).postDelayed(
|
Handler(Looper.getMainLooper()).postDelayed(
|
||||||
{
|
{
|
||||||
checkIfToRunAgain()
|
checkIfToRunAgain()
|
||||||
@@ -198,11 +214,15 @@ class TestRightExpSample : Fragment() {
|
|||||||
|
|
||||||
|
|
||||||
viewModel.mapWavelengthToAbsorbance()
|
viewModel.mapWavelengthToAbsorbance()
|
||||||
|
// Todo: Save CSV + Test CSV
|
||||||
|
|
||||||
if (DataHolder.selectedTestType == TestType.SICKLECERT) {
|
if (DataHolder.selectedTestType == TestType.SICKLECERT) {
|
||||||
viewModel.calculateResults()
|
viewModel.calculateResults()
|
||||||
} else {
|
} else {
|
||||||
viewModel.calculateResultsForSickleFind()
|
viewModel.calculateResultsForSickleFind()
|
||||||
}
|
}
|
||||||
|
// Todo: Save Log
|
||||||
|
|
||||||
saveDataLocally()
|
saveDataLocally()
|
||||||
|
|
||||||
if (viewModel.numberOfSampleRun < Constants.NO_OF_TIMES_TO_RUN_SAMPLE) {
|
if (viewModel.numberOfSampleRun < Constants.NO_OF_TIMES_TO_RUN_SAMPLE) {
|
||||||
@@ -219,14 +239,49 @@ class TestRightExpSample : Fragment() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun showResultsAfterAcquiring() {
|
private fun showResultsAfterAcquiring() {
|
||||||
|
// viewModel.mapWavelengthToAbsorbance()
|
||||||
|
// viewModel.calculateResults()
|
||||||
|
|
||||||
viewModel.progressBar.postValue(false)
|
viewModel.progressBar.postValue(false)
|
||||||
|
// binding.progressBar.visibility = View.GONE
|
||||||
parentFragmentManager.beginTransaction().replace(R.id.fl_main, TestRightResults())
|
parentFragmentManager.beginTransaction().replace(R.id.fl_main, TestRightResults())
|
||||||
.commit()
|
.commit()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun saveDataLocally() {
|
private fun saveDataLocally() {
|
||||||
viewModel.saveCsv(requireContext().applicationContext, viewModel.getCSVFileName())
|
val patientName = viewModel.patientDetails.name
|
||||||
viewModel.saveLogWithPatient(requireContext().applicationContext, viewModel.getLogFileName())
|
// if (patientName.length > 5){
|
||||||
|
// patientName = patientName.substring(0, 5)
|
||||||
|
// }
|
||||||
|
|
||||||
|
val id = PreferenceUtility.generateId(requireContext())
|
||||||
|
|
||||||
|
val prefixCsv: String = if (DataHolder.selectedTestType == TestType.SICKLECERT)
|
||||||
|
"HPOSSC_${DataHolder.deviceSerialNumber}_${patientName}_"
|
||||||
|
else
|
||||||
|
"HPOSSF_${DataHolder.deviceSerialNumber}_${patientName}_"
|
||||||
|
|
||||||
|
// val prefixCsv = "HPOSSC_${DataHolder.deviceSerialNumber}_${patientName}_"
|
||||||
|
val fileExtensionCsv = ".csv"
|
||||||
|
val fileNameCsv = prefixCsv + id + fileExtensionCsv
|
||||||
|
saveCsv(fileNameCsv)
|
||||||
|
|
||||||
|
val prefixTxt = "log_${DataHolder.deviceSerialNumber}_${patientName}_"
|
||||||
|
val fileExtensionTxt = ".txt"
|
||||||
|
val fileNameTxt = prefixTxt + id + fileExtensionTxt
|
||||||
|
saveLog(fileNameTxt)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun saveCsv(fileName: String) {
|
||||||
|
Log.d(TAG, "saveCsv() called")
|
||||||
|
|
||||||
|
viewModel.saveCsv(requireContext().applicationContext, fileName)
|
||||||
|
viewModel.saveCsvForTesting(requireContext().applicationContext, "detailed_$fileName")
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun saveLog(fileName: String) {
|
||||||
|
Log.d(TAG, "saveLog() called")
|
||||||
|
viewModel.saveLogWithPatient(requireContext().applicationContext, fileName)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,203 @@
|
|||||||
|
package com.example.hpos.presentation.testRight
|
||||||
|
|
||||||
|
import android.content.Intent
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.util.Log
|
||||||
|
import android.view.LayoutInflater
|
||||||
|
import android.view.View
|
||||||
|
import android.view.ViewGroup
|
||||||
|
import android.widget.Toast
|
||||||
|
import androidx.fragment.app.Fragment
|
||||||
|
import androidx.fragment.app.activityViewModels
|
||||||
|
import com.example.hpos.R
|
||||||
|
import com.example.hpos.data.DataHolder
|
||||||
|
import com.example.hpos.data.PreferenceUtility
|
||||||
|
import com.example.hpos.data.constant.Constants
|
||||||
|
import com.example.hpos.data.model.TestRightResultType
|
||||||
|
import com.example.hpos.data.model.TestType
|
||||||
|
import com.example.hpos.databinding.FragmentTestRightResultsBinding
|
||||||
|
import com.example.hpos.presentation.MainActivity
|
||||||
|
import com.example.hpos.util.MyUtils
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.*
|
||||||
|
|
||||||
|
class TestRightResults : Fragment() {
|
||||||
|
|
||||||
|
private lateinit var binding: FragmentTestRightResultsBinding
|
||||||
|
private val viewModel: TestRightViewModel by activityViewModels()
|
||||||
|
|
||||||
|
private val TAG = "TestRightResults"
|
||||||
|
|
||||||
|
override fun onCreateView(
|
||||||
|
inflater: LayoutInflater, container: ViewGroup?,
|
||||||
|
savedInstanceState: Bundle?
|
||||||
|
): View {
|
||||||
|
// Inflate the layout for this fragment
|
||||||
|
binding = FragmentTestRightResultsBinding.inflate(inflater, container, false)
|
||||||
|
return binding.root
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||||
|
super.onViewCreated(view, savedInstanceState)
|
||||||
|
setupListeners()
|
||||||
|
updateResults()
|
||||||
|
// saveCsv()
|
||||||
|
// saveLog()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupListeners() {
|
||||||
|
binding.ivHome.setOnClickListener {
|
||||||
|
val i = Intent(requireContext().applicationContext, MainActivity::class.java)
|
||||||
|
startActivity(i)
|
||||||
|
}
|
||||||
|
binding.ivNext.setOnClickListener {
|
||||||
|
moveToSamplePage()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun moveToSamplePage() {
|
||||||
|
if (DataHolder.sampleReadCounter > Constants.MAXIMUM_TEST_ALLOWED_BEFORE_REFERENCE) {
|
||||||
|
DataHolder.sampleReadCounter = 0
|
||||||
|
DataHolder.isReferenceTaken = false
|
||||||
|
parentFragmentManager.beginTransaction()
|
||||||
|
.replace(R.id.fl_main, TestRightExpReference())
|
||||||
|
.commit()
|
||||||
|
} else {
|
||||||
|
parentFragmentManager.beginTransaction().replace(R.id.fl_main, TestRightExpSample())
|
||||||
|
.commit()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun saveLog() {
|
||||||
|
Log.d(TAG, "saveLog() called")
|
||||||
|
|
||||||
|
val sdfDate = SimpleDateFormat("ddMMyyyy HHmmss")
|
||||||
|
val fileName: String = "log_" + sdfDate.format(Date()) + ".txt"
|
||||||
|
|
||||||
|
viewModel.saveLog(requireContext().applicationContext, fileName)
|
||||||
|
|
||||||
|
// if (!DataHolder.isAppFolderCreated) {
|
||||||
|
// val folderPath = MyUtils.createAppFolder(requireContext().applicationContext)
|
||||||
|
// if (folderPath != null) {
|
||||||
|
// DataHolder.isAppFolderCreated = true
|
||||||
|
// DataHolder.appFolderPath = folderPath
|
||||||
|
// viewModel.saveLog(DataHolder.appFolderPath, fileName)
|
||||||
|
// }
|
||||||
|
// } else {
|
||||||
|
// viewModel.saveLog(DataHolder.appFolderPath, fileName)
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
// private fun saveCsv() {
|
||||||
|
// Log.d(TAG, "saveCsv() called")
|
||||||
|
//
|
||||||
|
// val sdfDate = SimpleDateFormat("ddMMyyyy HHmmss")
|
||||||
|
// val fileName: String = sdfDate.format(Date()) + ".csv"
|
||||||
|
//
|
||||||
|
// if (!DataHolder.isAppFolderCreated) {
|
||||||
|
// val folderPath = MyUtils.createAppFolder(requireContext().applicationContext)
|
||||||
|
// if (folderPath != null) {
|
||||||
|
// DataHolder.isAppFolderCreated = true
|
||||||
|
// DataHolder.appFolderPath = folderPath
|
||||||
|
// viewModel.saveCsv(DataHolder.appFolderPath, fileName)
|
||||||
|
//
|
||||||
|
// viewModel.saveCsvForTesting(DataHolder.appFolderPath, "testing$fileName")
|
||||||
|
// }
|
||||||
|
// } else {
|
||||||
|
// viewModel.saveCsv(DataHolder.appFolderPath, fileName)
|
||||||
|
//
|
||||||
|
// viewModel.saveCsvForTesting(DataHolder.appFolderPath, "testing$fileName")
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// }
|
||||||
|
|
||||||
|
private fun saveCsv() {
|
||||||
|
Log.d(TAG, "saveCsv() called")
|
||||||
|
|
||||||
|
// val sdfDate = SimpleDateFormat("ddMMyyyy HHmmss")
|
||||||
|
// val fileName: String = sdfDate.format(Date()) + ".csv"
|
||||||
|
|
||||||
|
val prefix = "HPOSSC_${DataHolder.deviceSerialNumber}_"
|
||||||
|
val fileExtension = ".csv"
|
||||||
|
|
||||||
|
val fileName = PreferenceUtility.generateId(requireContext(), prefix) + fileExtension
|
||||||
|
|
||||||
|
|
||||||
|
viewModel.saveCsv(requireContext().applicationContext, fileName)
|
||||||
|
viewModel.saveCsvForTesting(requireContext().applicationContext, "testing$fileName")
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun updateResults() {
|
||||||
|
binding.tvName.text = getString(R.string.name_in_textview, viewModel.patientDetails.name)
|
||||||
|
binding.tvAge.text =
|
||||||
|
getString(R.string.age_in_textview, viewModel.patientDetails.age.toString())
|
||||||
|
binding.tvGender.text =
|
||||||
|
getString(R.string.gender_in_textview, viewModel.patientDetails.gender)
|
||||||
|
|
||||||
|
if (DataHolder.selectedTestType == TestType.SICKLECERT){
|
||||||
|
when (viewModel.patientDetails.results) {
|
||||||
|
TestRightResultType.NORMAL -> {
|
||||||
|
binding.resultNormal.visibility = View.VISIBLE
|
||||||
|
}
|
||||||
|
TestRightResultType.SICKLECELLDISEASE -> {
|
||||||
|
binding.resultDisease.visibility = View.VISIBLE
|
||||||
|
}
|
||||||
|
TestRightResultType.SICKLECELLTRAIT -> {
|
||||||
|
binding.resultTrait.visibility = View.VISIBLE
|
||||||
|
}
|
||||||
|
else -> {
|
||||||
|
// binding.resultUndefined.visibility = View.VISIBLE
|
||||||
|
Toast.makeText(requireContext().applicationContext, "Please Test Again", Toast.LENGTH_LONG).show()
|
||||||
|
moveToSamplePage()
|
||||||
|
// val i = Intent(requireContext().applicationContext, MainActivity::class.java)
|
||||||
|
// startActivity(i)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
when (viewModel.patientDetails.results) {
|
||||||
|
TestRightResultType.SICKLECELLDISEASE -> {
|
||||||
|
binding.resultDisease.visibility = View.VISIBLE
|
||||||
|
binding.resultDisease.text = "Positive"
|
||||||
|
}
|
||||||
|
TestRightResultType.NORMAL -> {
|
||||||
|
binding.resultNormal.visibility = View.VISIBLE
|
||||||
|
binding.resultNormal.text = "Negative"
|
||||||
|
}
|
||||||
|
else -> {
|
||||||
|
Toast.makeText(requireContext().applicationContext, "Please Test Again", Toast.LENGTH_LONG).show()
|
||||||
|
moveToSamplePage()
|
||||||
|
// val i = Intent(requireContext().applicationContext, MainActivity::class.java)
|
||||||
|
// startActivity(i)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// when (viewModel.patientDetails.results) {
|
||||||
|
// TestRightResultType.NORMAL -> {
|
||||||
|
// binding.resultNormal.visibility = View.VISIBLE
|
||||||
|
// }
|
||||||
|
// TestRightResultType.SICKLECELLDISEASE -> {
|
||||||
|
// binding.resultDisease.visibility = View.VISIBLE
|
||||||
|
// }
|
||||||
|
// TestRightResultType.SICKLECELLTRAIT -> {
|
||||||
|
// binding.resultTrait.visibility = View.VISIBLE
|
||||||
|
// }
|
||||||
|
// else -> {
|
||||||
|
// binding.resultUndefined.visibility = View.VISIBLE
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
// Log.d(TAG, "\n\n\n\nFor intensity Reference array size = ${DataHolder.intensityReferenceArray.size}")
|
||||||
|
// for (each in DataHolder.intensityReferenceArray){
|
||||||
|
// Log.d(TAG, "${each}")
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// Log.d(TAG, "\n\n\n\nFor intensity Reference array size = ${viewModel.intensitySampleArray.size}")
|
||||||
|
// for (each in viewModel.intensitySampleArray){
|
||||||
|
// Log.d(TAG, "${each}")
|
||||||
|
// }
|
||||||
|
// Log.d(TAG,"")
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,392 @@
|
|||||||
|
package com.example.hpos.presentation.testRight
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.util.Log
|
||||||
|
import androidx.lifecycle.MutableLiveData
|
||||||
|
import androidx.lifecycle.ViewModel
|
||||||
|
import com.example.hpos.data.DataHolder
|
||||||
|
import com.example.hpos.data.constant.Constants
|
||||||
|
import com.example.hpos.data.model.*
|
||||||
|
import com.example.hpos.domain.*
|
||||||
|
import com.example.hpos.util.MyUtils
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.*
|
||||||
|
import java.util.Collections.sort
|
||||||
|
import kotlin.collections.ArrayList
|
||||||
|
import kotlin.math.log10
|
||||||
|
import kotlin.math.pow
|
||||||
|
|
||||||
|
class TestRightViewModel : ViewModel() {
|
||||||
|
|
||||||
|
private val TAG = "TestRightViewModel"
|
||||||
|
|
||||||
|
var isServiceConnected = false
|
||||||
|
val progressBar = MutableLiveData(false)
|
||||||
|
|
||||||
|
// val errorTriggered = MutableLiveData<String>("")
|
||||||
|
val errorTriggered = MutableLiveData<ErrorMessage>()
|
||||||
|
var numberOfSampleRun = 0
|
||||||
|
|
||||||
|
lateinit var patientDetails: PatientData
|
||||||
|
|
||||||
|
// var deviceConstant: TestRightDeviceConstants? = null
|
||||||
|
private lateinit var calculationData: TestRightCalculationData
|
||||||
|
|
||||||
|
/* (For exp sample) Contains pixel no. -> Intensity of light falling on that pixel */
|
||||||
|
val intensitySampleArray = ArrayList<Double>()
|
||||||
|
|
||||||
|
val wavelengthToAbsorbance = ArrayList<ArrayList<Double>>()
|
||||||
|
|
||||||
|
val calculationVariableList = ArrayList<CalculationVariableForTest>()
|
||||||
|
|
||||||
|
fun mapDeviceConstants(string: String) {
|
||||||
|
// Log.d(TAG, "mapDeviceConstants() called")
|
||||||
|
// Log.d(TAG, "mapDeviceConstants() value -> $string")
|
||||||
|
if (string.isNotEmpty()) {
|
||||||
|
val listOfStrings = string.split(",")
|
||||||
|
if (listOfStrings.size >= 4) {
|
||||||
|
DataHolder.deviceConstant = TestRightDeviceConstants(
|
||||||
|
listOfStrings[0].trim(),
|
||||||
|
listOfStrings[1].trim(),
|
||||||
|
listOfStrings[2].trim(),
|
||||||
|
listOfStrings[3].trim()
|
||||||
|
)
|
||||||
|
|
||||||
|
mapPixelNumberToWavelength()
|
||||||
|
} else {
|
||||||
|
// Todo: Throws error
|
||||||
|
// "Error 201: In processing the data from device"
|
||||||
|
errorTriggered.postValue(
|
||||||
|
ErrorMessage(
|
||||||
|
"Error 201: In processing the data from device",
|
||||||
|
Constants.ERROR_NORMAL
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Todo: Throws error (showing error if empty by using a mutable error string)
|
||||||
|
// "Error 202: Unable to fetch data from device."
|
||||||
|
errorTriggered.postValue(
|
||||||
|
ErrorMessage(
|
||||||
|
"Error 202: Unable to fetch data from device.",
|
||||||
|
Constants.ERROR_NORMAL
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun mapPixelNumberToWavelength() {
|
||||||
|
// viewModelScope.launch {
|
||||||
|
DataHolder.wavelengthToPixelArray.clear()
|
||||||
|
if (DataHolder.deviceConstant != null) {
|
||||||
|
for (x in 1..Constants.TEST_RIGHT_TOTAL_PIXEL) {
|
||||||
|
// val index = x - 1
|
||||||
|
val wavelength: Double =
|
||||||
|
(DataHolder.deviceConstant!!.a.toDouble() * (x.toDouble()
|
||||||
|
.pow((3).toDouble()))) +
|
||||||
|
(DataHolder.deviceConstant!!.b.toDouble() * (x.toDouble()
|
||||||
|
.pow((2).toDouble()))) +
|
||||||
|
(DataHolder.deviceConstant!!.c.toDouble() * x) +
|
||||||
|
(DataHolder.deviceConstant!!.d.toDouble())
|
||||||
|
|
||||||
|
DataHolder.wavelengthToPixelArray.add(wavelength)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Todo: Throws error
|
||||||
|
// "Error 203: Unable to fetch data from device."
|
||||||
|
errorTriggered.postValue(
|
||||||
|
ErrorMessage(
|
||||||
|
"Error 203: Unable to fetch data from device.",
|
||||||
|
Constants.ERROR_NORMAL
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
}
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun mapIntensityValues(fullString: String, isReference: Boolean) {
|
||||||
|
|
||||||
|
if (isReference) DataHolder.intensityReferenceArray.clear()
|
||||||
|
else intensitySampleArray.clear()
|
||||||
|
|
||||||
|
Log.d("SURYAKUMAR", fullString)
|
||||||
|
val listOfString = fullString.split("\n")
|
||||||
|
|
||||||
|
for (line in listOfString) {
|
||||||
|
if ("Buf" in line) {
|
||||||
|
/* Removing trailing spaces and "Buf" from the string then taking lhs & rhs of ':' */
|
||||||
|
val numbers = line.trim()
|
||||||
|
.substring(3).split(":")
|
||||||
|
if (numbers.size >= 2) {
|
||||||
|
|
||||||
|
if (isReference)
|
||||||
|
DataHolder.intensityReferenceArray.add(numbers[1].toDouble())
|
||||||
|
else
|
||||||
|
intensitySampleArray.add(numbers[1].toDouble())
|
||||||
|
} else {
|
||||||
|
// "Error 204: Unable to fetch data from device."
|
||||||
|
errorTriggered.postValue(
|
||||||
|
ErrorMessage(
|
||||||
|
"Error 204: Unable to fetch data from device.",
|
||||||
|
Constants.ERROR_NORMAL
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
// fun mapWavelengthToAbsorbance(){
|
||||||
|
// var indexInReference = intensityReferenceArray.size - 1
|
||||||
|
// var indexInSample = intensitySampleArray.size - 1
|
||||||
|
// for (each in wavelengthToPixelArray){
|
||||||
|
// val wavelength = each[0]
|
||||||
|
// val invertedPixel = (Constants.TEST_RIGHT_TOTAL_PIXEL + 1) - each[1]
|
||||||
|
//
|
||||||
|
// var Io = 0.0
|
||||||
|
// if (intensityReferenceArray[indexInReference][0].toInt() == invertedPixel.toInt()){
|
||||||
|
// Io = intensityReferenceArray[indexInReference][1]
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// var I = 0.0
|
||||||
|
// if (intensitySampleArray[indexInSample][0].toInt() == invertedPixel.toInt()){
|
||||||
|
// I = intensitySampleArray[indexInSample][1]
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// val absorbance = log10(Io/I)
|
||||||
|
//
|
||||||
|
// val temp = ArrayList<Double>(2)
|
||||||
|
// temp.add(wavelength)
|
||||||
|
// temp.add(absorbance)
|
||||||
|
// wavelengthToAbsorbance.add(temp)
|
||||||
|
//
|
||||||
|
// indexInReference--
|
||||||
|
// indexInSample--
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
fun mapWavelengthToAbsorbance() {
|
||||||
|
if (DataHolder.intensityReferenceArray.size != intensitySampleArray.size || DataHolder.wavelengthToPixelArray.size != intensitySampleArray.size || DataHolder.wavelengthToPixelArray.size != DataHolder.intensityReferenceArray.size) {
|
||||||
|
errorTriggered.postValue(
|
||||||
|
ErrorMessage(
|
||||||
|
"Error 205: Unable to fetch data from device, please try again by reopening the app",
|
||||||
|
Constants.ERROR_CRITICAL
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
throw Exception("Inconsistency in the data, size of arrays are not same. \nintensityReferenceArray.size = ${DataHolder.intensityReferenceArray.size} ; intensitySampleArray.size = ${intensitySampleArray.size} ; wavelengthToPixelArray.size = ${DataHolder.wavelengthToPixelArray.size}")
|
||||||
|
}
|
||||||
|
|
||||||
|
wavelengthToAbsorbance.clear()
|
||||||
|
calculationVariableList.clear()
|
||||||
|
|
||||||
|
// Index pointing to last of the array
|
||||||
|
// var indexInIntensityArrays = intensityReferenceArray.size - 1
|
||||||
|
// for ((index,wavelength) in wavelengthToPixelArray.withIndex()) {
|
||||||
|
for (index in 0 until DataHolder.wavelengthToPixelArray.size) {
|
||||||
|
|
||||||
|
val invertedPixelIndex = (Constants.TEST_RIGHT_TOTAL_PIXEL) - (index + 1)
|
||||||
|
|
||||||
|
val i0 = DataHolder.intensityReferenceArray[invertedPixelIndex]
|
||||||
|
// if (intensityReferenceArray[indexInIntensityArrays][0].toInt() == invertedPixelIndex.toInt()) {
|
||||||
|
// Io = intensityReferenceArray[indexInIntensityArrays][1]
|
||||||
|
// } else {
|
||||||
|
// // Not needed - As you are calculating index and also checking the size of all 3 array before
|
||||||
|
// throw Exception("Inconsistency in the data, pixel not found in intensity reference array \n pixel in intensityReferenceArray = ${intensityReferenceArray[indexInIntensityArrays][0]} & inverted pixel value = ${invertedPixelIndex.toInt()}")
|
||||||
|
// }
|
||||||
|
|
||||||
|
val i1 = intensitySampleArray[invertedPixelIndex]
|
||||||
|
// if (intensitySampleArray[indexInIntensityArrays][0].toInt() == invertedPixelIndex.toInt()) {
|
||||||
|
// I = intensitySampleArray[indexInIntensityArrays][1]
|
||||||
|
// } else {
|
||||||
|
// // Not needed - As you are calculating index and also checking the size of all 3 array before
|
||||||
|
// throw Exception("Inconsistency in the data, pixel not found in intensity sample array \n pixel in intensitySampleArray = ${intensitySampleArray[indexInIntensityArrays][0]} & inverted pixel value = ${invertedPixelIndex.toInt()}")
|
||||||
|
// }
|
||||||
|
|
||||||
|
// if (I==0.0 || Io == 0.0){
|
||||||
|
// throw Exception("error in data calculation I = $I & Io = $Io")
|
||||||
|
// }
|
||||||
|
|
||||||
|
val absorbance = log10(i0 / i1)
|
||||||
|
val wavelength = DataHolder.wavelengthToPixelArray[index]
|
||||||
|
val temp = ArrayList<Double>(2)
|
||||||
|
temp.add(wavelength)
|
||||||
|
temp.add(absorbance)
|
||||||
|
wavelengthToAbsorbance.add(temp)
|
||||||
|
|
||||||
|
// Todo: Remove
|
||||||
|
val calculationVariableForTest = CalculationVariableForTest()
|
||||||
|
calculationVariableForTest.pixelNo = index + 1
|
||||||
|
calculationVariableForTest.invertedPixelNo =
|
||||||
|
invertedPixelIndex + 1 // 0-based indexing
|
||||||
|
calculationVariableForTest.wavelength = wavelength
|
||||||
|
calculationVariableForTest.I0 = i0
|
||||||
|
calculationVariableForTest.I = i1
|
||||||
|
calculationVariableForTest.absorbance = absorbance
|
||||||
|
calculationVariableList.add(calculationVariableForTest)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun calculateResults() {
|
||||||
|
DataHolder.sampleReadCounter++
|
||||||
|
|
||||||
|
// patientDetails.results = ResultCalculationZeroImpl().getResults(wavelengthToPixelArray, intensityReferenceArray, intensitySampleArray)
|
||||||
|
|
||||||
|
|
||||||
|
val resultCalculation: TestRightResultCalculation = ResultCalculationWithMaxImpl()
|
||||||
|
calculationData = resultCalculation.getResults(wavelengthToAbsorbance)
|
||||||
|
// patientDetails.results = resultCalculation.getResults(wavelengthToAbsorbance)
|
||||||
|
patientDetails.results = calculationData.result
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
fun calculateResultsForSickleFind() {
|
||||||
|
DataHolder.sampleReadCounter++
|
||||||
|
val resultCalculation: TestRightResultCalculation =
|
||||||
|
SickleFindResultCaluculationWithMaxImpl()
|
||||||
|
calculationData = resultCalculation.getResults(wavelengthToAbsorbance)
|
||||||
|
patientDetails.results = calculationData.result
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveCsv(appContext: Context, filename: String) {
|
||||||
|
// try {
|
||||||
|
var folderPath: String? = DataHolder.appFolderPath
|
||||||
|
if (DataHolder.isAppFolderCreated) {
|
||||||
|
SaveRawData().saveCsv(folderPath!!, filename, wavelengthToAbsorbance)
|
||||||
|
} else {
|
||||||
|
folderPath = MyUtils.createAppFolder(appContext)
|
||||||
|
if (folderPath != null) {
|
||||||
|
DataHolder.isAppFolderCreated = true
|
||||||
|
DataHolder.appFolderPath = folderPath
|
||||||
|
SaveRawData().saveCsv(folderPath, filename, wavelengthToAbsorbance)
|
||||||
|
} else {
|
||||||
|
// errorTriggered.postValue("Unable to save CSV, Please try again")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// } catch (e: java.io.FileNotFoundException) {
|
||||||
|
// errorTriggered.postValue(
|
||||||
|
// ErrorMessage(
|
||||||
|
// "File name isn't valid",
|
||||||
|
// Constants.ERROR_CRITICAL
|
||||||
|
// )
|
||||||
|
// )
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveCsvForTesting(appContext: Context, filename: String) {
|
||||||
|
// try {
|
||||||
|
var folderPath: String? = DataHolder.appFolderPath
|
||||||
|
if (DataHolder.isAppFolderCreated) {
|
||||||
|
SaveRawDataTest().saveCsv(folderPath!!, filename, calculationVariableList)
|
||||||
|
} else {
|
||||||
|
folderPath = MyUtils.createAppFolder(appContext)
|
||||||
|
if (folderPath != null) {
|
||||||
|
DataHolder.isAppFolderCreated = true
|
||||||
|
DataHolder.appFolderPath = folderPath
|
||||||
|
SaveRawDataTest().saveCsv(folderPath, filename, calculationVariableList)
|
||||||
|
} else {
|
||||||
|
// errorTriggered.postValue("Unable to save CSV, Please try again")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// } catch (e: java.io.FileNotFoundException) {
|
||||||
|
// errorTriggered.postValue(
|
||||||
|
// ErrorMessage(
|
||||||
|
// "File name isn't valid",
|
||||||
|
// Constants.ERROR_CRITICAL
|
||||||
|
// )
|
||||||
|
// )
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveLog(appContext: Context, fileName: String) {
|
||||||
|
// try {
|
||||||
|
var folderPath: String? = DataHolder.appFolderPath
|
||||||
|
|
||||||
|
if (DataHolder.isAppFolderCreated) {
|
||||||
|
SaveRawData().saveLog(folderPath!!, fileName, calculationData)
|
||||||
|
} else {
|
||||||
|
folderPath = MyUtils.createAppFolder(appContext)
|
||||||
|
if (folderPath != null) {
|
||||||
|
DataHolder.isAppFolderCreated = true
|
||||||
|
DataHolder.appFolderPath = folderPath
|
||||||
|
SaveRawData().saveLog(folderPath, fileName, calculationData)
|
||||||
|
} else {
|
||||||
|
// errorTriggered.postValue("Unable to save Log, Please try again")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// } catch (e: java.io.FileNotFoundException) {
|
||||||
|
// errorTriggered.postValue(
|
||||||
|
// ErrorMessage(
|
||||||
|
// "File name isn't valid",
|
||||||
|
// Constants.ERROR_CRITICAL
|
||||||
|
// )
|
||||||
|
// )
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveLogWithPatient(appContext: Context, fileName: String) {
|
||||||
|
// try {
|
||||||
|
var folderPath: String? = DataHolder.appFolderPath
|
||||||
|
|
||||||
|
if (DataHolder.isAppFolderCreated) {
|
||||||
|
SaveRawData().saveLogWithPatientData(
|
||||||
|
folderPath!!,
|
||||||
|
fileName,
|
||||||
|
calculationData,
|
||||||
|
patientDetails
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
folderPath = MyUtils.createAppFolder(appContext)
|
||||||
|
if (folderPath != null) {
|
||||||
|
DataHolder.isAppFolderCreated = true
|
||||||
|
DataHolder.appFolderPath = folderPath
|
||||||
|
SaveRawData().saveLogWithPatientData(
|
||||||
|
folderPath,
|
||||||
|
fileName,
|
||||||
|
calculationData,
|
||||||
|
patientDetails
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
// errorTriggered.postValue("Unable to save Log, Please try again")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// } catch (e: java.io.FileNotFoundException) {
|
||||||
|
// errorTriggered.postValue(
|
||||||
|
// ErrorMessage(
|
||||||
|
// "File name isn't valid",
|
||||||
|
// Constants.ERROR_CRITICAL
|
||||||
|
// )
|
||||||
|
// )
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun saveLogTest(appContext: Context, isReference: Boolean, fullString: String) {
|
||||||
|
var fileName: String =
|
||||||
|
"test_log_" + SimpleDateFormat("ddMMyyyy_HHmmss").format(Date()) + ".txt"
|
||||||
|
fileName = if (isReference) {
|
||||||
|
"reference_$fileName"
|
||||||
|
} else {
|
||||||
|
"sample_$fileName"
|
||||||
|
}
|
||||||
|
|
||||||
|
var folderPath: String? = DataHolder.appFolderPath
|
||||||
|
if (DataHolder.isAppFolderCreated) {
|
||||||
|
SaveRawDataTest().saveLog(folderPath!!, fileName, isReference, fullString)
|
||||||
|
} else {
|
||||||
|
folderPath = MyUtils.createAppFolder(appContext)
|
||||||
|
if (folderPath != null) {
|
||||||
|
DataHolder.isAppFolderCreated = true
|
||||||
|
DataHolder.appFolderPath = folderPath
|
||||||
|
SaveRawDataTest().saveLog(folderPath, fileName, isReference, fullString)
|
||||||
|
} else {
|
||||||
|
// errorTriggered.postValue("Unable to save Log, Please try again")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,123 @@
|
|||||||
|
package com.example.hpos.presentation.testRight
|
||||||
|
|
||||||
|
import android.app.Service
|
||||||
|
import android.content.Intent
|
||||||
|
import android.hardware.usb.UsbDeviceConnection
|
||||||
|
import android.os.Binder
|
||||||
|
import android.os.IBinder
|
||||||
|
import android.util.Log
|
||||||
|
import com.example.hpos.data.constant.Constants
|
||||||
|
import com.example.hpos.data.constant.TestRightCommands
|
||||||
|
import com.example.hpos.presentation.UsbServiceListener
|
||||||
|
import com.hoho.android.usbserial.driver.UsbSerialDriver
|
||||||
|
import com.hoho.android.usbserial.driver.UsbSerialPort
|
||||||
|
import com.hoho.android.usbserial.util.SerialInputOutputManager
|
||||||
|
import java.io.IOException
|
||||||
|
|
||||||
|
|
||||||
|
class UsbService : Service() {
|
||||||
|
|
||||||
|
// Binder to be given to clients
|
||||||
|
private val binder = UsbServiceBinder()
|
||||||
|
private lateinit var mPort: UsbSerialPort
|
||||||
|
private var isUsbConnected = false
|
||||||
|
private val TAG = "UsbService"
|
||||||
|
|
||||||
|
inner class UsbServiceBinder : Binder() {
|
||||||
|
// Return this instance of UsbService so clients can call public methods
|
||||||
|
fun getService(): UsbService = this@UsbService
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onBind(intent: Intent): IBinder {
|
||||||
|
Log.d("surya", "onBind() called")
|
||||||
|
return binder
|
||||||
|
}
|
||||||
|
|
||||||
|
// fun connect(driver: UsbSerialDriver, connection: UsbDeviceConnection) {
|
||||||
|
// mPort = driver.ports[0] // Most devices have just one port (port 0)
|
||||||
|
// mPort.open(connection)
|
||||||
|
// mPort.setParameters(115200, 8, UsbSerialPort.STOPBITS_1, UsbSerialPort.PARITY_NONE)
|
||||||
|
//
|
||||||
|
// isUsbConnected = true
|
||||||
|
// Log.d(TAG, "My Usb Connected ${mPort.driver}")
|
||||||
|
// }
|
||||||
|
|
||||||
|
var listener: UsbServiceListener? = null
|
||||||
|
fun connect(driver: UsbSerialDriver, connection: UsbDeviceConnection) {
|
||||||
|
mPort = driver.ports[0] // Most devices have just one port (port 0)
|
||||||
|
mPort.open(connection)
|
||||||
|
mPort.setParameters(115200, 8, UsbSerialPort.STOPBITS_1, UsbSerialPort.PARITY_NONE)
|
||||||
|
|
||||||
|
isUsbConnected = true
|
||||||
|
Log.d(TAG, "My Usb Connected ${mPort.driver}")
|
||||||
|
|
||||||
|
val usbIoManager = SerialInputOutputManager(mPort,
|
||||||
|
object : SerialInputOutputManager.Listener{
|
||||||
|
override fun onNewData(data: ByteArray?) {
|
||||||
|
// Log.e(TAG, "onNewData() called inside eventDrivenWrite()")
|
||||||
|
listener?.onUsbRead(data)
|
||||||
|
}
|
||||||
|
override fun onRunError(e: Exception?) {
|
||||||
|
Log.e(TAG, "onRunError() called inside eventDrivenWrite()")
|
||||||
|
listener?.onUsbError(e)
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
usbIoManager.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
fun disconnect() {
|
||||||
|
if(isUsbConnected){
|
||||||
|
mPort.close()
|
||||||
|
isUsbConnected = false;
|
||||||
|
Log.d(TAG, "My Usb disconnected:: ${mPort.driver}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// fun eventDrivenWrite(command: TestRightCommands, listener: UsbServiceListener) {
|
||||||
|
// val usbIoManager = SerialInputOutputManager(mPort,
|
||||||
|
// object : SerialInputOutputManager.Listener{
|
||||||
|
// override fun onNewData(data: ByteArray?) {
|
||||||
|
// Log.e(TAG, "onNewData() called inside eventDrivenWrite() :: command = ${command.command}")
|
||||||
|
// listener.onUsbRead(data)
|
||||||
|
// }
|
||||||
|
// override fun onRunError(e: Exception?) {
|
||||||
|
// Log.e(TAG, "onRunError() called inside eventDrivenWrite()")
|
||||||
|
// listener.onUsbError(e)
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// })
|
||||||
|
// usbIoManager.start();
|
||||||
|
//
|
||||||
|
// try {
|
||||||
|
// mPort.write(command.command.toByteArray(), Constants.WRITE_TIMEOUT_MILLIS)
|
||||||
|
// } catch (e: IOException) {
|
||||||
|
// listener.onUsbError(e)
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
fun eventDrivenWrite(command: TestRightCommands, listener: UsbServiceListener) {
|
||||||
|
this.listener = listener
|
||||||
|
try {
|
||||||
|
mPort.write(command.command.toByteArray(), Constants.WRITE_TIMEOUT_MILLIS)
|
||||||
|
} catch (e: IOException) {
|
||||||
|
listener.onUsbError(e)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// fun write(command: TestRightCommands){
|
||||||
|
// mPort.write(command.command.toByteArray(), Constants.WRITE_TIMEOUT_MILLIS)
|
||||||
|
// }
|
||||||
|
|
||||||
|
// fun read(){
|
||||||
|
// val byteArray = ByteArray(3700)
|
||||||
|
// val len = mPort.read(byteArray, Constants.READ_TIMEOUT_MILLIS)
|
||||||
|
//
|
||||||
|
// Log.d(TAG, "length is $len")
|
||||||
|
// val byteArrayCropped = ByteArray(len)
|
||||||
|
// System.arraycopy(byteArray, 0, byteArrayCropped, 0, len)
|
||||||
|
//
|
||||||
|
// listener?.onUsbRead(byteArrayCropped)
|
||||||
|
// }
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
package com.example.hpos.presentation.utils
|
||||||
|
|
||||||
|
interface MyDialogListener {
|
||||||
|
fun onClickNegativeButton()
|
||||||
|
fun onClickPositiveButton()
|
||||||
|
}
|
||||||
@@ -1,17 +1,4 @@
|
|||||||
/*
|
package com.example.hpos.presentation.utils
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.presentation.utils
|
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.widget.Toast
|
import android.widget.Toast
|
||||||
25
app/src/main/java/com/example/hpos/util/MyUtils.kt
Normal file
25
app/src/main/java/com/example/hpos/util/MyUtils.kt
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
package com.example.hpos.util
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.os.Environment
|
||||||
|
import com.example.hpos.R
|
||||||
|
import java.io.File
|
||||||
|
|
||||||
|
object MyUtils {
|
||||||
|
|
||||||
|
fun createAppFolder(context: Context) : String? {
|
||||||
|
val folderPath = Environment.getExternalStorageDirectory().absolutePath + "/" + context.resources.getString(R.string.app_name) + "/"
|
||||||
|
val file = File(folderPath)
|
||||||
|
|
||||||
|
return if (!file.exists()) {
|
||||||
|
if (!file.mkdirs()) {
|
||||||
|
null
|
||||||
|
} else {
|
||||||
|
folderPath
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
folderPath
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
package com.example.hpos.util
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import androidx.lifecycle.ViewModel
|
||||||
|
import androidx.lifecycle.ViewModelProvider
|
||||||
|
import com.example.hpos.presentation.MainViewModel
|
||||||
|
import com.example.hpos.presentation.testRight.TestRightViewModel
|
||||||
|
|
||||||
|
class MyViewModelFactory(private val context: Context) : ViewModelProvider.Factory {
|
||||||
|
|
||||||
|
override fun <T : ViewModel> create(modelClass: Class<T>): T {
|
||||||
|
if (modelClass.isAssignableFrom(MainViewModel::class.java))
|
||||||
|
return MainViewModel() as T
|
||||||
|
else if (modelClass.isAssignableFrom(TestRightViewModel::class.java))
|
||||||
|
return TestRightViewModel() as T
|
||||||
|
else
|
||||||
|
throw IllegalArgumentException("Unknown ViewModel class");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting
|
|
||||||
|
|
||||||
import android.app.Application
|
|
||||||
import com.example.hpostesting.firebase.FirebaseManager
|
|
||||||
import com.google.firebase.firestore.FirebaseFirestoreSettings
|
|
||||||
import dagger.hilt.android.HiltAndroidApp
|
|
||||||
import kotlinx.coroutines.CoroutineScope
|
|
||||||
import kotlinx.coroutines.Dispatchers
|
|
||||||
import kotlinx.coroutines.SupervisorJob
|
|
||||||
import javax.inject.Inject
|
|
||||||
|
|
||||||
@HiltAndroidApp
|
|
||||||
class HPOSTestingApplication : Application() {
|
|
||||||
@Inject
|
|
||||||
lateinit var firebaseManager: FirebaseManager
|
|
||||||
override fun onCreate() {
|
|
||||||
super.onCreate()
|
|
||||||
val applicationScope = CoroutineScope(SupervisorJob() + Dispatchers.IO)
|
|
||||||
|
|
||||||
// You can now use firebaseManager here after Hilt injects it
|
|
||||||
val firestoreSettings = FirebaseFirestoreSettings.Builder()
|
|
||||||
.setPersistenceEnabled(true) // Enable offline persistence if needed
|
|
||||||
.build()
|
|
||||||
|
|
||||||
val firestore = firebaseManager.getCurrentFirestoreF()
|
|
||||||
firestore.firestoreSettings = firestoreSettings
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.api
|
|
||||||
|
|
||||||
import com.example.hpostesting.data.model.devicediagnostics.DeviceDiagnosticsRequest
|
|
||||||
import com.example.hpostesting.data.model.devicediagnostics.DeviceDiagnosticsResponse
|
|
||||||
import com.example.hpostesting.data.model.deviceprovision.DeviceProvisionRequest
|
|
||||||
import com.example.hpostesting.data.model.deviceprovision.DeviceProvisionResponse
|
|
||||||
import com.example.hpostesting.data.model.login.LoginRequest
|
|
||||||
import com.example.hpostesting.data.model.login.LoginResponse
|
|
||||||
import retrofit2.http.Body
|
|
||||||
import retrofit2.http.POST
|
|
||||||
|
|
||||||
interface MolbioAuthApi {
|
|
||||||
|
|
||||||
@POST("deviceManagement/device/provision")
|
|
||||||
suspend fun deviceProvision(
|
|
||||||
@Body deviceProvisionRequest: DeviceProvisionRequest,
|
|
||||||
): DeviceProvisionResponse
|
|
||||||
|
|
||||||
@POST("deviceService/device/login")
|
|
||||||
suspend fun login(
|
|
||||||
@Body loginRequest: LoginRequest,
|
|
||||||
): LoginResponse
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,66 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.api
|
|
||||||
|
|
||||||
import com.example.hpostesting.data.model.devicediagnostics.DeviceDiagnosticsRequest
|
|
||||||
import com.example.hpostesting.data.model.devicediagnostics.DeviceDiagnosticsResponse
|
|
||||||
import com.example.hpostesting.data.model.log.UploadLogsResponse
|
|
||||||
import com.example.hpostesting.data.model.molbioresult.MolbioV2ResultRequest
|
|
||||||
import com.example.hpostesting.data.model.molbioresult.MolbioV2ResultResponse
|
|
||||||
import com.example.hpostesting.data.model.updates.CheckUpdateRequest
|
|
||||||
import com.example.hpostesting.data.model.updates.CheckUpdateResponse
|
|
||||||
import com.example.hpostesting.data.model.updates.DeviceUpdateRequest
|
|
||||||
import okhttp3.MultipartBody
|
|
||||||
import okhttp3.ResponseBody
|
|
||||||
import retrofit2.Response
|
|
||||||
import retrofit2.http.Body
|
|
||||||
import retrofit2.http.GET
|
|
||||||
import retrofit2.http.Multipart
|
|
||||||
import retrofit2.http.POST
|
|
||||||
import retrofit2.http.PUT
|
|
||||||
import retrofit2.http.Part
|
|
||||||
|
|
||||||
interface MolbioResultApi {
|
|
||||||
|
|
||||||
@PUT("deviceService/results/HPOS")
|
|
||||||
suspend fun uploadResults(
|
|
||||||
@Body molbioV2ResultRequest: MolbioV2ResultRequest,
|
|
||||||
): MolbioV2ResultResponse
|
|
||||||
|
|
||||||
@POST("deviceService/device/checkUpdate")
|
|
||||||
suspend fun checkUpdate(
|
|
||||||
@Body checkUpdateRequest: CheckUpdateRequest,
|
|
||||||
): CheckUpdateResponse
|
|
||||||
|
|
||||||
@POST("deviceService/device/getUpdate")
|
|
||||||
suspend fun deviceUpdate(
|
|
||||||
@Body deviceUpdateRequest: DeviceUpdateRequest,
|
|
||||||
): Response<ResponseBody>
|
|
||||||
|
|
||||||
@GET("deviceService/device/getClientCertificate")
|
|
||||||
suspend fun downloadClientCertificate(
|
|
||||||
): ResponseBody
|
|
||||||
|
|
||||||
@Multipart
|
|
||||||
@POST("deviceService/device/uploadLogs")
|
|
||||||
suspend fun uploadLogs(
|
|
||||||
@Part logFile: MultipartBody.Part,
|
|
||||||
): UploadLogsResponse
|
|
||||||
|
|
||||||
|
|
||||||
@PUT("deviceService/device/uploadDeviceDiagnostics")
|
|
||||||
suspend fun deviceDiagnostics(
|
|
||||||
@Body deviceDiagnosticsRequest: DeviceDiagnosticsRequest
|
|
||||||
): DeviceDiagnosticsResponse
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,51 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.constant
|
|
||||||
|
|
||||||
import androidx.lifecycle.MutableLiveData
|
|
||||||
import com.example.hpostesting.data.model.patient.HemoCubeTestData
|
|
||||||
import com.example.hpostesting.data.model.patient.UserData
|
|
||||||
import com.example.hpostesting.data.model.test.TestRightDeviceConstants
|
|
||||||
import com.example.hpostesting.data.model.test.TestType
|
|
||||||
|
|
||||||
object DataHolder {
|
|
||||||
|
|
||||||
var sampleId: String = "sampleId"
|
|
||||||
var selectedTestType: TestType = TestType.SICKLECERT
|
|
||||||
val usbConnected = MutableLiveData(true)
|
|
||||||
var mobileUniqueId: String? = null
|
|
||||||
var isAppFolderCreated = false
|
|
||||||
var appFolderPath = ""
|
|
||||||
var isReferenceTaken = false
|
|
||||||
var isToken = false
|
|
||||||
var sampleReadCounter = 0
|
|
||||||
|
|
||||||
var deviceConstant: TestRightDeviceConstants? = null
|
|
||||||
var deviceSerialNumber: String = "ABCD"
|
|
||||||
val deviceType = MutableLiveData<String>()
|
|
||||||
val wavelengthToPixelArray = ArrayList<Double>()
|
|
||||||
val intensityReferenceArray = ArrayList<Double>()
|
|
||||||
var selectedTest: UserData? = null
|
|
||||||
var hemoCubeTestData: HemoCubeTestData? = null
|
|
||||||
var bloodGroup: String = "Unknown"
|
|
||||||
var age = "0"
|
|
||||||
var kitSerial: String = ""
|
|
||||||
var centerName: String = ""
|
|
||||||
var district: String = ""
|
|
||||||
var quickCapture:Boolean = false
|
|
||||||
var location: UserData.Location? = null
|
|
||||||
var ipAddress: String ="0.0"
|
|
||||||
var testExp: Boolean = true
|
|
||||||
var hemocubeResult: Double? = null
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.constant
|
|
||||||
|
|
||||||
enum class HemoCubeCommands(val command: String) {
|
|
||||||
START_BUFFER_COMMAND("B\r"),
|
|
||||||
AUTO_DAC_COMMAND("C\r"),
|
|
||||||
SET_AUTO_DAC_TO_EPROM_COMMAND("G\r"),
|
|
||||||
DIAGNOSTICS_COMMAND("D\r"),
|
|
||||||
FIRMWARE_INFO_COMMAND("F\r"),
|
|
||||||
START_SAMPLE("S\r"),
|
|
||||||
PRINT_COMMAND("P\r"),
|
|
||||||
READ_DAC_COMMAND("R\r"),
|
|
||||||
DEVICE_CONFIGURATION_COMMAND("I\r"),
|
|
||||||
LOAD_DAC_VALUES("E\r"),
|
|
||||||
FIRST_GAIN_COMMAND("T\r"),
|
|
||||||
SECOND_GAIN_COMMAND("U\r"),
|
|
||||||
THIRD_GAIN_COMMAND("V\r"),
|
|
||||||
FORTH_GAIN_COMMAND("W\r"),
|
|
||||||
CHECK_CUVETTE_COMMAND("L\r"),
|
|
||||||
CHECK_TEMP_COMMAND("A\r"),
|
|
||||||
J_COMMAND("J\r"),
|
|
||||||
}
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.constant
|
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import android.content.SharedPreferences
|
|
||||||
import java.util.Locale
|
|
||||||
|
|
||||||
object LanguageManager {
|
|
||||||
private const val LANGUAGE_PREF_KEY = "language_pref"
|
|
||||||
|
|
||||||
fun setLocale(context: Context, languageCode: String) {
|
|
||||||
val locale = Locale(languageCode)
|
|
||||||
Locale.setDefault(locale)
|
|
||||||
|
|
||||||
val resources = context.resources
|
|
||||||
val configuration = resources.configuration
|
|
||||||
configuration.setLocale(locale)
|
|
||||||
|
|
||||||
context.createConfigurationContext(configuration)
|
|
||||||
}
|
|
||||||
|
|
||||||
fun persistLanguagePreference(context: Context, languageCode: String) {
|
|
||||||
val prefs: SharedPreferences =
|
|
||||||
context.getSharedPreferences("AppPrefs", Context.MODE_PRIVATE)
|
|
||||||
prefs.edit().putString(LANGUAGE_PREF_KEY, languageCode).apply()
|
|
||||||
}
|
|
||||||
|
|
||||||
fun getSavedLanguage(context: Context): String {
|
|
||||||
val prefs: SharedPreferences =
|
|
||||||
context.getSharedPreferences("AppPrefs", Context.MODE_PRIVATE)
|
|
||||||
return prefs.getString(LANGUAGE_PREF_KEY, "en") ?: "en"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.constant
|
|
||||||
|
|
||||||
enum class TestRightCommands(val command: String) {
|
|
||||||
led2Set50("led2 50\r"),
|
|
||||||
led2Set100("led2 100\r"),
|
|
||||||
read("read\r"),
|
|
||||||
autoset("autoset\r"),
|
|
||||||
run("run\r"),
|
|
||||||
printInRange("print 239 339\r"),
|
|
||||||
printAll("print\r"),
|
|
||||||
testByEnter("\n\r")
|
|
||||||
}
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.constant
|
|
||||||
|
|
||||||
enum class TestStatus(val code: Double) {
|
|
||||||
TEST_STARTED(1.0),
|
|
||||||
CONFIG_STARTED(2.0),
|
|
||||||
CONFIG_COMPLETED(3.0),
|
|
||||||
FIRST_EMPTY_AIR_READING_STARTED(4.1),
|
|
||||||
FIRST_EMPTY_AIR_READING_COMPLETED(4.2),
|
|
||||||
FIRST_EMPTY_AIR_READING_PRINT_STARTED(4.3),
|
|
||||||
FIRST_EMPTY_AIR_READING_PRINT_COMPLETED(4.4),
|
|
||||||
EPROM_ADC_RETRIEVAL_STARTED(4.5),
|
|
||||||
EPROM_ADC_RETRIEVAL_COMPLETED(4.6),
|
|
||||||
TEMPERATURE_CHECK(4.7),
|
|
||||||
CUVETTE_ABSENT(4.8),
|
|
||||||
CUVETTE_PRESENT(4.9),
|
|
||||||
CUVETTE_ABSENTR(5.1),
|
|
||||||
CUVETTE_PRESENTR(5.2),
|
|
||||||
CUVETTE_ABSENTS(7.7),
|
|
||||||
CUVETTE_PRESENTS(7.8),
|
|
||||||
BUFFER_STARTED(5.4),
|
|
||||||
BUFFER_COMPLETED(5.5),
|
|
||||||
BUFFER_PRINT_STARTED(6.0),
|
|
||||||
BUFFER_PRINT_COMPLETED(7.0),
|
|
||||||
SAMPLE_STARTED(8.0),
|
|
||||||
CUVETTE_ABSENTT(30.2),
|
|
||||||
CUVETTE_PRESENTT(30.1),
|
|
||||||
SAMPLE_COMPLETED(9.0),
|
|
||||||
SAMPLE_PRINT_STARTED(10.0),
|
|
||||||
SAMPLE_PRINT_COMPLETED(11.0),
|
|
||||||
SECOND_EMPTY_AIR_READING_STARTED(11.1),
|
|
||||||
SECOND_EMPTY_AIR_READING_COMPLETED(11.2),
|
|
||||||
SECOND_EMPTY_AIR_PRINT_STARTED(11.3),
|
|
||||||
SECOND_EMPTY_AIR_PRINT_COMPLETED(11.4),
|
|
||||||
FIRST_GAIN_STARTED(12.0),
|
|
||||||
FIRST_GAIN_COMPLETED(13.0),
|
|
||||||
FIRST_GAIN_PRINT_STARTED(14.0),
|
|
||||||
FIRST_GAIN_PRINT_COMPLETED(15.0),
|
|
||||||
SECOND_GAIN_STARTED(16.0),
|
|
||||||
SECOND_GAIN_COMPLETED(17.0),
|
|
||||||
SECOND_GAIN_PRINT_STARTED(18.0),
|
|
||||||
SECOND_GAIN_PRINT_COMPLETED(19.0),
|
|
||||||
THIRD_GAIN_STARTED(20.0),
|
|
||||||
THIRD_GAIN_COMPLETED(21.0),
|
|
||||||
THIRD_GAIN_PRINT_STARTED(22.0),
|
|
||||||
THIRD_GAIN_PRINT_COMPLETED(23.0),
|
|
||||||
FORTH_GAIN_STARTED(24.0),
|
|
||||||
FORTH_GAIN_COMPLETED(25.0),
|
|
||||||
FORTH_GAIN_PRINT_STARTED(26.0),
|
|
||||||
FORTH_GAIN_PRINT_COMPLETED(27.0),
|
|
||||||
TEST_COMPLETED(30.0)
|
|
||||||
}
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.dao
|
|
||||||
|
|
||||||
import androidx.room.TypeConverter
|
|
||||||
import com.example.hpostesting.data.model.patient.UserData
|
|
||||||
import com.google.common.reflect.TypeToken
|
|
||||||
import com.google.gson.Gson
|
|
||||||
|
|
||||||
class Converters {
|
|
||||||
private val gson = Gson()
|
|
||||||
|
|
||||||
@TypeConverter
|
|
||||||
fun fromString(value: String?): UserData.Location? {
|
|
||||||
return if (value != null) {
|
|
||||||
gson.fromJson(value, UserData.Location::class.java)
|
|
||||||
} else {
|
|
||||||
null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@TypeConverter
|
|
||||||
fun toString(location: UserData.Location?): String? {
|
|
||||||
return if (location != null) {
|
|
||||||
gson.toJson(location)
|
|
||||||
} else {
|
|
||||||
null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@TypeConverter
|
|
||||||
fun fromList(list: List<Double>): String {
|
|
||||||
return Gson().toJson(list)
|
|
||||||
}
|
|
||||||
|
|
||||||
@TypeConverter
|
|
||||||
fun toList(json: String): List<Double> {
|
|
||||||
val type = object : TypeToken<List<Double>>() {}.type
|
|
||||||
return Gson().fromJson(json, type)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,37 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.dao
|
|
||||||
|
|
||||||
import androidx.lifecycle.LiveData
|
|
||||||
import androidx.room.Dao
|
|
||||||
import androidx.room.Insert
|
|
||||||
import androidx.room.OnConflictStrategy
|
|
||||||
import androidx.room.Query
|
|
||||||
import com.example.hpostesting.data.model.patient.DeviceData
|
|
||||||
import com.example.hpostesting.data.model.patient.HemoCubeTestData
|
|
||||||
|
|
||||||
@Dao
|
|
||||||
interface DeviceDao {
|
|
||||||
@Query("SELECT * from device_table")
|
|
||||||
fun getAll(): LiveData<List<HemoCubeTestData>>
|
|
||||||
|
|
||||||
@Insert(onConflict = OnConflictStrategy.REPLACE)
|
|
||||||
suspend fun insertAll(deviceData: DeviceData)
|
|
||||||
|
|
||||||
@Query("SELECT * FROM device_table WHERE deviceId = :id")
|
|
||||||
suspend fun getUserByID(id: String): HemoCubeTestData
|
|
||||||
|
|
||||||
@Query("DELETE FROM device_table WHERE deviceId = :id")
|
|
||||||
suspend fun deleteById(id: String)
|
|
||||||
}
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.dao
|
|
||||||
|
|
||||||
import androidx.lifecycle.LiveData
|
|
||||||
import androidx.room.Dao
|
|
||||||
import androidx.room.Insert
|
|
||||||
import androidx.room.OnConflictStrategy
|
|
||||||
import androidx.room.Query
|
|
||||||
import com.example.hpostesting.data.model.patient.BufferCheckData
|
|
||||||
|
|
||||||
@Dao
|
|
||||||
interface HemoCubeBufferDao {
|
|
||||||
@Query("SELECT * from hemo_cube_buffer_test_table")
|
|
||||||
fun getAll(): LiveData<List<BufferCheckData>>
|
|
||||||
|
|
||||||
@Insert(onConflict = OnConflictStrategy.REPLACE)
|
|
||||||
suspend fun insertAll(bufferCheckData: BufferCheckData)
|
|
||||||
|
|
||||||
@Query("SELECT * FROM hemo_cube_buffer_test_table WHERE _id = :id")
|
|
||||||
suspend fun getUserByID(id: String): BufferCheckData
|
|
||||||
|
|
||||||
@Query("DELETE FROM hemo_cube_buffer_test_table WHERE _id = :id")
|
|
||||||
suspend fun deleteById(id: String)
|
|
||||||
|
|
||||||
@Query("UPDATE hemo_cube_buffer_test_table SET localFlag = :newValue WHERE _id = :id")
|
|
||||||
suspend fun updateFieldById(id: String, newValue: Boolean)
|
|
||||||
}
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.dao
|
|
||||||
|
|
||||||
import androidx.lifecycle.LiveData
|
|
||||||
import androidx.room.Dao
|
|
||||||
import androidx.room.Insert
|
|
||||||
import androidx.room.OnConflictStrategy
|
|
||||||
import androidx.room.Query
|
|
||||||
import androidx.room.Update
|
|
||||||
import com.example.hpostesting.data.model.patient.HemoCubeTestData
|
|
||||||
import com.example.hpostesting.data.model.patient.UserData
|
|
||||||
@Dao
|
|
||||||
interface HemoCubeDao {
|
|
||||||
@Query("SELECT * from hemo_cube_test_table")
|
|
||||||
fun getAll(): LiveData<List<HemoCubeTestData>>
|
|
||||||
|
|
||||||
@Query("SELECT * from hemo_cube_test_table WHERE molbioFlag=0")
|
|
||||||
fun getMolbioPending(): List<HemoCubeTestData>
|
|
||||||
|
|
||||||
@Query("SELECT * from hemo_cube_test_table WHERE localFlag=0")
|
|
||||||
fun getFirebasePending():List<HemoCubeTestData>
|
|
||||||
|
|
||||||
@Insert(onConflict = OnConflictStrategy.REPLACE)
|
|
||||||
suspend fun insertAll(hemoCubeTestData: HemoCubeTestData)
|
|
||||||
|
|
||||||
@Query("SELECT * FROM hemo_cube_test_table WHERE _id = :id")
|
|
||||||
suspend fun getUserByID(id: String): HemoCubeTestData
|
|
||||||
|
|
||||||
@Query("DELETE FROM hemo_cube_test_table WHERE _id = :id")
|
|
||||||
suspend fun deleteById(id: String)
|
|
||||||
@Query("DELETE FROM hemo_cube_test_table WHERE testStatus = 0")
|
|
||||||
suspend fun deleteByStatus()
|
|
||||||
@Query("UPDATE hemo_cube_test_table SET localFlag = :newValue WHERE _id = :id")
|
|
||||||
suspend fun updateFieldById(id: String, newValue: Boolean)
|
|
||||||
|
|
||||||
@Query("UPDATE hemo_cube_test_table SET molbioFlag = :newValue WHERE _id = :id")
|
|
||||||
suspend fun updateMolbioFlag(id: String, newValue: Boolean)
|
|
||||||
|
|
||||||
@Query("UPDATE hemo_cube_test_table SET isCSVCreated = :newValue WHERE _id = :id")
|
|
||||||
suspend fun updateCSVFieldById(id: String, newValue: Boolean)
|
|
||||||
|
|
||||||
@Query("SELECT * from hemo_cube_test_table WHERE localFlag = 0")
|
|
||||||
fun getPendingUser(): LiveData<List<HemoCubeTestData>>
|
|
||||||
|
|
||||||
@Update
|
|
||||||
suspend fun updateTest(hemoCubeTestData: HemoCubeTestData)
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.dao
|
|
||||||
|
|
||||||
import androidx.room.Database
|
|
||||||
import androidx.room.RoomDatabase
|
|
||||||
import androidx.room.TypeConverters
|
|
||||||
import com.example.hpostesting.data.model.patient.BufferCheckData
|
|
||||||
import com.example.hpostesting.data.model.patient.DeviceData
|
|
||||||
import com.example.hpostesting.data.model.patient.HemoCubeTestData
|
|
||||||
import com.example.hpostesting.data.model.patient.UserData
|
|
||||||
|
|
||||||
@Database(
|
|
||||||
entities = [UserData::class, HemoCubeTestData::class, DeviceData::class, BufferCheckData::class],
|
|
||||||
version = 38,
|
|
||||||
exportSchema = false
|
|
||||||
)
|
|
||||||
@TypeConverters(Converters::class)
|
|
||||||
abstract class MyDatabase : RoomDatabase() {
|
|
||||||
abstract fun userDao(): UserDao
|
|
||||||
abstract fun hemoCubeDao(): HemoCubeDao
|
|
||||||
abstract fun hemoCubeBufferDao(): HemoCubeBufferDao
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.dao
|
|
||||||
|
|
||||||
import androidx.lifecycle.LiveData
|
|
||||||
import androidx.room.Dao
|
|
||||||
import androidx.room.Insert
|
|
||||||
import androidx.room.OnConflictStrategy
|
|
||||||
import androidx.room.Query
|
|
||||||
import com.example.hpostesting.data.model.patient.UserData
|
|
||||||
|
|
||||||
@Dao
|
|
||||||
interface UserDao {
|
|
||||||
@Query("SELECT * from user_table")
|
|
||||||
fun getAll(): LiveData<List<UserData>>
|
|
||||||
|
|
||||||
@Insert(onConflict = OnConflictStrategy.REPLACE)
|
|
||||||
suspend fun insertAll(userData: UserData)
|
|
||||||
|
|
||||||
@Query("SELECT * FROM user_table WHERE _id = :id")
|
|
||||||
suspend fun getUserByID(id: String): UserData
|
|
||||||
|
|
||||||
@Query("DELETE FROM user_table WHERE _id = :id")
|
|
||||||
suspend fun deleteById(id: String)
|
|
||||||
}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.datasource
|
|
||||||
|
|
||||||
import com.example.hpostesting.data.model.patient.HemoCubeTestData
|
|
||||||
|
|
||||||
interface LocalFileDataSource {
|
|
||||||
|
|
||||||
fun saveCsvToDisk(filepath: String, contents: ArrayList<Array<String>>)
|
|
||||||
|
|
||||||
fun saveTextToDisk(filepath: String, contents: String)
|
|
||||||
|
|
||||||
fun exportDataToCSV(
|
|
||||||
fileName: String, dataList: List<HemoCubeTestData>,
|
|
||||||
): Boolean
|
|
||||||
fun backUpDataToCSV(fileName: String, dataList: List<HemoCubeTestData>)
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,299 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.datasource
|
|
||||||
|
|
||||||
import android.os.Environment
|
|
||||||
import com.example.hpostesting.data.model.patient.HemoCubeTestData
|
|
||||||
import com.opencsv.CSVWriter
|
|
||||||
import java.io.File
|
|
||||||
import java.io.FileWriter
|
|
||||||
import java.io.IOException
|
|
||||||
import javax.inject.Inject
|
|
||||||
|
|
||||||
class LocalFileDataSourceImpl @Inject constructor() : LocalFileDataSource {
|
|
||||||
|
|
||||||
override fun saveCsvToDisk(filepath: String, contents: ArrayList<Array<String>>) {
|
|
||||||
val writer = CSVWriter(FileWriter(filepath))
|
|
||||||
writer.writeAll(contents) // data is adding to csv
|
|
||||||
writer.close()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun saveTextToDisk(filepath: String, contents: String) {
|
|
||||||
val writer = FileWriter(File(filepath))
|
|
||||||
|
|
||||||
writer.append(contents)
|
|
||||||
writer.flush()
|
|
||||||
writer.close()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun exportDataToCSV(
|
|
||||||
fileName: String, dataList: List<HemoCubeTestData>,
|
|
||||||
): Boolean {
|
|
||||||
try {
|
|
||||||
val formattedFileName = fileName.replace(
|
|
||||||
Regex("[^a-zA-Z0-9.-]"),
|
|
||||||
"_"
|
|
||||||
) // Replace special characters with underscores
|
|
||||||
val filePath = File(getExternalStorageDirectory(), formattedFileName)
|
|
||||||
val writer = FileWriter(filePath)
|
|
||||||
val csvWriter = CSVWriter(writer)
|
|
||||||
// Write CSV header
|
|
||||||
val header = arrayOf(
|
|
||||||
"_id",
|
|
||||||
"name",
|
|
||||||
"incubationTime",
|
|
||||||
"bloodGroup",
|
|
||||||
"age", // Include other fields from the data class
|
|
||||||
"state",
|
|
||||||
"abhaId",
|
|
||||||
"userImageURL",
|
|
||||||
"location",
|
|
||||||
"reportUploadTime",
|
|
||||||
"testType",
|
|
||||||
"testTime",
|
|
||||||
"testStatus",
|
|
||||||
"gender",
|
|
||||||
"localFlag", // Add more fields as necessary
|
|
||||||
"deviceId",
|
|
||||||
"appVersion",
|
|
||||||
"deviceSerialNumber",
|
|
||||||
"deviceType",
|
|
||||||
"kitSerial",
|
|
||||||
"resultData",
|
|
||||||
"led1Buffer",
|
|
||||||
"led2Buffer",
|
|
||||||
"led3Buffer",
|
|
||||||
"led4Buffer",
|
|
||||||
"led1Sample",
|
|
||||||
"led2Sample",
|
|
||||||
"led3Sample",
|
|
||||||
"led4Sample",
|
|
||||||
"led1Average",
|
|
||||||
"led2Average",
|
|
||||||
"led3Average",
|
|
||||||
"led4Average",
|
|
||||||
"abs1",
|
|
||||||
"abs2",
|
|
||||||
"abs3",
|
|
||||||
"abs4",
|
|
||||||
"deviceRatio",
|
|
||||||
"calculatedRatio",
|
|
||||||
"predictedDenovixRatio",
|
|
||||||
"coefficients",
|
|
||||||
"classificationResult",
|
|
||||||
"prdClassification",
|
|
||||||
"errorMessages",
|
|
||||||
"batteryLevel",
|
|
||||||
"batteryCapacity",
|
|
||||||
"batteryMaxCapacity",
|
|
||||||
"batteryTemperature",
|
|
||||||
"batteryVoltage"
|
|
||||||
)
|
|
||||||
csvWriter.writeNext(header)
|
|
||||||
|
|
||||||
// Filter and write data rows where testStatus is true
|
|
||||||
val filteredDataList = dataList.filter { it.testStatus == true }
|
|
||||||
for (data in filteredDataList) {
|
|
||||||
val row = arrayOf(
|
|
||||||
data._id,
|
|
||||||
data.name,
|
|
||||||
data.incubationTime,
|
|
||||||
data.bloodGroup,
|
|
||||||
data.age, // Include other fields similarly
|
|
||||||
data.state,
|
|
||||||
data.abhaId,
|
|
||||||
data.userImageURL,
|
|
||||||
data.location?.toString(),
|
|
||||||
data.reportUploadTime ?: "",
|
|
||||||
data.testType ?: "",
|
|
||||||
data.testTime ?: "",
|
|
||||||
data.testStatus?.toString() ?: "",
|
|
||||||
data.gender,
|
|
||||||
data.localFlag.toString(),
|
|
||||||
data.deviceId ?: "",
|
|
||||||
data.appVersion ?: "",
|
|
||||||
data.deviceSerialNumber,
|
|
||||||
data.deviceType,
|
|
||||||
data.kitSerial,
|
|
||||||
data.resultData,
|
|
||||||
data.led1Buffer?.toString() ?: "",
|
|
||||||
data.led2Buffer?.toString() ?: "",
|
|
||||||
data.led3Buffer?.toString() ?: "",
|
|
||||||
data.led4Buffer?.toString() ?: "",
|
|
||||||
data.led1Sample?.toString() ?: "",
|
|
||||||
data.led2Sample?.toString() ?: "",
|
|
||||||
data.led3Sample?.toString() ?: "",
|
|
||||||
data.led4Sample?.toString() ?: "",
|
|
||||||
data.led1Average?.toString() ?: "",
|
|
||||||
data.led2Average?.toString() ?: "",
|
|
||||||
data.led3Average?.toString() ?: "",
|
|
||||||
data.led4Average?.toString() ?: "",
|
|
||||||
data.abs1?.toString() ?: "",
|
|
||||||
data.abs2?.toString() ?: "",
|
|
||||||
data.abs3?.toString() ?: "",
|
|
||||||
data.abs4?.toString() ?: "",
|
|
||||||
data.deviceRatio?.toString() ?: "",
|
|
||||||
data.calculatedRatio?.toString() ?: "",
|
|
||||||
data.predictedDenovixRatio?.toString() ?: "",
|
|
||||||
data.coefficients ?: "",
|
|
||||||
data.classificationResult,
|
|
||||||
data.prdClassification,
|
|
||||||
data.errorMessages,
|
|
||||||
data.batteryLevel,
|
|
||||||
data.batteryCapacity,
|
|
||||||
data.batteryMaxCapacity,
|
|
||||||
data.batteryTemperature,
|
|
||||||
data.batteryVoltage
|
|
||||||
)
|
|
||||||
csvWriter.writeNext(row)
|
|
||||||
}
|
|
||||||
writer.close()
|
|
||||||
return true
|
|
||||||
} catch (e: IOException) {
|
|
||||||
e.printStackTrace()
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun backUpDataToCSV(fileName: String, dataList: List<HemoCubeTestData>) {
|
|
||||||
try {
|
|
||||||
val filePath = File(getExternalStorageDirectory(), fileName)
|
|
||||||
val writer = FileWriter(filePath)
|
|
||||||
val csvWriter = CSVWriter(writer)
|
|
||||||
// Write CSV header
|
|
||||||
val header = arrayOf(
|
|
||||||
"_id",
|
|
||||||
"name",
|
|
||||||
"incubationTime",
|
|
||||||
"bloodGroup",
|
|
||||||
"age", // Include other fields from the data class
|
|
||||||
"state",
|
|
||||||
"abhaId",
|
|
||||||
"userImageURL",
|
|
||||||
"location",
|
|
||||||
"reportUploadTime",
|
|
||||||
"testType",
|
|
||||||
"testTime",
|
|
||||||
"testStatus",
|
|
||||||
"gender",
|
|
||||||
"localFlag", // Add more fields as necessary
|
|
||||||
"deviceId",
|
|
||||||
"appVersion",
|
|
||||||
"deviceSerialNumber",
|
|
||||||
"deviceType",
|
|
||||||
"kitSerial",
|
|
||||||
"resultData",
|
|
||||||
"led1Buffer",
|
|
||||||
"led2Buffer",
|
|
||||||
"led3Buffer",
|
|
||||||
"led4Buffer",
|
|
||||||
"led1Sample",
|
|
||||||
"led2Sample",
|
|
||||||
"led3Sample",
|
|
||||||
"led4Sample",
|
|
||||||
"led1Average",
|
|
||||||
"led2Average",
|
|
||||||
"led3Average",
|
|
||||||
"led4Average",
|
|
||||||
"abs1",
|
|
||||||
"abs2",
|
|
||||||
"abs3",
|
|
||||||
"abs4",
|
|
||||||
"deviceRatio",
|
|
||||||
"calculatedRatio",
|
|
||||||
"predictedDenovixRatio",
|
|
||||||
"coefficients",
|
|
||||||
"classificationResult",
|
|
||||||
"prdClassification",
|
|
||||||
"errorMessages",
|
|
||||||
"batteryLevel",
|
|
||||||
"batteryCapacity",
|
|
||||||
"batteryMaxCapacity",
|
|
||||||
"batteryTemperature",
|
|
||||||
"batteryVoltage"
|
|
||||||
)
|
|
||||||
csvWriter.writeNext(header)
|
|
||||||
|
|
||||||
// Filter and write data rows where testStatus is true
|
|
||||||
val filteredDataList = dataList.filter { it.testStatus == true }
|
|
||||||
for (data in filteredDataList) {
|
|
||||||
val row = arrayOf(
|
|
||||||
data._id,
|
|
||||||
data.name,
|
|
||||||
data.incubationTime,
|
|
||||||
data.bloodGroup,
|
|
||||||
data.age, // Include other fields similarly
|
|
||||||
data.state,
|
|
||||||
data.abhaId,
|
|
||||||
data.userImageURL,
|
|
||||||
data.location?.toString(),
|
|
||||||
data.reportUploadTime ?: "",
|
|
||||||
data.testType ?: "",
|
|
||||||
data.testTime ?: "",
|
|
||||||
data.testStatus?.toString() ?: "",
|
|
||||||
data.gender,
|
|
||||||
data.localFlag.toString(),
|
|
||||||
data.deviceId ?: "",
|
|
||||||
data.appVersion ?: "",
|
|
||||||
data.deviceSerialNumber,
|
|
||||||
data.deviceType,
|
|
||||||
data.kitSerial,
|
|
||||||
data.resultData,
|
|
||||||
data.led1Buffer?.toString() ?: "",
|
|
||||||
data.led2Buffer?.toString() ?: "",
|
|
||||||
data.led3Buffer?.toString() ?: "",
|
|
||||||
data.led4Buffer?.toString() ?: "",
|
|
||||||
data.led1Sample?.toString() ?: "",
|
|
||||||
data.led2Sample?.toString() ?: "",
|
|
||||||
data.led3Sample?.toString() ?: "",
|
|
||||||
data.led4Sample?.toString() ?: "",
|
|
||||||
data.led1Average?.toString() ?: "",
|
|
||||||
data.led2Average?.toString() ?: "",
|
|
||||||
data.led3Average?.toString() ?: "",
|
|
||||||
data.led4Average?.toString() ?: "",
|
|
||||||
data.abs1?.toString() ?: "",
|
|
||||||
data.abs2?.toString() ?: "",
|
|
||||||
data.abs3?.toString() ?: "",
|
|
||||||
data.abs4?.toString() ?: "",
|
|
||||||
data.deviceRatio?.toString() ?: "",
|
|
||||||
data.calculatedRatio?.toString() ?: "",
|
|
||||||
data.predictedDenovixRatio?.toString() ?: "",
|
|
||||||
data.coefficients ?: "",
|
|
||||||
data.classificationResult,
|
|
||||||
data.prdClassification,
|
|
||||||
data.errorMessages,
|
|
||||||
data.batteryLevel,
|
|
||||||
data.batteryCapacity,
|
|
||||||
data.batteryMaxCapacity,
|
|
||||||
data.batteryTemperature,
|
|
||||||
data.batteryVoltage
|
|
||||||
)
|
|
||||||
csvWriter.writeNext(row)
|
|
||||||
}
|
|
||||||
writer.close()
|
|
||||||
} catch (e: IOException) {
|
|
||||||
e.printStackTrace()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun getExternalStorageDirectory(): File {
|
|
||||||
val folder = File(Environment.getExternalStorageDirectory(), "HposFolder")
|
|
||||||
|
|
||||||
if (!folder.exists()) {
|
|
||||||
folder.mkdirs()
|
|
||||||
}
|
|
||||||
|
|
||||||
return folder
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model
|
|
||||||
|
|
||||||
|
|
||||||
class AadharCard {
|
|
||||||
var name = ""
|
|
||||||
var dateOfBirth = ""
|
|
||||||
var gender = ""
|
|
||||||
var careOf = ""
|
|
||||||
var district = ""
|
|
||||||
var landmark = ""
|
|
||||||
var house = ""
|
|
||||||
var location = ""
|
|
||||||
var pinCode = ""
|
|
||||||
var postOffice = ""
|
|
||||||
var state = ""
|
|
||||||
var street = ""
|
|
||||||
var subDistrict = ""
|
|
||||||
var vtc = ""
|
|
||||||
var mobile = ""
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model
|
|
||||||
|
|
||||||
data class CalculationVariableForTest(
|
|
||||||
var pixelNo: Int,
|
|
||||||
var wavelength: Double,
|
|
||||||
var invertedPixelNo: Int,
|
|
||||||
var I0: Double,
|
|
||||||
var I: Double,
|
|
||||||
var absorbance: Double)
|
|
||||||
{
|
|
||||||
constructor() : this(0, 0.0, 0, 0.0, 0.0, 0.0)
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model
|
|
||||||
|
|
||||||
data class ErrorMessage (
|
|
||||||
val message: String,
|
|
||||||
val code: Int
|
|
||||||
)
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model
|
|
||||||
|
|
||||||
data class Location(
|
|
||||||
var latitude: Double?,
|
|
||||||
var longitude: Double?
|
|
||||||
) {
|
|
||||||
constructor() : this(null, null)
|
|
||||||
}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model
|
|
||||||
|
|
||||||
import com.example.hpostesting.data.model.test.TestRightResultType
|
|
||||||
|
|
||||||
data class PatientData(
|
|
||||||
val name: String,
|
|
||||||
val age: Int,
|
|
||||||
val gender: String,
|
|
||||||
var results: TestRightResultType
|
|
||||||
)
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model
|
|
||||||
|
|
||||||
import java.util.Calendar
|
|
||||||
import java.util.Date
|
|
||||||
|
|
||||||
data class PendingUploads(
|
|
||||||
// Filename
|
|
||||||
val pendingId: String,
|
|
||||||
val mobileId: String,
|
|
||||||
val patientId: String,
|
|
||||||
val filePath: String,
|
|
||||||
val timeAdded: Date
|
|
||||||
) {
|
|
||||||
constructor(): this("", "", "", "", Calendar.getInstance().time)
|
|
||||||
}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model
|
|
||||||
|
|
||||||
sealed class Response<out R> {
|
|
||||||
data class Success<out T>(val data: T) : Response<T>()
|
|
||||||
data class Error(val exception: Exception) : Response<Nothing>()
|
|
||||||
// object Loading : Response<Nothing>()
|
|
||||||
}
|
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model
|
|
||||||
|
|
||||||
import com.example.hpostesting.data.constant.Constants
|
|
||||||
import com.example.hpostesting.data.model.patient.DeviceData
|
|
||||||
import com.example.hpostesting.data.model.patient.HemoCubeTestData
|
|
||||||
|
|
||||||
data class TestState (
|
|
||||||
var testDetails: HemoCubeTestData? = null,
|
|
||||||
var isOnline: Boolean = false,
|
|
||||||
var currentDeviceData: DeviceData? = null,
|
|
||||||
var resultData: String = "",
|
|
||||||
var currentResultData: String = "",
|
|
||||||
var isUsingExistingBuffer: Boolean = false,
|
|
||||||
var isTestOngoing: Boolean = false,
|
|
||||||
var led1BufferForDevice: Double = 0.0,
|
|
||||||
var led2BufferForDevice: Double = 0.0,
|
|
||||||
var led3BufferForDevice: Double = 0.0,
|
|
||||||
var led4BufferForDevice: Double = 0.0,
|
|
||||||
var led1SampleForDevice: Double = 0.0,
|
|
||||||
var led2SampleForDevice: Double = 0.0,
|
|
||||||
var led3SampleForDevice: Double = 0.0,
|
|
||||||
var led4SampleForDevice: Double = 0.0,
|
|
||||||
var fittedAbs1: Double = 0.0,
|
|
||||||
var fittedAbs2: Double = 0.0,
|
|
||||||
var fittedAbs3: Double = 0.0,
|
|
||||||
var fittedAbs4: Double = 0.0,
|
|
||||||
// var led1Air1: Double? = null,
|
|
||||||
// var led2Air1: Double? = null,
|
|
||||||
// var led3Air1: Double? = null,
|
|
||||||
// var led4Air1: Double? = null,
|
|
||||||
// var led1Air2: Double? = null,
|
|
||||||
// var led2Air2: Double? = null,
|
|
||||||
// var led3Air2: Double? = null,
|
|
||||||
// var led4Air2: Double? = null,
|
|
||||||
var calculatedPredictedDenovixRatio: Double = 0.0,
|
|
||||||
var validationError: Boolean = false,
|
|
||||||
var deviceHardwareId: String = "",
|
|
||||||
var allErrorMessages: String = "",
|
|
||||||
var testStatusCode: Double = 0.0,
|
|
||||||
var repeatReadingCount: Int = 0,
|
|
||||||
var readingsPerSample: Int = Constants.READINGS_PER_SAMPLE,
|
|
||||||
var uploadedToCloud: Boolean = false,
|
|
||||||
var uploadedToMolbio: Boolean = false
|
|
||||||
)
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.calibration
|
|
||||||
|
|
||||||
data class CalibrationData (
|
|
||||||
var led1Slope: Double = 1.0,
|
|
||||||
var led1Intercept: Double = 0.0,
|
|
||||||
var led2Slope: Double = 1.0,
|
|
||||||
var led2Intercept: Double = 0.0,
|
|
||||||
var led3Slope: Double = 1.0,
|
|
||||||
var led3Intercept: Double = 0.0,
|
|
||||||
var led4Slope: Double = 1.0,
|
|
||||||
var led4Intercept: Double = 0.0,
|
|
||||||
var calibratedAt: String = ""
|
|
||||||
)
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.devicediagnostics
|
|
||||||
|
|
||||||
data class AdditionalDetails(
|
|
||||||
val batteryLevel: String? = "",
|
|
||||||
val batteryCapacity: String? = "",
|
|
||||||
val batteryMaxCapacity: String? = "",
|
|
||||||
val batteryTemperature: String? = "",
|
|
||||||
val batteryVoltage: String? = "",
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.devicediagnostics
|
|
||||||
|
|
||||||
data class DeviceDiagnosticsData(
|
|
||||||
val id: String? = "",
|
|
||||||
val deviceId: String? = "",
|
|
||||||
val additionalDetails: AdditionalDetails?= AdditionalDetails(),
|
|
||||||
val createdBy: String? = "",
|
|
||||||
val updatedBy: String? = "",
|
|
||||||
val updatedAt: String? = "",
|
|
||||||
val createdAt: String? = "",
|
|
||||||
)
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.devicediagnostics
|
|
||||||
|
|
||||||
data class DeviceDiagnosticsRequest(
|
|
||||||
val additionalDetails: AdditionalDetails?= AdditionalDetails()
|
|
||||||
)
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.devicediagnostics
|
|
||||||
|
|
||||||
import com.google.gson.annotations.SerializedName
|
|
||||||
|
|
||||||
|
|
||||||
data class DeviceDiagnosticsResponse(
|
|
||||||
@SerializedName("Data")
|
|
||||||
val data: DeviceDiagnosticsData? = DeviceDiagnosticsData(),
|
|
||||||
val message: String? = "",
|
|
||||||
val result: String? = ""
|
|
||||||
)
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.deviceprovision
|
|
||||||
|
|
||||||
data class Credentials(
|
|
||||||
val password: String? = "",
|
|
||||||
val username: String? = "",
|
|
||||||
)
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.deviceprovision
|
|
||||||
|
|
||||||
data class Device(
|
|
||||||
val assigned: Boolean? = false,
|
|
||||||
val createdAt: String? = "",
|
|
||||||
val createdBy: Int? = 0,
|
|
||||||
val deviceType: DeviceType? = DeviceType(),
|
|
||||||
val deviceTypeId: Int? = 0,
|
|
||||||
val deviceUser: DeviceUser? = DeviceUser(),
|
|
||||||
val enabled: Boolean? = false,
|
|
||||||
val id: Int? = 0,
|
|
||||||
val name: String? = "",
|
|
||||||
val serialNumber: String? = "",
|
|
||||||
val uid: String? = "",
|
|
||||||
val updatedAt: String? = "",
|
|
||||||
val updatedBy: Int? = 0,
|
|
||||||
)
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.deviceprovision
|
|
||||||
|
|
||||||
data class DeviceProvisionData(
|
|
||||||
val credentials: Credentials? = Credentials(),
|
|
||||||
val device: Device? = Device(),
|
|
||||||
)
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.deviceprovision
|
|
||||||
|
|
||||||
data class DeviceProvisionRequest(
|
|
||||||
val deviceTypeName: String? = "HPOS",
|
|
||||||
val email: String? = "",
|
|
||||||
val password: String? = "",
|
|
||||||
val serialNumber: String? = "",
|
|
||||||
val uid: String? = "",
|
|
||||||
)
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.deviceprovision
|
|
||||||
|
|
||||||
import com.google.gson.annotations.SerializedName
|
|
||||||
|
|
||||||
data class DeviceProvisionResponse(
|
|
||||||
@SerializedName("Data")
|
|
||||||
val data: DeviceProvisionData? = DeviceProvisionData(),
|
|
||||||
@SerializedName("Message")
|
|
||||||
val message: String? = "",
|
|
||||||
@SerializedName("Result")
|
|
||||||
val result: String? = "",
|
|
||||||
)
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.deviceprovision
|
|
||||||
|
|
||||||
data class DeviceType(
|
|
||||||
val createdAt: String? = "",
|
|
||||||
val createdBy: Int? = 0,
|
|
||||||
val description: String? = "",
|
|
||||||
val enabled: Boolean? = false,
|
|
||||||
val id: Int? = 0,
|
|
||||||
val name: String? = "",
|
|
||||||
val updatedAt: String? = "",
|
|
||||||
val updatedBy: Int? = 0,
|
|
||||||
)
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.deviceprovision
|
|
||||||
|
|
||||||
data class DeviceUser(
|
|
||||||
val createdAt: String? = "",
|
|
||||||
val createdBy: Int? = 0,
|
|
||||||
val deviceId: Int? = 0,
|
|
||||||
val enabled: Boolean? = false,
|
|
||||||
val id: Int? = 0,
|
|
||||||
val lastLogin: Any? = Any(),
|
|
||||||
val natsToken: String? = "",
|
|
||||||
val natsTokenExpiry: String? = "",
|
|
||||||
val updatedAt: String? = "",
|
|
||||||
val updatedBy: Int? = 0,
|
|
||||||
val username: String? = "",
|
|
||||||
)
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.deviceprovision
|
|
||||||
|
|
||||||
data class ProvisionData(
|
|
||||||
val username: String?,
|
|
||||||
val password: String?,
|
|
||||||
val natsToken: String?,
|
|
||||||
)
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.diagnostics
|
|
||||||
|
|
||||||
data class DiagnosticsData(
|
|
||||||
var deviceId: String = "",
|
|
||||||
var appVersion: String? = "",
|
|
||||||
var deviceType: String = "HEMOCUBE",
|
|
||||||
var deviceData: String = "",
|
|
||||||
var devicePassword: String = "",
|
|
||||||
var deviceNatsToken: String = "",
|
|
||||||
var accessToken: String = "",
|
|
||||||
var runTime: String = "",
|
|
||||||
)
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.jig
|
|
||||||
|
|
||||||
data class JigData(
|
|
||||||
var deviceId: String = "",
|
|
||||||
var appVersion: String? = "",
|
|
||||||
var deviceType: String = "JIG",
|
|
||||||
var scanData: String = "",
|
|
||||||
var createdAt: String = "",
|
|
||||||
)
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.log
|
|
||||||
|
|
||||||
data class UploadLogsData(
|
|
||||||
val filename: String? = "",
|
|
||||||
)
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.log
|
|
||||||
|
|
||||||
import com.google.gson.annotations.SerializedName
|
|
||||||
|
|
||||||
data class UploadLogsResponse(
|
|
||||||
@SerializedName("Data")
|
|
||||||
val data: UploadLogsData? = UploadLogsData(),
|
|
||||||
@SerializedName("Message")
|
|
||||||
val message: String? = "",
|
|
||||||
@SerializedName("Result")
|
|
||||||
val result: String? = "",
|
|
||||||
)
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.login
|
|
||||||
|
|
||||||
data class Device(
|
|
||||||
val assigned: Boolean? = false,
|
|
||||||
val createdAt: String? = "",
|
|
||||||
val createdBy: Int? = 0,
|
|
||||||
val deviceType: DeviceType? = DeviceType(),
|
|
||||||
val deviceTypeId: Int? = 0,
|
|
||||||
val enabled: Boolean? = false,
|
|
||||||
val id: Int? = 0,
|
|
||||||
val name: String? = "",
|
|
||||||
val serialNumber: String? = "",
|
|
||||||
val uid: String? = "",
|
|
||||||
val updatedAt: String? = "",
|
|
||||||
val updatedBy: Int? = 0,
|
|
||||||
)
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.login
|
|
||||||
|
|
||||||
data class DeviceType(
|
|
||||||
val createdAt: String? = "",
|
|
||||||
val createdBy: Int? = 0,
|
|
||||||
val description: String? = "",
|
|
||||||
val enabled: Boolean? = false,
|
|
||||||
val id: Int? = 0,
|
|
||||||
val name: String? = "",
|
|
||||||
val updatedAt: String? = "",
|
|
||||||
val updatedBy: Int? = 0,
|
|
||||||
)
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
/*
|
|
||||||
* // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
||||||
* // Notice: All information contained herein is, and remains
|
|
||||||
* // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
||||||
* // if any. The intellectual and technical concepts contained
|
|
||||||
* // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
||||||
* // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
||||||
* // patents in process, and are protected by trade secret or copyright law.
|
|
||||||
* // Dissemination of this information or reproduction of this material
|
|
||||||
* // is strictly forbidden unless prior written permission is obtained
|
|
||||||
* // from ShanMukha Innovations Pvt. Ltd.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.example.hpostesting.data.model.login
|
|
||||||
|
|
||||||
data class DeviceUser(
|
|
||||||
val createdAt: String? = "",
|
|
||||||
val createdBy: Int? = 0,
|
|
||||||
val device: Device? = Device(),
|
|
||||||
val deviceId: Int? = 0,
|
|
||||||
val enabled: Boolean? = false,
|
|
||||||
val id: Int? = 0,
|
|
||||||
val lastLogin: String? = "",
|
|
||||||
val natsToken: String? = "",
|
|
||||||
val natsTokenExpiry: String? = "",
|
|
||||||
val updatedAt: String? = "",
|
|
||||||
val updatedBy: Int? = 0,
|
|
||||||
val username: String? = "",
|
|
||||||
)
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user