aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/zajc/gogarchiver/Main.java
blob: 3cba37f949b1cbc81f088c26293f18010e983899 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
//SPDX-License-Identifier: GPL-3.0
/*
 * gogarchiver-ng, an archival tool for GOG.com
 * Copyright (C) 2024 Marko Zajc
 *
 * This program is free software: you can redistribute it and/or modify it under the
 * terms of the GNU General Public License as published by the Free Software
 * Foundation, version 3.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 * PARTICULAR PURPOSE. See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along with this
 * program. If not, see <https://www.gnu.org/licenses/>.
 */
package zajc.gogarchiver;

import static java.lang.Long.MAX_VALUE;
import static java.lang.Math.max;
import static java.lang.System.*;
import static java.nio.file.Files.createDirectories;
import static java.util.Objects.requireNonNullElse;
import static java.util.concurrent.Executors.newFixedThreadPool;
import static java.util.concurrent.TimeUnit.NANOSECONDS;
import static java.util.stream.Collectors.toUnmodifiableSet;
import static java.util.stream.Stream.concat;
import static me.tongfei.progressbar.ProgressBarStyle.*;
import static picocli.CommandLine.Help.Ansi.OFF;
import static zajc.gogarchiver.util.Utilities.*;

import java.io.IOException;
import java.util.*;
import java.util.concurrent.*;
import java.util.stream.Stream;

import javax.annotation.*;

import org.eu.zajc.ef.runnable.except.all.AERunnable;

import me.tongfei.progressbar.*;
import picocli.CommandLine;
import picocli.CommandLine.*;
import sun.misc.Signal; // NOSONAR it's just quality of life
import zajc.gogarchiver.api.*;
import zajc.gogarchiver.exception.NotLoggedInException;

@Command(name = "gogarchiver", description = "an archival tool for GOG.com", version = "gogarchiver 1.0",
		 mixinStandardHelpOptions = true, sortSynopsis = false, sortOptions = false)
public class Main implements Callable<Integer> {

	@Mixin private Arguments arguments;

	private void run() throws Exception {
		createDirectories(this.arguments.getOutputPath());
		var downloads = getDownloadList();
		if (downloads.isEmpty()) {
			if (!this.arguments.isQuiet())
				out.println("\u001b[2KNothing to do");

		} else {
			executeDownloads(downloads);

			if (!this.arguments.isQuiet())
				out.println("Done");
		}
	}

	@SuppressWarnings({ "resource", "null" })
	private void executeDownloads(@Nonnull List<GameDownload> downloads) throws InterruptedException {
		var progressTitleWidth =
			downloads.stream().map(GameDownload::getProgressTitle).mapToInt(String::length).max().orElse(-1);

		Map<GameDownload, ProgressBar> progressBars;
		if (this.arguments.isQuiet()) {
			progressBars = null;

		} else {
			progressBars = new HashMap<>();
			downloads.stream().forEachOrdered(d -> {
				progressBars.put(d, downloadProgress(d.getProgressTitle(), progressTitleWidth));
			});
		}

		var pool = newFixedThreadPool(this.arguments.getThreads());
		downloads.stream().forEachOrdered(d -> {
			startDownload(d, pool, progressBars);
		});

		pool.shutdown();
		pool.awaitTermination(MAX_VALUE, NANOSECONDS);
	}

	@SuppressWarnings({ "null", "resource" })
	private void startDownload(@Nonnull GameDownload download, @Nonnull ExecutorService service,
							   @Nullable Map<GameDownload, ProgressBar> progressBars) {
		service.submit((AERunnable) () -> {
			var progress = progressBars == null ? null : progressBars.get(download);

			download.downloadTo(this.arguments.getOutputPath(), progress);

			if (progress != null) {
				progress.stepTo(progress.getMax());
				progress.refresh();
				progress.pause();
			}
		});
	}

	@Nonnull
	@SuppressWarnings({ "null", "resource" })
	public List<GameDownload> getDownloadList() throws IOException, NotLoggedInException {
		ForkJoinPool pool = null;
		try (var p = this.arguments.isQuiet() ? null : createGameLoadingProgress()) {
			if (p != null)
				p.setExtraMessage("Loading user library");

			var ids = this.arguments.getGameIds();
			if (p != null)
				p.maxHint(ids.size());

			var user = this.arguments.getUser();
			pool = new ForkJoinPool(ids.size() + 1); // metadata requests take a while so it doesn't hurt to parallelize
			var games = pool.submit(() -> { // this is a hack to increase parallelStream()'s parallelism
				return ids.parallelStream().map(user::resolveGame).filter(Objects::nonNull).peek(g -> { // NOSONAR
					if (p != null) {
						p.setExtraMessage(g.getTitle());
						p.step();
					}
				}).collect(toUnmodifiableSet());
			}).join();

			if (p != null) {
				p.stepTo(ids.size());
				p.setExtraMessage("Processing games");
			}
			return createDownloadList(games, pool);

		} finally {
			if (pool != null)
				pool.shutdown();
			if (!this.arguments.isQuiet())
				cursorUp();
		}
	}

	@Nonnull
	@SuppressWarnings("null")
	private List<GameDownload> createDownloadList(@Nonnull Set<Game> games, @Nonnull ForkJoinPool pool) {
		var types = this.arguments.getTypes();
		var platforms = this.arguments.getPlatforms();
		var output = this.arguments.getOutputPath();

		return pool.submit(() -> {
			return games.parallelStream().flatMap(g -> concat(Stream.of(g), g.getDlcs().stream())).filter(g -> {
				if (g instanceof GameDlc dlc && !this.arguments.downloadDlcs()) {
					verbose("Downloading DLCs is disabled - skipping DLC @|bold %s|@ of game @|bold %s|@",
							dlc.getTitle(), dlc.getParent().getTitle());

					return false;
				} else {
					return true;
				}
			}).flatMap(g -> g.getDownloads().stream()).filter(d -> {
				if (!platforms.contains(d.platform())) {
					verbose("Downloading for @|bold %s|@ is disabled - not downloading @|bold %s|@",
							d.platform().toString().toLowerCase(), d.getProgressTitle());
					return false;

				} else if (!types.contains(d.type())) {
					verbose("Downloading types of @|bold %s|@ is disabled - not downloading @|bold %s|@",
							d.type().toString().toLowerCase(), d.getProgressTitle());
					return false;

				} else if (output.resolve(d.path()).toFile().exists()) {
					verbose("Not downloading @|bold %s|@ because it is already downloaded",
							d.type().toString().toLowerCase(), d.getProgressTitle());
					return false;

				} else {
					return true;
				}
			})
				.sorted(Comparator.<GameDownload, String>comparing(d -> d.game().getTitle())
					.thenComparing(GameDownload::platform)
					.thenComparing(d -> requireNonNullElse(d.version(), ""))
					.thenComparing(GameDownload::type)
					.thenComparingInt(GameDownload::part))
				.toList();
		}).join();
	}

	@Nonnull
	@SuppressWarnings("null")
	public ProgressBar downloadProgress(@Nonnull String title, int titleMinWidth) {
		return new ProgressBarBuilder().setUpdateIntervalMillis(250)
			.setTaskName(title + ".".repeat(max(0, titleMinWidth - title.length())))
			.setStyle(this.arguments.getColorMode() == OFF ? UNICODE_BLOCK : COLORFUL_UNICODE_BLOCK)
			.setInitialMax(1)
			.setUnit(" MiB", 1024L * 1024L)
			.build();
	}

	@Nonnull
	@SuppressWarnings("null")
	private ProgressBar createGameLoadingProgress() {
		return new ProgressBarBuilder().setUpdateIntervalMillis(250)
			.setTaskName("Loading games")
			.setStyle(this.arguments.getColorMode() == OFF ? UNICODE_BLOCK : COLORFUL_UNICODE_BLOCK)
			.setInitialMax(-1)
			.continuousUpdate()
			.clearDisplayOnFinish()
			.hideEta()
			.build();
	}

	@Override
	public Integer call() throws Exception {
		setVerbose(this.arguments.isVerbose());
		setColorMode(this.arguments.getColorMode());

		try {
			run();
		} catch (NotLoggedInException e) {
			println("""
				@|bold,red Invalid token.|@ Find your token by logging into GOG in your browser, \
				and copying the "gog-al" cookie from its developer tools.""");
			return 1;
		}
		return 0;
	}

	public static void main(String[] args) {
		Signal.handle(new Signal("INT"), s -> {
			out.println();
			exit(0);
		});

		exit(new CommandLine(new Main()).setUsageHelpAutoWidth(true)
			.setUsageHelpLongOptionsMaxWidth(50)
			.setCaseInsensitiveEnumValuesAllowed(true)
			.setOverwrittenOptionsAllowed(true)
			.execute(args));
	}

}