summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/util/ContainerUtils.java
blob: 783fb0fad8e1adff9b48d21e243fe4231cc1678e (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
package org.openslx.dozmod.util;

import com.google.gson.JsonArray;
import com.google.gson.JsonParser;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.apache.thrift.TException;
import org.openslx.bwlp.thrift.iface.ImageSummaryRead;
import org.openslx.bwlp.thrift.iface.LectureSummary;
import org.openslx.dozmod.gui.Gui;
import org.openslx.dozmod.gui.helper.GridManager;
import org.openslx.dozmod.gui.helper.I18n;
import org.openslx.dozmod.gui.helper.MessageType;
import org.openslx.dozmod.model.ContainerDefinition;
import org.openslx.dozmod.thrift.Session;
import org.openslx.dozmod.thrift.cache.ImageCache;
import org.openslx.dozmod.thrift.cache.LectureCache;
import org.openslx.thrifthelper.TConst;
import org.openslx.thrifthelper.ThriftManager;
import org.openslx.util.ThriftUtil;
import org.openslx.util.Util;
import org.openslx.util.TarArchiveUtil.TarArchiveReader;
import org.openslx.virtualization.configuration.container.ContainerMeta;

import javax.swing.*;
import java.awt.*;
import java.io.*;
import java.nio.ByteBuffer;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;

/**
 * Class with some temporally Helper Functions.
 */
public class ContainerUtils {

	private static final Logger LOGGER = LogManager.getLogger(ContainerUtils.class);

	/**
	 * Checks ImageBaseId of image if already linked with existing Lectures in
	 * LectureCache.
	 *
	 * @param image The image to check.
	 * @return true if the images imageBaseId is already linked with a lecture.
	 */
	public static boolean isContainerImageLinked(ImageSummaryRead image) {
		if (image != null && image.getVirtId().equals(TConst.VIRT_DOCKER)) {
			List<LectureSummary> lectureSummaries = LectureCache.get(true);
			for (LectureSummary lecture : lectureSummaries) {
				// lecture.imageBaseId is null when no image linked to it -> NullPointer on
				// equals
				if (image.imageBaseId.equals(lecture.imageBaseId)) {
					return true;
				}
			}
		}
		return false;
	}

	public static boolean isDataContainer(ImageSummaryRead image) {

		ContainerDefinition containerDefinition = getContainerDefinition(Session.getSatelliteToken(), image.getImageName(), image.getLatestVersionId());
		if (containerDefinition.getContainerMeta().getImageType() == ContainerMeta.ContainerImageType.DATA) {
			return true;
		}
		return false;
	}

	public static List<ImageSummaryRead> getDataContainerImages() {
		String satelliteToken = Session.getSatelliteToken();
		List<ImageSummaryRead> images = ImageCache.get(true);
		List<ImageSummaryRead> dataContainerImages = new ArrayList<>();
		for (ImageSummaryRead image : images) {
			if (image.getVirtId().equals(TConst.VIRT_DOCKER)) {
				ContainerDefinition containerDefinition = getContainerDefinition(satelliteToken, image.getImageName(), image.getLatestVersionId()); 
				if (containerDefinition != null && containerDefinition.getContainerMeta().getImageType() == ContainerMeta.ContainerImageType.DATA)
					dataContainerImages.add(image);
			}
		}
		return dataContainerImages;
	}

	public static void showWarning(Component c, String message, Logger logger) {
		Gui.showMessageBox(c, message,
				MessageType.WARNING, logger, null);
	}

	public static ContainerDefinition getContainerDefinition(String satelliteToken, String imageName, String latestVersionId) {
		byte[] rawVirtConfig = null;
		if (latestVersionId == null) {
			LOGGER.warn(String.format("LatestVersionID is null, cannot retrieve virtualizer config for image '%s'",imageName));
			return null;
		}
		try {
			ByteBuffer byteBuffer = ThriftManager.getSatClient().getImageVersionVirtConfig(satelliteToken,
					latestVersionId);
			rawVirtConfig = ThriftUtil.unwrapByteBuffer(byteBuffer);
		} catch (TException e) {
			LOGGER.error(String.format(" Failed to retrieve virtualizer config for image '%s' with image version '%s', see trace:",
			 imageName, latestVersionId), e);
			return null;
		}
		return ContainerDefinition.fromByteArray(rawVirtConfig);
	}

	/**
	 * Check if a provided tar file contains information about a single docker
	 * image. To check the validity of the file, the existence of two JSON files is
	 * checked and one of the files must only contain information for one image.
	 *
	 * The tar file have to be created by the 'docker save ...' command.
	 *
	 * @param tarFile the user selected tar file.
	 * @return true if the images imageBaseId is already linked with a lecture.
	 */
	public static boolean isValidTar(File tarFile) {

		boolean isValid = false;
		boolean containsManifest = false;
		boolean containsRepositories = false;
		JsonArray manifestJson = null;

		try {
			TarArchiveReader tarReader = new TarArchiveReader(new FileInputStream(tarFile));
			
			while (tarReader.hasNextEntry()) {
				if (tarReader.getEntryName().equals("manifest.json")) {
					containsManifest = true;
					manifestJson = JsonParser.parseString(new String(tarReader.readCurrentEntry(), StandardCharsets.UTF_8))
						.getAsJsonArray();
				}
					
				if (tarReader.getEntryName().equals("repositories")) {
					containsRepositories = true;
					// just check if the file exists
				}

				if (containsManifest && containsRepositories)
					break;
			}
			Util.safeClose(tarReader);

			// check the json files inside the tar file
			if (containsManifest && containsRepositories && manifestJson.isJsonArray() && manifestJson.size() == 1) {
				isValid = true;
				String repoTag = manifestJson.get(0).getAsJsonObject().get("RepoTags").getAsString();
				LOGGER.info(String.format("Tar File contains Docker Image with repoTag=%s", repoTag));
			} else if (containsManifest && containsRepositories && manifestJson.isJsonArray()
					&& manifestJson.size() > 1) {
				Gui.showMessageBox("Tar File container more then one Images!", MessageType.ERROR, LOGGER, null);
			} else {
				Gui.showMessageBox("No valid Tar File with Images provided!", MessageType.ERROR, LOGGER, null);
			}

		} catch (IOException e) {
			LOGGER.error("IOError while processing tar file", e);
		}
		return isValid;
	}

	public static JPanel createDownloadContainerInfo(String imageRepo, String infoText) {
		JPanel pnlUserInfo = new JPanel();
		GridManager grid = new GridManager(pnlUserInfo, 1, true);

		JTextArea txtInfoText = new JTextArea();
		txtInfoText.setBorder(BorderFactory.createTitledBorder(I18n.PAGE_LAYOUT.getString("Info")));
		txtInfoText.setLineWrap(true);
		txtInfoText.setWrapStyleWord(true);
		txtInfoText.setEditable(false);
		txtInfoText.setFocusable(false);
		txtInfoText.setOpaque(false);
		txtInfoText.setText(infoText);
		grid.add(txtInfoText).fill(true, true);
		grid.nextRow();

		JTextField txtUserInfo = new JTextField();
		txtUserInfo.setText(imageRepo);
		grid.add(txtUserInfo).fill(true, true);
		grid.finish(true);

		return pnlUserInfo;
	}

	public static String getImageNameByBaseId(String imageBaseId) {
		List<ImageSummaryRead> images = ImageCache.get(true);
		for (ImageSummaryRead image : images) {
			if (image.imageBaseId.equals(imageBaseId))
				return image.getImageName();
		}
		return imageBaseId;
	}
}