разрыв каждые 100 проверок. на всякий случай.

This commit is contained in:
2023-12-15 16:44:14 +03:00
parent bd702b3ebc
commit da74a8a699
3 changed files with 11 additions and 2 deletions

4
.idea/workspace.xml generated
View File

@@ -7,9 +7,9 @@
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment=""> <list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/src/TestingSystem/Common/TestingPlanner.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/TestingSystem/Common/TestingPlanner.java" afterDir="false" /> <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/TestingSystem/Common/TestingServer.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/TestingSystem/Common/TestingServer.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/TestingSystem/DVM/DVMTestingPlanner.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/TestingSystem/DVM/DVMTestingPlanner.java" afterDir="false" /> <change beforePath="$PROJECT_DIR$/src/TestingSystem/DVM/DVMTestingPlanner.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/TestingSystem/DVM/DVMTestingPlanner.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/TestingSystem/DVM/UserConnection.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/TestingSystem/DVM/UserConnection.java" afterDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />

View File

@@ -236,6 +236,7 @@ public class DVMTestingPlanner extends TestingPlanner<DVMPackage> {
} }
@Override @Override
protected boolean CheckNextState() throws Exception { protected boolean CheckNextState() throws Exception {
boolean progress_changed = false; boolean progress_changed = false;
boolean state_changed = false; boolean state_changed = false;
RemoteFile progress = new RemoteFile(packageRemoteWorkspace, "progress"); RemoteFile progress = new RemoteFile(packageRemoteWorkspace, "progress");
@@ -261,6 +262,12 @@ public class DVMTestingPlanner extends TestingPlanner<DVMPackage> {
break; break;
} }
} }
//--
user.connection.iterations++;
if (user.connection.iterations==100) {
Disconnect();
}
//--
return progress_changed || state_changed; return progress_changed || state_changed;
} }
@Override @Override

View File

@@ -15,6 +15,8 @@ import java.nio.charset.StandardCharsets;
import java.util.LinkedHashMap; import java.util.LinkedHashMap;
import java.util.Vector; import java.util.Vector;
public class UserConnection { public class UserConnection {
public int iterations = 0; //для тестирования
//--
public ChannelSftp sftpChannel = null; public ChannelSftp sftpChannel = null;
public ChannelShell shellChannel = null; public ChannelShell shellChannel = null;
//-- //--