Коммит инициализации. По сути, создание форка оригинального репозитория (закрытый)
This commit is contained in:
45
.gitignore
vendored
Normal file
45
.gitignore
vendored
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
.gradle
|
||||||
|
build/
|
||||||
|
!gradle/wrapper/gradle-wrapper.jar
|
||||||
|
!**/src/main/**/build/
|
||||||
|
!**/src/test/**/build/
|
||||||
|
|
||||||
|
### IntelliJ IDEA ###
|
||||||
|
.idea/modules.xml
|
||||||
|
.idea/jarRepositories.xml
|
||||||
|
.idea/compiler.xml
|
||||||
|
.idea/libraries/
|
||||||
|
*.iws
|
||||||
|
*.iml
|
||||||
|
*.ipr
|
||||||
|
out/
|
||||||
|
!**/src/main/**/out/
|
||||||
|
!**/src/test/**/out/
|
||||||
|
|
||||||
|
### Kotlin ###
|
||||||
|
.kotlin
|
||||||
|
|
||||||
|
### Eclipse ###
|
||||||
|
.apt_generated
|
||||||
|
.classpath
|
||||||
|
.factorypath
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
.springBeans
|
||||||
|
.sts4-cache
|
||||||
|
bin/
|
||||||
|
!**/src/main/**/bin/
|
||||||
|
!**/src/test/**/bin/
|
||||||
|
|
||||||
|
### NetBeans ###
|
||||||
|
/nbproject/private/
|
||||||
|
/nbbuild/
|
||||||
|
/dist/
|
||||||
|
/nbdist/
|
||||||
|
/.nb-gradle/
|
||||||
|
|
||||||
|
### VS Code ###
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
### Mac OS ###
|
||||||
|
.DS_Store
|
||||||
10
.idea/.gitignore
generated
vendored
Normal file
10
.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Ignored default folder with query files
|
||||||
|
/queries/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
||||||
1
.idea/.name
generated
Normal file
1
.idea/.name
generated
Normal file
@@ -0,0 +1 @@
|
|||||||
|
RPIVirusScaner
|
||||||
16
.idea/gradle.xml
generated
Normal file
16
.idea/gradle.xml
generated
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="GradleMigrationSettings" migrationVersion="1" />
|
||||||
|
<component name="GradleSettings">
|
||||||
|
<option name="linkedExternalProjectsSettings">
|
||||||
|
<GradleProjectSettings>
|
||||||
|
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||||
|
<option name="modules">
|
||||||
|
<set>
|
||||||
|
<option value="$PROJECT_DIR$" />
|
||||||
|
</set>
|
||||||
|
</option>
|
||||||
|
</GradleProjectSettings>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
7
.idea/kotlinc.xml
generated
Normal file
7
.idea/kotlinc.xml
generated
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="KotlinJpsPluginSettings">
|
||||||
|
<option name="externalSystemId" value="Gradle" />
|
||||||
|
<option name="version" value="2.3.0" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
7
.idea/misc.xml
generated
Normal file
7
.idea/misc.xml
generated
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||||
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="21" project-jdk-type="JavaSDK">
|
||||||
|
<output url="file://$PROJECT_DIR$/out" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
6
.idea/vcs.xml
generated
Normal file
6
.idea/vcs.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
47
build.gradle.kts
Normal file
47
build.gradle.kts
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
kotlin("jvm") version "2.3.0"
|
||||||
|
application
|
||||||
|
}
|
||||||
|
|
||||||
|
group = "ru.thiflict"
|
||||||
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") }
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
testImplementation(kotlin("test"))
|
||||||
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
|
||||||
|
|
||||||
|
// Логирование
|
||||||
|
implementation("org.slf4j:slf4j-simple:2.0.9")
|
||||||
|
}
|
||||||
|
|
||||||
|
kotlin {
|
||||||
|
jvmToolchain(21)
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.test {
|
||||||
|
useJUnitPlatform()
|
||||||
|
}
|
||||||
|
|
||||||
|
application {
|
||||||
|
mainClass.set("ru.thiflict.Mainkt")
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.jar {
|
||||||
|
manifest {
|
||||||
|
attributes["Main-Class"] = "ru.thiflict.MainKt" // Укажите ваш главный класс
|
||||||
|
}
|
||||||
|
|
||||||
|
// Включить зависимости в JAR (fat JAR)
|
||||||
|
from(configurations.runtimeClasspath.get().map {
|
||||||
|
if (it.isDirectory) it else zipTree(it)
|
||||||
|
})
|
||||||
|
|
||||||
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||||||
|
}
|
||||||
1
gradle.properties
Normal file
1
gradle.properties
Normal file
@@ -0,0 +1 @@
|
|||||||
|
kotlin.code.style=official
|
||||||
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
Binary file not shown.
6
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
6
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
#Tue Mar 31 22:26:55 YEKT 2026
|
||||||
|
distributionBase=GRADLE_USER_HOME
|
||||||
|
distributionPath=wrapper/dists
|
||||||
|
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
|
||||||
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
zipStorePath=wrapper/dists
|
||||||
234
gradlew
vendored
Executable file
234
gradlew
vendored
Executable file
@@ -0,0 +1,234 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
#
|
||||||
|
# Copyright © 2015-2021 the original authors.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
#
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
#
|
||||||
|
# Gradle start up script for POSIX generated by Gradle.
|
||||||
|
#
|
||||||
|
# Important for running:
|
||||||
|
#
|
||||||
|
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
|
||||||
|
# noncompliant, but you have some other compliant shell such as ksh or
|
||||||
|
# bash, then to run this script, type that shell name before the whole
|
||||||
|
# command line, like:
|
||||||
|
#
|
||||||
|
# ksh Gradle
|
||||||
|
#
|
||||||
|
# Busybox and similar reduced shells will NOT work, because this script
|
||||||
|
# requires all of these POSIX shell features:
|
||||||
|
# * functions;
|
||||||
|
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
|
||||||
|
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
|
||||||
|
# * compound commands having a testable exit status, especially «case»;
|
||||||
|
# * various built-in commands including «command», «set», and «ulimit».
|
||||||
|
#
|
||||||
|
# Important for patching:
|
||||||
|
#
|
||||||
|
# (2) This script targets any POSIX shell, so it avoids extensions provided
|
||||||
|
# by Bash, Ksh, etc; in particular arrays are avoided.
|
||||||
|
#
|
||||||
|
# The "traditional" practice of packing multiple parameters into a
|
||||||
|
# space-separated string is a well documented source of bugs and security
|
||||||
|
# problems, so this is (mostly) avoided, by progressively accumulating
|
||||||
|
# options in "$@", and eventually passing that to Java.
|
||||||
|
#
|
||||||
|
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
|
||||||
|
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
|
||||||
|
# see the in-line comments for details.
|
||||||
|
#
|
||||||
|
# There are tweaks for specific operating systems such as AIX, CygWin,
|
||||||
|
# Darwin, MinGW, and NonStop.
|
||||||
|
#
|
||||||
|
# (3) This script is generated from the Groovy template
|
||||||
|
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||||
|
# within the Gradle project.
|
||||||
|
#
|
||||||
|
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||||
|
#
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
# Attempt to set APP_HOME
|
||||||
|
|
||||||
|
# Resolve links: $0 may be a link
|
||||||
|
app_path=$0
|
||||||
|
|
||||||
|
# Need this for daisy-chained symlinks.
|
||||||
|
while
|
||||||
|
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
|
||||||
|
[ -h "$app_path" ]
|
||||||
|
do
|
||||||
|
ls=$( ls -ld "$app_path" )
|
||||||
|
link=${ls#*' -> '}
|
||||||
|
case $link in #(
|
||||||
|
/*) app_path=$link ;; #(
|
||||||
|
*) app_path=$APP_HOME$link ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
||||||
|
|
||||||
|
APP_NAME="Gradle"
|
||||||
|
APP_BASE_NAME=${0##*/}
|
||||||
|
|
||||||
|
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||||
|
|
||||||
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
|
MAX_FD=maximum
|
||||||
|
|
||||||
|
warn () {
|
||||||
|
echo "$*"
|
||||||
|
} >&2
|
||||||
|
|
||||||
|
die () {
|
||||||
|
echo
|
||||||
|
echo "$*"
|
||||||
|
echo
|
||||||
|
exit 1
|
||||||
|
} >&2
|
||||||
|
|
||||||
|
# OS specific support (must be 'true' or 'false').
|
||||||
|
cygwin=false
|
||||||
|
msys=false
|
||||||
|
darwin=false
|
||||||
|
nonstop=false
|
||||||
|
case "$( uname )" in #(
|
||||||
|
CYGWIN* ) cygwin=true ;; #(
|
||||||
|
Darwin* ) darwin=true ;; #(
|
||||||
|
MSYS* | MINGW* ) msys=true ;; #(
|
||||||
|
NONSTOP* ) nonstop=true ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||||
|
|
||||||
|
|
||||||
|
# Determine the Java command to use to start the JVM.
|
||||||
|
if [ -n "$JAVA_HOME" ] ; then
|
||||||
|
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||||
|
# IBM's JDK on AIX uses strange locations for the executables
|
||||||
|
JAVACMD=$JAVA_HOME/jre/sh/java
|
||||||
|
else
|
||||||
|
JAVACMD=$JAVA_HOME/bin/java
|
||||||
|
fi
|
||||||
|
if [ ! -x "$JAVACMD" ] ; then
|
||||||
|
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
JAVACMD=java
|
||||||
|
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Increase the maximum file descriptors if we can.
|
||||||
|
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
||||||
|
case $MAX_FD in #(
|
||||||
|
max*)
|
||||||
|
MAX_FD=$( ulimit -H -n ) ||
|
||||||
|
warn "Could not query maximum file descriptor limit"
|
||||||
|
esac
|
||||||
|
case $MAX_FD in #(
|
||||||
|
'' | soft) :;; #(
|
||||||
|
*)
|
||||||
|
ulimit -n "$MAX_FD" ||
|
||||||
|
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Collect all arguments for the java command, stacking in reverse order:
|
||||||
|
# * args from the command line
|
||||||
|
# * the main class name
|
||||||
|
# * -classpath
|
||||||
|
# * -D...appname settings
|
||||||
|
# * --module-path (only if needed)
|
||||||
|
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
|
||||||
|
|
||||||
|
# For Cygwin or MSYS, switch paths to Windows format before running java
|
||||||
|
if "$cygwin" || "$msys" ; then
|
||||||
|
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
|
||||||
|
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
|
||||||
|
|
||||||
|
JAVACMD=$( cygpath --unix "$JAVACMD" )
|
||||||
|
|
||||||
|
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||||
|
for arg do
|
||||||
|
if
|
||||||
|
case $arg in #(
|
||||||
|
-*) false ;; # don't mess with options #(
|
||||||
|
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
|
||||||
|
[ -e "$t" ] ;; #(
|
||||||
|
*) false ;;
|
||||||
|
esac
|
||||||
|
then
|
||||||
|
arg=$( cygpath --path --ignore --mixed "$arg" )
|
||||||
|
fi
|
||||||
|
# Roll the args list around exactly as many times as the number of
|
||||||
|
# args, so each arg winds up back in the position where it started, but
|
||||||
|
# possibly modified.
|
||||||
|
#
|
||||||
|
# NB: a `for` loop captures its iteration list before it begins, so
|
||||||
|
# changing the positional parameters here affects neither the number of
|
||||||
|
# iterations, nor the values presented in `arg`.
|
||||||
|
shift # remove old arg
|
||||||
|
set -- "$@" "$arg" # push replacement arg
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Collect all arguments for the java command;
|
||||||
|
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
|
||||||
|
# shell script including quotes and variable substitutions, so put them in
|
||||||
|
# double quotes to make sure that they get re-expanded; and
|
||||||
|
# * put everything else in single quotes, so that it's not re-expanded.
|
||||||
|
|
||||||
|
set -- \
|
||||||
|
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
||||||
|
-classpath "$CLASSPATH" \
|
||||||
|
org.gradle.wrapper.GradleWrapperMain \
|
||||||
|
"$@"
|
||||||
|
|
||||||
|
# Use "xargs" to parse quoted args.
|
||||||
|
#
|
||||||
|
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
|
||||||
|
#
|
||||||
|
# In Bash we could simply go:
|
||||||
|
#
|
||||||
|
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
|
||||||
|
# set -- "${ARGS[@]}" "$@"
|
||||||
|
#
|
||||||
|
# but POSIX shell has neither arrays nor command substitution, so instead we
|
||||||
|
# post-process each arg (as a line of input to sed) to backslash-escape any
|
||||||
|
# character that might be a shell metacharacter, then use eval to reverse
|
||||||
|
# that process (while maintaining the separation between arguments), and wrap
|
||||||
|
# the whole thing up as a single "set" statement.
|
||||||
|
#
|
||||||
|
# This will of course break if any of these variables contains a newline or
|
||||||
|
# an unmatched quote.
|
||||||
|
#
|
||||||
|
|
||||||
|
eval "set -- $(
|
||||||
|
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
|
||||||
|
xargs -n1 |
|
||||||
|
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
|
||||||
|
tr '\n' ' '
|
||||||
|
)" '"$@"'
|
||||||
|
|
||||||
|
exec "$JAVACMD" "$@"
|
||||||
89
gradlew.bat
vendored
Normal file
89
gradlew.bat
vendored
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
@rem
|
||||||
|
@rem Copyright 2015 the original author or authors.
|
||||||
|
@rem
|
||||||
|
@rem Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
@rem you may not use this file except in compliance with the License.
|
||||||
|
@rem You may obtain a copy of the License at
|
||||||
|
@rem
|
||||||
|
@rem https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
@rem
|
||||||
|
@rem Unless required by applicable law or agreed to in writing, software
|
||||||
|
@rem distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
@rem See the License for the specific language governing permissions and
|
||||||
|
@rem limitations under the License.
|
||||||
|
@rem
|
||||||
|
|
||||||
|
@if "%DEBUG%" == "" @echo off
|
||||||
|
@rem ##########################################################################
|
||||||
|
@rem
|
||||||
|
@rem Gradle startup script for Windows
|
||||||
|
@rem
|
||||||
|
@rem ##########################################################################
|
||||||
|
|
||||||
|
@rem Set local scope for the variables with windows NT shell
|
||||||
|
if "%OS%"=="Windows_NT" setlocal
|
||||||
|
|
||||||
|
set DIRNAME=%~dp0
|
||||||
|
if "%DIRNAME%" == "" set DIRNAME=.
|
||||||
|
set APP_BASE_NAME=%~n0
|
||||||
|
set APP_HOME=%DIRNAME%
|
||||||
|
|
||||||
|
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
|
||||||
|
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
|
||||||
|
|
||||||
|
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
|
||||||
|
|
||||||
|
@rem Find java.exe
|
||||||
|
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||||
|
|
||||||
|
set JAVA_EXE=java.exe
|
||||||
|
%JAVA_EXE% -version >NUL 2>&1
|
||||||
|
if "%ERRORLEVEL%" == "0" goto execute
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:findJavaFromJavaHome
|
||||||
|
set JAVA_HOME=%JAVA_HOME:"=%
|
||||||
|
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||||
|
|
||||||
|
if exist "%JAVA_EXE%" goto execute
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:execute
|
||||||
|
@rem Setup the command line
|
||||||
|
|
||||||
|
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||||
|
|
||||||
|
|
||||||
|
@rem Execute Gradle
|
||||||
|
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
|
||||||
|
|
||||||
|
:end
|
||||||
|
@rem End local scope for the variables with windows NT shell
|
||||||
|
if "%ERRORLEVEL%"=="0" goto mainEnd
|
||||||
|
|
||||||
|
:fail
|
||||||
|
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||||
|
rem the _cmd.exe /c_ return code!
|
||||||
|
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||||
|
exit /b 1
|
||||||
|
|
||||||
|
:mainEnd
|
||||||
|
if "%OS%"=="Windows_NT" endlocal
|
||||||
|
|
||||||
|
:omega
|
||||||
4
settings.gradle.kts
Normal file
4
settings.gradle.kts
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
plugins {
|
||||||
|
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
|
||||||
|
}
|
||||||
|
rootProject.name = "RPIVirusScaner"
|
||||||
81
src/main/kotlin/ButtonListener.kt
Normal file
81
src/main/kotlin/ButtonListener.kt
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
package ru.thiflict
|
||||||
|
|
||||||
|
import kotlinx.coroutines.*
|
||||||
|
import ru.thiflict.DebugMode.isDebug
|
||||||
|
import ru.thiflict.PinConfig.BUTTON
|
||||||
|
import java.io.BufferedReader
|
||||||
|
import java.io.InputStreamReader
|
||||||
|
import java.util.concurrent.atomic.AtomicBoolean
|
||||||
|
|
||||||
|
// Событие клика по кнопке
|
||||||
|
class ButtonClickEvent
|
||||||
|
|
||||||
|
// Слушатель событий клика
|
||||||
|
typealias ButtonClickListener = (ButtonClickEvent) -> Unit
|
||||||
|
|
||||||
|
class ButtonListener(
|
||||||
|
private var process: Process? = null,
|
||||||
|
private var currentButtonState: AtomicBoolean = AtomicBoolean(false),
|
||||||
|
private var isListening: AtomicBoolean = AtomicBoolean(false),
|
||||||
|
private var listenerJob: Job? = null
|
||||||
|
) {
|
||||||
|
|
||||||
|
private val clickListeners = mutableListOf<ButtonClickListener>()
|
||||||
|
|
||||||
|
fun addClickListener(listener: ButtonClickListener) {
|
||||||
|
clickListeners.add(listener)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun notifyClick() {
|
||||||
|
val event = ButtonClickEvent()
|
||||||
|
clickListeners.forEach { it.invoke(event) }
|
||||||
|
}
|
||||||
|
|
||||||
|
fun startListening(onStateChange: ((Boolean) -> Unit)? = null): Boolean {
|
||||||
|
if (isListening.get()) {
|
||||||
|
return currentButtonState.get()
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
val cmd = listOf("gpiomon", "--chip=0", "$BUTTON")
|
||||||
|
val processBuilder = ProcessBuilder(cmd)
|
||||||
|
.redirectErrorStream(true)
|
||||||
|
|
||||||
|
// Сохраняем процесс в поле
|
||||||
|
process = processBuilder.start()
|
||||||
|
isListening.set(true)
|
||||||
|
|
||||||
|
listenerJob = CoroutineScope(Dispatchers.IO).launch {
|
||||||
|
// Используем process, который теперь не null
|
||||||
|
val reader = BufferedReader(InputStreamReader(process!!.inputStream))
|
||||||
|
var line: String?
|
||||||
|
|
||||||
|
while (reader.readLine().also { line = it } != null) {
|
||||||
|
println(if (isDebug) "$line" else "")
|
||||||
|
when {
|
||||||
|
line?.contains("rising") == true -> {
|
||||||
|
currentButtonState.set(true)
|
||||||
|
onStateChange?.invoke(true)
|
||||||
|
println(if (isDebug) "Кнопка нажата" else "")
|
||||||
|
// Генерируем событие клика при нажатии
|
||||||
|
notifyClick()
|
||||||
|
}
|
||||||
|
line?.contains("falling") == true -> {
|
||||||
|
currentButtonState.set(false)
|
||||||
|
onStateChange?.invoke(false)
|
||||||
|
println(if (isDebug) "Кнопка разжата" else "")
|
||||||
|
// Убрана проверка на разжатие для генерации события
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
val exitCode = process!!.waitFor()
|
||||||
|
println(if (isDebug) "Процесс завершён ($exitCode)" else "")
|
||||||
|
isListening.set(false)
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
e.printStackTrace()
|
||||||
|
isListening.set(false)
|
||||||
|
}
|
||||||
|
return currentButtonState.get()
|
||||||
|
}
|
||||||
|
}
|
||||||
47
src/main/kotlin/GPIOController.kt
Normal file
47
src/main/kotlin/GPIOController.kt
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
package ru.thiflict
|
||||||
|
|
||||||
|
import ru.thiflict.DebugMode.isDebug
|
||||||
|
|
||||||
|
class GPIOController(private val pin: Int) {
|
||||||
|
|
||||||
|
fun setValue(value: Int) {
|
||||||
|
try {
|
||||||
|
// Пробуем разные варианты синтаксиса gpioset
|
||||||
|
val commands = listOf("gpioset", "--chip=0", "$pin=$value")
|
||||||
|
|
||||||
|
try {
|
||||||
|
val process = ProcessBuilder(commands)
|
||||||
|
.redirectErrorStream(true)
|
||||||
|
.start()
|
||||||
|
Thread.sleep(50)
|
||||||
|
process.destroy()
|
||||||
|
} catch (e: Exception) {
|
||||||
|
// Пробуем следующую команду
|
||||||
|
}
|
||||||
|
|
||||||
|
} catch (e: Exception) {
|
||||||
|
println(if (isDebug) "Ошибка установки GPIO $pin = $value: ${e.message}" else "")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getValue(): Int {
|
||||||
|
return try {
|
||||||
|
val process = ProcessBuilder("gpioget", "--chip=0", pin.toString())
|
||||||
|
.redirectErrorStream(true)
|
||||||
|
.start()
|
||||||
|
|
||||||
|
val output = process.inputStream.bufferedReader().readText().trim()
|
||||||
|
process.waitFor()
|
||||||
|
output.toIntOrNull() ?: 0
|
||||||
|
} catch (e: Exception) {
|
||||||
|
println(if (isDebug) "Ошибка чтения GPIO $pin: ${e.message}" else "")
|
||||||
|
0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun close() {
|
||||||
|
// Ничего не делаем
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
569
src/main/kotlin/Main.kt
Normal file
569
src/main/kotlin/Main.kt
Normal file
@@ -0,0 +1,569 @@
|
|||||||
|
package ru.thiflict
|
||||||
|
|
||||||
|
import kotlinx.coroutines.*
|
||||||
|
import ru.thiflict.DebugMode.isDebug
|
||||||
|
import java.io.BufferedReader
|
||||||
|
import java.io.File
|
||||||
|
import java.io.InputStreamReader
|
||||||
|
import kotlin.system.exitProcess
|
||||||
|
import java.util.*
|
||||||
|
import java.util.concurrent.*
|
||||||
|
|
||||||
|
// Конфигурация GPIO (BCM номера)
|
||||||
|
object PinConfig {
|
||||||
|
const val GREEN_LED = 17
|
||||||
|
const val YELLOW_LED = 27
|
||||||
|
const val RED_LED = 22
|
||||||
|
const val BUTTON = 24
|
||||||
|
}
|
||||||
|
|
||||||
|
object DebugMode {
|
||||||
|
var isDebug = false
|
||||||
|
|
||||||
|
fun enableDebugging() {
|
||||||
|
isDebug = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Состояния системы
|
||||||
|
enum class SystemState {
|
||||||
|
IDLE, SCANNING, CLEAN, INFECTED, ERROR, INIT
|
||||||
|
}
|
||||||
|
|
||||||
|
class USBVirusScanner {
|
||||||
|
|
||||||
|
private var currentState = SystemState.INIT
|
||||||
|
private var scanJob: Job? = null
|
||||||
|
private var indicationJob: Job? = null
|
||||||
|
private var isRunning = true
|
||||||
|
|
||||||
|
private lateinit var greenLed: GPIOController
|
||||||
|
private lateinit var yellowLed: GPIOController
|
||||||
|
private lateinit var redLed: GPIOController
|
||||||
|
|
||||||
|
private val scope = CoroutineScope(Dispatchers.IO + SupervisorJob())
|
||||||
|
|
||||||
|
fun initialize() {
|
||||||
|
println(if (isDebug) "Инициализация..." else "")
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Проверяем доступность gpiod
|
||||||
|
checkLibgpiod()
|
||||||
|
|
||||||
|
greenLed = GPIOController(PinConfig.GREEN_LED)
|
||||||
|
yellowLed = GPIOController(PinConfig.YELLOW_LED)
|
||||||
|
redLed = GPIOController(PinConfig.RED_LED)
|
||||||
|
|
||||||
|
// Выключаем все светодиоды
|
||||||
|
greenLed.setValue(0)
|
||||||
|
yellowLed.setValue(0)
|
||||||
|
redLed.setValue(0)
|
||||||
|
|
||||||
|
// Запускаем индикацию состояния
|
||||||
|
startStateIndication()
|
||||||
|
|
||||||
|
antivirusDatabaseUpdater()
|
||||||
|
|
||||||
|
Thread.sleep(1000)
|
||||||
|
|
||||||
|
println(if (isDebug) "Инициализация завершена." else "")
|
||||||
|
|
||||||
|
currentState = SystemState.IDLE
|
||||||
|
|
||||||
|
} catch (e: Exception) {
|
||||||
|
currentState = SystemState.ERROR
|
||||||
|
println(if (isDebug) "❌ Ошибка инициализации: ${e.message}" else "")
|
||||||
|
e.printStackTrace()
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun checkLibgpiod() {
|
||||||
|
try {
|
||||||
|
val process = ProcessBuilder("gpiodetect").start()
|
||||||
|
val exitCode = process.waitFor()
|
||||||
|
|
||||||
|
if (exitCode != 0) {
|
||||||
|
throw Exception(if (isDebug) "gpiodetect не найден" else "")
|
||||||
|
}
|
||||||
|
|
||||||
|
val output = process.inputStream.bufferedReader().readText()
|
||||||
|
println(if (isDebug) "✅ libgpiod найден" else "")
|
||||||
|
if (output.isNotBlank()) {
|
||||||
|
println(if (isDebug) "Доступные чипы: ${output.trim()}" else "")
|
||||||
|
}
|
||||||
|
|
||||||
|
} catch (e: Exception) {
|
||||||
|
throw Exception(if (isDebug) "libgpiod Не установлен!" else "")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun buttonPress(defaultButtonState: Boolean): Boolean {
|
||||||
|
var finalButtonState = defaultButtonState
|
||||||
|
println(if (isDebug) "Начало finalButtonState: $finalButtonState" else "")
|
||||||
|
|
||||||
|
val buttonListener = ButtonListener()
|
||||||
|
val initialState = buttonListener.startListening { isPressed ->
|
||||||
|
if (isPressed) {
|
||||||
|
finalButtonState = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
println(if (isDebug) "finalButtonState: $finalButtonState" else "")
|
||||||
|
return finalButtonState
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun startStateIndication() {
|
||||||
|
indicationJob = scope.launch {
|
||||||
|
while (isRunning) {
|
||||||
|
when (currentState) {
|
||||||
|
SystemState.INIT -> {
|
||||||
|
greenLed.setValue(1)
|
||||||
|
yellowLed.setValue(1)
|
||||||
|
redLed.setValue(1)
|
||||||
|
delay(200)
|
||||||
|
|
||||||
|
greenLed.setValue(0)
|
||||||
|
yellowLed.setValue(0)
|
||||||
|
redLed.setValue(0)
|
||||||
|
delay(200)
|
||||||
|
}
|
||||||
|
SystemState.IDLE -> {
|
||||||
|
// Зелёный медленно мигает
|
||||||
|
blinkLed(greenLed, 1000)
|
||||||
|
yellowLed.setValue(0)
|
||||||
|
redLed.setValue(0)
|
||||||
|
}
|
||||||
|
SystemState.SCANNING -> {
|
||||||
|
// Жёлтый быстро мигает
|
||||||
|
greenLed.setValue(0)
|
||||||
|
blinkLed(yellowLed, 150)
|
||||||
|
redLed.setValue(0)
|
||||||
|
}
|
||||||
|
SystemState.CLEAN -> {
|
||||||
|
// Зелёный горит
|
||||||
|
greenLed.setValue(1)
|
||||||
|
yellowLed.setValue(0)
|
||||||
|
redLed.setValue(0)
|
||||||
|
delay(100)
|
||||||
|
}
|
||||||
|
SystemState.INFECTED -> {
|
||||||
|
// Красный горит
|
||||||
|
greenLed.setValue(0)
|
||||||
|
yellowLed.setValue(0)
|
||||||
|
redLed.setValue(1)
|
||||||
|
delay(100)
|
||||||
|
}
|
||||||
|
SystemState.ERROR -> {
|
||||||
|
// Красный мигает
|
||||||
|
greenLed.setValue(0)
|
||||||
|
yellowLed.setValue(0)
|
||||||
|
blinkLed(redLed, 500)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private suspend fun blinkLed(led: GPIOController, intervalMs: Long) {
|
||||||
|
led.setValue(1)
|
||||||
|
delay(intervalMs / 2)
|
||||||
|
led.setValue(0)
|
||||||
|
delay(intervalMs / 2)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun startScan() {
|
||||||
|
if (scanJob?.isActive == true) {
|
||||||
|
println(if (isDebug) "Сканирование уже выполняется" else "")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
scanJob = scope.launch {
|
||||||
|
currentState = SystemState.SCANNING
|
||||||
|
println(if (isDebug) "=== Начало сканирования ===" else "")
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Поиск USB-устройств
|
||||||
|
val usbDevices = findUSBDevices()
|
||||||
|
|
||||||
|
if (usbDevices.isEmpty()) {
|
||||||
|
println(if (isDebug) "Устройства не найдены" else "")
|
||||||
|
currentState = SystemState.ERROR
|
||||||
|
delay(5000)
|
||||||
|
currentState = SystemState.IDLE
|
||||||
|
return@launch
|
||||||
|
}
|
||||||
|
|
||||||
|
println(if (isDebug) "📀 Найдены USB-устройства:" else "")
|
||||||
|
usbDevices.forEach { device ->
|
||||||
|
println(" - ${device.mountPoint}")
|
||||||
|
}
|
||||||
|
println()
|
||||||
|
|
||||||
|
var hasVirus = false
|
||||||
|
val scanResults = mutableListOf<ScanResult>()
|
||||||
|
|
||||||
|
for (device in usbDevices) {
|
||||||
|
println(if (isDebug) "🔍 Сканирование: ${device.mountPoint}" else "")
|
||||||
|
val result = scanWithClamAV(device.mountPoint)
|
||||||
|
scanResults.add(result)
|
||||||
|
|
||||||
|
if (result.isInfected) {
|
||||||
|
hasVirus = true
|
||||||
|
println(if (isDebug) "⚠️ ВНИМАНИЕ! Найдены угрозы!" else "")
|
||||||
|
result.infectedFiles.take(10).forEach { file ->
|
||||||
|
println(" 🦠 ${file.take(100)}")
|
||||||
|
}
|
||||||
|
if (result.infectedFiles.size > 10) {
|
||||||
|
println(if (isDebug) " ... и ещё ${result.infectedFiles.size - 10} файлов" else "")
|
||||||
|
}
|
||||||
|
} else if (result.error != null) {
|
||||||
|
println(if (isDebug) "❌ Ошибка сканирования: ${result.error}" else "")
|
||||||
|
} else {
|
||||||
|
println(if (isDebug) "✅ Сканирование завершено: угроз не найдено" else "")
|
||||||
|
}
|
||||||
|
println()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Сохраняем лог
|
||||||
|
saveScanLog(scanResults)
|
||||||
|
|
||||||
|
currentState = if (hasVirus) {
|
||||||
|
SystemState.INFECTED
|
||||||
|
} else {
|
||||||
|
SystemState.CLEAN
|
||||||
|
}
|
||||||
|
|
||||||
|
val message = if (hasVirus) {
|
||||||
|
if (isDebug) "🦠 Найдены вирусы! Красный LED горит" else ""
|
||||||
|
} else {
|
||||||
|
if (isDebug) "✅ Флешка чиста! Зелёный LED горит" else ""
|
||||||
|
}
|
||||||
|
println(if (isDebug) message else "")
|
||||||
|
|
||||||
|
// Держим состояние 5 секунд
|
||||||
|
delay(5000)
|
||||||
|
currentState = SystemState.IDLE
|
||||||
|
|
||||||
|
} catch (e: Exception) {
|
||||||
|
println(if (isDebug) "❌ Критическая ошибка: ${e.message}" else "")
|
||||||
|
e.printStackTrace()
|
||||||
|
currentState = SystemState.ERROR
|
||||||
|
delay(5000)
|
||||||
|
currentState = SystemState.IDLE
|
||||||
|
}
|
||||||
|
|
||||||
|
println(if (isDebug) "=== Сканирование завершено ===\n" else "")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun findUSBDevices(): List<USBDevice> {
|
||||||
|
val devices = mutableListOf<USBDevice>()
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Проверяем /media директории
|
||||||
|
val mediaDirs = listOf("/media", "/media/pi")
|
||||||
|
|
||||||
|
for (mediaDirPath in mediaDirs) {
|
||||||
|
val mediaDir = File(mediaDirPath)
|
||||||
|
if (mediaDir.exists() && mediaDir.isDirectory) {
|
||||||
|
mediaDir.listFiles()?.forEach { dir ->
|
||||||
|
if (dir.isDirectory && dir.canRead()) {
|
||||||
|
// Проверяем, что это не системная директория
|
||||||
|
val isSystemDir = dir.name.startsWith(".") ||
|
||||||
|
dir.name == "root" ||
|
||||||
|
dir.name == "boot"
|
||||||
|
|
||||||
|
if (!isSystemDir && devices.none { it.mountPoint == dir.absolutePath }) {
|
||||||
|
// Дополнительная проверка: есть ли файлы в директории
|
||||||
|
val hasFiles = dir.listFiles()?.isNotEmpty() == true
|
||||||
|
if (hasFiles) {
|
||||||
|
devices.add(USBDevice("usb", dir.absolutePath))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Проверяем /proc/mounts для дополнительных точек монтирования
|
||||||
|
val mountsFile = File("/proc/mounts")
|
||||||
|
if (mountsFile.exists()) {
|
||||||
|
mountsFile.readLines().forEach { line ->
|
||||||
|
val parts = line.split(" ")
|
||||||
|
if (parts.size >= 2) {
|
||||||
|
val mountPoint = parts[1]
|
||||||
|
|
||||||
|
if ((mountPoint.startsWith("/media")) &&
|
||||||
|
File(mountPoint).exists() &&
|
||||||
|
devices.none { it.mountPoint == mountPoint }) {
|
||||||
|
|
||||||
|
devices.add(USBDevice("auto", mountPoint))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} catch (e: Exception) {
|
||||||
|
println(if (isDebug) "Ошибка при поиске USB-устройств: ${e.message}" else "")
|
||||||
|
}
|
||||||
|
|
||||||
|
return devices.distinctBy { it.mountPoint }
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun scanWithClamAV(path: String): ScanResult {
|
||||||
|
val infectedFiles = mutableListOf<String>()
|
||||||
|
val virusNames = mutableMapOf<String, String>()
|
||||||
|
|
||||||
|
try {
|
||||||
|
// Проверяем установлен ли ClamAV
|
||||||
|
val checkProcess = ProcessBuilder("which", "clamscan").start()
|
||||||
|
val checkExitCode = checkProcess.waitFor()
|
||||||
|
|
||||||
|
if (checkExitCode != 0) {
|
||||||
|
return ScanResult(
|
||||||
|
isInfected = false,
|
||||||
|
infectedFiles = emptyList(),
|
||||||
|
virusNames = emptyMap(),
|
||||||
|
exitCode = -1,
|
||||||
|
error = if (isDebug) "ClamAV не установлен. Установите: sudo apt install clamav" else ""
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Проверяем существование пути
|
||||||
|
val pathFile = File(path)
|
||||||
|
if (!pathFile.exists() || !pathFile.isDirectory) {
|
||||||
|
return ScanResult(
|
||||||
|
isInfected = false,
|
||||||
|
infectedFiles = emptyList(),
|
||||||
|
virusNames = emptyMap(),
|
||||||
|
exitCode = -1,
|
||||||
|
error = if (isDebug)"Путь не существует или не является директорией: $path" else ""
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
println(if (isDebug) " Запуск clamscan (это может занять некоторое время)..." else "")
|
||||||
|
|
||||||
|
// Запускаем ClamAV
|
||||||
|
val processBuilder = ProcessBuilder(
|
||||||
|
"clamscan",
|
||||||
|
"-r",
|
||||||
|
"--stdout",
|
||||||
|
"--infected",
|
||||||
|
"--max-filesize=1M",
|
||||||
|
"--max-scansize=10M",
|
||||||
|
path
|
||||||
|
)
|
||||||
|
|
||||||
|
processBuilder.redirectErrorStream(true)
|
||||||
|
|
||||||
|
val process = processBuilder.start()
|
||||||
|
val output = process.inputStream.bufferedReader().readText()
|
||||||
|
val exitCode = process.waitFor()
|
||||||
|
|
||||||
|
// Парсим вывод
|
||||||
|
output.lines().forEach { line ->
|
||||||
|
if (line.contains(" FOUND")) {
|
||||||
|
val colonIndex = line.indexOf(": ")
|
||||||
|
if (colonIndex > 0) {
|
||||||
|
val fileName = line.substring(0, colonIndex)
|
||||||
|
val virusInfo = line.substringAfter(" FOUND").trim()
|
||||||
|
infectedFiles.add(fileName)
|
||||||
|
virusNames[fileName] = virusInfo
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return ScanResult(
|
||||||
|
isInfected = infectedFiles.isNotEmpty(),
|
||||||
|
infectedFiles = infectedFiles,
|
||||||
|
virusNames = virusNames,
|
||||||
|
exitCode = exitCode,
|
||||||
|
error = if (isDebug) (if (exitCode != 0 && exitCode != 1) "ClamAV вернул код ошибки: $exitCode" else "") else ""
|
||||||
|
)
|
||||||
|
|
||||||
|
} catch (e: Exception) {
|
||||||
|
println(if (isDebug) " Ошибка при выполнении clamscan: ${e.message}" else "")
|
||||||
|
return ScanResult(
|
||||||
|
isInfected = false,
|
||||||
|
infectedFiles = emptyList(),
|
||||||
|
virusNames = emptyMap(),
|
||||||
|
exitCode = -1,
|
||||||
|
error = if (isDebug) e.message else ""
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun saveScanLog(results: List<ScanResult>) {
|
||||||
|
try {
|
||||||
|
val logDir = File("/home/${System.getProperty("user.name")}/usb-scanner-logs")
|
||||||
|
if (!logDir.exists()) {
|
||||||
|
logDir.mkdirs()
|
||||||
|
}
|
||||||
|
|
||||||
|
val timestamp = System.currentTimeMillis()
|
||||||
|
val logFile = File(logDir, "scan_$timestamp.log")
|
||||||
|
|
||||||
|
logFile.bufferedWriter().use { writer ->
|
||||||
|
writer.write("=== USB Virus Scanner Log ===\n")
|
||||||
|
writer.write("Time: ${java.time.LocalDateTime.now()}\n\n")
|
||||||
|
|
||||||
|
results.forEachIndexed { index, result ->
|
||||||
|
writer.write("Device ${index + 1}:\n")
|
||||||
|
if (result.isInfected) {
|
||||||
|
writer.write("Status: INFECTED\n")
|
||||||
|
writer.write("Found ${result.infectedFiles.size} infected files:\n")
|
||||||
|
result.infectedFiles.take(20).forEach { file ->
|
||||||
|
writer.write(" $file: ${result.virusNames[file]}\n")
|
||||||
|
}
|
||||||
|
if (result.infectedFiles.size > 20) {
|
||||||
|
writer.write(" ... and ${result.infectedFiles.size - 20} more files\n")
|
||||||
|
}
|
||||||
|
} else if (result.error != null) {
|
||||||
|
writer.write("Status: ERROR\n")
|
||||||
|
writer.write("Error: ${result.error}\n")
|
||||||
|
} else {
|
||||||
|
writer.write("Status: CLEAN\n")
|
||||||
|
}
|
||||||
|
writer.write("\n")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
println(if (isDebug) "📝 Лог сохранён: ${logFile.absolutePath}" else "")
|
||||||
|
} catch (e: Exception) {
|
||||||
|
println(if (isDebug) "Ошибка сохранения лога: ${e.message}" else "")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun shutdown() {
|
||||||
|
println(if (isDebug) "\nЗавершение работы..." else "")
|
||||||
|
isRunning = false
|
||||||
|
|
||||||
|
indicationJob?.cancel()
|
||||||
|
scanJob?.cancel()
|
||||||
|
|
||||||
|
scope.cancel()
|
||||||
|
|
||||||
|
// Выключаем все светодиоды
|
||||||
|
try {
|
||||||
|
if (::greenLed.isInitialized) {
|
||||||
|
greenLed.setValue(0)
|
||||||
|
yellowLed.setValue(0)
|
||||||
|
redLed.setValue(0)
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
// Игнорируем ошибки при закрытии
|
||||||
|
}
|
||||||
|
|
||||||
|
println(if (isDebug) "✅ Система остановлена" else "")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data class USBDevice(
|
||||||
|
val device: String,
|
||||||
|
val mountPoint: String
|
||||||
|
)
|
||||||
|
|
||||||
|
data class ScanResult(
|
||||||
|
val isInfected: Boolean,
|
||||||
|
val infectedFiles: List<String>,
|
||||||
|
val virusNames: Map<String, String>,
|
||||||
|
val exitCode: Int,
|
||||||
|
val error: String? = null
|
||||||
|
)
|
||||||
|
|
||||||
|
fun scheduleUpdaterAt3AM() {
|
||||||
|
val scheduler = Executors.newSingleThreadScheduledExecutor()
|
||||||
|
|
||||||
|
val now = Calendar.getInstance()
|
||||||
|
val targetTime = Calendar.getInstance().apply {
|
||||||
|
set(Calendar.HOUR_OF_DAY, 3)
|
||||||
|
set(Calendar.MINUTE, 0)
|
||||||
|
set(Calendar.SECOND, 0)
|
||||||
|
set(Calendar.MILLISECOND, 0)
|
||||||
|
}
|
||||||
|
|
||||||
|
var initialDelay = targetTime.timeInMillis - now.timeInMillis
|
||||||
|
|
||||||
|
// Если время уже прошло сегодня, планируем на завтра
|
||||||
|
if (initialDelay <= 0) {
|
||||||
|
targetTime.add(Calendar.DAY_OF_MONTH, 1)
|
||||||
|
initialDelay = targetTime.timeInMillis - now.timeInMillis
|
||||||
|
}
|
||||||
|
|
||||||
|
scheduler.scheduleAtFixedRate(
|
||||||
|
{ antivirusDatabaseUpdater() },
|
||||||
|
initialDelay,
|
||||||
|
TimeUnit.DAYS.toMillis(1),
|
||||||
|
TimeUnit.MILLISECONDS
|
||||||
|
)
|
||||||
|
|
||||||
|
println("Планировщик запущен. Первый запуск через ${initialDelay / 1000 / 60} минут")
|
||||||
|
}
|
||||||
|
|
||||||
|
fun antivirusDatabaseUpdater() {
|
||||||
|
println(if (isDebug) "Обновление базы данных антивируса" else "")
|
||||||
|
val processBuilder = ProcessBuilder("freshclam", "-vvv")
|
||||||
|
|
||||||
|
processBuilder.redirectErrorStream(true)
|
||||||
|
|
||||||
|
val process = processBuilder.start()
|
||||||
|
val reader = BufferedReader(InputStreamReader(process.inputStream))
|
||||||
|
if (isDebug) {
|
||||||
|
reader.useLines { lines ->
|
||||||
|
lines.forEach { println("Process output: $it") }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
process.waitFor()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun main(args: Array<String>) {
|
||||||
|
|
||||||
|
if (args.contains("--debug")) {
|
||||||
|
DebugMode.enableDebugging()
|
||||||
|
}
|
||||||
|
|
||||||
|
scheduleUpdaterAt3AM()
|
||||||
|
|
||||||
|
println(if (isDebug) "Зелёный - ${PinConfig.GREEN_LED}" else "")
|
||||||
|
println(if (isDebug) "Жёлтый - ${PinConfig.YELLOW_LED}" else "")
|
||||||
|
println(if (isDebug) "Красный - ${PinConfig.RED_LED}" else "")
|
||||||
|
println(if (isDebug) "Кнопка - ${PinConfig.BUTTON}" else "")
|
||||||
|
|
||||||
|
val defaultButtonState = false
|
||||||
|
val scanner = USBVirusScanner()
|
||||||
|
|
||||||
|
Runtime.getRuntime().addShutdownHook(Thread {
|
||||||
|
scanner.shutdown()
|
||||||
|
})
|
||||||
|
|
||||||
|
try {
|
||||||
|
scanner.initialize()
|
||||||
|
|
||||||
|
val buttonListener = ButtonListener()
|
||||||
|
buttonListener.addClickListener { event ->
|
||||||
|
scanner.startScan()
|
||||||
|
}
|
||||||
|
buttonListener.startListening()
|
||||||
|
|
||||||
|
println(if (isDebug) """
|
||||||
|
═══════════════════════════════════════
|
||||||
|
USB Virus Scanner готов к работе
|
||||||
|
═══════════════════════════════════════
|
||||||
|
📌 Вставьте флешку и нажмите кнопку
|
||||||
|
📌 Зелёный LED мигает - режим ожидания
|
||||||
|
📌 Жёлтый LED мигает - идёт проверка
|
||||||
|
📌 Зелёный LED горит - флешка чиста
|
||||||
|
📌 Красный LED горит - найдены вирусы
|
||||||
|
📌 Для выхода нажмите Ctrl+C
|
||||||
|
""".trimIndent() else "")
|
||||||
|
|
||||||
|
while (true) {
|
||||||
|
Thread.sleep(1000)
|
||||||
|
}
|
||||||
|
} catch (e: Exception) {
|
||||||
|
println(if (isDebug) "❌ Критическая ошибка: ${e.message}" else "")
|
||||||
|
e.printStackTrace()
|
||||||
|
scanner.shutdown()
|
||||||
|
exitProcess(1)
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user