![JAR search and dependency download from the Maven repository](/logo.png)
com.loadcoder.cluster.clients.docker.PackageSender Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of loadcoder-cluster Show documentation
Show all versions of loadcoder-cluster Show documentation
This project contains the core features in Loadcoder
/*******************************************************************************
* Copyright (C) 2020 Team Loadcoder
*
* This file is part of Loadcoder.
*
* Loadcoder 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, either version 3 of the License, or
* (at your option) any later version.
*
* Loadcoder 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 .
******************************************************************************/
package com.loadcoder.cluster.clients.docker;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import okhttp3.MediaType;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.RequestBody;
public class PackageSender {
static OkHttpClient client = new OkHttpClient();
public static byte[] readFileAsPackage(File file) {
try {
byte[] fileContent = Files.readAllBytes(file.toPath());
return fileContent;
} catch (IOException ioe) {
throw new RuntimeException(ioe);
}
}
public static void performPOSTRequest(String urlString, byte[] body) {
final RequestBody reqBody19 = RequestBody.create(MediaType.get("application/octet-stream; charset=utf-8"),
body);
final Request request19 = new Request.Builder().url(urlString).method("POST", reqBody19).build();
try {
client.newCall(request19).execute();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
public static File findFile(String directory, String fileNameRegExpMatcher) {
// Creates an array in which we will store the names of files and directories
String[] pathnames;
// Creates a new File instance by converting the given pathname string
// into an abstract pathname
File f = new File(directory);
if (!f.exists()) {
throw new RuntimeException("Directory " + f.getPath() + " does not exist");
}
// Populates the array with names of files and directories
pathnames = f.list();
// For each pathname in the pathnames array
for (String pathname : pathnames) {
if (pathname.matches(fileNameRegExpMatcher)) {
File foundFile = new File(f, pathname);
if (foundFile.exists()) {
return foundFile;
}
}
}
throw new RuntimeException(
"Could not found a file with name matching " + fileNameRegExpMatcher + " in directory " + f.getPath());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy