and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.util;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.net.URL;
import org.ietf.jgss.GSSManager;
/**
* Factory to detect which GSSManager implementation should be used.
*
* @since 3.4
*/
public abstract class GSSManagerFactory {
/**
* Auto-detects the GSSManager factory to use based on system.
*
* @return detected GSSManager factory
*/
public static GSSManagerFactory detect() {
return SunGSSManagerFactory.isSupported() ? new SunGSSManagerFactory()
: new DefaultGSSManagerFactory();
}
/**
* Returns a GSS Manager instance for the provided url
*
* @param url
* the repository url
* @return a GSSManager instance
*/
public abstract GSSManager newInstance(URL url);
/**
* DefaultGSSManagerFactory uses @link {@link GSSManager#getInstance()} but
* you might need to set
* javax.security.auth.useSubjectCredsOnly
system property to
* false
for authentication to work.
*/
private static class DefaultGSSManagerFactory extends GSSManagerFactory {
private static final GSSManager INSTANCE = GSSManager.getInstance();
@Override
public GSSManager newInstance(URL url) {
return INSTANCE;
}
}
private static class SunGSSManagerFactory extends GSSManagerFactory {
private static boolean IS_SUPPORTED;
private static Constructor> HTTP_CALLER_INFO_CONSTRUCTOR;
private static Constructor> HTTP_CALLER_CONSTRUCTOR;
private static Constructor> GSS_MANAGER_IMPL_CONSTRUCTOR;
static {
try {
init();
IS_SUPPORTED = true;
} catch (Exception e) {
IS_SUPPORTED = false;
}
}
private static void init() throws ClassNotFoundException,
NoSuchMethodException {
Class> httpCallerInfoClazz = Class
.forName("sun.net.www.protocol.http.HttpCallerInfo"); //$NON-NLS-1$
HTTP_CALLER_INFO_CONSTRUCTOR = httpCallerInfoClazz
.getConstructor(URL.class);
Class> httpCallerClazz = Class
.forName("sun.security.jgss.HttpCaller"); //$NON-NLS-1$
HTTP_CALLER_CONSTRUCTOR = httpCallerClazz
.getConstructor(httpCallerInfoClazz);
Class> gssCallerClazz = Class
.forName("sun.security.jgss.GSSCaller"); //$NON-NLS-1$
Class> gssManagerImplClazz = Class
.forName("sun.security.jgss.GSSManagerImpl"); //$NON-NLS-1$
GSS_MANAGER_IMPL_CONSTRUCTOR = gssManagerImplClazz
.getConstructor(gssCallerClazz);
}
/**
* Detects if SunGSSManagerProvider is supported by the system
*
* @return true if it is supported
*/
public static boolean isSupported() {
return IS_SUPPORTED;
}
@Override
public GSSManager newInstance(URL url) {
try {
Object httpCallerInfo = HTTP_CALLER_INFO_CONSTRUCTOR
.newInstance(url);
Object httpCaller = HTTP_CALLER_CONSTRUCTOR
.newInstance(httpCallerInfo);
return (GSSManager) GSS_MANAGER_IMPL_CONSTRUCTOR
.newInstance(httpCaller);
} catch (InstantiationException | IllegalAccessException
| IllegalArgumentException | InvocationTargetException e) {
throw new Error(e);
}
}
}
}
X-Content-Type-Options: nosniff
Content-Security-Policy: default-src 'none'
Content-Type: text/plain; charset=UTF-8
Content-Length: 4299
Content-Disposition: inline; filename="GitDateFormatter.java"
Last-Modified: Tue, 08 Jul 2025 04:57:10 GMT
Expires: Tue, 08 Jul 2025 05:02:10 GMT
ETag: "332e65985e94e2d2d165c237b13693864b00febb"
/*
* Copyright (C) 2011, 2012 Robin Rosenberg and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.util;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;
import java.time.format.FormatStyle;
import java.util.Locale;
import org.eclipse.jgit.lib.PersonIdent;
/**
* A utility for formatting dates according to the Git log.date formats plus
* extensions.
*
* The enum {@link org.eclipse.jgit.util.GitDateFormatter.Format} defines the
* available types.
*/
public class GitDateFormatter {
private DateTimeFormatter dateTimeFormat;
private DateTimeFormatter dateTimeFormat2;
private final Format format;
/**
* Git and JGit formats
*/
public enum Format {
/**
* Git format: Time and original time zone
*/
DEFAULT,
/**
* Git format: Relative time stamp
*/
RELATIVE,
/**
* Git format: Date and time in local time zone
*/
LOCAL,
/**
* Git format: ISO 8601 plus time zone
*/
ISO,
/**
* Git formt: RFC 2822 plus time zone
*/
RFC,
/**
* Git format: YYYY-MM-DD
*/
SHORT,
/**
* Git format: Seconds size 1970 in UTC plus time zone
*/
RAW,
/**
* Locale dependent formatting with original time zone
*/
LOCALE,
/**
* Locale dependent formatting in local time zone
*/
LOCALELOCAL
}
/**
* Create a new Git oriented date formatter
*
* @param format
* a {@link org.eclipse.jgit.util.GitDateFormatter.Format}
* object.
*/
public GitDateFormatter(Format format) {
this.format = format;
switch (format) {
default:
break;
case DEFAULT: // Not default:
dateTimeFormat = DateTimeFormatter.ofPattern(
"EEE MMM dd HH:mm:ss yyyy Z", Locale.US); //$NON-NLS-1$
break;
case ISO:
dateTimeFormat = DateTimeFormatter.ofPattern(
"yyyy-MM-dd HH:mm:ss Z", //$NON-NLS-1$
Locale.US);
break;
case LOCAL:
dateTimeFormat = DateTimeFormatter.ofPattern(
"EEE MMM dd HH:mm:ss yyyy", //$NON-NLS-1$
Locale.US);
break;
case RFC:
dateTimeFormat = DateTimeFormatter.ofPattern(
"EEE, dd MMM yyyy HH:mm:ss Z", Locale.US); //$NON-NLS-1$
break;
case SHORT:
dateTimeFormat = DateTimeFormatter.ofPattern("yyyy-MM-dd", //$NON-NLS-1$
Locale.US);
break;
case LOCALE:
case LOCALELOCAL:
dateTimeFormat = DateTimeFormatter
.ofLocalizedDateTime(FormatStyle.MEDIUM)
.withLocale(Locale.US);
dateTimeFormat2 = DateTimeFormatter.ofPattern("Z", //$NON-NLS-1$
Locale.US);
break;
}
}
/**
* Format committer, author or tagger ident according to this formatter's
* specification.
*
* @param ident
* a {@link org.eclipse.jgit.lib.PersonIdent} object.
* @return formatted version of date, time and time zone
*/
@SuppressWarnings("boxing")
public String formatDate(PersonIdent ident) {
switch (format) {
case RAW: {
int offset = ident.getZoneOffset().getTotalSeconds();
String sign = offset < 0 ? "-" : "+"; //$NON-NLS-1$ //$NON-NLS-2$
int offset2;
if (offset < 0) {
offset2 = -offset;
} else {
offset2 = offset;
}
int minutes = (offset2 / 60) % 60;
int hours = offset2 / 60 / 60;
return String.format("%d %s%02d%02d", //$NON-NLS-1$
ident.getWhenAsInstant().getEpochSecond(), sign, hours,
minutes);
}
case RELATIVE:
return RelativeDateFormatter.format(ident.getWhenAsInstant());
case LOCALELOCAL:
case LOCAL:
return dateTimeFormat
.withZone(SystemReader.getInstance().getTimeZoneId())
.format(ident.getWhenAsInstant());
case LOCALE: {
ZoneId tz = ident.getZoneId();
if (tz == null) {
tz = SystemReader.getInstance().getTimeZoneId();
}
return dateTimeFormat.withZone(tz).format(ident.getWhenAsInstant())
+ " " //$NON-NLS-1$
+ dateTimeFormat2.withZone(tz)
.format(ident.getWhenAsInstant());
}
default: {
ZoneId tz = ident.getZoneId();
if (tz == null) {
tz = SystemReader.getInstance().getTimeZoneId();
}
return dateTimeFormat.withZone(tz).format(ident.getWhenAsInstant());
}
}
}
}
X-Content-Type-Options: nosniff
Content-Security-Policy: default-src 'none'
Content-Type: text/plain; charset=UTF-8
Content-Length: 10405
Content-Disposition: inline; filename="GitDateParser.java"
Last-Modified: Tue, 08 Jul 2025 04:57:10 GMT
Expires: Tue, 08 Jul 2025 05:02:10 GMT
ETag: "f080056546d02a5c12402fc1960c131ea4282fd6"
/*
* Copyright (C) 2012 Christian Halstrick and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.util;
import java.text.MessageFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import org.eclipse.jgit.internal.JGitText;
/**
* Parses strings with time and date specifications into {@link java.util.Date}.
*
* When git needs to parse strings specified by the user this parser can be
* used. One example is the parsing of the config parameter gc.pruneexpire. The
* parser can handle only subset of what native gits approxidate parser
* understands.
*
* @deprecated Use {@link GitTimeParser} instead.
*/
@Deprecated(since = "7.1")
public class GitDateParser {
/**
* The Date representing never. Though this is a concrete value, most
* callers are adviced to avoid depending on the actual value.
*/
public static final Date NEVER = new Date(Long.MAX_VALUE);
// Since SimpleDateFormat instances are expensive to instantiate they should
// be cached. Since they are also not threadsafe they are cached using
// ThreadLocal.
private static ThreadLocal