repo stringlengths 7 58 | path stringlengths 12 218 | func_name stringlengths 3 140 | original_string stringlengths 73 34.1k | language stringclasses 1
value | code stringlengths 73 34.1k | code_tokens list | docstring stringlengths 3 16k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 105 339 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/SimpleAuthenticator.java | SimpleAuthenticator.getPasswordAuthentication | protected PasswordAuthentication getPasswordAuthentication() {
// Don't worry, this is just a hack to figure out if we were able
// to set this Authenticator through the setDefault method.
if (!sInitialized && MAGIC.equals(getRequestingScheme()) && getRequestingPort() == FOURTYTWO) {
... | java | protected PasswordAuthentication getPasswordAuthentication() {
// Don't worry, this is just a hack to figure out if we were able
// to set this Authenticator through the setDefault method.
if (!sInitialized && MAGIC.equals(getRequestingScheme()) && getRequestingPort() == FOURTYTWO) {
... | [
"protected",
"PasswordAuthentication",
"getPasswordAuthentication",
"(",
")",
"{",
"// Don't worry, this is just a hack to figure out if we were able",
"// to set this Authenticator through the setDefault method.",
"if",
"(",
"!",
"sInitialized",
"&&",
"MAGIC",
".",
"equals",
"(",
... | Gets the PasswordAuthentication for the request. Called when password
authorization is needed.
@return The PasswordAuthentication collected from the user, or null if
none is provided. | [
"Gets",
"the",
"PasswordAuthentication",
"for",
"the",
"request",
".",
"Called",
"when",
"password",
"authorization",
"is",
"needed",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/SimpleAuthenticator.java#L120-L151 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/SimpleAuthenticator.java | SimpleAuthenticator.registerPasswordAuthentication | public PasswordAuthentication registerPasswordAuthentication(URL pURL, PasswordAuthentication pPA) {
return registerPasswordAuthentication(NetUtil.createInetAddressFromURL(pURL),
pURL.getPort(),
pURL.getProtocol(),
null, // Prompt/Realm
BASIC,
... | java | public PasswordAuthentication registerPasswordAuthentication(URL pURL, PasswordAuthentication pPA) {
return registerPasswordAuthentication(NetUtil.createInetAddressFromURL(pURL),
pURL.getPort(),
pURL.getProtocol(),
null, // Prompt/Realm
BASIC,
... | [
"public",
"PasswordAuthentication",
"registerPasswordAuthentication",
"(",
"URL",
"pURL",
",",
"PasswordAuthentication",
"pPA",
")",
"{",
"return",
"registerPasswordAuthentication",
"(",
"NetUtil",
".",
"createInetAddressFromURL",
"(",
"pURL",
")",
",",
"pURL",
".",
"ge... | Registers a PasswordAuthentication with a given URL address. | [
"Registers",
"a",
"PasswordAuthentication",
"with",
"a",
"given",
"URL",
"address",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/SimpleAuthenticator.java#L154-L161 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/SimpleAuthenticator.java | SimpleAuthenticator.registerPasswordAuthentication | public PasswordAuthentication registerPasswordAuthentication(InetAddress pAddress, int pPort, String pProtocol, String pPrompt, String pScheme, PasswordAuthentication pPA) {
/*
System.err.println("registerPasswordAuthentication");
System.err.println(pAddress);
System.err.println(pPort... | java | public PasswordAuthentication registerPasswordAuthentication(InetAddress pAddress, int pPort, String pProtocol, String pPrompt, String pScheme, PasswordAuthentication pPA) {
/*
System.err.println("registerPasswordAuthentication");
System.err.println(pAddress);
System.err.println(pPort... | [
"public",
"PasswordAuthentication",
"registerPasswordAuthentication",
"(",
"InetAddress",
"pAddress",
",",
"int",
"pPort",
",",
"String",
"pProtocol",
",",
"String",
"pPrompt",
",",
"String",
"pScheme",
",",
"PasswordAuthentication",
"pPA",
")",
"{",
"/*\n Syste... | Registers a PasswordAuthentication with a given net address. | [
"Registers",
"a",
"PasswordAuthentication",
"with",
"a",
"given",
"net",
"address",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/SimpleAuthenticator.java#L164-L175 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/SimpleAuthenticator.java | SimpleAuthenticator.unregisterPasswordAuthentication | public PasswordAuthentication unregisterPasswordAuthentication(URL pURL) {
return unregisterPasswordAuthentication(NetUtil.createInetAddressFromURL(pURL), pURL.getPort(), pURL.getProtocol(), null, BASIC);
} | java | public PasswordAuthentication unregisterPasswordAuthentication(URL pURL) {
return unregisterPasswordAuthentication(NetUtil.createInetAddressFromURL(pURL), pURL.getPort(), pURL.getProtocol(), null, BASIC);
} | [
"public",
"PasswordAuthentication",
"unregisterPasswordAuthentication",
"(",
"URL",
"pURL",
")",
"{",
"return",
"unregisterPasswordAuthentication",
"(",
"NetUtil",
".",
"createInetAddressFromURL",
"(",
"pURL",
")",
",",
"pURL",
".",
"getPort",
"(",
")",
",",
"pURL",
... | Unregisters a PasswordAuthentication with a given URL address. | [
"Unregisters",
"a",
"PasswordAuthentication",
"with",
"a",
"given",
"URL",
"address",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/SimpleAuthenticator.java#L178-L180 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/SimpleAuthenticator.java | SimpleAuthenticator.unregisterPasswordAuthentication | public PasswordAuthentication unregisterPasswordAuthentication(InetAddress pAddress, int pPort, String pProtocol, String pPrompt, String pScheme) {
return passwordAuthentications.remove(new AuthKey(pAddress, pPort, pProtocol, pPrompt, pScheme));
} | java | public PasswordAuthentication unregisterPasswordAuthentication(InetAddress pAddress, int pPort, String pProtocol, String pPrompt, String pScheme) {
return passwordAuthentications.remove(new AuthKey(pAddress, pPort, pProtocol, pPrompt, pScheme));
} | [
"public",
"PasswordAuthentication",
"unregisterPasswordAuthentication",
"(",
"InetAddress",
"pAddress",
",",
"int",
"pPort",
",",
"String",
"pProtocol",
",",
"String",
"pPrompt",
",",
"String",
"pScheme",
")",
"{",
"return",
"passwordAuthentications",
".",
"remove",
"... | Unregisters a PasswordAuthentication with a given net address. | [
"Unregisters",
"a",
"PasswordAuthentication",
"with",
"a",
"given",
"net",
"address",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/net/SimpleAuthenticator.java#L183-L185 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/BrowserHelperFilter.java | BrowserHelperFilter.setAcceptMappingsFile | @InitParam(name = "accept-mappings-file")
public void setAcceptMappingsFile(String pPropertiesFile) throws ServletConfigException {
// NOTE: Format is:
// <agent-name>=<reg-exp>
// <agent-name>.accept=<http-accept-header>
Properties mappings = new Properties();
try {
... | java | @InitParam(name = "accept-mappings-file")
public void setAcceptMappingsFile(String pPropertiesFile) throws ServletConfigException {
// NOTE: Format is:
// <agent-name>=<reg-exp>
// <agent-name>.accept=<http-accept-header>
Properties mappings = new Properties();
try {
... | [
"@",
"InitParam",
"(",
"name",
"=",
"\"accept-mappings-file\"",
")",
"public",
"void",
"setAcceptMappingsFile",
"(",
"String",
"pPropertiesFile",
")",
"throws",
"ServletConfigException",
"{",
"// NOTE: Format is:",
"// <agent-name>=<reg-exp>",
"// <agent-name>.accept=<http-acce... | Sets the accept-mappings for this filter
@param pPropertiesFile name of accept-mappings properties files
@throws ServletConfigException if the accept-mappings properties
file cannot be read. | [
"Sets",
"the",
"accept",
"-",
"mappings",
"for",
"this",
"filter"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/BrowserHelperFilter.java#L68-L87 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/TrimWhiteSpaceTag.java | TrimWhiteSpaceTag.doEndTag | public int doEndTag() throws JspException {
// Trim
String trimmed = truncateWS(bodyContent.getString());
try {
// Print trimmed content
//pageContext.getOut().print("<!--TWS-->\n");
pageContext.getOut().print(trimmed);
//pageContext.getOut(... | java | public int doEndTag() throws JspException {
// Trim
String trimmed = truncateWS(bodyContent.getString());
try {
// Print trimmed content
//pageContext.getOut().print("<!--TWS-->\n");
pageContext.getOut().print(trimmed);
//pageContext.getOut(... | [
"public",
"int",
"doEndTag",
"(",
")",
"throws",
"JspException",
"{",
"// Trim\r",
"String",
"trimmed",
"=",
"truncateWS",
"(",
"bodyContent",
".",
"getString",
"(",
")",
")",
";",
"try",
"{",
"// Print trimmed content\r",
"//pageContext.getOut().print(\"<!--TWS-->\\n... | doEndTag implementation, truncates all whitespace.
@return {@code super.doEndTag()} | [
"doEndTag",
"implementation",
"truncates",
"all",
"whitespace",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/TrimWhiteSpaceTag.java#L36-L50 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/TrimWhiteSpaceTag.java | TrimWhiteSpaceTag.truncateWS | private static String truncateWS(String pStr) {
char[] chars = pStr.toCharArray();
int count = 0;
boolean lastWasWS = true; // Avoids leading WS
for (int i = 0; i < chars.length; i++) {
if (!Character.isWhitespace(chars[i])) {
// if char is not WS, jus... | java | private static String truncateWS(String pStr) {
char[] chars = pStr.toCharArray();
int count = 0;
boolean lastWasWS = true; // Avoids leading WS
for (int i = 0; i < chars.length; i++) {
if (!Character.isWhitespace(chars[i])) {
// if char is not WS, jus... | [
"private",
"static",
"String",
"truncateWS",
"(",
"String",
"pStr",
")",
"{",
"char",
"[",
"]",
"chars",
"=",
"pStr",
".",
"toCharArray",
"(",
")",
";",
"int",
"count",
"=",
"0",
";",
"boolean",
"lastWasWS",
"=",
"true",
";",
"// Avoids leading WS\r",
"f... | Truncates whitespace from the given string.
@todo Candidate for StringUtil? | [
"Truncates",
"whitespace",
"from",
"the",
"given",
"string",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/TrimWhiteSpaceTag.java#L58-L85 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/ImageFilter.java | ImageFilter.createImageServletResponse | private ImageServletResponse createImageServletResponse(final ServletRequest pRequest, final ServletResponse pResponse) {
if (pResponse instanceof ImageServletResponseImpl) {
ImageServletResponseImpl response = (ImageServletResponseImpl) pResponse;
// response.setRequest(pRequest);
... | java | private ImageServletResponse createImageServletResponse(final ServletRequest pRequest, final ServletResponse pResponse) {
if (pResponse instanceof ImageServletResponseImpl) {
ImageServletResponseImpl response = (ImageServletResponseImpl) pResponse;
// response.setRequest(pRequest);
... | [
"private",
"ImageServletResponse",
"createImageServletResponse",
"(",
"final",
"ServletRequest",
"pRequest",
",",
"final",
"ServletResponse",
"pResponse",
")",
"{",
"if",
"(",
"pResponse",
"instanceof",
"ImageServletResponseImpl",
")",
"{",
"ImageServletResponseImpl",
"resp... | Creates the image servlet response for this response.
@param pResponse the original response
@param pRequest the original request
@return the new response, or {@code pResponse} if the response is already wrapped
@see com.twelvemonkeys.servlet.image.ImageServletResponseWrapper | [
"Creates",
"the",
"image",
"servlet",
"response",
"for",
"this",
"response",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/ImageFilter.java#L151-L159 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/RotateFilter.java | RotateFilter.doFilter | protected RenderedImage doFilter(BufferedImage pImage, ServletRequest pRequest, ImageServletResponse pResponse) {
// Get angle
double ang = getAngle(pRequest);
// Get bounds
Rectangle2D rect = getBounds(pRequest, pImage, ang);
int width = (int) rect.getWidth();
in... | java | protected RenderedImage doFilter(BufferedImage pImage, ServletRequest pRequest, ImageServletResponse pResponse) {
// Get angle
double ang = getAngle(pRequest);
// Get bounds
Rectangle2D rect = getBounds(pRequest, pImage, ang);
int width = (int) rect.getWidth();
in... | [
"protected",
"RenderedImage",
"doFilter",
"(",
"BufferedImage",
"pImage",
",",
"ServletRequest",
"pRequest",
",",
"ImageServletResponse",
"pResponse",
")",
"{",
"// Get angle\r",
"double",
"ang",
"=",
"getAngle",
"(",
"pRequest",
")",
";",
"// Get bounds\r",
"Rectangl... | Reads the image from the requested URL, rotates it, and returns
it in the
Servlet stream. See above for details on parameters. | [
"Reads",
"the",
"image",
"from",
"the",
"requested",
"URL",
"rotates",
"it",
"and",
"returns",
"it",
"in",
"the",
"Servlet",
"stream",
".",
"See",
"above",
"for",
"details",
"on",
"parameters",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/RotateFilter.java#L106-L147 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/RotateFilter.java | RotateFilter.getAngle | private double getAngle(ServletRequest pReq) {
double angle = 0.0;
String str = pReq.getParameter(PARAM_ANGLE);
if (!StringUtil.isEmpty(str)) {
angle = Double.parseDouble(str);
// Convert to radians, if needed
str = pReq.getParameter(PARAM_ANGLE_UNITS)... | java | private double getAngle(ServletRequest pReq) {
double angle = 0.0;
String str = pReq.getParameter(PARAM_ANGLE);
if (!StringUtil.isEmpty(str)) {
angle = Double.parseDouble(str);
// Convert to radians, if needed
str = pReq.getParameter(PARAM_ANGLE_UNITS)... | [
"private",
"double",
"getAngle",
"(",
"ServletRequest",
"pReq",
")",
"{",
"double",
"angle",
"=",
"0.0",
";",
"String",
"str",
"=",
"pReq",
".",
"getParameter",
"(",
"PARAM_ANGLE",
")",
";",
"if",
"(",
"!",
"StringUtil",
".",
"isEmpty",
"(",
"str",
")",
... | Gets the angle of rotation. | [
"Gets",
"the",
"angle",
"of",
"rotation",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/RotateFilter.java#L153-L168 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/RotateFilter.java | RotateFilter.getBounds | private Rectangle2D getBounds(ServletRequest pReq, BufferedImage pImage,
double pAng) {
// Get dimensions of original image
int width = pImage.getWidth(); // loads the image
int height = pImage.getHeight();
// Test if we want to crop image (defaul... | java | private Rectangle2D getBounds(ServletRequest pReq, BufferedImage pImage,
double pAng) {
// Get dimensions of original image
int width = pImage.getWidth(); // loads the image
int height = pImage.getHeight();
// Test if we want to crop image (defaul... | [
"private",
"Rectangle2D",
"getBounds",
"(",
"ServletRequest",
"pReq",
",",
"BufferedImage",
"pImage",
",",
"double",
"pAng",
")",
"{",
"// Get dimensions of original image\r",
"int",
"width",
"=",
"pImage",
".",
"getWidth",
"(",
")",
";",
"// loads the image\r",
"in... | Get the bounding rectangle of the rotated image. | [
"Get",
"the",
"bounding",
"rectangle",
"of",
"the",
"rotated",
"image",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/RotateFilter.java#L174-L202 | train |
haraldk/TwelveMonkeys | common/common-image/src/main/java/com/twelvemonkeys/image/InverseColorMap.java | InverseColorMap.initIRGB | void initIRGB(int[] pTemp) {
final int x = (1 << TRUNCBITS); // 8 the size of 1 Dimension of each quantized cell
final int xsqr = 1 << (TRUNCBITS * 2); // 64 - twice the smallest step size vale of quantized colors
final int xsqr2 = xsqr + xsqr;
for (int i = 0; i < numColors;... | java | void initIRGB(int[] pTemp) {
final int x = (1 << TRUNCBITS); // 8 the size of 1 Dimension of each quantized cell
final int xsqr = 1 << (TRUNCBITS * 2); // 64 - twice the smallest step size vale of quantized colors
final int xsqr2 = xsqr + xsqr;
for (int i = 0; i < numColors;... | [
"void",
"initIRGB",
"(",
"int",
"[",
"]",
"pTemp",
")",
"{",
"final",
"int",
"x",
"=",
"(",
"1",
"<<",
"TRUNCBITS",
")",
";",
"// 8 the size of 1 Dimension of each quantized cell\r",
"final",
"int",
"xsqr",
"=",
"1",
"<<",
"(",
"TRUNCBITS",
"*",
"2",
")",
... | Simple inverse color table creation method.
@param pTemp temp array | [
"Simple",
"inverse",
"color",
"table",
"creation",
"method",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-image/src/main/java/com/twelvemonkeys/image/InverseColorMap.java#L130-L181 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/lang/ReflectUtil.java | ReflectUtil.unwrapType | public static Class unwrapType(Class pType) {
if (pType == Boolean.class) {
return Boolean.TYPE;
}
else if (pType == Byte.class) {
return Byte.TYPE;
}
else if (pType == Character.class) {
return Character.TYPE;
}
else ... | java | public static Class unwrapType(Class pType) {
if (pType == Boolean.class) {
return Boolean.TYPE;
}
else if (pType == Byte.class) {
return Byte.TYPE;
}
else if (pType == Character.class) {
return Character.TYPE;
}
else ... | [
"public",
"static",
"Class",
"unwrapType",
"(",
"Class",
"pType",
")",
"{",
"if",
"(",
"pType",
"==",
"Boolean",
".",
"class",
")",
"{",
"return",
"Boolean",
".",
"TYPE",
";",
"}",
"else",
"if",
"(",
"pType",
"==",
"Byte",
".",
"class",
")",
"{",
"... | Returns the primitive type for the given wrapper type.
@param pType the wrapper type
@return the primitive type
@throws IllegalArgumentException if {@code pType} is not a primitive
wrapper | [
"Returns",
"the",
"primitive",
"type",
"for",
"the",
"given",
"wrapper",
"type",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/lang/ReflectUtil.java#L57-L84 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/ole2/CompoundDocument.java | CompoundDocument.canRead | private static boolean canRead(final DataInput pInput, final boolean pReset) {
long pos = FREE_SID;
if (pReset) {
try {
if (pInput instanceof InputStream && ((InputStream) pInput).markSupported()) {
((InputStream) pInput).mark(8);
}
... | java | private static boolean canRead(final DataInput pInput, final boolean pReset) {
long pos = FREE_SID;
if (pReset) {
try {
if (pInput instanceof InputStream && ((InputStream) pInput).markSupported()) {
((InputStream) pInput).mark(8);
}
... | [
"private",
"static",
"boolean",
"canRead",
"(",
"final",
"DataInput",
"pInput",
",",
"final",
"boolean",
"pReset",
")",
"{",
"long",
"pos",
"=",
"FREE_SID",
";",
"if",
"(",
"pReset",
")",
"{",
"try",
"{",
"if",
"(",
"pInput",
"instanceof",
"InputStream",
... | It's probably safer to create one version for InputStream and one for File | [
"It",
"s",
"probably",
"safer",
"to",
"create",
"one",
"version",
"for",
"InputStream",
"and",
"one",
"for",
"File"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/ole2/CompoundDocument.java#L189-L247 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/ole2/CompoundDocument.java | CompoundDocument.getSIdChain | private SIdChain getSIdChain(final int pSId, final long pStreamSize) throws IOException {
SIdChain chain = new SIdChain();
int[] sat = isShortStream(pStreamSize) ? shortSAT : SAT;
int sid = pSId;
while (sid != END_OF_CHAIN_SID && sid != FREE_SID) {
chain.addSID(sid);... | java | private SIdChain getSIdChain(final int pSId, final long pStreamSize) throws IOException {
SIdChain chain = new SIdChain();
int[] sat = isShortStream(pStreamSize) ? shortSAT : SAT;
int sid = pSId;
while (sid != END_OF_CHAIN_SID && sid != FREE_SID) {
chain.addSID(sid);... | [
"private",
"SIdChain",
"getSIdChain",
"(",
"final",
"int",
"pSId",
",",
"final",
"long",
"pStreamSize",
")",
"throws",
"IOException",
"{",
"SIdChain",
"chain",
"=",
"new",
"SIdChain",
"(",
")",
";",
"int",
"[",
"]",
"sat",
"=",
"isShortStream",
"(",
"pStre... | Gets the SIdChain for the given stream Id
@param pSId the stream Id
@param pStreamSize the size of the stream, or -1 for system control streams
@return the SIdChain for the given stream Id
@throws IOException if an I/O exception occurs | [
"Gets",
"the",
"SIdChain",
"for",
"the",
"given",
"stream",
"Id"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/ole2/CompoundDocument.java#L414-L426 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/ole2/CompoundDocument.java | CompoundDocument.seekToSId | private void seekToSId(final int pSId, final long pStreamSize) throws IOException {
long pos;
if (isShortStream(pStreamSize)) {
// The short stream is not continuous...
Entry root = getRootEntry();
if (shortStreamSIdChain == null) {
shortStream... | java | private void seekToSId(final int pSId, final long pStreamSize) throws IOException {
long pos;
if (isShortStream(pStreamSize)) {
// The short stream is not continuous...
Entry root = getRootEntry();
if (shortStreamSIdChain == null) {
shortStream... | [
"private",
"void",
"seekToSId",
"(",
"final",
"int",
"pSId",
",",
"final",
"long",
"pStreamSize",
")",
"throws",
"IOException",
"{",
"long",
"pos",
";",
"if",
"(",
"isShortStream",
"(",
"pStreamSize",
")",
")",
"{",
"// The short stream is not continuous...\r",
... | Seeks to the start pos for the given stream Id
@param pSId the stream Id
@param pStreamSize the size of the stream, or -1 for system control streams
@throws IOException if an I/O exception occurs | [
"Seeks",
"to",
"the",
"start",
"pos",
"for",
"the",
"given",
"stream",
"Id"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/ole2/CompoundDocument.java#L439-L476 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/XMLProperties.java | XMLProperties.initPropertyValue | protected Object initPropertyValue(String pValue, String pType, String pFormat) throws ClassNotFoundException {
// System.out.println("pValue=" + pValue + " pType=" + pType
// + " pFormat=" + pFormat);
// No value to convert
if (pValue == null) {
return null;
}
/... | java | protected Object initPropertyValue(String pValue, String pType, String pFormat) throws ClassNotFoundException {
// System.out.println("pValue=" + pValue + " pType=" + pType
// + " pFormat=" + pFormat);
// No value to convert
if (pValue == null) {
return null;
}
/... | [
"protected",
"Object",
"initPropertyValue",
"(",
"String",
"pValue",
",",
"String",
"pType",
",",
"String",
"pFormat",
")",
"throws",
"ClassNotFoundException",
"{",
"// System.out.println(\"pValue=\" + pValue + \" pType=\" + pType\r",
"// + \" pFormat=\" + pFormat);... | Initializes the value of a property.
@todo move init code to the parser?
@throws ClassNotFoundException if there is no class found for the given
type
@throws IllegalArgumentException if the value given, is not parseable
as the given type | [
"Initializes",
"the",
"value",
"of",
"a",
"property",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/XMLProperties.java#L331-L404 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/XMLProperties.java | XMLProperties.createInstance | private Object createInstance(Class pClass, Object pParam) {
Object value;
try {
// Create param and argument arrays
Class[] param = { pParam.getClass() };
Object[] arg = { pParam };
// Get constructor
Constructor constructor = pClass.getDeclaredConstructor(param);
... | java | private Object createInstance(Class pClass, Object pParam) {
Object value;
try {
// Create param and argument arrays
Class[] param = { pParam.getClass() };
Object[] arg = { pParam };
// Get constructor
Constructor constructor = pClass.getDeclaredConstructor(param);
... | [
"private",
"Object",
"createInstance",
"(",
"Class",
"pClass",
",",
"Object",
"pParam",
")",
"{",
"Object",
"value",
";",
"try",
"{",
"// Create param and argument arrays\r",
"Class",
"[",
"]",
"param",
"=",
"{",
"pParam",
".",
"getClass",
"(",
")",
"}",
";"... | Creates an object from the given class' single argument constructor.
@return The object created from the constructor.
If the constructor could not be invoked for any reason, null is
returned. | [
"Creates",
"an",
"object",
"from",
"the",
"given",
"class",
"single",
"argument",
"constructor",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/XMLProperties.java#L413-L431 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/XMLProperties.java | XMLProperties.invokeStaticMethod | private Object invokeStaticMethod(Class pClass, String pMethod, Object pParam) {
Object value = null;
try {
// Create param and argument arrays
Class[] param = { pParam.getClass() };
Object[] arg = { pParam };
// Get method
// *** If more than one such method is fou... | java | private Object invokeStaticMethod(Class pClass, String pMethod, Object pParam) {
Object value = null;
try {
// Create param and argument arrays
Class[] param = { pParam.getClass() };
Object[] arg = { pParam };
// Get method
// *** If more than one such method is fou... | [
"private",
"Object",
"invokeStaticMethod",
"(",
"Class",
"pClass",
",",
"String",
"pMethod",
",",
"Object",
"pParam",
")",
"{",
"Object",
"value",
"=",
"null",
";",
"try",
"{",
"// Create param and argument arrays\r",
"Class",
"[",
"]",
"param",
"=",
"{",
"pPa... | Creates an object from any given static method, given the parameter
@return The object returned by the static method.
If the return type of the method is a primitive type, it is wrapped in
the corresponding wrapper object (int is wrapped in an Integer).
If the return type of the method is void, null is returned.
If th... | [
"Creates",
"an",
"object",
"from",
"any",
"given",
"static",
"method",
"given",
"the",
"parameter"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/XMLProperties.java#L442-L467 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/XMLProperties.java | XMLProperties.setPropertyFormat | public synchronized String setPropertyFormat(String pKey, String pFormat) {
// Insert format
return StringUtil.valueOf(mFormats.put(pKey, pFormat));
} | java | public synchronized String setPropertyFormat(String pKey, String pFormat) {
// Insert format
return StringUtil.valueOf(mFormats.put(pKey, pFormat));
} | [
"public",
"synchronized",
"String",
"setPropertyFormat",
"(",
"String",
"pKey",
",",
"String",
"pFormat",
")",
"{",
"// Insert format\r",
"return",
"StringUtil",
".",
"valueOf",
"(",
"mFormats",
".",
"put",
"(",
"pKey",
",",
"pFormat",
")",
")",
";",
"}"
] | Sets the format of a property. This value is used for formatting the
value before it is stored as xml.
@param pKey a key in this hashtable.
@param pFormat a string representation of the format.
@return the previous format for the specified key or null if it did not
have one. | [
"Sets",
"the",
"format",
"of",
"a",
"property",
".",
"This",
"value",
"is",
"used",
"for",
"formatting",
"the",
"value",
"before",
"it",
"is",
"stored",
"as",
"xml",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/XMLProperties.java#L494-L498 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/XMLProperties.java | XMLProperties.insertElement | private static void insertElement(Document pDocument, String pName, Object pValue, String pFormat) {
// Get names of all elements we need
String[] names = StringUtil.toStringArray(pName, ".");
// Get value formatted as string
String value = null;
if (pValue != null) {
// ---
... | java | private static void insertElement(Document pDocument, String pName, Object pValue, String pFormat) {
// Get names of all elements we need
String[] names = StringUtil.toStringArray(pName, ".");
// Get value formatted as string
String value = null;
if (pValue != null) {
// ---
... | [
"private",
"static",
"void",
"insertElement",
"(",
"Document",
"pDocument",
",",
"String",
"pName",
",",
"Object",
"pValue",
",",
"String",
"pFormat",
")",
"{",
"// Get names of all elements we need\r",
"String",
"[",
"]",
"names",
"=",
"StringUtil",
".",
"toStrin... | Inserts elements to the given document one by one, and creates all its
parents if needed.
@param pDocument the document to insert to.
@param pName the name of the property element.
@param pValue the value of the property element.
@param pFormat
@todo I guess this implementation could use some optimisaztion, as
we do ... | [
"Inserts",
"elements",
"to",
"the",
"given",
"document",
"one",
"by",
"one",
"and",
"creates",
"all",
"its",
"parents",
"if",
"needed",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/util/XMLProperties.java#L791-L900 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/XMLTransformTag.java | XMLTransformTag.doEndTag | public int doEndTag() throws JspException {
// Get body content (trim is CRUCIAL, as some XML parsers are picky...)
String body = bodyContent.getString().trim();
// Do transformation
transform(new StreamSource(new ByteArrayInputStream(body.getBytes())));
return super.doE... | java | public int doEndTag() throws JspException {
// Get body content (trim is CRUCIAL, as some XML parsers are picky...)
String body = bodyContent.getString().trim();
// Do transformation
transform(new StreamSource(new ByteArrayInputStream(body.getBytes())));
return super.doE... | [
"public",
"int",
"doEndTag",
"(",
")",
"throws",
"JspException",
"{",
"// Get body content (trim is CRUCIAL, as some XML parsers are picky...)\r",
"String",
"body",
"=",
"bodyContent",
".",
"getString",
"(",
")",
".",
"trim",
"(",
")",
";",
"// Do transformation\r",
"tr... | doEndTag implementation, that will perform XML Transformation on the
body content.
@return super.doEndTag() | [
"doEndTag",
"implementation",
"that",
"will",
"perform",
"XML",
"Transformation",
"on",
"the",
"body",
"content",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/XMLTransformTag.java#L99-L107 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/XMLTransformTag.java | XMLTransformTag.transform | public void transform(Source pIn) throws JspException {
try {
// Create transformer
Transformer transformer = TransformerFactory.newInstance()
.newTransformer(getSource(mStylesheetURI));
// Store temporary output in a bytearray, as the transformer w... | java | public void transform(Source pIn) throws JspException {
try {
// Create transformer
Transformer transformer = TransformerFactory.newInstance()
.newTransformer(getSource(mStylesheetURI));
// Store temporary output in a bytearray, as the transformer w... | [
"public",
"void",
"transform",
"(",
"Source",
"pIn",
")",
"throws",
"JspException",
"{",
"try",
"{",
"// Create transformer\r",
"Transformer",
"transformer",
"=",
"TransformerFactory",
".",
"newInstance",
"(",
")",
".",
"newTransformer",
"(",
"getSource",
"(",
"mS... | Performs the transformation and writes the result to the JSP writer.
@param in the source document to transform. | [
"Performs",
"the",
"transformation",
"and",
"writes",
"the",
"result",
"to",
"the",
"JSP",
"writer",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/XMLTransformTag.java#L115-L142 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/XMLTransformTag.java | XMLTransformTag.getSource | private StreamSource getSource(String pURI)
throws IOException, MalformedURLException {
if (pURI != null && pURI.indexOf("://") < 0) {
// If local, get as stream
return new StreamSource(getResourceAsStream(pURI));
}
// ...else, create from URI string
... | java | private StreamSource getSource(String pURI)
throws IOException, MalformedURLException {
if (pURI != null && pURI.indexOf("://") < 0) {
// If local, get as stream
return new StreamSource(getResourceAsStream(pURI));
}
// ...else, create from URI string
... | [
"private",
"StreamSource",
"getSource",
"(",
"String",
"pURI",
")",
"throws",
"IOException",
",",
"MalformedURLException",
"{",
"if",
"(",
"pURI",
"!=",
"null",
"&&",
"pURI",
".",
"indexOf",
"(",
"\"://\"",
")",
"<",
"0",
")",
"{",
"// If local, get as stream\... | Returns a StreamSource object, for the given URI | [
"Returns",
"a",
"StreamSource",
"object",
"for",
"the",
"given",
"URI"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/jsp/taglib/XMLTransformTag.java#L148-L157 | train |
haraldk/TwelveMonkeys | common/common-image/src/main/java/com/twelvemonkeys/image/IndexImage.java | IndexImage.createSolid | private static BufferedImage createSolid(BufferedImage pOriginal, Color pBackground) {
// Create a temporary image of same dimension and type
BufferedImage solid = new BufferedImage(pOriginal.getColorModel(), pOriginal.copyData(null), pOriginal.isAlphaPremultiplied(), null);
Graphics2D g = so... | java | private static BufferedImage createSolid(BufferedImage pOriginal, Color pBackground) {
// Create a temporary image of same dimension and type
BufferedImage solid = new BufferedImage(pOriginal.getColorModel(), pOriginal.copyData(null), pOriginal.isAlphaPremultiplied(), null);
Graphics2D g = so... | [
"private",
"static",
"BufferedImage",
"createSolid",
"(",
"BufferedImage",
"pOriginal",
",",
"Color",
"pBackground",
")",
"{",
"// Create a temporary image of same dimension and type\r",
"BufferedImage",
"solid",
"=",
"new",
"BufferedImage",
"(",
"pOriginal",
".",
"getColor... | Creates a copy of the given image, with a solid background
@param pOriginal the original image
@param pBackground the background color
@return a new {@code BufferedImage} | [
"Creates",
"a",
"copy",
"of",
"the",
"given",
"image",
"with",
"a",
"solid",
"background"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-image/src/main/java/com/twelvemonkeys/image/IndexImage.java#L1164-L1180 | train |
haraldk/TwelveMonkeys | common/common-image/src/main/java/com/twelvemonkeys/image/IndexImage.java | IndexImage.applyAlpha | private static void applyAlpha(BufferedImage pImage, BufferedImage pAlpha) {
// Apply alpha as transparency, using threshold of 25%
for (int y = 0; y < pAlpha.getHeight(); y++) {
for (int x = 0; x < pAlpha.getWidth(); x++) {
// Get alpha component of pixel, if less than... | java | private static void applyAlpha(BufferedImage pImage, BufferedImage pAlpha) {
// Apply alpha as transparency, using threshold of 25%
for (int y = 0; y < pAlpha.getHeight(); y++) {
for (int x = 0; x < pAlpha.getWidth(); x++) {
// Get alpha component of pixel, if less than... | [
"private",
"static",
"void",
"applyAlpha",
"(",
"BufferedImage",
"pImage",
",",
"BufferedImage",
"pAlpha",
")",
"{",
"// Apply alpha as transparency, using threshold of 25%\r",
"for",
"(",
"int",
"y",
"=",
"0",
";",
"y",
"<",
"pAlpha",
".",
"getHeight",
"(",
")",
... | Applies the alpha-component of the alpha image to the given image.
The given image is modified in place.
@param pImage the image to apply alpha to
@param pAlpha the image containing the alpha | [
"Applies",
"the",
"alpha",
"-",
"component",
"of",
"the",
"alpha",
"image",
"to",
"the",
"given",
"image",
".",
"The",
"given",
"image",
"is",
"modified",
"in",
"place",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-image/src/main/java/com/twelvemonkeys/image/IndexImage.java#L1189-L1201 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/FastByteArrayOutputStream.java | FastByteArrayOutputStream.toByteArray | @Override
public byte[] toByteArray() {
byte newBuf[] = new byte[count];
System.arraycopy(buf, 0, newBuf, 0, count);
return newBuf;
} | java | @Override
public byte[] toByteArray() {
byte newBuf[] = new byte[count];
System.arraycopy(buf, 0, newBuf, 0, count);
return newBuf;
} | [
"@",
"Override",
"public",
"byte",
"[",
"]",
"toByteArray",
"(",
")",
"{",
"byte",
"newBuf",
"[",
"]",
"=",
"new",
"byte",
"[",
"count",
"]",
";",
"System",
".",
"arraycopy",
"(",
"buf",
",",
"0",
",",
"newBuf",
",",
"0",
",",
"count",
")",
";",
... | Non-synchronized version of toByteArray | [
"Non",
"-",
"synchronized",
"version",
"of",
"toByteArray"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/FastByteArrayOutputStream.java#L114-L120 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/cache/CachedResponseImpl.java | CachedResponseImpl.writeHeadersTo | public void writeHeadersTo(final CacheResponse pResponse) {
String[] headers = getHeaderNames();
for (String header : headers) {
// HACK...
// Strip away internal headers
if (HTTPCache.HEADER_CACHED_TIME.equals(header)) {
continue;
}... | java | public void writeHeadersTo(final CacheResponse pResponse) {
String[] headers = getHeaderNames();
for (String header : headers) {
// HACK...
// Strip away internal headers
if (HTTPCache.HEADER_CACHED_TIME.equals(header)) {
continue;
}... | [
"public",
"void",
"writeHeadersTo",
"(",
"final",
"CacheResponse",
"pResponse",
")",
"{",
"String",
"[",
"]",
"headers",
"=",
"getHeaderNames",
"(",
")",
";",
"for",
"(",
"String",
"header",
":",
"headers",
")",
"{",
"// HACK...\r",
"// Strip away internal heade... | Writes the cached headers to the response
@param pResponse the response | [
"Writes",
"the",
"cached",
"headers",
"to",
"the",
"response"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/cache/CachedResponseImpl.java#L74-L98 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/cache/CachedResponseImpl.java | CachedResponseImpl.writeContentsTo | public void writeContentsTo(final OutputStream pStream) throws IOException {
if (content == null) {
throw new IOException("Cache is null, no content to write.");
}
content.writeTo(pStream);
} | java | public void writeContentsTo(final OutputStream pStream) throws IOException {
if (content == null) {
throw new IOException("Cache is null, no content to write.");
}
content.writeTo(pStream);
} | [
"public",
"void",
"writeContentsTo",
"(",
"final",
"OutputStream",
"pStream",
")",
"throws",
"IOException",
"{",
"if",
"(",
"content",
"==",
"null",
")",
"{",
"throw",
"new",
"IOException",
"(",
"\"Cache is null, no content to write.\"",
")",
";",
"}",
"content",
... | Writes the cached content to the response
@param pStream the response stream
@throws java.io.IOException | [
"Writes",
"the",
"cached",
"content",
"to",
"the",
"response"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/cache/CachedResponseImpl.java#L106-L112 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/cache/CachedResponseImpl.java | CachedResponseImpl.getHeaderNames | public String[] getHeaderNames() {
Set<String> headers = this.headers.keySet();
return headers.toArray(new String[headers.size()]);
} | java | public String[] getHeaderNames() {
Set<String> headers = this.headers.keySet();
return headers.toArray(new String[headers.size()]);
} | [
"public",
"String",
"[",
"]",
"getHeaderNames",
"(",
")",
"{",
"Set",
"<",
"String",
">",
"headers",
"=",
"this",
".",
"headers",
".",
"keySet",
"(",
")",
";",
"return",
"headers",
".",
"toArray",
"(",
"new",
"String",
"[",
"headers",
".",
"size",
"(... | Gets the header names of all headers set in this response.
@return an array of {@code String}s | [
"Gets",
"the",
"header",
"names",
"of",
"all",
"headers",
"set",
"in",
"this",
"response",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/cache/CachedResponseImpl.java#L119-L123 | train |
haraldk/TwelveMonkeys | imageio/imageio-clippath/src/main/java/com/twelvemonkeys/imageio/path/AdobePathBuilder.java | AdobePathBuilder.path | public Path2D path() throws IOException {
List<List<AdobePathSegment>> subPaths = new ArrayList<List<AdobePathSegment>>();
List<AdobePathSegment> currentPath = null;
int currentPathLength = 0;
AdobePathSegment segment;
while ((segment = nextSegment()) != null) {
if ... | java | public Path2D path() throws IOException {
List<List<AdobePathSegment>> subPaths = new ArrayList<List<AdobePathSegment>>();
List<AdobePathSegment> currentPath = null;
int currentPathLength = 0;
AdobePathSegment segment;
while ((segment = nextSegment()) != null) {
if ... | [
"public",
"Path2D",
"path",
"(",
")",
"throws",
"IOException",
"{",
"List",
"<",
"List",
"<",
"AdobePathSegment",
">>",
"subPaths",
"=",
"new",
"ArrayList",
"<",
"List",
"<",
"AdobePathSegment",
">",
">",
"(",
")",
";",
"List",
"<",
"AdobePathSegment",
">"... | Builds the path.
@return the path
@throws javax.imageio.IIOException if the input contains a bad path data.
@throws IOException if a general I/O exception occurs during reading. | [
"Builds",
"the",
"path",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-clippath/src/main/java/com/twelvemonkeys/imageio/path/AdobePathBuilder.java#L93-L142 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/image/TextRenderer.java | TextRenderer.getFontStyle | private int getFontStyle(String pStyle) {
if (pStyle == null || StringUtil.containsIgnoreCase(pStyle, FONT_STYLE_PLAIN)) {
return Font.PLAIN;
}
// Try to find bold/italic
int style = Font.PLAIN;
if (StringUtil.containsIgnoreCase(pStyle, FONT_STYLE_BOLD)) {
... | java | private int getFontStyle(String pStyle) {
if (pStyle == null || StringUtil.containsIgnoreCase(pStyle, FONT_STYLE_PLAIN)) {
return Font.PLAIN;
}
// Try to find bold/italic
int style = Font.PLAIN;
if (StringUtil.containsIgnoreCase(pStyle, FONT_STYLE_BOLD)) {
... | [
"private",
"int",
"getFontStyle",
"(",
"String",
"pStyle",
")",
"{",
"if",
"(",
"pStyle",
"==",
"null",
"||",
"StringUtil",
".",
"containsIgnoreCase",
"(",
"pStyle",
",",
"FONT_STYLE_PLAIN",
")",
")",
"{",
"return",
"Font",
".",
"PLAIN",
";",
"}",
"// Try ... | Returns the font style constant.
@param pStyle a string containing either the word {@code "plain"} or one
or more of {@code "bold"} and {@code italic}.
@return the font style constant as defined in {@link Font}.
@see Font#PLAIN
@see Font#BOLD
@see Font#ITALIC | [
"Returns",
"the",
"font",
"style",
"constant",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/image/TextRenderer.java#L301-L316 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/image/TextRenderer.java | TextRenderer.getAngle | private double getAngle(ServletRequest pRequest) {
// Get angle
double angle = ServletUtil.getDoubleParameter(pRequest, PARAM_TEXT_ROTATION, 0.0);
// Convert to radians, if needed
String units = pRequest.getParameter(PARAM_TEXT_ROTATION_UNITS);
if (!StringUtil.isEmpty(unit... | java | private double getAngle(ServletRequest pRequest) {
// Get angle
double angle = ServletUtil.getDoubleParameter(pRequest, PARAM_TEXT_ROTATION, 0.0);
// Convert to radians, if needed
String units = pRequest.getParameter(PARAM_TEXT_ROTATION_UNITS);
if (!StringUtil.isEmpty(unit... | [
"private",
"double",
"getAngle",
"(",
"ServletRequest",
"pRequest",
")",
"{",
"// Get angle\r",
"double",
"angle",
"=",
"ServletUtil",
".",
"getDoubleParameter",
"(",
"pRequest",
",",
"PARAM_TEXT_ROTATION",
",",
"0.0",
")",
";",
"// Convert to radians, if needed\r",
"... | Gets the angle of rotation from the request.
@param pRequest the servlet request to get parameters from
@return the angle in radians. | [
"Gets",
"the",
"angle",
"of",
"rotation",
"from",
"the",
"request",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-servlet/src/main/java/com/twelvemonkeys/servlet/image/TextRenderer.java#L324-L335 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/ServletConfigMapAdapter.java | ServletConfigMapAdapter.getName | public final String getName() {
switch (type) {
case ServletConfig:
return servletConfig.getServletName();
case FilterConfig:
return filterConfig.getFilterName();
case ServletContext:
return servletContext.getServletConte... | java | public final String getName() {
switch (type) {
case ServletConfig:
return servletConfig.getServletName();
case FilterConfig:
return filterConfig.getFilterName();
case ServletContext:
return servletContext.getServletConte... | [
"public",
"final",
"String",
"getName",
"(",
")",
"{",
"switch",
"(",
"type",
")",
"{",
"case",
"ServletConfig",
":",
"return",
"servletConfig",
".",
"getServletName",
"(",
")",
";",
"case",
"FilterConfig",
":",
"return",
"filterConfig",
".",
"getFilterName",
... | Gets the servlet or filter name from the config.
@return the servlet or filter name | [
"Gets",
"the",
"servlet",
"or",
"filter",
"name",
"from",
"the",
"config",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/ServletConfigMapAdapter.java#L111-L122 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/ServletConfigMapAdapter.java | ServletConfigMapAdapter.getServletContext | public final ServletContext getServletContext() {
switch (type) {
case ServletConfig:
return servletConfig.getServletContext();
case FilterConfig:
return filterConfig.getServletContext();
case ServletContext:
return servl... | java | public final ServletContext getServletContext() {
switch (type) {
case ServletConfig:
return servletConfig.getServletContext();
case FilterConfig:
return filterConfig.getServletContext();
case ServletContext:
return servl... | [
"public",
"final",
"ServletContext",
"getServletContext",
"(",
")",
"{",
"switch",
"(",
"type",
")",
"{",
"case",
"ServletConfig",
":",
"return",
"servletConfig",
".",
"getServletContext",
"(",
")",
";",
"case",
"FilterConfig",
":",
"return",
"filterConfig",
"."... | Gets the servlet context from the config.
@return the servlet context | [
"Gets",
"the",
"servlet",
"context",
"from",
"the",
"config",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/ServletConfigMapAdapter.java#L129-L140 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/enc/DecoderStream.java | DecoderStream.fill | protected int fill() throws IOException {
buffer.clear();
int read = decoder.decode(in, buffer);
// TODO: Enforce this in test case, leave here to aid debugging
if (read > buffer.capacity()) {
throw new AssertionError(
String.format(
... | java | protected int fill() throws IOException {
buffer.clear();
int read = decoder.decode(in, buffer);
// TODO: Enforce this in test case, leave here to aid debugging
if (read > buffer.capacity()) {
throw new AssertionError(
String.format(
... | [
"protected",
"int",
"fill",
"(",
")",
"throws",
"IOException",
"{",
"buffer",
".",
"clear",
"(",
")",
";",
"int",
"read",
"=",
"decoder",
".",
"decode",
"(",
"in",
",",
"buffer",
")",
";",
"// TODO: Enforce this in test case, leave here to aid debugging\r",
"if"... | Fills the buffer, by decoding data from the underlying input stream.
@return the number of bytes decoded, or {@code -1} if the end of the
file is reached
@throws IOException if an I/O error occurs | [
"Fills",
"the",
"buffer",
"by",
"decoding",
"data",
"from",
"the",
"underlying",
"input",
"stream",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/enc/DecoderStream.java#L178-L199 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/Log.java | Log.logDebug | public void logDebug(String message, Exception exception) {
if (!(logDebug || globalLog.logDebug))
return;
if (debugLog != null)
log(debugLog, "DEBUG", owner, message, exception);
else
log(globalLog.debugLog, "DEBUG", owner, message, exception);
... | java | public void logDebug(String message, Exception exception) {
if (!(logDebug || globalLog.logDebug))
return;
if (debugLog != null)
log(debugLog, "DEBUG", owner, message, exception);
else
log(globalLog.debugLog, "DEBUG", owner, message, exception);
... | [
"public",
"void",
"logDebug",
"(",
"String",
"message",
",",
"Exception",
"exception",
")",
"{",
"if",
"(",
"!",
"(",
"logDebug",
"||",
"globalLog",
".",
"logDebug",
")",
")",
"return",
";",
"if",
"(",
"debugLog",
"!=",
"null",
")",
"log",
"(",
"debugL... | Prints debug info to the current debugLog
@param message The message to log
@param exception An Exception | [
"Prints",
"debug",
"info",
"to",
"the",
"current",
"debugLog"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/Log.java#L281-L289 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/Log.java | Log.logWarning | public void logWarning(String message, Exception exception) {
if (!(logWarning || globalLog.logWarning))
return;
if (warningLog != null)
log(warningLog, "WARNING", owner, message, exception);
else
log(globalLog.warningLog, "WARNING", owner, message, e... | java | public void logWarning(String message, Exception exception) {
if (!(logWarning || globalLog.logWarning))
return;
if (warningLog != null)
log(warningLog, "WARNING", owner, message, exception);
else
log(globalLog.warningLog, "WARNING", owner, message, e... | [
"public",
"void",
"logWarning",
"(",
"String",
"message",
",",
"Exception",
"exception",
")",
"{",
"if",
"(",
"!",
"(",
"logWarning",
"||",
"globalLog",
".",
"logWarning",
")",
")",
"return",
";",
"if",
"(",
"warningLog",
"!=",
"null",
")",
"log",
"(",
... | Prints warning info to the current warningLog
@param message The message to log
@param exception An Exception | [
"Prints",
"warning",
"info",
"to",
"the",
"current",
"warningLog"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/Log.java#L385-L393 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/Log.java | Log.logError | public void logError(String message, Exception exception) {
if (!(logError || globalLog.logError))
return;
if (errorLog != null)
log(errorLog, "ERROR", owner, message, exception);
else
log(globalLog.errorLog, "ERROR", owner, message, exception);
... | java | public void logError(String message, Exception exception) {
if (!(logError || globalLog.logError))
return;
if (errorLog != null)
log(errorLog, "ERROR", owner, message, exception);
else
log(globalLog.errorLog, "ERROR", owner, message, exception);
... | [
"public",
"void",
"logError",
"(",
"String",
"message",
",",
"Exception",
"exception",
")",
"{",
"if",
"(",
"!",
"(",
"logError",
"||",
"globalLog",
".",
"logError",
")",
")",
"return",
";",
"if",
"(",
"errorLog",
"!=",
"null",
")",
"log",
"(",
"errorL... | Prints error info to the current errorLog
@param message The message to log
@param exception An Exception | [
"Prints",
"error",
"info",
"to",
"the",
"current",
"errorLog"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/Log.java#L488-L496 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/Log.java | Log.logInfo | public void logInfo(String message, Exception exception) {
if (!(logInfo || globalLog.logInfo))
return;
if (infoLog != null)
log(infoLog, "INFO", owner, message, exception);
else
log(globalLog.infoLog, "INFO", owner, message, exception);
} | java | public void logInfo(String message, Exception exception) {
if (!(logInfo || globalLog.logInfo))
return;
if (infoLog != null)
log(infoLog, "INFO", owner, message, exception);
else
log(globalLog.infoLog, "INFO", owner, message, exception);
} | [
"public",
"void",
"logInfo",
"(",
"String",
"message",
",",
"Exception",
"exception",
")",
"{",
"if",
"(",
"!",
"(",
"logInfo",
"||",
"globalLog",
".",
"logInfo",
")",
")",
"return",
";",
"if",
"(",
"infoLog",
"!=",
"null",
")",
"log",
"(",
"infoLog",
... | Prints info info to the current infoLog
@param message The message to log
@param exception An Exception | [
"Prints",
"info",
"info",
"to",
"the",
"current",
"infoLog"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/Log.java#L591-L599 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/Log.java | Log.getStream | private static OutputStream getStream(String name) throws IOException {
OutputStream os = null;
synchronized (streamCache) {
if ((os = (OutputStream) streamCache.get(name)) != null)
return os;
os = new FileOutputStream(name, true);
strea... | java | private static OutputStream getStream(String name) throws IOException {
OutputStream os = null;
synchronized (streamCache) {
if ((os = (OutputStream) streamCache.get(name)) != null)
return os;
os = new FileOutputStream(name, true);
strea... | [
"private",
"static",
"OutputStream",
"getStream",
"(",
"String",
"name",
")",
"throws",
"IOException",
"{",
"OutputStream",
"os",
"=",
"null",
";",
"synchronized",
"(",
"streamCache",
")",
"{",
"if",
"(",
"(",
"os",
"=",
"(",
"OutputStream",
")",
"streamCach... | Internal method to get a named stream | [
"Internal",
"method",
"to",
"get",
"a",
"named",
"stream"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/Log.java#L607-L619 | train |
haraldk/TwelveMonkeys | sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/Log.java | Log.log | private static void log(PrintStream ps, String header,
String owner, String message, Exception ex) {
// Only allow one instance to print to the given stream.
synchronized (ps) {
// Create output stream for logging
LogStream logStream = new LogStr... | java | private static void log(PrintStream ps, String header,
String owner, String message, Exception ex) {
// Only allow one instance to print to the given stream.
synchronized (ps) {
// Create output stream for logging
LogStream logStream = new LogStr... | [
"private",
"static",
"void",
"log",
"(",
"PrintStream",
"ps",
",",
"String",
"header",
",",
"String",
"owner",
",",
"String",
"message",
",",
"Exception",
"ex",
")",
"{",
"// Only allow one instance to print to the given stream.\r",
"synchronized",
"(",
"ps",
")",
... | Internal log method | [
"Internal",
"log",
"method"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/sandbox/sandbox-common/src/main/java/com/twelvemonkeys/sql/Log.java#L625-L644 | train |
haraldk/TwelveMonkeys | imageio/imageio-bmp/src/main/java/com/twelvemonkeys/imageio/plugins/bmp/CURImageReader.java | CURImageReader.getHotSpot | public final Point getHotSpot(final int pImageIndex) throws IOException {
DirectoryEntry.CUREntry entry = (DirectoryEntry.CUREntry) getEntry(pImageIndex);
return entry.getHotspot();
} | java | public final Point getHotSpot(final int pImageIndex) throws IOException {
DirectoryEntry.CUREntry entry = (DirectoryEntry.CUREntry) getEntry(pImageIndex);
return entry.getHotspot();
} | [
"public",
"final",
"Point",
"getHotSpot",
"(",
"final",
"int",
"pImageIndex",
")",
"throws",
"IOException",
"{",
"DirectoryEntry",
".",
"CUREntry",
"entry",
"=",
"(",
"DirectoryEntry",
".",
"CUREntry",
")",
"getEntry",
"(",
"pImageIndex",
")",
";",
"return",
"... | Returns the hot spot location for the cursor.
@param pImageIndex the index of the cursor in the current input.
@return the hot spot location for the cursor
@throws java.io.IOException if an I/O exception occurs during reading of image meta data
@throws IndexOutOfBoundsException if {@code pImageIndex} is less than {@c... | [
"Returns",
"the",
"hot",
"spot",
"location",
"for",
"the",
"cursor",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-bmp/src/main/java/com/twelvemonkeys/imageio/plugins/bmp/CURImageReader.java#L65-L68 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/convert/TimeConverter.java | TimeConverter.toObject | public Object toObject(String pString, Class pType, String pFormat)
throws ConversionException {
if (StringUtil.isEmpty(pString))
return null;
TimeFormat format;
try {
if (pFormat == null) {
// Use system default format
... | java | public Object toObject(String pString, Class pType, String pFormat)
throws ConversionException {
if (StringUtil.isEmpty(pString))
return null;
TimeFormat format;
try {
if (pFormat == null) {
// Use system default format
... | [
"public",
"Object",
"toObject",
"(",
"String",
"pString",
",",
"Class",
"pType",
",",
"String",
"pFormat",
")",
"throws",
"ConversionException",
"{",
"if",
"(",
"StringUtil",
".",
"isEmpty",
"(",
"pString",
")",
")",
"return",
"null",
";",
"TimeFormat",
"for... | Converts the string to a time, using the given format for parsing.
@param pString the string to convert.
@param pType the type to convert to. PropertyConverter
implementations may choose to ignore this parameter.
@param pFormat the format used for parsing. PropertyConverter
implementations may choose to ignore this pa... | [
"Converts",
"the",
"string",
"to",
"a",
"time",
"using",
"the",
"given",
"format",
"for",
"parsing",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/convert/TimeConverter.java#L71-L94 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/ole2/Entry.java | Entry.readEntry | static Entry readEntry(final DataInput pInput) throws IOException {
Entry p = new Entry();
p.read(pInput);
return p;
} | java | static Entry readEntry(final DataInput pInput) throws IOException {
Entry p = new Entry();
p.read(pInput);
return p;
} | [
"static",
"Entry",
"readEntry",
"(",
"final",
"DataInput",
"pInput",
")",
"throws",
"IOException",
"{",
"Entry",
"p",
"=",
"new",
"Entry",
"(",
")",
";",
"p",
".",
"read",
"(",
"pInput",
")",
";",
"return",
"p",
";",
"}"
] | Reads an entry from the input.
@param pInput the input data
@return the {@code Entry} read from the input data
@throws IOException if an i/o exception occurs during reading | [
"Reads",
"an",
"entry",
"from",
"the",
"input",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/ole2/Entry.java#L92-L96 | train |
haraldk/TwelveMonkeys | common/common-io/src/main/java/com/twelvemonkeys/io/ole2/Entry.java | Entry.read | private void read(final DataInput pInput) throws IOException {
byte[] bytes = new byte[64];
pInput.readFully(bytes);
// NOTE: Length is in bytes, including the null-terminator...
int nameLength = pInput.readShort();
name = new String(bytes, 0, nameLength - 2, Charset.forNa... | java | private void read(final DataInput pInput) throws IOException {
byte[] bytes = new byte[64];
pInput.readFully(bytes);
// NOTE: Length is in bytes, including the null-terminator...
int nameLength = pInput.readShort();
name = new String(bytes, 0, nameLength - 2, Charset.forNa... | [
"private",
"void",
"read",
"(",
"final",
"DataInput",
"pInput",
")",
"throws",
"IOException",
"{",
"byte",
"[",
"]",
"bytes",
"=",
"new",
"byte",
"[",
"64",
"]",
";",
"pInput",
".",
"readFully",
"(",
"bytes",
")",
";",
"// NOTE: Length is in bytes, including... | Reads this entry
@param pInput the input data
@throws IOException if an i/o exception occurs during reading | [
"Reads",
"this",
"entry"
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-io/src/main/java/com/twelvemonkeys/io/ole2/Entry.java#L104-L141 | train |
haraldk/TwelveMonkeys | imageio/imageio-clippath/src/main/java/com/twelvemonkeys/imageio/path/Paths.java | Paths.readPath | public static Path2D readPath(final ImageInputStream stream) throws IOException {
notNull(stream, "stream");
int magic = readMagic(stream);
if (magic == PSD.RESOURCE_TYPE) {
// This is a PSD Image Resource Block, we can parse directly
return buildPathFromPhotoshopResour... | java | public static Path2D readPath(final ImageInputStream stream) throws IOException {
notNull(stream, "stream");
int magic = readMagic(stream);
if (magic == PSD.RESOURCE_TYPE) {
// This is a PSD Image Resource Block, we can parse directly
return buildPathFromPhotoshopResour... | [
"public",
"static",
"Path2D",
"readPath",
"(",
"final",
"ImageInputStream",
"stream",
")",
"throws",
"IOException",
"{",
"notNull",
"(",
"stream",
",",
"\"stream\"",
")",
";",
"int",
"magic",
"=",
"readMagic",
"(",
"stream",
")",
";",
"if",
"(",
"magic",
"... | Reads the clipping path from the given input stream, if any.
Supports PSD, JPEG and TIFF as container formats for Photoshop resources,
or a "bare" PSD Image Resource Block.
@param stream the input stream to read from, not {@code null}.
@return the path, or {@code null} if no path is found
@throws IOException if a gene... | [
"Reads",
"the",
"clipping",
"path",
"from",
"the",
"given",
"input",
"stream",
"if",
"any",
".",
"Supports",
"PSD",
"JPEG",
"and",
"TIFF",
"as",
"container",
"formats",
"for",
"Photoshop",
"resources",
"or",
"a",
"bare",
"PSD",
"Image",
"Resource",
"Block",
... | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-clippath/src/main/java/com/twelvemonkeys/imageio/path/Paths.java#L95-L146 | train |
haraldk/TwelveMonkeys | imageio/imageio-clippath/src/main/java/com/twelvemonkeys/imageio/path/Paths.java | Paths.applyClippingPath | public static BufferedImage applyClippingPath(final Shape clip, final BufferedImage image) {
return applyClippingPath(clip, notNull(image, "image"), new BufferedImage(image.getWidth(), image.getHeight(), BufferedImage.TYPE_INT_ARGB));
} | java | public static BufferedImage applyClippingPath(final Shape clip, final BufferedImage image) {
return applyClippingPath(clip, notNull(image, "image"), new BufferedImage(image.getWidth(), image.getHeight(), BufferedImage.TYPE_INT_ARGB));
} | [
"public",
"static",
"BufferedImage",
"applyClippingPath",
"(",
"final",
"Shape",
"clip",
",",
"final",
"BufferedImage",
"image",
")",
"{",
"return",
"applyClippingPath",
"(",
"clip",
",",
"notNull",
"(",
"image",
",",
"\"image\"",
")",
",",
"new",
"BufferedImage... | Applies the clipping path to the given image.
All pixels outside the path will be transparent.
@param clip the clipping path, not {@code null}
@param image the image to clip, not {@code null}
@return the clipped image.
@throws java.lang.IllegalArgumentException if {@code clip} or {@code image} is {@code null}. | [
"Applies",
"the",
"clipping",
"path",
"to",
"the",
"given",
"image",
".",
"All",
"pixels",
"outside",
"the",
"path",
"will",
"be",
"transparent",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-clippath/src/main/java/com/twelvemonkeys/imageio/path/Paths.java#L185-L187 | train |
haraldk/TwelveMonkeys | imageio/imageio-clippath/src/main/java/com/twelvemonkeys/imageio/path/Paths.java | Paths.readClipped | public static BufferedImage readClipped(final ImageInputStream stream) throws IOException {
Shape clip = readPath(stream);
stream.seek(0);
BufferedImage image = ImageIO.read(stream);
if (clip == null) {
return image;
}
return applyClippingPath(clip, image);... | java | public static BufferedImage readClipped(final ImageInputStream stream) throws IOException {
Shape clip = readPath(stream);
stream.seek(0);
BufferedImage image = ImageIO.read(stream);
if (clip == null) {
return image;
}
return applyClippingPath(clip, image);... | [
"public",
"static",
"BufferedImage",
"readClipped",
"(",
"final",
"ImageInputStream",
"stream",
")",
"throws",
"IOException",
"{",
"Shape",
"clip",
"=",
"readPath",
"(",
"stream",
")",
";",
"stream",
".",
"seek",
"(",
"0",
")",
";",
"BufferedImage",
"image",
... | Reads the clipping path from the given input stream, if any,
and applies it to the first image in the stream.
If no path was found, the image is returned without any clipping.
Supports PSD, JPEG and TIFF as container formats for Photoshop resources.
@param stream the stream to read from, not {@code null}
@return the c... | [
"Reads",
"the",
"clipping",
"path",
"from",
"the",
"given",
"input",
"stream",
"if",
"any",
"and",
"applies",
"it",
"to",
"the",
"first",
"image",
"in",
"the",
"stream",
".",
"If",
"no",
"path",
"was",
"found",
"the",
"image",
"is",
"returned",
"without"... | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-clippath/src/main/java/com/twelvemonkeys/imageio/path/Paths.java#L244-L255 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/ProxyServlet.java | ProxyServlet.service | protected void service(HttpServletRequest pRequest, HttpServletResponse pResponse) throws ServletException, IOException {
// Sanity check configuration
if (remoteServer == null) {
log(MESSAGE_REMOTE_SERVER_NOT_CONFIGURED);
pResponse.sendError(HttpServletResponse.SC_INTERNAL_S... | java | protected void service(HttpServletRequest pRequest, HttpServletResponse pResponse) throws ServletException, IOException {
// Sanity check configuration
if (remoteServer == null) {
log(MESSAGE_REMOTE_SERVER_NOT_CONFIGURED);
pResponse.sendError(HttpServletResponse.SC_INTERNAL_S... | [
"protected",
"void",
"service",
"(",
"HttpServletRequest",
"pRequest",
",",
"HttpServletResponse",
"pResponse",
")",
"throws",
"ServletException",
",",
"IOException",
"{",
"// Sanity check configuration\r",
"if",
"(",
"remoteServer",
"==",
"null",
")",
"{",
"log",
"("... | Services a single request.
Supports HTTP and HTTPS.
@param pRequest
@param pResponse
@throws ServletException
@throws IOException
@see ProxyServlet Class descrition | [
"Services",
"a",
"single",
"request",
".",
"Supports",
"HTTP",
"and",
"HTTPS",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/ProxyServlet.java#L156-L215 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/ProxyServlet.java | ProxyServlet.createRemoteRequestURI | private String createRemoteRequestURI(HttpServletRequest pRequest) {
StringBuilder requestURI = new StringBuilder(remotePath);
requestURI.append(pRequest.getPathInfo());
if (!StringUtil.isEmpty(pRequest.getQueryString())) {
requestURI.append("?");
requestURI.append... | java | private String createRemoteRequestURI(HttpServletRequest pRequest) {
StringBuilder requestURI = new StringBuilder(remotePath);
requestURI.append(pRequest.getPathInfo());
if (!StringUtil.isEmpty(pRequest.getQueryString())) {
requestURI.append("?");
requestURI.append... | [
"private",
"String",
"createRemoteRequestURI",
"(",
"HttpServletRequest",
"pRequest",
")",
"{",
"StringBuilder",
"requestURI",
"=",
"new",
"StringBuilder",
"(",
"remotePath",
")",
";",
"requestURI",
".",
"append",
"(",
"pRequest",
".",
"getPathInfo",
"(",
")",
")"... | Creates the remote request URI based on the incoming request.
The URI will include any query strings etc.
@param pRequest
@return a {@code String} representing the remote request URI | [
"Creates",
"the",
"remote",
"request",
"URI",
"based",
"on",
"the",
"incoming",
"request",
".",
"The",
"URI",
"will",
"include",
"any",
"query",
"strings",
"etc",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/ProxyServlet.java#L323-L333 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/TimeoutMap.java | TimeoutMap.setExpiryTime | public void setExpiryTime(long pExpiryTime) {
long oldEexpiryTime = expiryTime;
expiryTime = pExpiryTime;
if (expiryTime < oldEexpiryTime) {
// Expire now
nextExpiryTime = 0;
removeExpiredEntries();
}
} | java | public void setExpiryTime(long pExpiryTime) {
long oldEexpiryTime = expiryTime;
expiryTime = pExpiryTime;
if (expiryTime < oldEexpiryTime) {
// Expire now
nextExpiryTime = 0;
removeExpiredEntries();
}
} | [
"public",
"void",
"setExpiryTime",
"(",
"long",
"pExpiryTime",
")",
"{",
"long",
"oldEexpiryTime",
"=",
"expiryTime",
";",
"expiryTime",
"=",
"pExpiryTime",
";",
"if",
"(",
"expiryTime",
"<",
"oldEexpiryTime",
")",
"{",
"// Expire now\r",
"nextExpiryTime",
"=",
... | Sets the maximum time any value will be kept in the map, before it expires.
Removes any items that are older than the specified time.
@param pExpiryTime the expiry time (time to live) for elements in this map | [
"Sets",
"the",
"maximum",
"time",
"any",
"value",
"will",
"be",
"kept",
"in",
"the",
"map",
"before",
"it",
"expires",
".",
"Removes",
"any",
"items",
"that",
"are",
"older",
"than",
"the",
"specified",
"time",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/TimeoutMap.java#L148-L158 | train |
haraldk/TwelveMonkeys | common/common-lang/src/main/java/com/twelvemonkeys/util/TimeoutMap.java | TimeoutMap.removeExpiredEntriesSynced | private synchronized void removeExpiredEntriesSynced(long pTime) {
if (pTime > nextExpiryTime) {
////
long next = Long.MAX_VALUE;
nextExpiryTime = next; // Avoid multiple runs...
for (Iterator<Entry<K, V>> iterator = new EntryIterator(); iterator.hasNext();) ... | java | private synchronized void removeExpiredEntriesSynced(long pTime) {
if (pTime > nextExpiryTime) {
////
long next = Long.MAX_VALUE;
nextExpiryTime = next; // Avoid multiple runs...
for (Iterator<Entry<K, V>> iterator = new EntryIterator(); iterator.hasNext();) ... | [
"private",
"synchronized",
"void",
"removeExpiredEntriesSynced",
"(",
"long",
"pTime",
")",
"{",
"if",
"(",
"pTime",
">",
"nextExpiryTime",
")",
"{",
"////\r",
"long",
"next",
"=",
"Long",
".",
"MAX_VALUE",
";",
"nextExpiryTime",
"=",
"next",
";",
"// Avoid mu... | Okay, I guess this do resemble DCL...
@todo Write some exhausting multi-threaded unit-tests.
@param pTime now | [
"Okay",
"I",
"guess",
"this",
"do",
"resemble",
"DCL",
"..."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/common/common-lang/src/main/java/com/twelvemonkeys/util/TimeoutMap.java#L307-L324 | train |
haraldk/TwelveMonkeys | imageio/imageio-pcx/src/main/java/com/twelvemonkeys/imageio/plugins/pcx/BitRotator.java | BitRotator.bitRotateCW | static void bitRotateCW(final byte[] pSrc, int pSrcPos, int pSrcStep,
final byte[] pDst, int pDstPos, int pDstStep) {
int idx = pSrcPos;
int lonyb;
int hinyb;
long lo = 0;
long hi = 0;
for (int i = 0; i < 8; i++) {
lonyb = pSrc[id... | java | static void bitRotateCW(final byte[] pSrc, int pSrcPos, int pSrcStep,
final byte[] pDst, int pDstPos, int pDstStep) {
int idx = pSrcPos;
int lonyb;
int hinyb;
long lo = 0;
long hi = 0;
for (int i = 0; i < 8; i++) {
lonyb = pSrc[id... | [
"static",
"void",
"bitRotateCW",
"(",
"final",
"byte",
"[",
"]",
"pSrc",
",",
"int",
"pSrcPos",
",",
"int",
"pSrcStep",
",",
"final",
"byte",
"[",
"]",
"pDst",
",",
"int",
"pDstPos",
",",
"int",
"pDstStep",
")",
"{",
"int",
"idx",
"=",
"pSrcPos",
";"... | Rotate bits clockwise.
The IFFImageReader uses this to convert pixel bits from planar to chunky.
Bits from the source are rotated 90 degrees clockwise written to the
destination.
@param pSrc source pixel data
@param pSrcPos starting index of 8 x 8 bit source tile
@param pSrcStep byte offset between adjacent rows ... | [
"Rotate",
"bits",
"clockwise",
".",
"The",
"IFFImageReader",
"uses",
"this",
"to",
"convert",
"pixel",
"bits",
"from",
"planar",
"to",
"chunky",
".",
"Bits",
"from",
"the",
"source",
"are",
"rotated",
"90",
"degrees",
"clockwise",
"written",
"to",
"the",
"de... | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-pcx/src/main/java/com/twelvemonkeys/imageio/plugins/pcx/BitRotator.java#L79-L128 | train |
haraldk/TwelveMonkeys | imageio/imageio-hdr/src/main/java/com/twelvemonkeys/imageio/plugins/hdr/RGBE.java | RGBE.readPixels | public static void readPixels(DataInput in, float[] data, int numpixels) throws IOException {
byte[] rgbe = new byte[4];
float[] rgb = new float[3];
int offset = 0;
while (numpixels-- > 0) {
in.readFully(rgbe);
rgbe2float(rgb, rgbe, 0);
data[offset+... | java | public static void readPixels(DataInput in, float[] data, int numpixels) throws IOException {
byte[] rgbe = new byte[4];
float[] rgb = new float[3];
int offset = 0;
while (numpixels-- > 0) {
in.readFully(rgbe);
rgbe2float(rgb, rgbe, 0);
data[offset+... | [
"public",
"static",
"void",
"readPixels",
"(",
"DataInput",
"in",
",",
"float",
"[",
"]",
"data",
",",
"int",
"numpixels",
")",
"throws",
"IOException",
"{",
"byte",
"[",
"]",
"rgbe",
"=",
"new",
"byte",
"[",
"4",
"]",
";",
"float",
"[",
"]",
"rgb",
... | Simple read routine. Will not correctly handle run length encoding. | [
"Simple",
"read",
"routine",
".",
"Will",
"not",
"correctly",
"handle",
"run",
"length",
"encoding",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-hdr/src/main/java/com/twelvemonkeys/imageio/plugins/hdr/RGBE.java#L189-L203 | train |
haraldk/TwelveMonkeys | imageio/imageio-hdr/src/main/java/com/twelvemonkeys/imageio/plugins/hdr/RGBE.java | RGBE.float2rgbe | public static void float2rgbe(byte[] rgbe, float red, float green, float blue) {
float v;
int e;
v = red;
if (green > v) {
v = green;
}
if (blue > v) {
v = blue;
}
if (v < 1e-32f) {
rgbe[0] = rgbe[1] = rgbe[2] = rgbe[3]... | java | public static void float2rgbe(byte[] rgbe, float red, float green, float blue) {
float v;
int e;
v = red;
if (green > v) {
v = green;
}
if (blue > v) {
v = blue;
}
if (v < 1e-32f) {
rgbe[0] = rgbe[1] = rgbe[2] = rgbe[3]... | [
"public",
"static",
"void",
"float2rgbe",
"(",
"byte",
"[",
"]",
"rgbe",
",",
"float",
"red",
",",
"float",
"green",
",",
"float",
"blue",
")",
"{",
"float",
"v",
";",
"int",
"e",
";",
"v",
"=",
"red",
";",
"if",
"(",
"green",
">",
"v",
")",
"{... | Standard conversion from float pixels to rgbe pixels. | [
"Standard",
"conversion",
"from",
"float",
"pixels",
"to",
"rgbe",
"pixels",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/imageio/imageio-hdr/src/main/java/com/twelvemonkeys/imageio/plugins/hdr/RGBE.java#L291-L313 | train |
haraldk/TwelveMonkeys | servlet/src/main/java/com/twelvemonkeys/servlet/image/CropFilter.java | CropFilter.doFilter | protected RenderedImage doFilter(BufferedImage pImage, ServletRequest pRequest, ImageServletResponse pResponse) {
// Get crop coordinates
int x = ServletUtil.getIntParameter(pRequest, PARAM_CROP_X, -1);
int y = ServletUtil.getIntParameter(pRequest, PARAM_CROP_Y, -1);
int width = Serv... | java | protected RenderedImage doFilter(BufferedImage pImage, ServletRequest pRequest, ImageServletResponse pResponse) {
// Get crop coordinates
int x = ServletUtil.getIntParameter(pRequest, PARAM_CROP_X, -1);
int y = ServletUtil.getIntParameter(pRequest, PARAM_CROP_Y, -1);
int width = Serv... | [
"protected",
"RenderedImage",
"doFilter",
"(",
"BufferedImage",
"pImage",
",",
"ServletRequest",
"pRequest",
",",
"ImageServletResponse",
"pResponse",
")",
"{",
"// Get crop coordinates\r",
"int",
"x",
"=",
"ServletUtil",
".",
"getIntParameter",
"(",
"pRequest",
",",
... | Reads the image from the requested URL, scales it, crops it, and returns
it in the
Servlet stream. See above for details on parameters. | [
"Reads",
"the",
"image",
"from",
"the",
"requested",
"URL",
"scales",
"it",
"crops",
"it",
"and",
"returns",
"it",
"in",
"the",
"Servlet",
"stream",
".",
"See",
"above",
"for",
"details",
"on",
"parameters",
"."
] | 7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d | https://github.com/haraldk/TwelveMonkeys/blob/7fad4d5cd8cb3a6728c7fd3f28a7b84d8ce0101d/servlet/src/main/java/com/twelvemonkeys/servlet/image/CropFilter.java#L117-L138 | train |
mpetazzoni/ttorrent | common/src/main/java/com/turn/ttorrent/common/TorrentCreator.java | TorrentCreator.hashFile | private static String hashFile(final File file, final int pieceSize)
throws InterruptedException, IOException {
return hashFiles(Collections.singletonList(file), pieceSize);
} | java | private static String hashFile(final File file, final int pieceSize)
throws InterruptedException, IOException {
return hashFiles(Collections.singletonList(file), pieceSize);
} | [
"private",
"static",
"String",
"hashFile",
"(",
"final",
"File",
"file",
",",
"final",
"int",
"pieceSize",
")",
"throws",
"InterruptedException",
",",
"IOException",
"{",
"return",
"hashFiles",
"(",
"Collections",
".",
"singletonList",
"(",
"file",
")",
",",
"... | Return the concatenation of the SHA-1 hashes of a file's pieces.
<p>
Hashes the given file piece by piece using the default Torrent piece
length (see {@link #DEFAULT_PIECE_LENGTH}) and returns the concatenation of
these hashes, as a string.
</p>
<p>
This is used for creating Torrent meta-info structures from a file.
... | [
"Return",
"the",
"concatenation",
"of",
"the",
"SHA",
"-",
"1",
"hashes",
"of",
"a",
"file",
"s",
"pieces",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/common/src/main/java/com/turn/ttorrent/common/TorrentCreator.java#L252-L255 | train |
mpetazzoni/ttorrent | common/src/main/java/com/turn/ttorrent/common/protocol/PeerMessage.java | PeerMessage.parse | public static PeerMessage parse(ByteBuffer buffer, TorrentInfo torrent)
throws ParseException {
int length = buffer.getInt();
if (length == 0) {
return KeepAliveMessage.parse(buffer, torrent);
} else if (length != buffer.remaining()) {
throw new ParseException("Message size did not mat... | java | public static PeerMessage parse(ByteBuffer buffer, TorrentInfo torrent)
throws ParseException {
int length = buffer.getInt();
if (length == 0) {
return KeepAliveMessage.parse(buffer, torrent);
} else if (length != buffer.remaining()) {
throw new ParseException("Message size did not mat... | [
"public",
"static",
"PeerMessage",
"parse",
"(",
"ByteBuffer",
"buffer",
",",
"TorrentInfo",
"torrent",
")",
"throws",
"ParseException",
"{",
"int",
"length",
"=",
"buffer",
".",
"getInt",
"(",
")",
";",
"if",
"(",
"length",
"==",
"0",
")",
"{",
"return",
... | Parse the given buffer into a peer protocol message.
<p>
Parses the provided byte array and builds the corresponding PeerMessage
subclass object.
</p>
@param buffer The byte buffer containing the message data.
@param torrent The torrent this message is about.
@return A PeerMessage subclass instance.
@throws ParseExc... | [
"Parse",
"the",
"given",
"buffer",
"into",
"a",
"peer",
"protocol",
"message",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/common/src/main/java/com/turn/ttorrent/common/protocol/PeerMessage.java#L150-L189 | train |
mpetazzoni/ttorrent | ttorrent-tracker/src/main/java/com/turn/ttorrent/tracker/TrackerRequestProcessor.java | TrackerRequestProcessor.serveError | private void serveError(Status status, String error, RequestHandler requestHandler) throws IOException {
this.serveError(status, HTTPTrackerErrorMessage.craft(error), requestHandler);
} | java | private void serveError(Status status, String error, RequestHandler requestHandler) throws IOException {
this.serveError(status, HTTPTrackerErrorMessage.craft(error), requestHandler);
} | [
"private",
"void",
"serveError",
"(",
"Status",
"status",
",",
"String",
"error",
",",
"RequestHandler",
"requestHandler",
")",
"throws",
"IOException",
"{",
"this",
".",
"serveError",
"(",
"status",
",",
"HTTPTrackerErrorMessage",
".",
"craft",
"(",
"error",
")... | Write an error message to the response with the given HTTP status code.
@param status The HTTP status code to return.
@param error The error message reported by the tracker. | [
"Write",
"an",
"error",
"message",
"to",
"the",
"response",
"with",
"the",
"given",
"HTTP",
"status",
"code",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-tracker/src/main/java/com/turn/ttorrent/tracker/TrackerRequestProcessor.java#L300-L302 | train |
mpetazzoni/ttorrent | ttorrent-tracker/src/main/java/com/turn/ttorrent/tracker/TrackerRequestProcessor.java | TrackerRequestProcessor.serveError | private void serveError(Status status, ErrorMessage.FailureReason reason, RequestHandler requestHandler) throws IOException {
this.serveError(status, reason.getMessage(), requestHandler);
} | java | private void serveError(Status status, ErrorMessage.FailureReason reason, RequestHandler requestHandler) throws IOException {
this.serveError(status, reason.getMessage(), requestHandler);
} | [
"private",
"void",
"serveError",
"(",
"Status",
"status",
",",
"ErrorMessage",
".",
"FailureReason",
"reason",
",",
"RequestHandler",
"requestHandler",
")",
"throws",
"IOException",
"{",
"this",
".",
"serveError",
"(",
"status",
",",
"reason",
".",
"getMessage",
... | Write a tracker failure reason code to the response with the given HTTP
status code.
@param status The HTTP status code to return.
@param reason The failure reason reported by the tracker. | [
"Write",
"a",
"tracker",
"failure",
"reason",
"code",
"to",
"the",
"response",
"with",
"the",
"given",
"HTTP",
"status",
"code",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-tracker/src/main/java/com/turn/ttorrent/tracker/TrackerRequestProcessor.java#L311-L313 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/TrackerClient.java | TrackerClient.formatAnnounceEvent | protected String formatAnnounceEvent(
AnnounceRequestMessage.RequestEvent event) {
return AnnounceRequestMessage.RequestEvent.NONE.equals(event)
? ""
: String.format(" %s", event.name());
} | java | protected String formatAnnounceEvent(
AnnounceRequestMessage.RequestEvent event) {
return AnnounceRequestMessage.RequestEvent.NONE.equals(event)
? ""
: String.format(" %s", event.name());
} | [
"protected",
"String",
"formatAnnounceEvent",
"(",
"AnnounceRequestMessage",
".",
"RequestEvent",
"event",
")",
"{",
"return",
"AnnounceRequestMessage",
".",
"RequestEvent",
".",
"NONE",
".",
"equals",
"(",
"event",
")",
"?",
"\"\"",
":",
"String",
".",
"format",
... | Formats an announce event into a usable string. | [
"Formats",
"an",
"announce",
"event",
"into",
"a",
"usable",
"string",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/TrackerClient.java#L141-L146 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/TrackerClient.java | TrackerClient.handleTrackerAnnounceResponse | protected void handleTrackerAnnounceResponse(TrackerMessage message,
boolean inhibitEvents, String hexInfoHash) throws AnnounceException {
if (message instanceof ErrorMessage) {
ErrorMessage error = (ErrorMessage) message;
throw new AnnounceException(error.... | java | protected void handleTrackerAnnounceResponse(TrackerMessage message,
boolean inhibitEvents, String hexInfoHash) throws AnnounceException {
if (message instanceof ErrorMessage) {
ErrorMessage error = (ErrorMessage) message;
throw new AnnounceException(error.... | [
"protected",
"void",
"handleTrackerAnnounceResponse",
"(",
"TrackerMessage",
"message",
",",
"boolean",
"inhibitEvents",
",",
"String",
"hexInfoHash",
")",
"throws",
"AnnounceException",
"{",
"if",
"(",
"message",
"instanceof",
"ErrorMessage",
")",
"{",
"ErrorMessage",
... | Handle the announce response from the tracker.
<p>
Analyzes the response from the tracker and acts on it. If the response
is an error, it is logged. Otherwise, the announce response is used
to fire the corresponding announce and peer events to all announce
listeners.
</p>
@param message The incoming {@link Trac... | [
"Handle",
"the",
"announce",
"response",
"from",
"the",
"tracker",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/TrackerClient.java#L161-L190 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/TrackerClient.java | TrackerClient.fireAnnounceResponseEvent | protected void fireAnnounceResponseEvent(int complete, int incomplete, int interval, String hexInfoHash) {
for (AnnounceResponseListener listener : this.listeners) {
listener.handleAnnounceResponse(interval, complete, incomplete, hexInfoHash);
}
} | java | protected void fireAnnounceResponseEvent(int complete, int incomplete, int interval, String hexInfoHash) {
for (AnnounceResponseListener listener : this.listeners) {
listener.handleAnnounceResponse(interval, complete, incomplete, hexInfoHash);
}
} | [
"protected",
"void",
"fireAnnounceResponseEvent",
"(",
"int",
"complete",
",",
"int",
"incomplete",
",",
"int",
"interval",
",",
"String",
"hexInfoHash",
")",
"{",
"for",
"(",
"AnnounceResponseListener",
"listener",
":",
"this",
".",
"listeners",
")",
"{",
"list... | Fire the announce response event to all listeners.
@param complete The number of seeders on this torrent.
@param incomplete The number of leechers on this torrent.
@param interval The announce interval requested by the tracker. | [
"Fire",
"the",
"announce",
"response",
"event",
"to",
"all",
"listeners",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/TrackerClient.java#L199-L203 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/TrackerClient.java | TrackerClient.fireDiscoveredPeersEvent | protected void fireDiscoveredPeersEvent(List<Peer> peers, String hexInfoHash) {
for (AnnounceResponseListener listener : this.listeners) {
listener.handleDiscoveredPeers(peers, hexInfoHash);
}
} | java | protected void fireDiscoveredPeersEvent(List<Peer> peers, String hexInfoHash) {
for (AnnounceResponseListener listener : this.listeners) {
listener.handleDiscoveredPeers(peers, hexInfoHash);
}
} | [
"protected",
"void",
"fireDiscoveredPeersEvent",
"(",
"List",
"<",
"Peer",
">",
"peers",
",",
"String",
"hexInfoHash",
")",
"{",
"for",
"(",
"AnnounceResponseListener",
"listener",
":",
"this",
".",
"listeners",
")",
"{",
"listener",
".",
"handleDiscoveredPeers",
... | Fire the new peer discovery event to all listeners.
@param peers The list of peers discovered. | [
"Fire",
"the",
"new",
"peer",
"discovery",
"event",
"to",
"all",
"listeners",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/TrackerClient.java#L210-L214 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/storage/FileStorage.java | FileStorage.finish | @Override
public void finish() throws IOException {
try {
myLock.writeLock().lock();
logger.debug("Closing file channel to " + this.current.getName() +
" (download complete).");
if (this.channel.isOpen()) {
this.channel.force(true);
}
// Nothing more to do if w... | java | @Override
public void finish() throws IOException {
try {
myLock.writeLock().lock();
logger.debug("Closing file channel to " + this.current.getName() +
" (download complete).");
if (this.channel.isOpen()) {
this.channel.force(true);
}
// Nothing more to do if w... | [
"@",
"Override",
"public",
"void",
"finish",
"(",
")",
"throws",
"IOException",
"{",
"try",
"{",
"myLock",
".",
"writeLock",
"(",
")",
".",
"lock",
"(",
")",
";",
"logger",
".",
"debug",
"(",
"\"Closing file channel to \"",
"+",
"this",
".",
"current",
"... | Move the partial file to its final location. | [
"Move",
"the",
"partial",
"file",
"to",
"its",
"final",
"location",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/storage/FileStorage.java#L182-L219 | train |
mpetazzoni/ttorrent | common/src/main/java/com/turn/ttorrent/common/protocol/http/HTTPAnnounceResponseMessage.java | HTTPAnnounceResponseMessage.craft | public static HTTPAnnounceResponseMessage craft(int interval,
int complete, int incomplete,
List<Peer> peers, String hexInfoHash) throws IOException, UnsupportedEncodingException {
Map<String, BEValue> response = new... | java | public static HTTPAnnounceResponseMessage craft(int interval,
int complete, int incomplete,
List<Peer> peers, String hexInfoHash) throws IOException, UnsupportedEncodingException {
Map<String, BEValue> response = new... | [
"public",
"static",
"HTTPAnnounceResponseMessage",
"craft",
"(",
"int",
"interval",
",",
"int",
"complete",
",",
"int",
"incomplete",
",",
"List",
"<",
"Peer",
">",
"peers",
",",
"String",
"hexInfoHash",
")",
"throws",
"IOException",
",",
"UnsupportedEncodingExcep... | Craft a compact announce response message with a torrent identifier.
@param interval
@param complete
@param incomplete
@param peers | [
"Craft",
"a",
"compact",
"announce",
"response",
"message",
"with",
"a",
"torrent",
"identifier",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/common/src/main/java/com/turn/ttorrent/common/protocol/http/HTTPAnnounceResponseMessage.java#L198-L223 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/storage/FileCollectionStorage.java | FileCollectionStorage.select | private List<FileOffset> select(long offset, long length) {
if (offset + length > this.size) {
throw new IllegalArgumentException("Buffer overrun (" +
offset + " + " + length + " > " + this.size + ") !");
}
List<FileOffset> selected = new LinkedList<FileOffset>();
long bytes = 0;
... | java | private List<FileOffset> select(long offset, long length) {
if (offset + length > this.size) {
throw new IllegalArgumentException("Buffer overrun (" +
offset + " + " + length + " > " + this.size + ") !");
}
List<FileOffset> selected = new LinkedList<FileOffset>();
long bytes = 0;
... | [
"private",
"List",
"<",
"FileOffset",
">",
"select",
"(",
"long",
"offset",
",",
"long",
"length",
")",
"{",
"if",
"(",
"offset",
"+",
"length",
">",
"this",
".",
"size",
")",
"{",
"throw",
"new",
"IllegalArgumentException",
"(",
"\"Buffer overrun (\"",
"+... | Select the group of files impacted by an operation.
<p>
This function selects which files are impacted by a read or write
operation, with their respective relative offset and chunk length.
</p>
@param offset The offset of the operation, in bytes, relative to the
complete byte storage.
@param length The number of byte... | [
"Select",
"the",
"group",
"of",
"files",
"impacted",
"by",
"an",
"operation",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/storage/FileCollectionStorage.java#L215-L248 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/UDPTrackerClient.java | UDPTrackerClient.handleTrackerAnnounceResponse | @Override
protected void handleTrackerAnnounceResponse(TrackerMessage message,
boolean inhibitEvents, String hexInfoHash) throws AnnounceException {
this.validateTrackerResponse(message);
super.handleTrackerAnnounceResponse(message, inhibitEvents, hexInfoHash);
... | java | @Override
protected void handleTrackerAnnounceResponse(TrackerMessage message,
boolean inhibitEvents, String hexInfoHash) throws AnnounceException {
this.validateTrackerResponse(message);
super.handleTrackerAnnounceResponse(message, inhibitEvents, hexInfoHash);
... | [
"@",
"Override",
"protected",
"void",
"handleTrackerAnnounceResponse",
"(",
"TrackerMessage",
"message",
",",
"boolean",
"inhibitEvents",
",",
"String",
"hexInfoHash",
")",
"throws",
"AnnounceException",
"{",
"this",
".",
"validateTrackerResponse",
"(",
"message",
")",
... | Handles the tracker announce response message.
<p>
Verifies the transaction ID of the message before passing it over to
{@link Announce#()}.
</p>
@param message The message received from the tracker in response to the
announce request. | [
"Handles",
"the",
"tracker",
"announce",
"response",
"message",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/UDPTrackerClient.java#L248-L253 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/UDPTrackerClient.java | UDPTrackerClient.close | @Override
protected void close() {
this.stop = true;
// Close the socket to force blocking operations to return.
if (this.socket != null && !this.socket.isClosed()) {
this.socket.close();
}
} | java | @Override
protected void close() {
this.stop = true;
// Close the socket to force blocking operations to return.
if (this.socket != null && !this.socket.isClosed()) {
this.socket.close();
}
} | [
"@",
"Override",
"protected",
"void",
"close",
"(",
")",
"{",
"this",
".",
"stop",
"=",
"true",
";",
"// Close the socket to force blocking operations to return.",
"if",
"(",
"this",
".",
"socket",
"!=",
"null",
"&&",
"!",
"this",
".",
"socket",
".",
"isClosed... | Close this announce connection. | [
"Close",
"this",
"announce",
"connection",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/UDPTrackerClient.java#L258-L266 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/UDPTrackerClient.java | UDPTrackerClient.validateTrackerResponse | private void validateTrackerResponse(TrackerMessage message)
throws AnnounceException {
if (message instanceof ErrorMessage) {
throw new AnnounceException(((ErrorMessage) message).getReason());
}
if (message instanceof UDPTrackerMessage &&
(((UDPTrackerMessage) message).getTrans... | java | private void validateTrackerResponse(TrackerMessage message)
throws AnnounceException {
if (message instanceof ErrorMessage) {
throw new AnnounceException(((ErrorMessage) message).getReason());
}
if (message instanceof UDPTrackerMessage &&
(((UDPTrackerMessage) message).getTrans... | [
"private",
"void",
"validateTrackerResponse",
"(",
"TrackerMessage",
"message",
")",
"throws",
"AnnounceException",
"{",
"if",
"(",
"message",
"instanceof",
"ErrorMessage",
")",
"{",
"throw",
"new",
"AnnounceException",
"(",
"(",
"(",
"ErrorMessage",
")",
"message",... | Validates an incoming tracker message.
<p>
Verifies that the message is not an error message (throws an exception
with the error message if it is) and that the transaction ID matches the
current one.
</p>
@param message The incoming tracker message. | [
"Validates",
"an",
"incoming",
"tracker",
"message",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/UDPTrackerClient.java#L296-L306 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/UDPTrackerClient.java | UDPTrackerClient.handleTrackerConnectResponse | private void handleTrackerConnectResponse(TrackerMessage message)
throws AnnounceException {
this.validateTrackerResponse(message);
if (!(message instanceof ConnectionResponseMessage)) {
throw new AnnounceException("Unexpected tracker message type " +
message.getType().name() + "!... | java | private void handleTrackerConnectResponse(TrackerMessage message)
throws AnnounceException {
this.validateTrackerResponse(message);
if (!(message instanceof ConnectionResponseMessage)) {
throw new AnnounceException("Unexpected tracker message type " +
message.getType().name() + "!... | [
"private",
"void",
"handleTrackerConnectResponse",
"(",
"TrackerMessage",
"message",
")",
"throws",
"AnnounceException",
"{",
"this",
".",
"validateTrackerResponse",
"(",
"message",
")",
";",
"if",
"(",
"!",
"(",
"message",
"instanceof",
"ConnectionResponseMessage",
"... | Handles the tracker connect response message.
@param message The message received from the tracker in response to the
connection request. | [
"Handles",
"the",
"tracker",
"connect",
"response",
"message",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/UDPTrackerClient.java#L314-L330 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/UDPTrackerClient.java | UDPTrackerClient.send | private void send(ByteBuffer data) {
try {
this.socket.send(new DatagramPacket(
data.array(),
data.capacity(),
this.address));
} catch (IOException ioe) {
logger.info("Error sending datagram packet to tracker at {}: {}.", this.address, ioe.getMessage());
... | java | private void send(ByteBuffer data) {
try {
this.socket.send(new DatagramPacket(
data.array(),
data.capacity(),
this.address));
} catch (IOException ioe) {
logger.info("Error sending datagram packet to tracker at {}: {}.", this.address, ioe.getMessage());
... | [
"private",
"void",
"send",
"(",
"ByteBuffer",
"data",
")",
"{",
"try",
"{",
"this",
".",
"socket",
".",
"send",
"(",
"new",
"DatagramPacket",
"(",
"data",
".",
"array",
"(",
")",
",",
"data",
".",
"capacity",
"(",
")",
",",
"this",
".",
"address",
... | Send a UDP packet to the tracker.
@param data The {@link ByteBuffer} to send in a datagram packet to the
tracker. | [
"Send",
"a",
"UDP",
"packet",
"to",
"the",
"tracker",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/UDPTrackerClient.java#L338-L347 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/UDPTrackerClient.java | UDPTrackerClient.recv | private ByteBuffer recv(int attempt)
throws IOException, SocketException, SocketTimeoutException {
int timeout = UDP_BASE_TIMEOUT_SECONDS * (int) Math.pow(2, attempt);
logger.trace("Setting receive timeout to {}s for attempt {}...",
timeout, attempt);
this.socket.setSoTimeout(timeout *... | java | private ByteBuffer recv(int attempt)
throws IOException, SocketException, SocketTimeoutException {
int timeout = UDP_BASE_TIMEOUT_SECONDS * (int) Math.pow(2, attempt);
logger.trace("Setting receive timeout to {}s for attempt {}...",
timeout, attempt);
this.socket.setSoTimeout(timeout *... | [
"private",
"ByteBuffer",
"recv",
"(",
"int",
"attempt",
")",
"throws",
"IOException",
",",
"SocketException",
",",
"SocketTimeoutException",
"{",
"int",
"timeout",
"=",
"UDP_BASE_TIMEOUT_SECONDS",
"*",
"(",
"int",
")",
"Math",
".",
"pow",
"(",
"2",
",",
"attem... | Receive a UDP packet from the tracker.
@param attempt The attempt number, used to calculate the timeout for the
receive operation.
@retun Returns a {@link ByteBuffer} containing the packet data. | [
"Receive",
"a",
"UDP",
"packet",
"from",
"the",
"tracker",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/UDPTrackerClient.java#L356-L372 | train |
mpetazzoni/ttorrent | bencoding/src/main/java/com/turn/ttorrent/bcodec/BEValue.java | BEValue.getString | public String getString(String encoding) throws InvalidBEncodingException {
try {
return new String(this.getBytes(), encoding);
} catch (ClassCastException cce) {
throw new InvalidBEncodingException(cce.toString());
} catch (UnsupportedEncodingException uee) {
throw new InternalError(uee.t... | java | public String getString(String encoding) throws InvalidBEncodingException {
try {
return new String(this.getBytes(), encoding);
} catch (ClassCastException cce) {
throw new InvalidBEncodingException(cce.toString());
} catch (UnsupportedEncodingException uee) {
throw new InternalError(uee.t... | [
"public",
"String",
"getString",
"(",
"String",
"encoding",
")",
"throws",
"InvalidBEncodingException",
"{",
"try",
"{",
"return",
"new",
"String",
"(",
"this",
".",
"getBytes",
"(",
")",
",",
"encoding",
")",
";",
"}",
"catch",
"(",
"ClassCastException",
"c... | Returns this BEValue as a String, interpreted with the specified
encoding.
@param encoding The encoding to interpret the bytes as when converting
them into a {@link String}.
@throws InvalidBEncodingException If the value is not a byte[]. | [
"Returns",
"this",
"BEValue",
"as",
"a",
"String",
"interpreted",
"with",
"the",
"specified",
"encoding",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/bencoding/src/main/java/com/turn/ttorrent/bcodec/BEValue.java#L92-L100 | train |
mpetazzoni/ttorrent | bencoding/src/main/java/com/turn/ttorrent/bcodec/BEValue.java | BEValue.getNumber | public Number getNumber() throws InvalidBEncodingException {
try {
return (Number) this.value;
} catch (ClassCastException cce) {
throw new InvalidBEncodingException(cce.toString());
}
} | java | public Number getNumber() throws InvalidBEncodingException {
try {
return (Number) this.value;
} catch (ClassCastException cce) {
throw new InvalidBEncodingException(cce.toString());
}
} | [
"public",
"Number",
"getNumber",
"(",
")",
"throws",
"InvalidBEncodingException",
"{",
"try",
"{",
"return",
"(",
"Number",
")",
"this",
".",
"value",
";",
"}",
"catch",
"(",
"ClassCastException",
"cce",
")",
"{",
"throw",
"new",
"InvalidBEncodingException",
"... | Returns this BEValue as a Number.
@throws InvalidBEncodingException If the value is not a {@link Number}. | [
"Returns",
"this",
"BEValue",
"as",
"a",
"Number",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/bencoding/src/main/java/com/turn/ttorrent/bcodec/BEValue.java#L120-L126 | train |
mpetazzoni/ttorrent | bencoding/src/main/java/com/turn/ttorrent/bcodec/BEValue.java | BEValue.getList | @SuppressWarnings("unchecked")
public List<BEValue> getList() throws InvalidBEncodingException {
if (this.value instanceof ArrayList) {
return (ArrayList<BEValue>) this.value;
} else {
throw new InvalidBEncodingException("Excepted List<BEvalue> !");
}
} | java | @SuppressWarnings("unchecked")
public List<BEValue> getList() throws InvalidBEncodingException {
if (this.value instanceof ArrayList) {
return (ArrayList<BEValue>) this.value;
} else {
throw new InvalidBEncodingException("Excepted List<BEvalue> !");
}
} | [
"@",
"SuppressWarnings",
"(",
"\"unchecked\"",
")",
"public",
"List",
"<",
"BEValue",
">",
"getList",
"(",
")",
"throws",
"InvalidBEncodingException",
"{",
"if",
"(",
"this",
".",
"value",
"instanceof",
"ArrayList",
")",
"{",
"return",
"(",
"ArrayList",
"<",
... | Returns this BEValue as a List of BEValues.
@throws InvalidBEncodingException If the value is not an
{@link ArrayList}. | [
"Returns",
"this",
"BEValue",
"as",
"a",
"List",
"of",
"BEValues",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/bencoding/src/main/java/com/turn/ttorrent/bcodec/BEValue.java#L161-L168 | train |
mpetazzoni/ttorrent | bencoding/src/main/java/com/turn/ttorrent/bcodec/BEValue.java | BEValue.getMap | @SuppressWarnings("unchecked")
public Map<String, BEValue> getMap() throws InvalidBEncodingException {
if (this.value instanceof HashMap) {
return (Map<String, BEValue>) this.value;
} else {
throw new InvalidBEncodingException("Expected Map<String, BEValue> !");
}
} | java | @SuppressWarnings("unchecked")
public Map<String, BEValue> getMap() throws InvalidBEncodingException {
if (this.value instanceof HashMap) {
return (Map<String, BEValue>) this.value;
} else {
throw new InvalidBEncodingException("Expected Map<String, BEValue> !");
}
} | [
"@",
"SuppressWarnings",
"(",
"\"unchecked\"",
")",
"public",
"Map",
"<",
"String",
",",
"BEValue",
">",
"getMap",
"(",
")",
"throws",
"InvalidBEncodingException",
"{",
"if",
"(",
"this",
".",
"value",
"instanceof",
"HashMap",
")",
"{",
"return",
"(",
"Map",... | Returns this BEValue as a Map of String keys and BEValue values.
@throws InvalidBEncodingException If the value is not a {@link HashMap}. | [
"Returns",
"this",
"BEValue",
"as",
"a",
"Map",
"of",
"String",
"keys",
"and",
"BEValue",
"values",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/bencoding/src/main/java/com/turn/ttorrent/bcodec/BEValue.java#L175-L182 | train |
mpetazzoni/ttorrent | ttorrent-tracker/src/main/java/com/turn/ttorrent/tracker/Tracker.java | Tracker.start | public void start(final boolean startPeerCleaningThread) throws IOException {
logger.info("Starting BitTorrent tracker on {}...",
getAnnounceUrl());
connection = new SocketConnection(new ContainerServer(myTrackerServiceContainer));
List<SocketAddress> tries = new ArrayList<SocketAddress>() {{
... | java | public void start(final boolean startPeerCleaningThread) throws IOException {
logger.info("Starting BitTorrent tracker on {}...",
getAnnounceUrl());
connection = new SocketConnection(new ContainerServer(myTrackerServiceContainer));
List<SocketAddress> tries = new ArrayList<SocketAddress>() {{
... | [
"public",
"void",
"start",
"(",
"final",
"boolean",
"startPeerCleaningThread",
")",
"throws",
"IOException",
"{",
"logger",
".",
"info",
"(",
"\"Starting BitTorrent tracker on {}...\"",
",",
"getAnnounceUrl",
"(",
")",
")",
";",
"connection",
"=",
"new",
"SocketConn... | Start the tracker thread. | [
"Start",
"the",
"tracker",
"thread",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-tracker/src/main/java/com/turn/ttorrent/tracker/Tracker.java#L148-L193 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/HTTPTrackerClient.java | HTTPTrackerClient.announce | public void announce(final AnnounceRequestMessage.RequestEvent event,
boolean inhibitEvents, final AnnounceableInformation torrentInfo, final List<Peer> adresses) throws AnnounceException {
logAnnounceRequest(event, torrentInfo);
final List<HTTPTrackerMessage> trackerResponses = new Arra... | java | public void announce(final AnnounceRequestMessage.RequestEvent event,
boolean inhibitEvents, final AnnounceableInformation torrentInfo, final List<Peer> adresses) throws AnnounceException {
logAnnounceRequest(event, torrentInfo);
final List<HTTPTrackerMessage> trackerResponses = new Arra... | [
"public",
"void",
"announce",
"(",
"final",
"AnnounceRequestMessage",
".",
"RequestEvent",
"event",
",",
"boolean",
"inhibitEvents",
",",
"final",
"AnnounceableInformation",
"torrentInfo",
",",
"final",
"List",
"<",
"Peer",
">",
"adresses",
")",
"throws",
"AnnounceE... | Build, send and process a tracker announce request.
<p>
This function first builds an announce request for the specified event
with all the required parameters. Then, the request is made to the
tracker and the response analyzed.
</p>
<p>
All registered {@link AnnounceResponseListener} objects are then fired
with the ... | [
"Build",
"send",
"and",
"process",
"a",
"tracker",
"announce",
"request",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/HTTPTrackerClient.java#L77-L104 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/HTTPTrackerClient.java | HTTPTrackerClient.buildAnnounceRequest | private HTTPAnnounceRequestMessage buildAnnounceRequest(
AnnounceRequestMessage.RequestEvent event, AnnounceableInformation torrentInfo, Peer peer)
throws IOException,
MessageValidationException {
// Build announce request message
final long uploaded = torrentInfo.getUploaded();
... | java | private HTTPAnnounceRequestMessage buildAnnounceRequest(
AnnounceRequestMessage.RequestEvent event, AnnounceableInformation torrentInfo, Peer peer)
throws IOException,
MessageValidationException {
// Build announce request message
final long uploaded = torrentInfo.getUploaded();
... | [
"private",
"HTTPAnnounceRequestMessage",
"buildAnnounceRequest",
"(",
"AnnounceRequestMessage",
".",
"RequestEvent",
"event",
",",
"AnnounceableInformation",
"torrentInfo",
",",
"Peer",
"peer",
")",
"throws",
"IOException",
",",
"MessageValidationException",
"{",
"// Build an... | Build the announce request tracker message.
@param event The announce event (can be <tt>NONE</tt> or <em>null</em>)
@return Returns an instance of a {@link HTTPAnnounceRequestMessage}
that can be used to generate the fully qualified announce URL, with
parameters, to make the announce request.
@throws UnsupportedEncodi... | [
"Build",
"the",
"announce",
"request",
"tracker",
"message",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/HTTPTrackerClient.java#L309-L327 | train |
mpetazzoni/ttorrent | common/src/main/java/com/turn/ttorrent/common/protocol/http/HTTPAnnounceRequestMessage.java | HTTPAnnounceRequestMessage.buildAnnounceURL | public URL buildAnnounceURL(URL trackerAnnounceURL)
throws UnsupportedEncodingException, MalformedURLException {
String base = trackerAnnounceURL.toString();
StringBuilder url = new StringBuilder(base);
url.append(base.contains("?") ? "&" : "?")
.append("info_hash=")
.appen... | java | public URL buildAnnounceURL(URL trackerAnnounceURL)
throws UnsupportedEncodingException, MalformedURLException {
String base = trackerAnnounceURL.toString();
StringBuilder url = new StringBuilder(base);
url.append(base.contains("?") ? "&" : "?")
.append("info_hash=")
.appen... | [
"public",
"URL",
"buildAnnounceURL",
"(",
"URL",
"trackerAnnounceURL",
")",
"throws",
"UnsupportedEncodingException",
",",
"MalformedURLException",
"{",
"String",
"base",
"=",
"trackerAnnounceURL",
".",
"toString",
"(",
")",
";",
"StringBuilder",
"url",
"=",
"new",
... | Build the announce request URL for the given tracker announce URL.
@param trackerAnnounceURL The tracker's announce URL.
@return The URL object representing the announce request URL. | [
"Build",
"the",
"announce",
"request",
"URL",
"for",
"the",
"given",
"tracker",
"announce",
"URL",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/common/src/main/java/com/turn/ttorrent/common/protocol/http/HTTPAnnounceRequestMessage.java#L158-L188 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/peer/Rate.java | Rate.add | public synchronized void add(long count) {
this.bytes += count;
if (this.reset == 0) {
this.reset = System.currentTimeMillis();
}
this.last = System.currentTimeMillis();
} | java | public synchronized void add(long count) {
this.bytes += count;
if (this.reset == 0) {
this.reset = System.currentTimeMillis();
}
this.last = System.currentTimeMillis();
} | [
"public",
"synchronized",
"void",
"add",
"(",
"long",
"count",
")",
"{",
"this",
".",
"bytes",
"+=",
"count",
";",
"if",
"(",
"this",
".",
"reset",
"==",
"0",
")",
"{",
"this",
".",
"reset",
"=",
"System",
".",
"currentTimeMillis",
"(",
")",
";",
"... | Add a byte count to the current measurement.
@param count The number of bytes exchanged since the last reset. | [
"Add",
"a",
"byte",
"count",
"to",
"the",
"current",
"measurement",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/peer/Rate.java#L47-L53 | train |
mpetazzoni/ttorrent | common/src/main/java/com/turn/ttorrent/common/Peer.java | Peer.getRawIp | public byte[] getRawIp() {
final InetAddress address = this.address.getAddress();
if (address == null) return null;
return address.getAddress();
} | java | public byte[] getRawIp() {
final InetAddress address = this.address.getAddress();
if (address == null) return null;
return address.getAddress();
} | [
"public",
"byte",
"[",
"]",
"getRawIp",
"(",
")",
"{",
"final",
"InetAddress",
"address",
"=",
"this",
".",
"address",
".",
"getAddress",
"(",
")",
";",
"if",
"(",
"address",
"==",
"null",
")",
"return",
"null",
";",
"return",
"address",
".",
"getAddre... | Returns a binary representation of the peer's IP. | [
"Returns",
"a",
"binary",
"representation",
"of",
"the",
"peer",
"s",
"IP",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/common/src/main/java/com/turn/ttorrent/common/Peer.java#L181-L185 | train |
mpetazzoni/ttorrent | cli/src/main/java/com/turn/ttorrent/cli/TrackerMain.java | TrackerMain.main | public static void main(String[] args) {
BasicConfigurator.configure(new ConsoleAppender(
new PatternLayout("%d [%-25t] %-5p: %m%n")));
CmdLineParser parser = new CmdLineParser();
CmdLineParser.Option help = parser.addBooleanOption('h', "help");
CmdLineParser.Option port = parser.addIntegerOption('p', "port... | java | public static void main(String[] args) {
BasicConfigurator.configure(new ConsoleAppender(
new PatternLayout("%d [%-25t] %-5p: %m%n")));
CmdLineParser parser = new CmdLineParser();
CmdLineParser.Option help = parser.addBooleanOption('h', "help");
CmdLineParser.Option port = parser.addIntegerOption('p', "port... | [
"public",
"static",
"void",
"main",
"(",
"String",
"[",
"]",
"args",
")",
"{",
"BasicConfigurator",
".",
"configure",
"(",
"new",
"ConsoleAppender",
"(",
"new",
"PatternLayout",
"(",
"\"%d [%-25t] %-5p: %m%n\"",
")",
")",
")",
";",
"CmdLineParser",
"parser",
"... | Main function to start a tracker. | [
"Main",
"function",
"to",
"start",
"a",
"tracker",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/cli/src/main/java/com/turn/ttorrent/cli/TrackerMain.java#L56-L117 | train |
mpetazzoni/ttorrent | cli/src/main/java/com/turn/ttorrent/cli/ClientMain.java | ClientMain.main | public static void main(String[] args) {
BasicConfigurator.configure(new ConsoleAppender(
new PatternLayout("%d [%-25t] %-5p: %m%n")));
CmdLineParser parser = new CmdLineParser();
CmdLineParser.Option help = parser.addBooleanOption('h', "help");
CmdLineParser.Option output = parser.addStrin... | java | public static void main(String[] args) {
BasicConfigurator.configure(new ConsoleAppender(
new PatternLayout("%d [%-25t] %-5p: %m%n")));
CmdLineParser parser = new CmdLineParser();
CmdLineParser.Option help = parser.addBooleanOption('h', "help");
CmdLineParser.Option output = parser.addStrin... | [
"public",
"static",
"void",
"main",
"(",
"String",
"[",
"]",
"args",
")",
"{",
"BasicConfigurator",
".",
"configure",
"(",
"new",
"ConsoleAppender",
"(",
"new",
"PatternLayout",
"(",
"\"%d [%-25t] %-5p: %m%n\"",
")",
")",
")",
";",
"CmdLineParser",
"parser",
"... | Main client entry point for stand-alone operation. | [
"Main",
"client",
"entry",
"point",
"for",
"stand",
"-",
"alone",
"operation",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/cli/src/main/java/com/turn/ttorrent/cli/ClientMain.java#L107-L164 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/SharedTorrent.java | SharedTorrent.getPiece | public Piece getPiece(int index) {
if (this.pieces == null) {
throw new IllegalStateException("Torrent not initialized yet.");
}
if (index >= this.pieces.length) {
throw new IllegalArgumentException("Invalid piece index!");
}
return this.pieces[index];
} | java | public Piece getPiece(int index) {
if (this.pieces == null) {
throw new IllegalStateException("Torrent not initialized yet.");
}
if (index >= this.pieces.length) {
throw new IllegalArgumentException("Invalid piece index!");
}
return this.pieces[index];
} | [
"public",
"Piece",
"getPiece",
"(",
"int",
"index",
")",
"{",
"if",
"(",
"this",
".",
"pieces",
"==",
"null",
")",
"{",
"throw",
"new",
"IllegalStateException",
"(",
"\"Torrent not initialized yet.\"",
")",
";",
"}",
"if",
"(",
"index",
">=",
"this",
".",
... | Retrieve a piece object by index.
@param index The index of the piece in this torrent. | [
"Retrieve",
"a",
"piece",
"object",
"by",
"index",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/SharedTorrent.java#L297-L307 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/SharedTorrent.java | SharedTorrent.markCompleted | public synchronized void markCompleted(Piece piece) {
if (this.completedPieces.get(piece.getIndex())) {
return;
}
// A completed piece means that's that much data left to download for
// this torrent.
myTorrentStatistic.addLeft(-piece.size());
this.completedPieces.set(piece.getIndex());
... | java | public synchronized void markCompleted(Piece piece) {
if (this.completedPieces.get(piece.getIndex())) {
return;
}
// A completed piece means that's that much data left to download for
// this torrent.
myTorrentStatistic.addLeft(-piece.size());
this.completedPieces.set(piece.getIndex());
... | [
"public",
"synchronized",
"void",
"markCompleted",
"(",
"Piece",
"piece",
")",
"{",
"if",
"(",
"this",
".",
"completedPieces",
".",
"get",
"(",
"piece",
".",
"getIndex",
"(",
")",
")",
")",
"{",
"return",
";",
"}",
"// A completed piece means that's that much ... | Mark a piece as completed, decrementing the piece size in bytes from our
left bytes to download counter. | [
"Mark",
"a",
"piece",
"as",
"completed",
"decrementing",
"the",
"piece",
"size",
"in",
"bytes",
"from",
"our",
"left",
"bytes",
"to",
"download",
"counter",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/SharedTorrent.java#L395-L407 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/Announce.java | Announce.start | public void start(final URI defaultTrackerURI, final AnnounceResponseListener listener, final Peer[] peers, final int announceInterval) {
myAnnounceInterval = announceInterval;
myPeers.addAll(Arrays.asList(peers));
if (defaultTrackerURI != null) {
try {
myDefaultTracker = myTrackerClientFactor... | java | public void start(final URI defaultTrackerURI, final AnnounceResponseListener listener, final Peer[] peers, final int announceInterval) {
myAnnounceInterval = announceInterval;
myPeers.addAll(Arrays.asList(peers));
if (defaultTrackerURI != null) {
try {
myDefaultTracker = myTrackerClientFactor... | [
"public",
"void",
"start",
"(",
"final",
"URI",
"defaultTrackerURI",
",",
"final",
"AnnounceResponseListener",
"listener",
",",
"final",
"Peer",
"[",
"]",
"peers",
",",
"final",
"int",
"announceInterval",
")",
"{",
"myAnnounceInterval",
"=",
"announceInterval",
";... | Start the announce request thread. | [
"Start",
"the",
"announce",
"request",
"thread",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/Announce.java#L109-L131 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/Announce.java | Announce.setAnnounceInterval | public void setAnnounceInterval(int announceInterval) {
if (announceInterval <= 0) {
this.stop(true);
return;
}
if (this.myAnnounceInterval == announceInterval) {
return;
}
logger.trace("Setting announce interval to {}s per tracker request.",
announceInterval);
th... | java | public void setAnnounceInterval(int announceInterval) {
if (announceInterval <= 0) {
this.stop(true);
return;
}
if (this.myAnnounceInterval == announceInterval) {
return;
}
logger.trace("Setting announce interval to {}s per tracker request.",
announceInterval);
th... | [
"public",
"void",
"setAnnounceInterval",
"(",
"int",
"announceInterval",
")",
"{",
"if",
"(",
"announceInterval",
"<=",
"0",
")",
"{",
"this",
".",
"stop",
"(",
"true",
")",
";",
"return",
";",
"}",
"if",
"(",
"this",
".",
"myAnnounceInterval",
"==",
"an... | Set the announce interval. | [
"Set",
"the",
"announce",
"interval",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/Announce.java#L136-L149 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/Announce.java | Announce.getCurrentTrackerClient | public TrackerClient getCurrentTrackerClient(AnnounceableInformation torrent) {
final URI uri = getURIForTorrent(torrent);
if (uri == null) return null;
return this.clients.get(uri.toString());
} | java | public TrackerClient getCurrentTrackerClient(AnnounceableInformation torrent) {
final URI uri = getURIForTorrent(torrent);
if (uri == null) return null;
return this.clients.get(uri.toString());
} | [
"public",
"TrackerClient",
"getCurrentTrackerClient",
"(",
"AnnounceableInformation",
"torrent",
")",
"{",
"final",
"URI",
"uri",
"=",
"getURIForTorrent",
"(",
"torrent",
")",
";",
"if",
"(",
"uri",
"==",
"null",
")",
"return",
"null",
";",
"return",
"this",
"... | Returns the current tracker client used for announces. | [
"Returns",
"the",
"current",
"tracker",
"client",
"used",
"for",
"announces",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/announce/Announce.java#L284-L288 | train |
mpetazzoni/ttorrent | bencoding/src/main/java/com/turn/ttorrent/bcodec/BDecoder.java | BDecoder.bdecode | public static BEValue bdecode(ByteBuffer data) throws IOException {
return BDecoder.bdecode(new ByteArrayInputStream(data.array()));
} | java | public static BEValue bdecode(ByteBuffer data) throws IOException {
return BDecoder.bdecode(new ByteArrayInputStream(data.array()));
} | [
"public",
"static",
"BEValue",
"bdecode",
"(",
"ByteBuffer",
"data",
")",
"throws",
"IOException",
"{",
"return",
"BDecoder",
".",
"bdecode",
"(",
"new",
"ByteArrayInputStream",
"(",
"data",
".",
"array",
"(",
")",
")",
")",
";",
"}"
] | Decode a B-encoded byte buffer.
<p>
Automatically instantiates a new BDecoder for the provided buffer and
decodes its root member.
</p>
@param data The {@link ByteBuffer} to read from. | [
"Decode",
"a",
"B",
"-",
"encoded",
"byte",
"buffer",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/bencoding/src/main/java/com/turn/ttorrent/bcodec/BDecoder.java#L99-L101 | train |
mpetazzoni/ttorrent | bencoding/src/main/java/com/turn/ttorrent/bcodec/BDecoder.java | BDecoder.bdecode | public BEValue bdecode() throws IOException {
if (this.getNextIndicator() == -1)
return null;
if (this.indicator >= '0' && this.indicator <= '9')
return this.bdecodeBytes();
else if (this.indicator == 'i')
return this.bdecodeNumber();
else if (this.indicator == 'l')
return this.... | java | public BEValue bdecode() throws IOException {
if (this.getNextIndicator() == -1)
return null;
if (this.indicator >= '0' && this.indicator <= '9')
return this.bdecodeBytes();
else if (this.indicator == 'i')
return this.bdecodeNumber();
else if (this.indicator == 'l')
return this.... | [
"public",
"BEValue",
"bdecode",
"(",
")",
"throws",
"IOException",
"{",
"if",
"(",
"this",
".",
"getNextIndicator",
"(",
")",
"==",
"-",
"1",
")",
"return",
"null",
";",
"if",
"(",
"this",
".",
"indicator",
">=",
"'",
"'",
"&&",
"this",
".",
"indicat... | Gets the next indicator and returns either null when the stream
has ended or b-decodes the rest of the stream and returns the
appropriate BEValue encoded object. | [
"Gets",
"the",
"next",
"indicator",
"and",
"returns",
"either",
"null",
"when",
"the",
"stream",
"has",
"ended",
"or",
"b",
"-",
"decodes",
"the",
"rest",
"of",
"the",
"stream",
"and",
"returns",
"the",
"appropriate",
"BEValue",
"encoded",
"object",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/bencoding/src/main/java/com/turn/ttorrent/bcodec/BDecoder.java#L126-L141 | train |
mpetazzoni/ttorrent | bencoding/src/main/java/com/turn/ttorrent/bcodec/BDecoder.java | BDecoder.bdecodeBytes | public BEValue bdecodeBytes() throws IOException {
int c = this.getNextIndicator();
int num = c - '0';
if (num < 0 || num > 9)
throw new InvalidBEncodingException("Number expected, not '"
+ (char) c + "'");
this.indicator = 0;
c = this.read();
int i = c - '0';
while (i >... | java | public BEValue bdecodeBytes() throws IOException {
int c = this.getNextIndicator();
int num = c - '0';
if (num < 0 || num > 9)
throw new InvalidBEncodingException("Number expected, not '"
+ (char) c + "'");
this.indicator = 0;
c = this.read();
int i = c - '0';
while (i >... | [
"public",
"BEValue",
"bdecodeBytes",
"(",
")",
"throws",
"IOException",
"{",
"int",
"c",
"=",
"this",
".",
"getNextIndicator",
"(",
")",
";",
"int",
"num",
"=",
"c",
"-",
"'",
"'",
";",
"if",
"(",
"num",
"<",
"0",
"||",
"num",
">",
"9",
")",
"thr... | Returns the next b-encoded value on the stream and makes sure it is a
byte array.
@throws InvalidBEncodingException If it is not a b-encoded byte array. | [
"Returns",
"the",
"next",
"b",
"-",
"encoded",
"value",
"on",
"the",
"stream",
"and",
"makes",
"sure",
"it",
"is",
"a",
"byte",
"array",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/bencoding/src/main/java/com/turn/ttorrent/bcodec/BDecoder.java#L149-L172 | train |
mpetazzoni/ttorrent | bencoding/src/main/java/com/turn/ttorrent/bcodec/BDecoder.java | BDecoder.bdecodeNumber | public BEValue bdecodeNumber() throws IOException {
int c = this.getNextIndicator();
if (c != 'i') {
throw new InvalidBEncodingException("Expected 'i', not '" +
(char) c + "'");
}
this.indicator = 0;
c = this.read();
if (c == '0') {
c = this.read();
if (c == 'e')... | java | public BEValue bdecodeNumber() throws IOException {
int c = this.getNextIndicator();
if (c != 'i') {
throw new InvalidBEncodingException("Expected 'i', not '" +
(char) c + "'");
}
this.indicator = 0;
c = this.read();
if (c == '0') {
c = this.read();
if (c == 'e')... | [
"public",
"BEValue",
"bdecodeNumber",
"(",
")",
"throws",
"IOException",
"{",
"int",
"c",
"=",
"this",
".",
"getNextIndicator",
"(",
")",
";",
"if",
"(",
"c",
"!=",
"'",
"'",
")",
"{",
"throw",
"new",
"InvalidBEncodingException",
"(",
"\"Expected 'i', not '\... | Returns the next b-encoded value on the stream and makes sure it is a
number.
@throws InvalidBEncodingException If it is not a number. | [
"Returns",
"the",
"next",
"b",
"-",
"encoded",
"value",
"on",
"the",
"stream",
"and",
"makes",
"sure",
"it",
"is",
"a",
"number",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/bencoding/src/main/java/com/turn/ttorrent/bcodec/BDecoder.java#L180-L230 | train |
mpetazzoni/ttorrent | bencoding/src/main/java/com/turn/ttorrent/bcodec/BDecoder.java | BDecoder.bdecodeList | public BEValue bdecodeList() throws IOException {
int c = this.getNextIndicator();
if (c != 'l') {
throw new InvalidBEncodingException("Expected 'l', not '" +
(char) c + "'");
}
this.indicator = 0;
List<BEValue> result = new ArrayList<BEValue>();
c = this.getNextIndicator();... | java | public BEValue bdecodeList() throws IOException {
int c = this.getNextIndicator();
if (c != 'l') {
throw new InvalidBEncodingException("Expected 'l', not '" +
(char) c + "'");
}
this.indicator = 0;
List<BEValue> result = new ArrayList<BEValue>();
c = this.getNextIndicator();... | [
"public",
"BEValue",
"bdecodeList",
"(",
")",
"throws",
"IOException",
"{",
"int",
"c",
"=",
"this",
".",
"getNextIndicator",
"(",
")",
";",
"if",
"(",
"c",
"!=",
"'",
"'",
")",
"{",
"throw",
"new",
"InvalidBEncodingException",
"(",
"\"Expected 'l', not '\""... | Returns the next b-encoded value on the stream and makes sure it is a
list.
@throws InvalidBEncodingException If it is not a list. | [
"Returns",
"the",
"next",
"b",
"-",
"encoded",
"value",
"on",
"the",
"stream",
"and",
"makes",
"sure",
"it",
"is",
"a",
"list",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/bencoding/src/main/java/com/turn/ttorrent/bcodec/BDecoder.java#L238-L255 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/Piece.java | Piece.validate | public boolean validate(SharedTorrent torrent, Piece piece) throws IOException {
logger.trace("Validating {}...", this);
// TODO: remove cast to int when large ByteBuffer support is
// implemented in Java.
byte[] pieceBytes = data.array();
final byte[] calculatedHash = TorrentUtils.calculateSha1Ha... | java | public boolean validate(SharedTorrent torrent, Piece piece) throws IOException {
logger.trace("Validating {}...", this);
// TODO: remove cast to int when large ByteBuffer support is
// implemented in Java.
byte[] pieceBytes = data.array();
final byte[] calculatedHash = TorrentUtils.calculateSha1Ha... | [
"public",
"boolean",
"validate",
"(",
"SharedTorrent",
"torrent",
",",
"Piece",
"piece",
")",
"throws",
"IOException",
"{",
"logger",
".",
"trace",
"(",
"\"Validating {}...\"",
",",
"this",
")",
";",
"// TODO: remove cast to int when large ByteBuffer support is",
"// im... | Validates this piece.
@return Returns true if this piece, as stored in the underlying byte
storage, is valid, i.e. its SHA1 sum matches the one from the torrent
meta-info. | [
"Validates",
"this",
"piece",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/Piece.java#L150-L162 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/Piece.java | Piece._read | private ByteBuffer _read(long offset, long length, ByteBuffer buffer) throws IOException {
if (offset + length > this.length) {
throw new IllegalArgumentException("Piece#" + this.index +
" overrun (" + offset + " + " + length + " > " +
this.length + ") !");
}
// TODO: remo... | java | private ByteBuffer _read(long offset, long length, ByteBuffer buffer) throws IOException {
if (offset + length > this.length) {
throw new IllegalArgumentException("Piece#" + this.index +
" overrun (" + offset + " + " + length + " > " +
this.length + ") !");
}
// TODO: remo... | [
"private",
"ByteBuffer",
"_read",
"(",
"long",
"offset",
",",
"long",
"length",
",",
"ByteBuffer",
"buffer",
")",
"throws",
"IOException",
"{",
"if",
"(",
"offset",
"+",
"length",
">",
"this",
".",
"length",
")",
"{",
"throw",
"new",
"IllegalArgumentExceptio... | Internal piece data read function.
<p>
This function will read the piece data without checking if the piece has
been validated. It is simply meant at factoring-in the common read code
from the validate and read functions.
</p>
@param offset Offset inside this piece where to start reading.
@param length Number of byte... | [
"Internal",
"piece",
"data",
"read",
"function",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/Piece.java#L181-L196 | train |
mpetazzoni/ttorrent | ttorrent-client/src/main/java/com/turn/ttorrent/client/Piece.java | Piece.read | public ByteBuffer read(long offset, int length, ByteBuffer block)
throws IllegalArgumentException, IllegalStateException, IOException {
if (!this.valid) {
throw new IllegalStateException("Attempting to read an " +
"known-to-be invalid piece!");
}
return this._read(offset, leng... | java | public ByteBuffer read(long offset, int length, ByteBuffer block)
throws IllegalArgumentException, IllegalStateException, IOException {
if (!this.valid) {
throw new IllegalStateException("Attempting to read an " +
"known-to-be invalid piece!");
}
return this._read(offset, leng... | [
"public",
"ByteBuffer",
"read",
"(",
"long",
"offset",
",",
"int",
"length",
",",
"ByteBuffer",
"block",
")",
"throws",
"IllegalArgumentException",
",",
"IllegalStateException",
",",
"IOException",
"{",
"if",
"(",
"!",
"this",
".",
"valid",
")",
"{",
"throw",
... | Read a piece block from the underlying byte storage.
<p>
This is the public method for reading this piece's data, and it will
only succeed if the piece is complete and valid on disk, thus ensuring
any data that comes out of this function is valid piece data we can send
to other peers.
</p>
@param offset Offset inside... | [
"Read",
"a",
"piece",
"block",
"from",
"the",
"underlying",
"byte",
"storage",
"."
] | ecd0e6caf853b63393c4ab63cfd8f20114f73f70 | https://github.com/mpetazzoni/ttorrent/blob/ecd0e6caf853b63393c4ab63cfd8f20114f73f70/ttorrent-client/src/main/java/com/turn/ttorrent/client/Piece.java#L218-L226 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.