Kasianov Nikolai Alekseevich
2 years ago
20 changed files with 78 additions and 84 deletions
@ -1,16 +0,0 @@
|
||||
package main |
||||
|
||||
import ( |
||||
"flag" |
||||
) |
||||
|
||||
var ( |
||||
orderMessage string = "Order: Replace -> Retrieve -> Remove\n" |
||||
) |
||||
|
||||
var ( |
||||
cmdlnBeatmap = flag.String("beatmap", "", `Specifies a certain beatmap. |
||||
If set to non "" - the program will search for given name and perform the magic |
||||
provided in settings if successful`) |
||||
showOrder = flag.Bool("showOrder", false, "Prints an order in which functions are performed on a beatmap") |
||||
) |
@ -0,0 +1 @@
|
||||
INFO: 2022/08/14 18:24:01 Successfully created new settings file |
@ -1,52 +0,0 @@
|
||||
package main |
||||
|
||||
import ( |
||||
"sync" |
||||
) |
||||
|
||||
// a basic implementation of a concurrent worker
|
||||
func worker(jobs <-chan job, results chan result, WG *sync.WaitGroup) { |
||||
defer WG.Done() |
||||
for job := range jobs { |
||||
var successful, failed uint = 0, 0 |
||||
|
||||
// the order is: Replace->Retrieve->Remove (if all 3 options are enabled)
|
||||
if job.replacementImagePath != "" { |
||||
s, f := job.beatmap.ReplaceBackgrounds(job.replacementImagePath) |
||||
successful += s |
||||
failed += f |
||||
} |
||||
if job.retrievementPath != "" { |
||||
s, f := job.beatmap.RetrieveBackgrounds(job.retrievementPath) |
||||
successful += s |
||||
failed += f |
||||
} |
||||
if job.remove == true { |
||||
s, f := job.beatmap.RemoveBackgrounds() |
||||
successful += s |
||||
failed += f |
||||
} |
||||
|
||||
results <- result{ |
||||
beatmapName: job.beatmap.Name, |
||||
numberOfDiffs: uint(len(job.beatmap.Diffs)), |
||||
successful: successful, |
||||
failed: failed, |
||||
} |
||||
} |
||||
|
||||
} |
||||
|
||||
// the `starter` that `glues` workers and jobs together
|
||||
func workerPool(jobs chan job, results chan result, numOfWorkers int, WG *sync.WaitGroup) { |
||||
// check if there are less jobs than workers
|
||||
if numOfWorkers > len(jobs) { |
||||
numOfWorkers = len(jobs) |
||||
} |
||||
|
||||
// replacing backgrounds for each beatmap concurrently
|
||||
for i := 0; i < numOfWorkers; i++ { |
||||
WG.Add(1) |
||||
go worker(jobs, results, WG) |
||||
} |
||||
} |
Loading…
Reference in new issue