io.github.bonigarcia.wdm.online.Parser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webdrivermanager Show documentation
Show all versions of webdrivermanager Show documentation
Automated driver management and other helper features for Selenium
WebDriver in Java
/*
* (C) Copyright 2023 Boni Garcia (https://bonigarcia.github.io/)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package io.github.bonigarcia.wdm.online;
import static java.lang.invoke.MethodHandles.lookup;
import static org.slf4j.LoggerFactory.getLogger;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.util.stream.Collectors;
import org.apache.hc.client5.http.classic.methods.HttpGet;
import org.slf4j.Logger;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonSyntaxException;
import io.github.bonigarcia.wdm.config.WebDriverManagerException;
/**
* JSON parser for online endpoints.
*
* @author Boni Garcia
* @since 5.4.0
*/
public class Parser {
static final Logger log = getLogger(lookup().lookupClass());
private Parser() {
throw new IllegalStateException("Utility class");
}
public static T parseJson(HttpClient client, String url, Class klass)
throws IOException {
HttpGet get = client.createHttpGet(new URL(url));
InputStream content = client.execute(get).getEntity().getContent();
try (BufferedReader reader = new BufferedReader(
new InputStreamReader(content))) {
String lines = reader.lines().collect(Collectors.joining());
try {
return new GsonBuilder().create().fromJson(lines, klass);
} catch (JsonSyntaxException cause) {
throw new WebDriverManagerException(
"Bad JSON. First 100 chars " + lines.substring(0, 100),
cause);
}
}
}
}