develop
This commit is contained in:
Generated
+1
-1
@@ -8,7 +8,7 @@
|
|||||||
</list>
|
</list>
|
||||||
</option>
|
</option>
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="21" project-jdk-type="JavaSDK">
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_25" default="true" project-jdk-name="25" project-jdk-type="JavaSDK">
|
||||||
<output url="file://$PROJECT_DIR$/out" />
|
<output url="file://$PROJECT_DIR$/out" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
||||||
+23
@@ -0,0 +1,23 @@
|
|||||||
|
1-
|
||||||
|
Calling run()
|
||||||
|
Running in: main
|
||||||
|
Calling start()
|
||||||
|
Running in: Thread-2
|
||||||
|
|
||||||
|
متود run() فقط داخل main نخ را اجرا می کند اما متود start() نخ را به صورت جداگانه اجرا می کند
|
||||||
|
|
||||||
|
2-
|
||||||
|
Main thread ends.
|
||||||
|
چون اگر نخ اصلی ای در حال اجرا نباشد Daemon thread ها اجرا نمی شوند
|
||||||
|
|
||||||
|
20 بار "Daemon thread running..." چاپ می شود
|
||||||
|
|
||||||
|
نمایش درصد پیشرفت یک دانلود Daemon Thread است اما خود دانلود یک نخ اصلی است
|
||||||
|
|
||||||
|
3-
|
||||||
|
Thread is running using a ...!
|
||||||
|
Lambda
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -23,8 +23,11 @@ public class DownloadWorker implements Runnable {
|
|||||||
public void run() {
|
public void run() {
|
||||||
// TODO: Record the chunk start time in chunkStatus.
|
// TODO: Record the chunk start time in chunkStatus.
|
||||||
double downloaded = 0.0;
|
double downloaded = 0.0;
|
||||||
|
chunkStatus.setStartTimeMs(System.currentTimeMillis());
|
||||||
|
chunkStatus.setDownloadedMB(downloaded);
|
||||||
|
|
||||||
// TODO: Print a message that this chunk has started downloading.
|
// TODO: Print a message that this chunk has started downloading.
|
||||||
|
System.out.println("Chunk #" + chunkStatus.getChunkId() + " started downloading.");
|
||||||
|
|
||||||
while (downloaded < chunkStatus.getChunkSizeMB()) {
|
while (downloaded < chunkStatus.getChunkSizeMB()) {
|
||||||
// TODO: Generate a random sleep delay between min and max delay.
|
// TODO: Generate a random sleep delay between min and max delay.
|
||||||
@@ -33,11 +36,28 @@ public class DownloadWorker implements Runnable {
|
|||||||
// TODO: Increase downloaded, but do not go beyond chunk size.
|
// TODO: Increase downloaded, but do not go beyond chunk size.
|
||||||
// TODO: Save the updated downloaded value into chunkStatus.
|
// TODO: Save the updated downloaded value into chunkStatus.
|
||||||
// TODO: Optionally print step-by-step progress.
|
// TODO: Optionally print step-by-step progress.
|
||||||
|
int delay = config.getMinStepDelayMs() + random.nextInt(config.getMaxStepDelayMs() - config.getMinStepDelayMs());
|
||||||
|
try {
|
||||||
|
Thread.sleep(delay);
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
downloaded+=0.5;
|
||||||
|
|
||||||
|
if (downloaded > chunkStatus.getChunkSizeMB())
|
||||||
|
downloaded = chunkStatus.getChunkSizeMB();
|
||||||
|
chunkStatus.setDownloadedMB(downloaded);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// TODO: Mark the chunk as completed.
|
// TODO: Mark the chunk as completed.
|
||||||
// TODO: Record the chunk end time in chunkStatus.
|
// TODO: Record the chunk end time in chunkStatus.
|
||||||
// TODO: Print a message that this chunk has finished downloading.
|
// TODO: Print a message that this chunk has finished downloading.
|
||||||
|
chunkStatus.setEndTimeMs(System.currentTimeMillis());
|
||||||
|
chunkStatus.setCompleted(true);
|
||||||
|
System.out.println("Chunk #" + chunkStatus.getChunkId() + " finished downloading.");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+11
-7
@@ -47,23 +47,27 @@ public class Main {
|
|||||||
// Start the monitor thread before starting the workers
|
// Start the monitor thread before starting the workers
|
||||||
// so that progress can be displayed while downloading happens.
|
// so that progress can be displayed while downloading happens.
|
||||||
//
|
//
|
||||||
// Example idea:
|
monitorThread.start();
|
||||||
// monitorThread.start();
|
|
||||||
|
|
||||||
// 5. Start worker threads
|
// 5. Start worker threads
|
||||||
// TODO:
|
// TODO:
|
||||||
// Start each worker thread in workerThreads.
|
// Start each worker thread in workerThreads.
|
||||||
// Use a loop and call start() on each thread.
|
// Use a loop and call start() on each thread.
|
||||||
|
for (Thread t:workerThreads){
|
||||||
|
t.start();
|
||||||
|
}
|
||||||
|
|
||||||
// 6. Wait for workers to finish
|
// 6. Wait for workers to finish
|
||||||
// TODO:
|
// TODO:
|
||||||
// Wait for all worker threads to complete by calling join().
|
// Wait for all worker threads to complete by calling join().
|
||||||
// This should be done inside a try-catch block for InterruptedException.
|
// This should be done inside a try-catch block for InterruptedException.
|
||||||
//
|
for (Thread t : workerThreads) {
|
||||||
// Hint:
|
try {
|
||||||
// for (Thread thread : workerThreads) {
|
t.join();
|
||||||
// thread.join();
|
} catch (InterruptedException e) {
|
||||||
// }
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// TODO:
|
// TODO:
|
||||||
// After all workers finish, the monitor thread may also need to stop.
|
// After all workers finish, the monitor thread may also need to stop.
|
||||||
|
|||||||
@@ -57,6 +57,10 @@ public class ProgressMonitor implements Runnable {
|
|||||||
|
|
||||||
// TODO:
|
// TODO:
|
||||||
// If all chunks are completed, print a final message and exit the loop
|
// If all chunks are completed, print a final message and exit the loop
|
||||||
|
if(completedChunks==chunks.size()){
|
||||||
|
System.out.println("Procsses Done!");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Thread.sleep(monitorDelayMs);
|
Thread.sleep(monitorDelayMs);
|
||||||
|
|||||||
Reference in New Issue
Block a user