2 Commits
Author SHA1 Message Date
Aeen d5140a587d Merge pull request 'complete code' (#1) from develop into main
Reviewed-on: Parmis_jamami/HW-08-Basic-Multithreading#1
2026-06-24 07:47:20 +00:00
Parmis_jamami 20e9bc3915 complete code 2026-06-10 00:06:38 +03:30
3 changed files with 74 additions and 97 deletions
+33 -20
View File
@@ -1,12 +1,5 @@
import java.util.Random; import java.util.Random;
/**
* Simulates downloading a single chunk of a file.
*
* <p>This class is intentionally provided as a skeleton for students.
* The main multithreading and simulation logic should be completed
* in the run() method.</p>
*/
public class DownloadWorker implements Runnable { public class DownloadWorker implements Runnable {
private final ChunkStatus chunkStatus; private final ChunkStatus chunkStatus;
@@ -21,23 +14,43 @@ public class DownloadWorker implements Runnable {
@Override @Override
public void run() { public void run() {
// TODO: Record the chunk start time in chunkStatus. chunkStatus.setStartTimeMs(System.currentTimeMillis());
double downloaded = 0.0;
// TODO: Print a message that this chunk has started downloading. double downloaded = 0;
System.out.println("Chunk " + chunkStatus.getChunkId() + " started.");
while (downloaded < chunkStatus.getChunkSizeMB()) { while (downloaded < chunkStatus.getChunkSizeMB()) {
// TODO: Generate a random sleep delay between min and max delay.
// TODO: Sleep for that delay. int delay = random.nextInt(
// TODO: Generate a random download amount for this step. config.getMaxStepDelayMs() - config.getMinStepDelayMs() + 1
// TODO: Increase downloaded, but do not go beyond chunk size. ) + config.getMinStepDelayMs();
// TODO: Save the updated downloaded value into chunkStatus.
// TODO: Optionally print step-by-step progress. try {
Thread.sleep(delay);
} catch (InterruptedException e) {
e.printStackTrace();
}
double amount = random.nextDouble() *
(config.getMaxStepDownloadMB() - config.getMinStepDownloadMB())
+ config.getMinStepDownloadMB();
downloaded = downloaded + amount;
if (downloaded > chunkStatus.getChunkSizeMB()) {
downloaded = chunkStatus.getChunkSizeMB();
}
chunkStatus.setDownloadedMB(downloaded);
System.out.println("Chunk " + chunkStatus.getChunkId()
+ ": " + downloaded + "/" + chunkStatus.getChunkSizeMB() + " MB");
} }
// TODO: Mark the chunk as completed. chunkStatus.setCompleted(true);
// TODO: Record the chunk end time in chunkStatus. chunkStatus.setEndTimeMs(System.currentTimeMillis());
// TODO: Print a message that this chunk has finished downloading.
}
System.out.println("Chunk " + chunkStatus.getChunkId() + " finished.");
}
} }
+24 -46
View File
@@ -5,8 +5,8 @@ public class Main {
public static void main(String[] args) { public static void main(String[] args) {
System.out.println("=== Simulated Download Manager ==="); System.out.println("=== Simulated Download Manager ===");
// 1. Read config
DownloadConfig config; DownloadConfig config;
try { try {
config = ConfigReader.readConfig("download_config.txt"); config = ConfigReader.readConfig("download_config.txt");
} catch (Exception e) { } catch (Exception e) {
@@ -19,13 +19,11 @@ public class Main {
System.out.println("Chunk count: " + config.getChunkCount()); System.out.println("Chunk count: " + config.getChunkCount());
System.out.println(); System.out.println();
// 2. Create chunks
List<ChunkStatus> chunks = ChunkUtils.createChunks( List<ChunkStatus> chunks = ChunkUtils.createChunks(
config.getTotalSizeMB(), config.getTotalSizeMB(),
config.getChunkCount() config.getChunkCount()
); );
// 3. Create worker threads
List<Thread> workerThreads = new ArrayList<>(); List<Thread> workerThreads = new ArrayList<>();
for (ChunkStatus chunk : chunks) { for (ChunkStatus chunk : chunks) {
@@ -34,69 +32,49 @@ public class Main {
workerThreads.add(workerThread); workerThreads.add(workerThread);
// TODO: System.out.println("Chunk " + chunk.getChunkId()
// Students may print helpful debug information here, + " assigned to " + workerThread.getName());
// for example which chunk is assigned to which worker thread.
} }
// 4. Create and start monitor thread
ProgressMonitor monitor = new ProgressMonitor(config, chunks); ProgressMonitor monitor = new ProgressMonitor(config, chunks);
Thread monitorThread = new Thread(monitor, "Progress-Monitor"); Thread monitorThread = new Thread(monitor, "Progress-Monitor");
// TODO: monitorThread.start();
// Start the monitor thread before starting the workers
// so that progress can be displayed while downloading happens.
//
// Example idea:
// monitorThread.start();
// 5. Start worker threads for (Thread thread : workerThreads) {
// TODO: thread.start();
// Start each worker thread in workerThreads. }
// Use a loop and call start() on each thread.
// 6. Wait for workers to finish for (Thread thread : workerThreads) {
// TODO: try {
// Wait for all worker threads to complete by calling join(). thread.join();
// This should be done inside a try-catch block for InterruptedException. } catch (InterruptedException e) {
// e.printStackTrace();
// Hint: }
// for (Thread thread : workerThreads) { }
// thread.join();
// }
// TODO: try {
// After all workers finish, the monitor thread may also need to stop. monitorThread.join();
// Depending on how ProgressMonitor is implemented, students may: } catch (InterruptedException e) {
// - wait for it to finish on its own, or e.printStackTrace();
// - add a stopping mechanism in ProgressMonitor later. }
//
// If your monitor finishes automatically, you may join it here.
// NOTE:
// this final report may show 0 progress because no worker has actually run yet.
// Until students complete the thread start/join TODOs above,
// 7. Print final report
System.out.println(); System.out.println();
System.out.println("=== Final Report ==="); System.out.println("=== Final Report ===");
int completedChunks = 0; int completedChunks = 0;
double downloadedMB = 0.0; double downloadedMB = 0;
for (ChunkStatus chunk : chunks) { for (ChunkStatus chunk : chunks) {
downloadedMB += chunk.getDownloadedMB(); downloadedMB = downloadedMB + chunk.getDownloadedMB();
if (chunk.isCompleted()) { if (chunk.isCompleted()) {
completedChunks++; completedChunks++;
} }
System.out.println( System.out.println("Chunk " + chunk.getChunkId()
"Chunk " + chunk.getChunkId() + ": " + chunk.getDownloadedMB()
+ ": " + chunk.getDownloadedMB() + "/" + chunk.getChunkSizeMB() + " MB");
+ "/" + chunk.getChunkSizeMB()
+ " MB"
);
} }
System.out.println(); System.out.println();
+14 -28
View File
@@ -16,53 +16,39 @@ public class ProgressMonitor implements Runnable {
@Override @Override
public void run() { public void run() {
// TODO:
// Repeatedly check chunk progress until all chunks are completed.
// In each loop:
// 1. Read the downloaded size from every chunk
// 2. Add all downloaded amounts to totalDownloadedMB
// 3. Count completed chunks
// 4. Print a progress message
// 5. If completedChunks == chunks.size(), print a final monitor message and stop
// 6. Otherwise sleep for monitorDelayMs and continue
while (true) { while (true) {
double totalDownloadedMB = 0.0; double totalDownloadedMB = 0;
int completedChunks = 0; int completedChunks = 0;
for (ChunkStatus chunk : chunks) { for (ChunkStatus chunk : chunks) {
totalDownloadedMB += chunk.getDownloadedMB(); totalDownloadedMB = totalDownloadedMB + chunk.getDownloadedMB();
if (chunk.isCompleted()) { if (chunk.isCompleted()) {
completedChunks++; completedChunks++;
} }
} }
double percent = 0.0; double percent = 0;
if (totalSizeMB > 0) { if (totalSizeMB > 0) {
percent = (totalDownloadedMB * 100.0) / totalSizeMB; percent = (totalDownloadedMB * 100) / totalSizeMB;
} }
System.out.printf( System.out.println("Progress for " + fileName + ": "
"Progress for %s: %.1f/%.1f MB (%.2f%%), completed chunks: %d/%d%n", + totalDownloadedMB + "/" + totalSizeMB
fileName, + " MB (" + percent + "%), completed chunks: "
totalDownloadedMB, + completedChunks + "/" + chunks.size());
(double) totalSizeMB,
percent,
completedChunks,
chunks.size()
);
if (completedChunks == chunks.size()) {
// TODO: System.out.println("Download completed!");
// If all chunks are completed, print a final message and exit the loop break;
}
try { try {
Thread.sleep(monitorDelayMs); Thread.sleep(monitorDelayMs);
} catch (InterruptedException e) { } catch (InterruptedException e) {
System.out.println("Progress monitor interrupted."); e.printStackTrace();
return;
} }
} }
} }