working on node/transport/http clients for ES 6.2
This commit is contained in:
parent
b2ad4f2b25
commit
db95d266d3
147 changed files with 16343 additions and 2595 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -5,9 +5,10 @@
|
||||||
/target
|
/target
|
||||||
.DS_Store
|
.DS_Store
|
||||||
*.iml
|
*.iml
|
||||||
|
*~
|
||||||
/.settings
|
/.settings
|
||||||
/.classpath
|
/.classpath
|
||||||
/.project
|
/.project
|
||||||
/.gradle
|
/.gradle
|
||||||
/build
|
build
|
||||||
/plugins
|
plugins
|
||||||
|
|
|
@ -5,8 +5,3 @@ jdk:
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
- $HOME/.m2
|
- $HOME/.m2
|
||||||
after_success:
|
|
||||||
- ./gradlew sonarqube -Dsonar.host.url=https://sonarqube.com -Dsonar.login=$SONAR_TOKEN
|
|
||||||
env:
|
|
||||||
global:
|
|
||||||
secure: n1Ai4q/yMLn/Pg5pA4lTavoJoe7mQYB1PSKnZAqwbgyla94ySzK6iyBCBiNs/foMPisB/x+DHvmUXTsjvquw9Ay48ZITCV3xhcWzD0eZM2TMoG19CpRAEe8L8LNuYiti9k89ijDdUGZ5ifsvQNTGNHksouayAuApC3PrTUejJfR6SYrp1ZsQTbsMlr+4XU3p7QknK5rGgOwATIMP28F+bVnB05WJtlJA3b0SeucCurn3wJ4FGBQXRYmdlT7bQhNE4QgZM1VzcUFD/K0TBxzzq/otb/lNRSifyoekktDmJwQnaT9uQ4R8R6KdQ2Kb38Rvgjur+TKm5i1G8qS2+6LnIxQJG1aw3JvKK6W0wWCgnAVVRrXaCLday9NuY59tuh1mfjQ10UcsMNKcTdcKEMrLow506wSETcXc7L/LEnneWQyJJeV4vhPqR7KJfsBbeqgz3yIfsCn1GZVWFlfegzYCN52YTl0Y0uRD2Z+TnzQu+Bf4DzaWXLge1rz31xkhyeNNspub4h024+XqBjcMm6M9mlMzmmK8t2DIwPy/BlQbFBUyhrxziuR/5/2NEDPyHltvWkRb4AUIa25WJqkV0gTBegbMadZ9DyOo6Ea7aoVFBae2WGR08F1kzABsWrd1S7UJmWxW35iyMEtoAIayXphIK98qO5aCutwZ+3iOQazxbAs=
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Elasticsearch Extras - Client
|
# Elasticsearch Clients
|
||||||
|
|
||||||
image:https://api.travis-ci.org/xbib/content.svg[title="Build status", link="https://travis-ci.org/jprante/elasticsearch-extras-client/"]
|
image:https://api.travis-ci.org/xbib/content.svg[title="Build status", link="https://travis-ci.org/jprante/elasticsearch-extras-client/"]
|
||||||
image:https://img.shields.io/sonar/http/nemo.sonarqube.com/org.xbib%3Aelasticsearch-extras-client/coverage.svg?style=flat-square[title="Coverage", link="https://sonarqube.com/dashboard/index?id=org.xbib%3Aelasticsearch-extras-client"]
|
image:https://img.shields.io/sonar/http/nemo.sonarqube.com/org.xbib%3Aelasticsearch-extras-client/coverage.svg?style=flat-square[title="Coverage", link="https://sonarqube.com/dashboard/index?id=org.xbib%3Aelasticsearch-extras-client"]
|
||||||
|
|
18
api/build.gradle
Normal file
18
api/build.gradle
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compile("org.elasticsearch.client:transport:${rootProject.property('elasticsearch.version')}") {
|
||||||
|
exclude group: 'org.elasticsearch', module: 'securesm'
|
||||||
|
exclude group: 'org.elasticsearch.plugin', module: 'transport-netty3-client'
|
||||||
|
exclude group: 'org.elasticsearch.plugin', module: 'reindex-client'
|
||||||
|
exclude group: 'org.elasticsearch.plugin', module: 'percolator-client'
|
||||||
|
exclude group: 'org.elasticsearch.plugin', module: 'lang-mustache-client'
|
||||||
|
}
|
||||||
|
// we try to override the Elasticsearch netty by our netty version which might be more recent
|
||||||
|
compile "io.netty:netty-buffer:${rootProject.property('netty.version')}"
|
||||||
|
compile "io.netty:netty-codec-http:${rootProject.property('netty.version')}"
|
||||||
|
compile "io.netty:netty-handler:${rootProject.property('netty.version')}"
|
||||||
|
}
|
||||||
|
|
||||||
|
jar {
|
||||||
|
baseName "${rootProject.name}-api"
|
||||||
|
}
|
321
api/config/checkstyle/checkstyle.xml
Normal file
321
api/config/checkstyle/checkstyle.xml
Normal file
|
@ -0,0 +1,321 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE module PUBLIC
|
||||||
|
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
|
||||||
|
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
|
||||||
|
|
||||||
|
<!-- This is a checkstyle configuration file. For descriptions of
|
||||||
|
what the following rules do, please see the checkstyle configuration
|
||||||
|
page at http://checkstyle.sourceforge.net/config.html -->
|
||||||
|
|
||||||
|
<module name="Checker">
|
||||||
|
|
||||||
|
<module name="FileTabCharacter">
|
||||||
|
<!-- Checks that there are no tab characters in the file.
|
||||||
|
-->
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="NewlineAtEndOfFile">
|
||||||
|
<property name="lineSeparator" value="lf"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="RegexpSingleline">
|
||||||
|
<!-- Checks that FIXME is not used in comments. TODO is preferred.
|
||||||
|
-->
|
||||||
|
<property name="format" value="((//.*)|(\*.*))FIXME" />
|
||||||
|
<property name="message" value='TODO is preferred to FIXME. e.g. "TODO(johndoe): Refactor when v2 is released."' />
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="RegexpSingleline">
|
||||||
|
<!-- Checks that TODOs are named. (Actually, just that they are followed
|
||||||
|
by an open paren.)
|
||||||
|
-->
|
||||||
|
<property name="format" value="((//.*)|(\*.*))TODO[^(]" />
|
||||||
|
<property name="message" value='All TODOs should be named. e.g. "TODO(johndoe): Refactor when v2 is released."' />
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="JavadocPackage">
|
||||||
|
<!-- Checks that each Java package has a Javadoc file used for commenting.
|
||||||
|
Only allows a package-info.java, not package.html. -->
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!-- All Java AST specific tests live under TreeWalker module. -->
|
||||||
|
<module name="TreeWalker">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
IMPORT CHECKS
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="RedundantImport">
|
||||||
|
<!-- Checks for redundant import statements. -->
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ImportOrder">
|
||||||
|
<!-- Checks for out of order import statements. -->
|
||||||
|
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
<property name="groups" value="com,junit,net,org,java,javax"/>
|
||||||
|
<!-- This ensures that static imports go first. -->
|
||||||
|
<property name="option" value="top"/>
|
||||||
|
<property name="tokens" value="STATIC_IMPORT, IMPORT"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
JAVADOC CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Checks for Javadoc comments. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
|
||||||
|
<module name="JavadocMethod">
|
||||||
|
<property name="scope" value="protected"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
<property name="allowMissingJavadoc" value="true"/>
|
||||||
|
<property name="allowMissingParamTags" value="true"/>
|
||||||
|
<property name="allowMissingReturnTag" value="true"/>
|
||||||
|
<property name="allowMissingThrowsTags" value="true"/>
|
||||||
|
<property name="allowThrowsTagsForSubclasses" value="true"/>
|
||||||
|
<property name="allowUndeclaredRTE" value="true"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="JavadocType">
|
||||||
|
<property name="scope" value="protected"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="JavadocStyle">
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
NAMING CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Item 38 - Adhere to generally accepted naming conventions -->
|
||||||
|
|
||||||
|
<module name="PackageName">
|
||||||
|
<!-- Validates identifiers for package names against the
|
||||||
|
supplied expression. -->
|
||||||
|
<!-- Here the default checkstyle rule restricts package name parts to
|
||||||
|
seven characters, this is not in line with common practice at Google.
|
||||||
|
-->
|
||||||
|
<property name="format" value="^[a-z]+(\.[a-z][a-z0-9]{1,})*$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="TypeNameCheck">
|
||||||
|
<!-- Validates static, final fields against the
|
||||||
|
expression "^[A-Z][a-zA-Z0-9]*$". -->
|
||||||
|
<metadata name="altname" value="TypeName"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ConstantNameCheck">
|
||||||
|
<!-- Validates non-private, static, final fields against the supplied
|
||||||
|
public/package final fields "^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$". -->
|
||||||
|
<metadata name="altname" value="ConstantName"/>
|
||||||
|
<property name="applyToPublic" value="true"/>
|
||||||
|
<property name="applyToProtected" value="true"/>
|
||||||
|
<property name="applyToPackage" value="true"/>
|
||||||
|
<property name="applyToPrivate" value="false"/>
|
||||||
|
<property name="format" value="^([A-Z][A-Z0-9]*(_[A-Z0-9]+)*|FLAG_.*)$"/>
|
||||||
|
<message key="name.invalidPattern"
|
||||||
|
value="Variable ''{0}'' should be in ALL_CAPS (if it is a constant) or be private (otherwise)."/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="StaticVariableNameCheck">
|
||||||
|
<!-- Validates static, non-final fields against the supplied
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*_?$". -->
|
||||||
|
<metadata name="altname" value="StaticVariableName"/>
|
||||||
|
<property name="applyToPublic" value="true"/>
|
||||||
|
<property name="applyToProtected" value="true"/>
|
||||||
|
<property name="applyToPackage" value="true"/>
|
||||||
|
<property name="applyToPrivate" value="true"/>
|
||||||
|
<property name="format" value="^[a-z][a-zA-Z0-9]*_?$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="MemberNameCheck">
|
||||||
|
<!-- Validates non-static members against the supplied expression. -->
|
||||||
|
<metadata name="altname" value="MemberName"/>
|
||||||
|
<property name="applyToPublic" value="true"/>
|
||||||
|
<property name="applyToProtected" value="true"/>
|
||||||
|
<property name="applyToPackage" value="true"/>
|
||||||
|
<property name="applyToPrivate" value="true"/>
|
||||||
|
<property name="format" value="^[a-z][a-zA-Z0-9]*$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="MethodNameCheck">
|
||||||
|
<!-- Validates identifiers for method names. -->
|
||||||
|
<metadata name="altname" value="MethodName"/>
|
||||||
|
<property name="format" value="^[a-z][a-zA-Z0-9]*(_[a-zA-Z0-9]+)*$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ParameterName">
|
||||||
|
<!-- Validates identifiers for method parameters against the
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*$". -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="LocalFinalVariableName">
|
||||||
|
<!-- Validates identifiers for local final variables against the
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*$". -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="LocalVariableName">
|
||||||
|
<!-- Validates identifiers for local variables against the
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*$". -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
LENGTH and CODING CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="LineLength">
|
||||||
|
<!-- Checks if a line is too long. -->
|
||||||
|
<property name="max" value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.max}" default="128"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
The default ignore pattern exempts the following elements:
|
||||||
|
- import statements
|
||||||
|
- long URLs inside comments
|
||||||
|
-->
|
||||||
|
|
||||||
|
<property name="ignorePattern"
|
||||||
|
value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.ignorePattern}"
|
||||||
|
default="^(package .*;\s*)|(import .*;\s*)|( *(\*|//).*https?://.*)$"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="LeftCurly">
|
||||||
|
<!-- Checks for placement of the left curly brace ('{'). -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="RightCurly">
|
||||||
|
<!-- Checks right curlies on CATCH, ELSE, and TRY blocks are on
|
||||||
|
the same line. e.g., the following example is fine:
|
||||||
|
<pre>
|
||||||
|
if {
|
||||||
|
...
|
||||||
|
} else
|
||||||
|
</pre>
|
||||||
|
-->
|
||||||
|
<!-- This next example is not fine:
|
||||||
|
<pre>
|
||||||
|
if {
|
||||||
|
...
|
||||||
|
}
|
||||||
|
else
|
||||||
|
</pre>
|
||||||
|
-->
|
||||||
|
<property name="option" value="same"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!-- Checks for braces around if and else blocks -->
|
||||||
|
<module name="NeedBraces">
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
<property name="tokens" value="LITERAL_IF, LITERAL_ELSE, LITERAL_FOR, LITERAL_WHILE, LITERAL_DO"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="UpperEll">
|
||||||
|
<!-- Checks that long constants are defined with an upper ell.-->
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="FallThrough">
|
||||||
|
<!-- Warn about falling through to the next case statement. Similar to
|
||||||
|
javac -Xlint:fallthrough, but the check is suppressed if a single-line comment
|
||||||
|
on the last non-blank line preceding the fallen-into case contains 'fall through' (or
|
||||||
|
some other variants which we don't publicized to promote consistency).
|
||||||
|
-->
|
||||||
|
<property name="reliefPattern"
|
||||||
|
value="fall through|Fall through|fallthru|Fallthru|falls through|Falls through|fallthrough|Fallthrough|No break|NO break|no break|continue on"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
MODIFIERS CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="ModifierOrder">
|
||||||
|
<!-- Warn if modifier order is inconsistent with JLS3 8.1.1, 8.3.1, and
|
||||||
|
8.4.3. The prescribed order is:
|
||||||
|
public, protected, private, abstract, static, final, transient, volatile,
|
||||||
|
synchronized, native, strictfp
|
||||||
|
-->
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
WHITESPACE CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="WhitespaceAround">
|
||||||
|
<!-- Checks that various tokens are surrounded by whitespace.
|
||||||
|
This includes most binary operators and keywords followed
|
||||||
|
by regular or curly braces.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="ASSIGN, BAND, BAND_ASSIGN, BOR,
|
||||||
|
BOR_ASSIGN, BSR, BSR_ASSIGN, BXOR, BXOR_ASSIGN, COLON, DIV, DIV_ASSIGN,
|
||||||
|
EQUAL, GE, GT, LAND, LE, LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE,
|
||||||
|
LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, LITERAL_RETURN,
|
||||||
|
LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE, LOR, LT, MINUS,
|
||||||
|
MINUS_ASSIGN, MOD, MOD_ASSIGN, NOT_EQUAL, PLUS, PLUS_ASSIGN, QUESTION,
|
||||||
|
SL, SL_ASSIGN, SR_ASSIGN, STAR, STAR_ASSIGN"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="WhitespaceAfter">
|
||||||
|
<!-- Checks that commas, semicolons and typecasts are followed by
|
||||||
|
whitespace.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="COMMA, SEMI, TYPECAST"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="NoWhitespaceAfter">
|
||||||
|
<!-- Checks that there is no whitespace after various unary operators.
|
||||||
|
Linebreaks are allowed.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="BNOT, DEC, DOT, INC, LNOT, UNARY_MINUS,
|
||||||
|
UNARY_PLUS"/>
|
||||||
|
<property name="allowLineBreaks" value="true"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="NoWhitespaceBefore">
|
||||||
|
<!-- Checks that there is no whitespace before various unary operators.
|
||||||
|
Linebreaks are allowed.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="SEMI, DOT, POST_DEC, POST_INC"/>
|
||||||
|
<property name="allowLineBreaks" value="true"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ParenPad">
|
||||||
|
<!-- Checks that there is no whitespace before close parens or after
|
||||||
|
open parens.
|
||||||
|
-->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
</module>
|
||||||
|
</module>
|
||||||
|
|
684
api/src/docs/asciidoc/css/foundation.css
vendored
Normal file
684
api/src/docs/asciidoc/css/foundation.css
vendored
Normal file
|
@ -0,0 +1,684 @@
|
||||||
|
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */
|
||||||
|
/* ========================================================================== HTML5 display definitions ========================================================================== */
|
||||||
|
/** Correct `block` display not defined in IE 8/9. */
|
||||||
|
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; }
|
||||||
|
|
||||||
|
/** Correct `inline-block` display not defined in IE 8/9. */
|
||||||
|
audio, canvas, video { display: inline-block; }
|
||||||
|
|
||||||
|
/** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */
|
||||||
|
audio:not([controls]) { display: none; height: 0; }
|
||||||
|
|
||||||
|
/** Address `[hidden]` styling not present in IE 8/9. Hide the `template` element in IE, Safari, and Firefox < 22. */
|
||||||
|
[hidden], template { display: none; }
|
||||||
|
|
||||||
|
script { display: none !important; }
|
||||||
|
|
||||||
|
/* ========================================================================== Base ========================================================================== */
|
||||||
|
/** 1. Set default font family to sans-serif. 2. Prevent iOS text size adjust after orientation change, without disabling user zoom. */
|
||||||
|
html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ }
|
||||||
|
|
||||||
|
/** Remove default margin. */
|
||||||
|
body { margin: 0; }
|
||||||
|
|
||||||
|
/* ========================================================================== Links ========================================================================== */
|
||||||
|
/** Remove the gray background color from active links in IE 10. */
|
||||||
|
a { background: transparent; }
|
||||||
|
|
||||||
|
/** Address `outline` inconsistency between Chrome and other browsers. */
|
||||||
|
a:focus { outline: thin dotted; }
|
||||||
|
|
||||||
|
/** Improve readability when focused and also mouse hovered in all browsers. */
|
||||||
|
a:active, a:hover { outline: 0; }
|
||||||
|
|
||||||
|
/* ========================================================================== Typography ========================================================================== */
|
||||||
|
/** Address variable `h1` font-size and margin within `section` and `article` contexts in Firefox 4+, Safari 5, and Chrome. */
|
||||||
|
h1 { font-size: 2em; margin: 0.67em 0; }
|
||||||
|
|
||||||
|
/** Address styling not present in IE 8/9, Safari 5, and Chrome. */
|
||||||
|
abbr[title] { border-bottom: 1px dotted; }
|
||||||
|
|
||||||
|
/** Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
|
||||||
|
b, strong { font-weight: bold; }
|
||||||
|
|
||||||
|
/** Address styling not present in Safari 5 and Chrome. */
|
||||||
|
dfn { font-style: italic; }
|
||||||
|
|
||||||
|
/** Address differences between Firefox and other browsers. */
|
||||||
|
hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; }
|
||||||
|
|
||||||
|
/** Address styling not present in IE 8/9. */
|
||||||
|
mark { background: #ff0; color: #000; }
|
||||||
|
|
||||||
|
/** Correct font family set oddly in Safari 5 and Chrome. */
|
||||||
|
code, kbd, pre, samp { font-family: monospace, serif; font-size: 1em; }
|
||||||
|
|
||||||
|
/** Improve readability of pre-formatted text in all browsers. */
|
||||||
|
pre { white-space: pre-wrap; }
|
||||||
|
|
||||||
|
/** Set consistent quote types. */
|
||||||
|
q { quotes: "\201C" "\201D" "\2018" "\2019"; }
|
||||||
|
|
||||||
|
/** Address inconsistent and variable font size in all browsers. */
|
||||||
|
small { font-size: 80%; }
|
||||||
|
|
||||||
|
/** Prevent `sub` and `sup` affecting `line-height` in all browsers. */
|
||||||
|
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
|
||||||
|
|
||||||
|
sup { top: -0.5em; }
|
||||||
|
|
||||||
|
sub { bottom: -0.25em; }
|
||||||
|
|
||||||
|
/* ========================================================================== Embedded content ========================================================================== */
|
||||||
|
/** Remove border when inside `a` element in IE 8/9. */
|
||||||
|
img { border: 0; }
|
||||||
|
|
||||||
|
/** Correct overflow displayed oddly in IE 9. */
|
||||||
|
svg:not(:root) { overflow: hidden; }
|
||||||
|
|
||||||
|
/* ========================================================================== Figures ========================================================================== */
|
||||||
|
/** Address margin not present in IE 8/9 and Safari 5. */
|
||||||
|
figure { margin: 0; }
|
||||||
|
|
||||||
|
/* ========================================================================== Forms ========================================================================== */
|
||||||
|
/** Define consistent border, margin, and padding. */
|
||||||
|
fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; }
|
||||||
|
|
||||||
|
/** 1. Correct `color` not being inherited in IE 8/9. 2. Remove padding so people aren't caught out if they zero out fieldsets. */
|
||||||
|
legend { border: 0; /* 1 */ padding: 0; /* 2 */ }
|
||||||
|
|
||||||
|
/** 1. Correct font family not being inherited in all browsers. 2. Correct font size not being inherited in all browsers. 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. */
|
||||||
|
button, input, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 2 */ margin: 0; /* 3 */ }
|
||||||
|
|
||||||
|
/** Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet. */
|
||||||
|
button, input { line-height: normal; }
|
||||||
|
|
||||||
|
/** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */
|
||||||
|
button, select { text-transform: none; }
|
||||||
|
|
||||||
|
/** 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. 2. Correct inability to style clickable `input` types in iOS. 3. Improve usability and consistency of cursor style between image-type `input` and others. */
|
||||||
|
button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ }
|
||||||
|
|
||||||
|
/** Re-set default cursor for disabled elements. */
|
||||||
|
button[disabled], html input[disabled] { cursor: default; }
|
||||||
|
|
||||||
|
/** 1. Address box sizing set to `content-box` in IE 8/9. 2. Remove excess padding in IE 8/9. */
|
||||||
|
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ }
|
||||||
|
|
||||||
|
/** 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome (include `-moz` to future-proof). */
|
||||||
|
input[type="search"] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; }
|
||||||
|
|
||||||
|
/** Remove inner padding and search cancel button in Safari 5 and Chrome on OS X. */
|
||||||
|
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
|
||||||
|
|
||||||
|
/** Remove inner padding and border in Firefox 4+. */
|
||||||
|
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
|
||||||
|
|
||||||
|
/** 1. Remove default vertical scrollbar in IE 8/9. 2. Improve readability and alignment in all browsers. */
|
||||||
|
textarea { overflow: auto; /* 1 */ vertical-align: top; /* 2 */ }
|
||||||
|
|
||||||
|
/* ========================================================================== Tables ========================================================================== */
|
||||||
|
/** Remove most spacing between table cells. */
|
||||||
|
table { border-collapse: collapse; border-spacing: 0; }
|
||||||
|
|
||||||
|
meta.foundation-mq-small { font-family: "only screen and (min-width: 768px)"; width: 768px; }
|
||||||
|
|
||||||
|
meta.foundation-mq-medium { font-family: "only screen and (min-width:1280px)"; width: 1280px; }
|
||||||
|
|
||||||
|
meta.foundation-mq-large { font-family: "only screen and (min-width:1440px)"; width: 1440px; }
|
||||||
|
|
||||||
|
*, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
|
||||||
|
|
||||||
|
html, body { font-size: 100%; }
|
||||||
|
|
||||||
|
body { background: white; color: #222222; padding: 0; margin: 0; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; line-height: 1; position: relative; cursor: auto; }
|
||||||
|
|
||||||
|
a:hover { cursor: pointer; }
|
||||||
|
|
||||||
|
img, object, embed { max-width: 100%; height: auto; }
|
||||||
|
|
||||||
|
object, embed { height: 100%; }
|
||||||
|
|
||||||
|
img { -ms-interpolation-mode: bicubic; }
|
||||||
|
|
||||||
|
#map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object { max-width: none !important; }
|
||||||
|
|
||||||
|
.left { float: left !important; }
|
||||||
|
|
||||||
|
.right { float: right !important; }
|
||||||
|
|
||||||
|
.text-left { text-align: left !important; }
|
||||||
|
|
||||||
|
.text-right { text-align: right !important; }
|
||||||
|
|
||||||
|
.text-center { text-align: center !important; }
|
||||||
|
|
||||||
|
.text-justify { text-align: justify !important; }
|
||||||
|
|
||||||
|
.hide { display: none; }
|
||||||
|
|
||||||
|
.antialiased { -webkit-font-smoothing: antialiased; }
|
||||||
|
|
||||||
|
img { display: inline-block; vertical-align: middle; }
|
||||||
|
|
||||||
|
textarea { height: auto; min-height: 50px; }
|
||||||
|
|
||||||
|
select { width: 100%; }
|
||||||
|
|
||||||
|
object, svg { display: inline-block; vertical-align: middle; }
|
||||||
|
|
||||||
|
.center { margin-left: auto; margin-right: auto; }
|
||||||
|
|
||||||
|
.spread { width: 100%; }
|
||||||
|
|
||||||
|
p.lead, .paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p { font-size: 1.21875em; line-height: 1.6; }
|
||||||
|
|
||||||
|
.subheader, .admonitionblock td.content > .title, .audioblock > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .stemblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, table.tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title { line-height: 1.4; color: #6f6f6f; font-weight: 300; margin-top: 0.2em; margin-bottom: 0.5em; }
|
||||||
|
|
||||||
|
/* Typography resets */
|
||||||
|
div, dl, dt, dd, ul, ol, li, h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; direction: ltr; }
|
||||||
|
|
||||||
|
/* Default Link Styles */
|
||||||
|
a { color: #2ba6cb; text-decoration: none; line-height: inherit; }
|
||||||
|
a:hover, a:focus { color: #2795b6; }
|
||||||
|
a img { border: none; }
|
||||||
|
|
||||||
|
/* Default paragraph styles */
|
||||||
|
p { font-family: inherit; font-weight: normal; font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; text-rendering: optimizeLegibility; }
|
||||||
|
p aside { font-size: 0.875em; line-height: 1.35; font-style: italic; }
|
||||||
|
|
||||||
|
/* Default header styles */
|
||||||
|
h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: bold; font-style: normal; color: #222222; text-rendering: optimizeLegibility; margin-top: 1em; margin-bottom: 0.5em; line-height: 1.2125em; }
|
||||||
|
h1 small, h2 small, h3 small, #toctitle small, .sidebarblock > .content > .title small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; }
|
||||||
|
|
||||||
|
h1 { font-size: 2.125em; }
|
||||||
|
|
||||||
|
h2 { font-size: 1.6875em; }
|
||||||
|
|
||||||
|
h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.375em; }
|
||||||
|
|
||||||
|
h4 { font-size: 1.125em; }
|
||||||
|
|
||||||
|
h5 { font-size: 1.125em; }
|
||||||
|
|
||||||
|
h6 { font-size: 1em; }
|
||||||
|
|
||||||
|
hr { border: solid #dddddd; border-width: 1px 0 0; clear: both; margin: 1.25em 0 1.1875em; height: 0; }
|
||||||
|
|
||||||
|
/* Helpful Typography Defaults */
|
||||||
|
em, i { font-style: italic; line-height: inherit; }
|
||||||
|
|
||||||
|
strong, b { font-weight: bold; line-height: inherit; }
|
||||||
|
|
||||||
|
small { font-size: 60%; line-height: inherit; }
|
||||||
|
|
||||||
|
code { font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: bold; color: #7f0a0c; }
|
||||||
|
|
||||||
|
/* Lists */
|
||||||
|
ul, ol, dl { font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; list-style-position: outside; font-family: inherit; }
|
||||||
|
|
||||||
|
ul, ol { margin-left: 1.5em; }
|
||||||
|
ul.no-bullet, ol.no-bullet { margin-left: 1.5em; }
|
||||||
|
|
||||||
|
/* Unordered Lists */
|
||||||
|
ul li ul, ul li ol { margin-left: 1.25em; margin-bottom: 0; font-size: 1em; /* Override nested font-size change */ }
|
||||||
|
ul.square li ul, ul.circle li ul, ul.disc li ul { list-style: inherit; }
|
||||||
|
ul.square { list-style-type: square; }
|
||||||
|
ul.circle { list-style-type: circle; }
|
||||||
|
ul.disc { list-style-type: disc; }
|
||||||
|
ul.no-bullet { list-style: none; }
|
||||||
|
|
||||||
|
/* Ordered Lists */
|
||||||
|
ol li ul, ol li ol { margin-left: 1.25em; margin-bottom: 0; }
|
||||||
|
|
||||||
|
/* Definition Lists */
|
||||||
|
dl dt { margin-bottom: 0.3125em; font-weight: bold; }
|
||||||
|
dl dd { margin-bottom: 1.25em; }
|
||||||
|
|
||||||
|
/* Abbreviations */
|
||||||
|
abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222222; border-bottom: 1px dotted #dddddd; cursor: help; }
|
||||||
|
|
||||||
|
abbr { text-transform: none; }
|
||||||
|
|
||||||
|
/* Blockquotes */
|
||||||
|
blockquote { margin: 0 0 1.25em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #dddddd; }
|
||||||
|
blockquote cite { display: block; font-size: 0.8125em; color: #555555; }
|
||||||
|
blockquote cite:before { content: "\2014 \0020"; }
|
||||||
|
blockquote cite a, blockquote cite a:visited { color: #555555; }
|
||||||
|
|
||||||
|
blockquote, blockquote p { line-height: 1.6; color: #6f6f6f; }
|
||||||
|
|
||||||
|
/* Microformats */
|
||||||
|
.vcard { display: inline-block; margin: 0 0 1.25em 0; border: 1px solid #dddddd; padding: 0.625em 0.75em; }
|
||||||
|
.vcard li { margin: 0; display: block; }
|
||||||
|
.vcard .fn { font-weight: bold; font-size: 0.9375em; }
|
||||||
|
|
||||||
|
.vevent .summary { font-weight: bold; }
|
||||||
|
.vevent abbr { cursor: auto; text-decoration: none; font-weight: bold; border: none; padding: 0 0.0625em; }
|
||||||
|
|
||||||
|
@media only screen and (min-width: 768px) { h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.4; }
|
||||||
|
h1 { font-size: 2.75em; }
|
||||||
|
h2 { font-size: 2.3125em; }
|
||||||
|
h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.6875em; }
|
||||||
|
h4 { font-size: 1.4375em; } }
|
||||||
|
/* Tables */
|
||||||
|
table { background: white; margin-bottom: 1.25em; border: solid 1px #dddddd; }
|
||||||
|
table thead, table tfoot { background: whitesmoke; font-weight: bold; }
|
||||||
|
table thead tr th, table thead tr td, table tfoot tr th, table tfoot tr td { padding: 0.5em 0.625em 0.625em; font-size: inherit; color: #222222; text-align: left; }
|
||||||
|
table tr th, table tr td { padding: 0.5625em 0.625em; font-size: inherit; color: #222222; }
|
||||||
|
table tr.even, table tr.alt, table tr:nth-of-type(even) { background: #f9f9f9; }
|
||||||
|
table thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td { display: table-cell; line-height: 1.4; }
|
||||||
|
|
||||||
|
body { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; tab-size: 4; }
|
||||||
|
|
||||||
|
h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.4; }
|
||||||
|
|
||||||
|
.clearfix:before, .clearfix:after, .float-group:before, .float-group:after { content: " "; display: table; }
|
||||||
|
.clearfix:after, .float-group:after { clear: both; }
|
||||||
|
|
||||||
|
*:not(pre) > code { font-size: inherit; font-style: normal !important; letter-spacing: 0; padding: 0; line-height: inherit; word-wrap: break-word; }
|
||||||
|
*:not(pre) > code.nobreak { word-wrap: normal; }
|
||||||
|
*:not(pre) > code.nowrap { white-space: nowrap; }
|
||||||
|
|
||||||
|
pre, pre > code { line-height: 1.4; color: black; font-family: monospace, serif; font-weight: normal; }
|
||||||
|
|
||||||
|
em em { font-style: normal; }
|
||||||
|
|
||||||
|
strong strong { font-weight: normal; }
|
||||||
|
|
||||||
|
.keyseq { color: #555555; }
|
||||||
|
|
||||||
|
kbd { font-family: Consolas, "Liberation Mono", Courier, monospace; display: inline-block; color: #222222; font-size: 0.65em; line-height: 1.45; background-color: #f7f7f7; border: 1px solid #ccc; -webkit-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 0.1em white inset; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 0.1em white inset; margin: 0 0.15em; padding: 0.2em 0.5em; vertical-align: middle; position: relative; top: -0.1em; white-space: nowrap; }
|
||||||
|
|
||||||
|
.keyseq kbd:first-child { margin-left: 0; }
|
||||||
|
|
||||||
|
.keyseq kbd:last-child { margin-right: 0; }
|
||||||
|
|
||||||
|
.menuseq, .menu { color: #090909; }
|
||||||
|
|
||||||
|
b.button:before, b.button:after { position: relative; top: -1px; font-weight: normal; }
|
||||||
|
|
||||||
|
b.button:before { content: "["; padding: 0 3px 0 2px; }
|
||||||
|
|
||||||
|
b.button:after { content: "]"; padding: 0 2px 0 3px; }
|
||||||
|
|
||||||
|
#header, #content, #footnotes, #footer { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 62.5em; *zoom: 1; position: relative; padding-left: 0.9375em; padding-right: 0.9375em; }
|
||||||
|
#header:before, #header:after, #content:before, #content:after, #footnotes:before, #footnotes:after, #footer:before, #footer:after { content: " "; display: table; }
|
||||||
|
#header:after, #content:after, #footnotes:after, #footer:after { clear: both; }
|
||||||
|
|
||||||
|
#content { margin-top: 1.25em; }
|
||||||
|
|
||||||
|
#content:before { content: none; }
|
||||||
|
|
||||||
|
#header > h1:first-child { color: black; margin-top: 2.25rem; margin-bottom: 0; }
|
||||||
|
#header > h1:first-child + #toc { margin-top: 8px; border-top: 1px solid #dddddd; }
|
||||||
|
#header > h1:only-child, body.toc2 #header > h1:nth-last-child(2) { border-bottom: 1px solid #dddddd; padding-bottom: 8px; }
|
||||||
|
#header .details { border-bottom: 1px solid #dddddd; line-height: 1.45; padding-top: 0.25em; padding-bottom: 0.25em; padding-left: 0.25em; color: #555555; display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-flow: row wrap; -webkit-flex-flow: row wrap; flex-flow: row wrap; }
|
||||||
|
#header .details span:first-child { margin-left: -0.125em; }
|
||||||
|
#header .details span.email a { color: #6f6f6f; }
|
||||||
|
#header .details br { display: none; }
|
||||||
|
#header .details br + span:before { content: "\00a0\2013\00a0"; }
|
||||||
|
#header .details br + span.author:before { content: "\00a0\22c5\00a0"; color: #6f6f6f; }
|
||||||
|
#header .details br + span#revremark:before { content: "\00a0|\00a0"; }
|
||||||
|
#header #revnumber { text-transform: capitalize; }
|
||||||
|
#header #revnumber:after { content: "\00a0"; }
|
||||||
|
|
||||||
|
#content > h1:first-child:not([class]) { color: black; border-bottom: 1px solid #dddddd; padding-bottom: 8px; margin-top: 0; padding-top: 1rem; margin-bottom: 1.25rem; }
|
||||||
|
|
||||||
|
#toc { border-bottom: 1px solid #dddddd; padding-bottom: 0.5em; }
|
||||||
|
#toc > ul { margin-left: 0.125em; }
|
||||||
|
#toc ul.sectlevel0 > li > a { font-style: italic; }
|
||||||
|
#toc ul.sectlevel0 ul.sectlevel1 { margin: 0.5em 0; }
|
||||||
|
#toc ul { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; list-style-type: none; }
|
||||||
|
#toc li { line-height: 1.3334; margin-top: 0.3334em; }
|
||||||
|
#toc a { text-decoration: none; }
|
||||||
|
#toc a:active { text-decoration: underline; }
|
||||||
|
|
||||||
|
#toctitle { color: #6f6f6f; font-size: 1.2em; }
|
||||||
|
|
||||||
|
@media only screen and (min-width: 768px) { #toctitle { font-size: 1.375em; }
|
||||||
|
body.toc2 { padding-left: 15em; padding-right: 0; }
|
||||||
|
#toc.toc2 { margin-top: 0 !important; background-color: #f2f2f2; position: fixed; width: 15em; left: 0; top: 0; border-right: 1px solid #dddddd; border-top-width: 0 !important; border-bottom-width: 0 !important; z-index: 1000; padding: 1.25em 1em; height: 100%; overflow: auto; }
|
||||||
|
#toc.toc2 #toctitle { margin-top: 0; margin-bottom: 0.8rem; font-size: 1.2em; }
|
||||||
|
#toc.toc2 > ul { font-size: 0.9em; margin-bottom: 0; }
|
||||||
|
#toc.toc2 ul ul { margin-left: 0; padding-left: 1em; }
|
||||||
|
#toc.toc2 ul.sectlevel0 ul.sectlevel1 { padding-left: 0; margin-top: 0.5em; margin-bottom: 0.5em; }
|
||||||
|
body.toc2.toc-right { padding-left: 0; padding-right: 15em; }
|
||||||
|
body.toc2.toc-right #toc.toc2 { border-right-width: 0; border-left: 1px solid #dddddd; left: auto; right: 0; } }
|
||||||
|
@media only screen and (min-width: 1280px) { body.toc2 { padding-left: 20em; padding-right: 0; }
|
||||||
|
#toc.toc2 { width: 20em; }
|
||||||
|
#toc.toc2 #toctitle { font-size: 1.375em; }
|
||||||
|
#toc.toc2 > ul { font-size: 0.95em; }
|
||||||
|
#toc.toc2 ul ul { padding-left: 1.25em; }
|
||||||
|
body.toc2.toc-right { padding-left: 0; padding-right: 20em; } }
|
||||||
|
#content #toc { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
#content #toc > :first-child { margin-top: 0; }
|
||||||
|
#content #toc > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
#footer { max-width: 100%; background-color: #222222; padding: 1.25em; }
|
||||||
|
|
||||||
|
#footer-text { color: #dddddd; line-height: 1.44; }
|
||||||
|
|
||||||
|
.sect1 { padding-bottom: 0.625em; }
|
||||||
|
|
||||||
|
@media only screen and (min-width: 768px) { .sect1 { padding-bottom: 1.25em; } }
|
||||||
|
.sect1 + .sect1 { border-top: 1px solid #dddddd; }
|
||||||
|
|
||||||
|
#content h1 > a.anchor, h2 > a.anchor, h3 > a.anchor, #toctitle > a.anchor, .sidebarblock > .content > .title > a.anchor, h4 > a.anchor, h5 > a.anchor, h6 > a.anchor { position: absolute; z-index: 1001; width: 1.5ex; margin-left: -1.5ex; display: block; text-decoration: none !important; visibility: hidden; text-align: center; font-weight: normal; }
|
||||||
|
#content h1 > a.anchor:before, h2 > a.anchor:before, h3 > a.anchor:before, #toctitle > a.anchor:before, .sidebarblock > .content > .title > a.anchor:before, h4 > a.anchor:before, h5 > a.anchor:before, h6 > a.anchor:before { content: "\00A7"; font-size: 0.85em; display: block; padding-top: 0.1em; }
|
||||||
|
#content h1:hover > a.anchor, #content h1 > a.anchor:hover, h2:hover > a.anchor, h2 > a.anchor:hover, h3:hover > a.anchor, #toctitle:hover > a.anchor, .sidebarblock > .content > .title:hover > a.anchor, h3 > a.anchor:hover, #toctitle > a.anchor:hover, .sidebarblock > .content > .title > a.anchor:hover, h4:hover > a.anchor, h4 > a.anchor:hover, h5:hover > a.anchor, h5 > a.anchor:hover, h6:hover > a.anchor, h6 > a.anchor:hover { visibility: visible; }
|
||||||
|
#content h1 > a.link, h2 > a.link, h3 > a.link, #toctitle > a.link, .sidebarblock > .content > .title > a.link, h4 > a.link, h5 > a.link, h6 > a.link { color: #222222; text-decoration: none; }
|
||||||
|
#content h1 > a.link:hover, h2 > a.link:hover, h3 > a.link:hover, #toctitle > a.link:hover, .sidebarblock > .content > .title > a.link:hover, h4 > a.link:hover, h5 > a.link:hover, h6 > a.link:hover { color: #151515; }
|
||||||
|
|
||||||
|
.audioblock, .imageblock, .literalblock, .listingblock, .stemblock, .videoblock { margin-bottom: 1.25em; }
|
||||||
|
|
||||||
|
.admonitionblock td.content > .title, .audioblock > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .stemblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, table.tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title { text-rendering: optimizeLegibility; text-align: left; }
|
||||||
|
|
||||||
|
table.tableblock > caption.title { white-space: nowrap; overflow: visible; max-width: 0; }
|
||||||
|
|
||||||
|
.paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p { color: black; }
|
||||||
|
|
||||||
|
table.tableblock #preamble > .sectionbody > .paragraph:first-of-type p { font-size: inherit; }
|
||||||
|
|
||||||
|
.admonitionblock > table { border-collapse: separate; border: 0; background: none; width: 100%; }
|
||||||
|
.admonitionblock > table td.icon { text-align: center; width: 80px; }
|
||||||
|
.admonitionblock > table td.icon img { max-width: initial; }
|
||||||
|
.admonitionblock > table td.icon .title { font-weight: bold; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; text-transform: uppercase; }
|
||||||
|
.admonitionblock > table td.content { padding-left: 1.125em; padding-right: 1.25em; border-left: 1px solid #dddddd; color: #555555; }
|
||||||
|
.admonitionblock > table td.content > :last-child > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
.exampleblock > .content { border-style: solid; border-width: 1px; border-color: #e6e6e6; margin-bottom: 1.25em; padding: 1.25em; background: white; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
.exampleblock > .content > :first-child { margin-top: 0; }
|
||||||
|
.exampleblock > .content > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
.sidebarblock { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
.sidebarblock > :first-child { margin-top: 0; }
|
||||||
|
.sidebarblock > :last-child { margin-bottom: 0; }
|
||||||
|
.sidebarblock > .content > .title { color: #6f6f6f; margin-top: 0; }
|
||||||
|
|
||||||
|
.exampleblock > .content > :last-child > :last-child, .exampleblock > .content .olist > ol > li:last-child > :last-child, .exampleblock > .content .ulist > ul > li:last-child > :last-child, .exampleblock > .content .qlist > ol > li:last-child > :last-child, .sidebarblock > .content > :last-child > :last-child, .sidebarblock > .content .olist > ol > li:last-child > :last-child, .sidebarblock > .content .ulist > ul > li:last-child > :last-child, .sidebarblock > .content .qlist > ol > li:last-child > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
.literalblock pre, .listingblock pre:not(.highlight), .listingblock pre[class="highlight"], .listingblock pre[class^="highlight "], .listingblock pre.CodeRay, .listingblock pre.prettyprint { background: #eeeeee; }
|
||||||
|
.sidebarblock .literalblock pre, .sidebarblock .listingblock pre:not(.highlight), .sidebarblock .listingblock pre[class="highlight"], .sidebarblock .listingblock pre[class^="highlight "], .sidebarblock .listingblock pre.CodeRay, .sidebarblock .listingblock pre.prettyprint { background: #f2f1f1; }
|
||||||
|
|
||||||
|
.literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { border: 1px solid #cccccc; -webkit-border-radius: 0; border-radius: 0; word-wrap: break-word; padding: 0.8em 0.8em 0.65em 0.8em; font-size: 0.8125em; }
|
||||||
|
.literalblock pre.nowrap, .literalblock pre[class].nowrap, .listingblock pre.nowrap, .listingblock pre[class].nowrap { overflow-x: auto; white-space: pre; word-wrap: normal; }
|
||||||
|
@media only screen and (min-width: 768px) { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 0.90625em; } }
|
||||||
|
@media only screen and (min-width: 1280px) { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 1em; } }
|
||||||
|
|
||||||
|
.literalblock.output pre { color: #eeeeee; background-color: black; }
|
||||||
|
|
||||||
|
.listingblock pre.highlightjs { padding: 0; }
|
||||||
|
.listingblock pre.highlightjs > code { padding: 0.8em 0.8em 0.65em 0.8em; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
|
||||||
|
.listingblock > .content { position: relative; }
|
||||||
|
|
||||||
|
.listingblock code[data-lang]:before { display: none; content: attr(data-lang); position: absolute; font-size: 0.75em; top: 0.425rem; right: 0.5rem; line-height: 1; text-transform: uppercase; color: #999; }
|
||||||
|
|
||||||
|
.listingblock:hover code[data-lang]:before { display: block; }
|
||||||
|
|
||||||
|
.listingblock.terminal pre .command:before { content: attr(data-prompt); padding-right: 0.5em; color: #999; }
|
||||||
|
|
||||||
|
.listingblock.terminal pre .command:not([data-prompt]):before { content: "$"; }
|
||||||
|
|
||||||
|
table.pyhltable { border-collapse: separate; border: 0; margin-bottom: 0; background: none; }
|
||||||
|
|
||||||
|
table.pyhltable td { vertical-align: top; padding-top: 0; padding-bottom: 0; line-height: 1.4; }
|
||||||
|
|
||||||
|
table.pyhltable td.code { padding-left: .75em; padding-right: 0; }
|
||||||
|
|
||||||
|
pre.pygments .lineno, table.pyhltable td:not(.code) { color: #999; padding-left: 0; padding-right: .5em; border-right: 1px solid #dddddd; }
|
||||||
|
|
||||||
|
pre.pygments .lineno { display: inline-block; margin-right: .25em; }
|
||||||
|
|
||||||
|
table.pyhltable .linenodiv { background: none !important; padding-right: 0 !important; }
|
||||||
|
|
||||||
|
.quoteblock { margin: 0 1em 1.25em 1.5em; display: table; }
|
||||||
|
.quoteblock > .title { margin-left: -1.5em; margin-bottom: 0.75em; }
|
||||||
|
.quoteblock blockquote, .quoteblock blockquote p { color: #6f6f6f; font-size: 1.15rem; line-height: 1.75; word-spacing: 0.1em; letter-spacing: 0; font-style: italic; text-align: justify; }
|
||||||
|
.quoteblock blockquote { margin: 0; padding: 0; border: 0; }
|
||||||
|
.quoteblock blockquote:before { content: "\201c"; float: left; font-size: 2.75em; font-weight: bold; line-height: 0.6em; margin-left: -0.6em; color: #6f6f6f; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
|
||||||
|
.quoteblock blockquote > .paragraph:last-child p { margin-bottom: 0; }
|
||||||
|
.quoteblock .attribution { margin-top: 0.5em; margin-right: 0.5ex; text-align: right; }
|
||||||
|
.quoteblock .quoteblock { margin-left: 0; margin-right: 0; padding: 0.5em 0; border-left: 3px solid #555555; }
|
||||||
|
.quoteblock .quoteblock blockquote { padding: 0 0 0 0.75em; }
|
||||||
|
.quoteblock .quoteblock blockquote:before { display: none; }
|
||||||
|
|
||||||
|
.verseblock { margin: 0 1em 1.25em 1em; }
|
||||||
|
.verseblock pre { font-family: "Open Sans", "DejaVu Sans", sans; font-size: 1.15rem; color: #6f6f6f; font-weight: 300; text-rendering: optimizeLegibility; }
|
||||||
|
.verseblock pre strong { font-weight: 400; }
|
||||||
|
.verseblock .attribution { margin-top: 1.25rem; margin-left: 0.5ex; }
|
||||||
|
|
||||||
|
.quoteblock .attribution, .verseblock .attribution { font-size: 0.8125em; line-height: 1.45; font-style: italic; }
|
||||||
|
.quoteblock .attribution br, .verseblock .attribution br { display: none; }
|
||||||
|
.quoteblock .attribution cite, .verseblock .attribution cite { display: block; letter-spacing: -0.025em; color: #555555; }
|
||||||
|
|
||||||
|
.quoteblock.abstract { margin: 0 0 1.25em 0; display: block; }
|
||||||
|
.quoteblock.abstract blockquote, .quoteblock.abstract blockquote p { text-align: left; word-spacing: 0; }
|
||||||
|
.quoteblock.abstract blockquote:before, .quoteblock.abstract blockquote p:first-of-type:before { display: none; }
|
||||||
|
|
||||||
|
table.tableblock { max-width: 100%; border-collapse: separate; }
|
||||||
|
table.tableblock td > .paragraph:last-child p > p:last-child, table.tableblock th > p:last-child, table.tableblock td > p:last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
table.tableblock, th.tableblock, td.tableblock { border: 0 solid #dddddd; }
|
||||||
|
|
||||||
|
table.grid-all th.tableblock, table.grid-all td.tableblock { border-width: 0 1px 1px 0; }
|
||||||
|
|
||||||
|
table.grid-all tfoot > tr > th.tableblock, table.grid-all tfoot > tr > td.tableblock { border-width: 1px 1px 0 0; }
|
||||||
|
|
||||||
|
table.grid-cols th.tableblock, table.grid-cols td.tableblock { border-width: 0 1px 0 0; }
|
||||||
|
|
||||||
|
table.grid-all * > tr > .tableblock:last-child, table.grid-cols * > tr > .tableblock:last-child { border-right-width: 0; }
|
||||||
|
|
||||||
|
table.grid-rows th.tableblock, table.grid-rows td.tableblock { border-width: 0 0 1px 0; }
|
||||||
|
|
||||||
|
table.grid-all tbody > tr:last-child > th.tableblock, table.grid-all tbody > tr:last-child > td.tableblock, table.grid-all thead:last-child > tr > th.tableblock, table.grid-rows tbody > tr:last-child > th.tableblock, table.grid-rows tbody > tr:last-child > td.tableblock, table.grid-rows thead:last-child > tr > th.tableblock { border-bottom-width: 0; }
|
||||||
|
|
||||||
|
table.grid-rows tfoot > tr > th.tableblock, table.grid-rows tfoot > tr > td.tableblock { border-width: 1px 0 0 0; }
|
||||||
|
|
||||||
|
table.frame-all { border-width: 1px; }
|
||||||
|
|
||||||
|
table.frame-sides { border-width: 0 1px; }
|
||||||
|
|
||||||
|
table.frame-topbot { border-width: 1px 0; }
|
||||||
|
|
||||||
|
th.halign-left, td.halign-left { text-align: left; }
|
||||||
|
|
||||||
|
th.halign-right, td.halign-right { text-align: right; }
|
||||||
|
|
||||||
|
th.halign-center, td.halign-center { text-align: center; }
|
||||||
|
|
||||||
|
th.valign-top, td.valign-top { vertical-align: top; }
|
||||||
|
|
||||||
|
th.valign-bottom, td.valign-bottom { vertical-align: bottom; }
|
||||||
|
|
||||||
|
th.valign-middle, td.valign-middle { vertical-align: middle; }
|
||||||
|
|
||||||
|
table thead th, table tfoot th { font-weight: bold; }
|
||||||
|
|
||||||
|
tbody tr th { display: table-cell; line-height: 1.4; background: whitesmoke; }
|
||||||
|
|
||||||
|
tbody tr th, tbody tr th p, tfoot tr th, tfoot tr th p { color: #222222; font-weight: bold; }
|
||||||
|
|
||||||
|
p.tableblock > code:only-child { background: none; padding: 0; }
|
||||||
|
|
||||||
|
p.tableblock { font-size: 1em; }
|
||||||
|
|
||||||
|
td > div.verse { white-space: pre; }
|
||||||
|
|
||||||
|
ol { margin-left: 1.75em; }
|
||||||
|
|
||||||
|
ul li ol { margin-left: 1.5em; }
|
||||||
|
|
||||||
|
dl dd { margin-left: 1.125em; }
|
||||||
|
|
||||||
|
dl dd:last-child, dl dd:last-child > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
ol > li p, ul > li p, ul dd, ol dd, .olist .olist, .ulist .ulist, .ulist .olist, .olist .ulist { margin-bottom: 0.625em; }
|
||||||
|
|
||||||
|
ul.unstyled, ol.unnumbered, ul.checklist, ul.none { list-style-type: none; }
|
||||||
|
|
||||||
|
ul.unstyled, ol.unnumbered, ul.checklist { margin-left: 0.625em; }
|
||||||
|
|
||||||
|
ul.checklist li > p:first-child > .fa-square-o:first-child, ul.checklist li > p:first-child > .fa-check-square-o:first-child { width: 1em; font-size: 0.85em; }
|
||||||
|
|
||||||
|
ul.checklist li > p:first-child > input[type="checkbox"]:first-child { width: 1em; position: relative; top: 1px; }
|
||||||
|
|
||||||
|
ul.inline { margin: 0 auto 0.625em auto; margin-left: -1.375em; margin-right: 0; padding: 0; list-style: none; overflow: hidden; }
|
||||||
|
ul.inline > li { list-style: none; float: left; margin-left: 1.375em; display: block; }
|
||||||
|
ul.inline > li > * { display: block; }
|
||||||
|
|
||||||
|
.unstyled dl dt { font-weight: normal; font-style: normal; }
|
||||||
|
|
||||||
|
ol.arabic { list-style-type: decimal; }
|
||||||
|
|
||||||
|
ol.decimal { list-style-type: decimal-leading-zero; }
|
||||||
|
|
||||||
|
ol.loweralpha { list-style-type: lower-alpha; }
|
||||||
|
|
||||||
|
ol.upperalpha { list-style-type: upper-alpha; }
|
||||||
|
|
||||||
|
ol.lowerroman { list-style-type: lower-roman; }
|
||||||
|
|
||||||
|
ol.upperroman { list-style-type: upper-roman; }
|
||||||
|
|
||||||
|
ol.lowergreek { list-style-type: lower-greek; }
|
||||||
|
|
||||||
|
.hdlist > table, .colist > table { border: 0; background: none; }
|
||||||
|
.hdlist > table > tbody > tr, .colist > table > tbody > tr { background: none; }
|
||||||
|
|
||||||
|
td.hdlist1, td.hdlist2 { vertical-align: top; padding: 0 0.625em; }
|
||||||
|
|
||||||
|
td.hdlist1 { font-weight: bold; padding-bottom: 1.25em; }
|
||||||
|
|
||||||
|
.literalblock + .colist, .listingblock + .colist { margin-top: -0.5em; }
|
||||||
|
|
||||||
|
.colist > table tr > td:first-of-type { padding: 0 0.75em; line-height: 1; }
|
||||||
|
.colist > table tr > td:first-of-type img { max-width: initial; }
|
||||||
|
.colist > table tr > td:last-of-type { padding: 0.25em 0; }
|
||||||
|
|
||||||
|
.thumb, .th { line-height: 0; display: inline-block; border: solid 4px white; -webkit-box-shadow: 0 0 0 1px #dddddd; box-shadow: 0 0 0 1px #dddddd; }
|
||||||
|
|
||||||
|
.imageblock.left, .imageblock[style*="float: left"] { margin: 0.25em 0.625em 1.25em 0; }
|
||||||
|
.imageblock.right, .imageblock[style*="float: right"] { margin: 0.25em 0 1.25em 0.625em; }
|
||||||
|
.imageblock > .title { margin-bottom: 0; }
|
||||||
|
.imageblock.thumb, .imageblock.th { border-width: 6px; }
|
||||||
|
.imageblock.thumb > .title, .imageblock.th > .title { padding: 0 0.125em; }
|
||||||
|
|
||||||
|
.image.left, .image.right { margin-top: 0.25em; margin-bottom: 0.25em; display: inline-block; line-height: 0; }
|
||||||
|
.image.left { margin-right: 0.625em; }
|
||||||
|
.image.right { margin-left: 0.625em; }
|
||||||
|
|
||||||
|
a.image { text-decoration: none; display: inline-block; }
|
||||||
|
a.image object { pointer-events: none; }
|
||||||
|
|
||||||
|
sup.footnote, sup.footnoteref { font-size: 0.875em; position: static; vertical-align: super; }
|
||||||
|
sup.footnote a, sup.footnoteref a { text-decoration: none; }
|
||||||
|
sup.footnote a:active, sup.footnoteref a:active { text-decoration: underline; }
|
||||||
|
|
||||||
|
#footnotes { padding-top: 0.75em; padding-bottom: 0.75em; margin-bottom: 0.625em; }
|
||||||
|
#footnotes hr { width: 20%; min-width: 6.25em; margin: -0.25em 0 0.75em 0; border-width: 1px 0 0 0; }
|
||||||
|
#footnotes .footnote { padding: 0 0.375em 0 0.225em; line-height: 1.3334; font-size: 0.875em; margin-left: 1.2em; text-indent: -1.05em; margin-bottom: 0.2em; }
|
||||||
|
#footnotes .footnote a:first-of-type { font-weight: bold; text-decoration: none; }
|
||||||
|
#footnotes .footnote:last-of-type { margin-bottom: 0; }
|
||||||
|
#content #footnotes { margin-top: -0.625em; margin-bottom: 0; padding: 0.75em 0; }
|
||||||
|
|
||||||
|
.gist .file-data > table { border: 0; background: #fff; width: 100%; margin-bottom: 0; }
|
||||||
|
.gist .file-data > table td.line-data { width: 99%; }
|
||||||
|
|
||||||
|
div.unbreakable { page-break-inside: avoid; }
|
||||||
|
|
||||||
|
.big { font-size: larger; }
|
||||||
|
|
||||||
|
.small { font-size: smaller; }
|
||||||
|
|
||||||
|
.underline { text-decoration: underline; }
|
||||||
|
|
||||||
|
.overline { text-decoration: overline; }
|
||||||
|
|
||||||
|
.line-through { text-decoration: line-through; }
|
||||||
|
|
||||||
|
.aqua { color: #00bfbf; }
|
||||||
|
|
||||||
|
.aqua-background { background-color: #00fafa; }
|
||||||
|
|
||||||
|
.black { color: black; }
|
||||||
|
|
||||||
|
.black-background { background-color: black; }
|
||||||
|
|
||||||
|
.blue { color: #0000bf; }
|
||||||
|
|
||||||
|
.blue-background { background-color: #0000fa; }
|
||||||
|
|
||||||
|
.fuchsia { color: #bf00bf; }
|
||||||
|
|
||||||
|
.fuchsia-background { background-color: #fa00fa; }
|
||||||
|
|
||||||
|
.gray { color: #606060; }
|
||||||
|
|
||||||
|
.gray-background { background-color: #7d7d7d; }
|
||||||
|
|
||||||
|
.green { color: #006000; }
|
||||||
|
|
||||||
|
.green-background { background-color: #007d00; }
|
||||||
|
|
||||||
|
.lime { color: #00bf00; }
|
||||||
|
|
||||||
|
.lime-background { background-color: #00fa00; }
|
||||||
|
|
||||||
|
.maroon { color: #600000; }
|
||||||
|
|
||||||
|
.maroon-background { background-color: #7d0000; }
|
||||||
|
|
||||||
|
.navy { color: #000060; }
|
||||||
|
|
||||||
|
.navy-background { background-color: #00007d; }
|
||||||
|
|
||||||
|
.olive { color: #606000; }
|
||||||
|
|
||||||
|
.olive-background { background-color: #7d7d00; }
|
||||||
|
|
||||||
|
.purple { color: #600060; }
|
||||||
|
|
||||||
|
.purple-background { background-color: #7d007d; }
|
||||||
|
|
||||||
|
.red { color: #bf0000; }
|
||||||
|
|
||||||
|
.red-background { background-color: #fa0000; }
|
||||||
|
|
||||||
|
.silver { color: #909090; }
|
||||||
|
|
||||||
|
.silver-background { background-color: #bcbcbc; }
|
||||||
|
|
||||||
|
.teal { color: #006060; }
|
||||||
|
|
||||||
|
.teal-background { background-color: #007d7d; }
|
||||||
|
|
||||||
|
.white { color: #bfbfbf; }
|
||||||
|
|
||||||
|
.white-background { background-color: #fafafa; }
|
||||||
|
|
||||||
|
.yellow { color: #bfbf00; }
|
||||||
|
|
||||||
|
.yellow-background { background-color: #fafa00; }
|
||||||
|
|
||||||
|
span.icon > .fa { cursor: default; }
|
||||||
|
|
||||||
|
.admonitionblock td.icon [class^="fa icon-"] { font-size: 2.5em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); cursor: default; }
|
||||||
|
.admonitionblock td.icon .icon-note:before { content: "\f05a"; color: #207c98; }
|
||||||
|
.admonitionblock td.icon .icon-tip:before { content: "\f0eb"; text-shadow: 1px 1px 2px rgba(155, 155, 0, 0.8); color: #111; }
|
||||||
|
.admonitionblock td.icon .icon-warning:before { content: "\f071"; color: #bf6900; }
|
||||||
|
.admonitionblock td.icon .icon-caution:before { content: "\f06d"; color: #bf3400; }
|
||||||
|
.admonitionblock td.icon .icon-important:before { content: "\f06a"; color: #bf0000; }
|
||||||
|
|
||||||
|
.conum[data-value] { display: inline-block; color: #fff !important; background-color: #222222; -webkit-border-radius: 100px; border-radius: 100px; text-align: center; font-size: 0.75em; width: 1.67em; height: 1.67em; line-height: 1.67em; font-family: "Open Sans", "DejaVu Sans", sans-serif; font-style: normal; font-weight: bold; }
|
||||||
|
.conum[data-value] * { color: #fff !important; }
|
||||||
|
.conum[data-value] + b { display: none; }
|
||||||
|
.conum[data-value]:after { content: attr(data-value); }
|
||||||
|
pre .conum[data-value] { position: relative; top: -0.125em; }
|
||||||
|
|
||||||
|
b.conum * { color: inherit !important; }
|
||||||
|
|
||||||
|
.conum:not([data-value]):empty { display: none; }
|
||||||
|
|
||||||
|
.literalblock pre, .listingblock pre { background: #eeeeee; }
|
4
api/src/docs/asciidoclet/overview.adoc
Normal file
4
api/src/docs/asciidoclet/overview.adoc
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
= Elasticsearch Java client
|
||||||
|
Jörg Prante
|
||||||
|
Version 5.4.0.0
|
||||||
|
|
1047
backup/XbibTransportService.java
Normal file
1047
backup/XbibTransportService.java
Normal file
File diff suppressed because it is too large
Load diff
174
build.gradle
174
build.gradle
|
@ -1,6 +1,8 @@
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id "org.sonarqube" version "2.2"
|
id "org.sonarqube" version "2.6.1"
|
||||||
|
id "io.codearte.nexus-staging" version "0.11.0"
|
||||||
|
id "org.xbib.gradle.plugin.asciidoctor" version "1.6.0.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
printf "Host: %s\nOS: %s %s %s\nJVM: %s %s %s %s\nGroovy: %s\nGradle: %s\n" +
|
printf "Host: %s\nOS: %s %s %s\nJVM: %s %s %s %s\nGroovy: %s\nGradle: %s\n" +
|
||||||
|
@ -16,114 +18,112 @@ printf "Host: %s\nOS: %s %s %s\nJVM: %s %s %s %s\nGroovy: %s\nGradle: %s\n" +
|
||||||
GroovySystem.getVersion(),
|
GroovySystem.getVersion(),
|
||||||
gradle.gradleVersion
|
gradle.gradleVersion
|
||||||
|
|
||||||
apply plugin: 'java'
|
apply plugin: "io.codearte.nexus-staging"
|
||||||
apply plugin: 'maven'
|
|
||||||
apply plugin: 'signing'
|
|
||||||
apply plugin: 'findbugs'
|
|
||||||
apply plugin: 'pmd'
|
|
||||||
apply plugin: 'checkstyle'
|
|
||||||
apply plugin: "jacoco"
|
|
||||||
|
|
||||||
ext {
|
subprojects {
|
||||||
user = 'xbib'
|
apply plugin: 'java'
|
||||||
name = 'elasticsearch-extras-client'
|
apply plugin: 'maven'
|
||||||
description = 'Some extras implemented for using Elasticsearch clients (node and transport)'
|
apply plugin: 'signing'
|
||||||
scmUrl = 'https://github.com/' + user + '/' + name
|
//apply plugin: 'findbugs'
|
||||||
scmConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
|
//apply plugin: 'pmd'
|
||||||
scmDeveloperConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
|
//apply plugin: 'checkstyle'
|
||||||
}
|
apply plugin: 'org.xbib.gradle.plugin.asciidoctor'
|
||||||
|
|
||||||
sourceSets {
|
configurations {
|
||||||
integrationTest {
|
|
||||||
java {
|
|
||||||
srcDir file('src/integration-test/java')
|
|
||||||
compileClasspath += main.output
|
|
||||||
compileClasspath += test.output
|
|
||||||
}
|
|
||||||
resources {
|
|
||||||
srcDir file('src/integration-test/resources')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
repositories {
|
|
||||||
mavenCentral()
|
|
||||||
}
|
|
||||||
|
|
||||||
configurations {
|
|
||||||
wagon
|
wagon
|
||||||
integrationTestCompile.extendsFrom testCompile
|
alpnagent
|
||||||
integrationTestRuntime.extendsFrom testRuntime
|
asciidoclet
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
compile("org.elasticsearch.client:transport:${project.property('elasticsearch-client-transport.version')}") {
|
|
||||||
exclude group: 'org.elasticsearch', module: 'securesm'
|
|
||||||
exclude group: 'org.elasticsearch.plugin', module: 'transport-netty3-client'
|
|
||||||
exclude group: 'org.elasticsearch.plugin', module: 'reindex-client'
|
|
||||||
exclude group: 'org.elasticsearch.plugin', module: 'percolator-client'
|
|
||||||
exclude group: 'org.elasticsearch.plugin', module: 'lang-mustache-client'
|
|
||||||
}
|
}
|
||||||
compile "org.xbib:metrics:${project.property('xbib-metrics.version')}"
|
|
||||||
compile "io.netty:netty-transport-native-epoll:${project.property('netty-transport-native-epoll.version')}:linux-x86_64"
|
|
||||||
compile "org.apache.logging.log4j:log4j-api:${project.property('log4j.version')}"
|
|
||||||
testCompile "junit:junit:${project.property('junit.version')}"
|
|
||||||
testCompile "org.apache.logging.log4j:log4j-core:${project.property('log4j.version')}"
|
|
||||||
wagon "org.apache.maven.wagon:wagon-ssh-external:${project.property('wagon.version')}"
|
|
||||||
}
|
|
||||||
|
|
||||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
dependencies {
|
||||||
targetCompatibility = JavaVersion.VERSION_1_8
|
//testCompile "junit:junit:${project.property('junit.version')}"
|
||||||
|
//testCompile "org.apache.logging.log4j:log4j-core:${project.property('log4j.version')}"
|
||||||
|
alpnagent "org.mortbay.jetty.alpn:jetty-alpn-agent:${project.property('alpnagent.version')}"
|
||||||
|
asciidoclet "org.xbib:asciidoclet:${project.property('asciidoclet.version')}"
|
||||||
|
wagon "org.apache.maven.wagon:wagon-ssh:${project.property('wagon.version')}"
|
||||||
|
}
|
||||||
|
|
||||||
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
sourceCompatibility = JavaVersion.VERSION_1_9
|
||||||
tasks.withType(JavaCompile) {
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
options.compilerArgs << "-Xlint:all" << "-profile" << "compact3"
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
||||||
}
|
tasks.withType(JavaCompile) {
|
||||||
|
options.compilerArgs << "-proc:none" << "-Xlint:all,-rawtypes,-unchecked,-try" << "--release" << "8" //<< "-profile" << "compact3"
|
||||||
|
}
|
||||||
|
|
||||||
task integrationTest(type: Test, group: 'verification') {
|
jar {
|
||||||
include '**/MiscTestSuite.class'
|
baseName "${rootProject.name}-${project.name}"
|
||||||
include '**/BulkNodeTestSuite.class'
|
}
|
||||||
include '**/BulkTransportTestSuite.class'
|
|
||||||
testClassesDir = sourceSets.integrationTest.output.classesDir
|
|
||||||
classpath = configurations.integrationTestCompile
|
|
||||||
classpath += configurations.integrationTestRuntime
|
|
||||||
classpath += sourceSets.main.output
|
|
||||||
classpath += sourceSets.test.output
|
|
||||||
classpath += sourceSets.integrationTest.output
|
|
||||||
outputs.upToDateWhen { false }
|
|
||||||
systemProperty 'path.home', projectDir.absolutePath
|
|
||||||
testLogging.showStandardStreams = false
|
|
||||||
}
|
|
||||||
|
|
||||||
integrationTest.mustRunAfter test
|
asciidoctor {
|
||||||
check.dependsOn integrationTest
|
attributes toc: 'left',
|
||||||
|
doctype: 'book',
|
||||||
|
icons: 'font',
|
||||||
|
encoding: 'utf-8',
|
||||||
|
sectlink: true,
|
||||||
|
sectanchors: true,
|
||||||
|
linkattrs: true,
|
||||||
|
imagesdir: 'img',
|
||||||
|
'source-highlighter': 'coderay'
|
||||||
|
}
|
||||||
|
|
||||||
clean {
|
javadoc {
|
||||||
delete "plugins"
|
options.docletpath = configurations.asciidoclet.files.asType(List)
|
||||||
delete "logs"
|
options.doclet = 'org.xbib.asciidoclet.Asciidoclet'
|
||||||
}
|
options.overview = "src/docs/asciidoclet/overview.adoc"
|
||||||
|
options.addStringOption "-base-dir", "${projectDir}"
|
||||||
|
options.addStringOption "-attribute",
|
||||||
|
"name=${project.name},version=${project.version},title-link=https://github.com/jprante/${project.name}"
|
||||||
|
configure(options) {
|
||||||
|
noTimestamp = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
task javadocJar(type: Jar, dependsOn: classes) {
|
/*task javadocJar(type: Jar, dependsOn: classes) {
|
||||||
|
baseName "${rootProject.name}-${project.name}"
|
||||||
from javadoc
|
from javadoc
|
||||||
into "build/tmp"
|
into "build/tmp"
|
||||||
classifier 'javadoc'
|
classifier 'javadoc'
|
||||||
}
|
}
|
||||||
|
|
||||||
task sourcesJar(type: Jar, dependsOn: classes) {
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
||||||
|
baseName "${rootProject.name}-${project.name}"
|
||||||
from sourceSets.main.allSource
|
from sourceSets.main.allSource
|
||||||
into "build/tmp"
|
into "build/tmp"
|
||||||
classifier 'sources'
|
classifier 'sources'
|
||||||
}
|
}
|
||||||
|
|
||||||
artifacts {
|
artifacts {
|
||||||
archives javadocJar, sourcesJar
|
archives javadocJar, sourcesJar
|
||||||
}
|
}*/
|
||||||
|
|
||||||
if (project.hasProperty('signing.keyId')) {
|
if (project.hasProperty('signing.keyId')) {
|
||||||
signing {
|
signing {
|
||||||
sign configurations.archives
|
sign configurations.archives
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "${rootProject.projectDir}/gradle/ext.gradle"
|
||||||
|
apply from: "${rootProject.projectDir}/gradle/publish.gradle"
|
||||||
|
//apply from: "${rootProject.projectDir}/gradle/sonarqube.gradle"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
apply from: 'gradle/publish.gradle'
|
/*
|
||||||
apply from: 'gradle/sonarqube.gradle'
|
task aggregatedJavadoc(type: Javadoc) {
|
||||||
|
group = 'aggregation'
|
||||||
|
description = 'Generates aggregated Javadoc API documentation.'
|
||||||
|
title = "$description $version API"
|
||||||
|
destinationDir = file("$buildDir/docs/javadoc")
|
||||||
|
def sourceProjects = subprojects.findAll {
|
||||||
|
it.plugins.hasPlugin('java') || it.plugins.hasPlugin('groovy')
|
||||||
|
}
|
||||||
|
source sourceProjects.collect {
|
||||||
|
it.sourceSets.main.allJava
|
||||||
|
}
|
||||||
|
classpath = files(sourceProjects.collect {
|
||||||
|
it.sourceSets.main.runtimeClasspath
|
||||||
|
})
|
||||||
|
//options.overview = 'gradle/api/overview.html'
|
||||||
|
options.showFromProtected()
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
63
common/build.gradle
Normal file
63
common/build.gradle
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
buildscript {
|
||||||
|
repositories {
|
||||||
|
jcenter()
|
||||||
|
maven {
|
||||||
|
url 'http://xbib.org/repository'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dependencies {
|
||||||
|
classpath "org.xbib.elasticsearch:gradle-plugin-elasticsearch-build:6.2.2.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
apply plugin: 'org.xbib.gradle.plugin.elasticsearch.build'
|
||||||
|
|
||||||
|
configurations {
|
||||||
|
main
|
||||||
|
tests
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compile project(':api')
|
||||||
|
compile "org.xbib:metrics:${project.property('xbib-metrics.version')}"
|
||||||
|
compileOnly "org.apache.logging.log4j:log4j-api:${project.property('log4j.version')}"
|
||||||
|
testCompile "org.xbib.elasticsearch:elasticsearch-test-framework:${project.property('xbib-elasticsearch-test.version')}"
|
||||||
|
testRuntime "org.xbib.elasticsearch:elasticsearch-test-framework:${project.property('xbib-elasticsearch-test.version')}"
|
||||||
|
}
|
||||||
|
|
||||||
|
jar {
|
||||||
|
baseName "${rootProject.name}-common"
|
||||||
|
}
|
||||||
|
|
||||||
|
task testJar(type: Jar, dependsOn: testClasses) {
|
||||||
|
baseName = "${project.archivesBaseName}-tests"
|
||||||
|
from sourceSets.test.output
|
||||||
|
}
|
||||||
|
|
||||||
|
artifacts {
|
||||||
|
main jar
|
||||||
|
tests testJar
|
||||||
|
archives sourcesJar, javadocJar
|
||||||
|
}
|
||||||
|
|
||||||
|
test {
|
||||||
|
enabled = false
|
||||||
|
jvmArgs "-javaagent:" + configurations.alpnagent.asPath
|
||||||
|
systemProperty 'path.home', project.buildDir.absolutePath
|
||||||
|
testLogging {
|
||||||
|
showStandardStreams = true
|
||||||
|
exceptionFormat = 'full'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
randomizedTest {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
|
||||||
|
esTest {
|
||||||
|
// test with the jars, not the classes, for security manager
|
||||||
|
classpath = files(configurations.testRuntime) + configurations.main.artifacts.files + configurations.tests.artifacts.files
|
||||||
|
systemProperty 'tests.security.manager', 'true'
|
||||||
|
}
|
||||||
|
esTest.dependsOn jar, testJar
|
||||||
|
|
321
common/config/checkstyle/checkstyle.xml
Normal file
321
common/config/checkstyle/checkstyle.xml
Normal file
|
@ -0,0 +1,321 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE module PUBLIC
|
||||||
|
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
|
||||||
|
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
|
||||||
|
|
||||||
|
<!-- This is a checkstyle configuration file. For descriptions of
|
||||||
|
what the following rules do, please see the checkstyle configuration
|
||||||
|
page at http://checkstyle.sourceforge.net/config.html -->
|
||||||
|
|
||||||
|
<module name="Checker">
|
||||||
|
|
||||||
|
<module name="FileTabCharacter">
|
||||||
|
<!-- Checks that there are no tab characters in the file.
|
||||||
|
-->
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="NewlineAtEndOfFile">
|
||||||
|
<property name="lineSeparator" value="lf"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="RegexpSingleline">
|
||||||
|
<!-- Checks that FIXME is not used in comments. TODO is preferred.
|
||||||
|
-->
|
||||||
|
<property name="format" value="((//.*)|(\*.*))FIXME" />
|
||||||
|
<property name="message" value='TODO is preferred to FIXME. e.g. "TODO(johndoe): Refactor when v2 is released."' />
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="RegexpSingleline">
|
||||||
|
<!-- Checks that TODOs are named. (Actually, just that they are followed
|
||||||
|
by an open paren.)
|
||||||
|
-->
|
||||||
|
<property name="format" value="((//.*)|(\*.*))TODO[^(]" />
|
||||||
|
<property name="message" value='All TODOs should be named. e.g. "TODO(johndoe): Refactor when v2 is released."' />
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="JavadocPackage">
|
||||||
|
<!-- Checks that each Java package has a Javadoc file used for commenting.
|
||||||
|
Only allows a package-info.java, not package.html. -->
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!-- All Java AST specific tests live under TreeWalker module. -->
|
||||||
|
<module name="TreeWalker">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
IMPORT CHECKS
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="RedundantImport">
|
||||||
|
<!-- Checks for redundant import statements. -->
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ImportOrder">
|
||||||
|
<!-- Checks for out of order import statements. -->
|
||||||
|
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
<property name="groups" value="com,junit,net,org,java,javax"/>
|
||||||
|
<!-- This ensures that static imports go first. -->
|
||||||
|
<property name="option" value="top"/>
|
||||||
|
<property name="tokens" value="STATIC_IMPORT, IMPORT"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
JAVADOC CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Checks for Javadoc comments. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
|
||||||
|
<module name="JavadocMethod">
|
||||||
|
<property name="scope" value="protected"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
<property name="allowMissingJavadoc" value="true"/>
|
||||||
|
<property name="allowMissingParamTags" value="true"/>
|
||||||
|
<property name="allowMissingReturnTag" value="true"/>
|
||||||
|
<property name="allowMissingThrowsTags" value="true"/>
|
||||||
|
<property name="allowThrowsTagsForSubclasses" value="true"/>
|
||||||
|
<property name="allowUndeclaredRTE" value="true"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="JavadocType">
|
||||||
|
<property name="scope" value="protected"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="JavadocStyle">
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
NAMING CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Item 38 - Adhere to generally accepted naming conventions -->
|
||||||
|
|
||||||
|
<module name="PackageName">
|
||||||
|
<!-- Validates identifiers for package names against the
|
||||||
|
supplied expression. -->
|
||||||
|
<!-- Here the default checkstyle rule restricts package name parts to
|
||||||
|
seven characters, this is not in line with common practice at Google.
|
||||||
|
-->
|
||||||
|
<property name="format" value="^[a-z]+(\.[a-z][a-z0-9]{1,})*$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="TypeNameCheck">
|
||||||
|
<!-- Validates static, final fields against the
|
||||||
|
expression "^[A-Z][a-zA-Z0-9]*$". -->
|
||||||
|
<metadata name="altname" value="TypeName"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ConstantNameCheck">
|
||||||
|
<!-- Validates non-private, static, final fields against the supplied
|
||||||
|
public/package final fields "^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$". -->
|
||||||
|
<metadata name="altname" value="ConstantName"/>
|
||||||
|
<property name="applyToPublic" value="true"/>
|
||||||
|
<property name="applyToProtected" value="true"/>
|
||||||
|
<property name="applyToPackage" value="true"/>
|
||||||
|
<property name="applyToPrivate" value="false"/>
|
||||||
|
<property name="format" value="^([A-Z][A-Z0-9]*(_[A-Z0-9]+)*|FLAG_.*)$"/>
|
||||||
|
<message key="name.invalidPattern"
|
||||||
|
value="Variable ''{0}'' should be in ALL_CAPS (if it is a constant) or be private (otherwise)."/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="StaticVariableNameCheck">
|
||||||
|
<!-- Validates static, non-final fields against the supplied
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*_?$". -->
|
||||||
|
<metadata name="altname" value="StaticVariableName"/>
|
||||||
|
<property name="applyToPublic" value="true"/>
|
||||||
|
<property name="applyToProtected" value="true"/>
|
||||||
|
<property name="applyToPackage" value="true"/>
|
||||||
|
<property name="applyToPrivate" value="true"/>
|
||||||
|
<property name="format" value="^[a-z][a-zA-Z0-9]*_?$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="MemberNameCheck">
|
||||||
|
<!-- Validates non-static members against the supplied expression. -->
|
||||||
|
<metadata name="altname" value="MemberName"/>
|
||||||
|
<property name="applyToPublic" value="true"/>
|
||||||
|
<property name="applyToProtected" value="true"/>
|
||||||
|
<property name="applyToPackage" value="true"/>
|
||||||
|
<property name="applyToPrivate" value="true"/>
|
||||||
|
<property name="format" value="^[a-z][a-zA-Z0-9]*$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="MethodNameCheck">
|
||||||
|
<!-- Validates identifiers for method names. -->
|
||||||
|
<metadata name="altname" value="MethodName"/>
|
||||||
|
<property name="format" value="^[a-z][a-zA-Z0-9]*(_[a-zA-Z0-9]+)*$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ParameterName">
|
||||||
|
<!-- Validates identifiers for method parameters against the
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*$". -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="LocalFinalVariableName">
|
||||||
|
<!-- Validates identifiers for local final variables against the
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*$". -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="LocalVariableName">
|
||||||
|
<!-- Validates identifiers for local variables against the
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*$". -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
LENGTH and CODING CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="LineLength">
|
||||||
|
<!-- Checks if a line is too long. -->
|
||||||
|
<property name="max" value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.max}" default="128"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
The default ignore pattern exempts the following elements:
|
||||||
|
- import statements
|
||||||
|
- long URLs inside comments
|
||||||
|
-->
|
||||||
|
|
||||||
|
<property name="ignorePattern"
|
||||||
|
value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.ignorePattern}"
|
||||||
|
default="^(package .*;\s*)|(import .*;\s*)|( *(\*|//).*https?://.*)$"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="LeftCurly">
|
||||||
|
<!-- Checks for placement of the left curly brace ('{'). -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="RightCurly">
|
||||||
|
<!-- Checks right curlies on CATCH, ELSE, and TRY blocks are on
|
||||||
|
the same line. e.g., the following example is fine:
|
||||||
|
<pre>
|
||||||
|
if {
|
||||||
|
...
|
||||||
|
} else
|
||||||
|
</pre>
|
||||||
|
-->
|
||||||
|
<!-- This next example is not fine:
|
||||||
|
<pre>
|
||||||
|
if {
|
||||||
|
...
|
||||||
|
}
|
||||||
|
else
|
||||||
|
</pre>
|
||||||
|
-->
|
||||||
|
<property name="option" value="same"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!-- Checks for braces around if and else blocks -->
|
||||||
|
<module name="NeedBraces">
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
<property name="tokens" value="LITERAL_IF, LITERAL_ELSE, LITERAL_FOR, LITERAL_WHILE, LITERAL_DO"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="UpperEll">
|
||||||
|
<!-- Checks that long constants are defined with an upper ell.-->
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="FallThrough">
|
||||||
|
<!-- Warn about falling through to the next case statement. Similar to
|
||||||
|
javac -Xlint:fallthrough, but the check is suppressed if a single-line comment
|
||||||
|
on the last non-blank line preceding the fallen-into case contains 'fall through' (or
|
||||||
|
some other variants which we don't publicized to promote consistency).
|
||||||
|
-->
|
||||||
|
<property name="reliefPattern"
|
||||||
|
value="fall through|Fall through|fallthru|Fallthru|falls through|Falls through|fallthrough|Fallthrough|No break|NO break|no break|continue on"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
MODIFIERS CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="ModifierOrder">
|
||||||
|
<!-- Warn if modifier order is inconsistent with JLS3 8.1.1, 8.3.1, and
|
||||||
|
8.4.3. The prescribed order is:
|
||||||
|
public, protected, private, abstract, static, final, transient, volatile,
|
||||||
|
synchronized, native, strictfp
|
||||||
|
-->
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
WHITESPACE CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="WhitespaceAround">
|
||||||
|
<!-- Checks that various tokens are surrounded by whitespace.
|
||||||
|
This includes most binary operators and keywords followed
|
||||||
|
by regular or curly braces.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="ASSIGN, BAND, BAND_ASSIGN, BOR,
|
||||||
|
BOR_ASSIGN, BSR, BSR_ASSIGN, BXOR, BXOR_ASSIGN, COLON, DIV, DIV_ASSIGN,
|
||||||
|
EQUAL, GE, GT, LAND, LE, LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE,
|
||||||
|
LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, LITERAL_RETURN,
|
||||||
|
LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE, LOR, LT, MINUS,
|
||||||
|
MINUS_ASSIGN, MOD, MOD_ASSIGN, NOT_EQUAL, PLUS, PLUS_ASSIGN, QUESTION,
|
||||||
|
SL, SL_ASSIGN, SR_ASSIGN, STAR, STAR_ASSIGN"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="WhitespaceAfter">
|
||||||
|
<!-- Checks that commas, semicolons and typecasts are followed by
|
||||||
|
whitespace.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="COMMA, SEMI, TYPECAST"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="NoWhitespaceAfter">
|
||||||
|
<!-- Checks that there is no whitespace after various unary operators.
|
||||||
|
Linebreaks are allowed.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="BNOT, DEC, DOT, INC, LNOT, UNARY_MINUS,
|
||||||
|
UNARY_PLUS"/>
|
||||||
|
<property name="allowLineBreaks" value="true"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="NoWhitespaceBefore">
|
||||||
|
<!-- Checks that there is no whitespace before various unary operators.
|
||||||
|
Linebreaks are allowed.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="SEMI, DOT, POST_DEC, POST_INC"/>
|
||||||
|
<property name="allowLineBreaks" value="true"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ParenPad">
|
||||||
|
<!-- Checks that there is no whitespace before close parens or after
|
||||||
|
open parens.
|
||||||
|
-->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
</module>
|
||||||
|
</module>
|
||||||
|
|
684
common/src/docs/asciidoc/css/foundation.css
vendored
Normal file
684
common/src/docs/asciidoc/css/foundation.css
vendored
Normal file
|
@ -0,0 +1,684 @@
|
||||||
|
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */
|
||||||
|
/* ========================================================================== HTML5 display definitions ========================================================================== */
|
||||||
|
/** Correct `block` display not defined in IE 8/9. */
|
||||||
|
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; }
|
||||||
|
|
||||||
|
/** Correct `inline-block` display not defined in IE 8/9. */
|
||||||
|
audio, canvas, video { display: inline-block; }
|
||||||
|
|
||||||
|
/** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */
|
||||||
|
audio:not([controls]) { display: none; height: 0; }
|
||||||
|
|
||||||
|
/** Address `[hidden]` styling not present in IE 8/9. Hide the `template` element in IE, Safari, and Firefox < 22. */
|
||||||
|
[hidden], template { display: none; }
|
||||||
|
|
||||||
|
script { display: none !important; }
|
||||||
|
|
||||||
|
/* ========================================================================== Base ========================================================================== */
|
||||||
|
/** 1. Set default font family to sans-serif. 2. Prevent iOS text size adjust after orientation change, without disabling user zoom. */
|
||||||
|
html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ }
|
||||||
|
|
||||||
|
/** Remove default margin. */
|
||||||
|
body { margin: 0; }
|
||||||
|
|
||||||
|
/* ========================================================================== Links ========================================================================== */
|
||||||
|
/** Remove the gray background color from active links in IE 10. */
|
||||||
|
a { background: transparent; }
|
||||||
|
|
||||||
|
/** Address `outline` inconsistency between Chrome and other browsers. */
|
||||||
|
a:focus { outline: thin dotted; }
|
||||||
|
|
||||||
|
/** Improve readability when focused and also mouse hovered in all browsers. */
|
||||||
|
a:active, a:hover { outline: 0; }
|
||||||
|
|
||||||
|
/* ========================================================================== Typography ========================================================================== */
|
||||||
|
/** Address variable `h1` font-size and margin within `section` and `article` contexts in Firefox 4+, Safari 5, and Chrome. */
|
||||||
|
h1 { font-size: 2em; margin: 0.67em 0; }
|
||||||
|
|
||||||
|
/** Address styling not present in IE 8/9, Safari 5, and Chrome. */
|
||||||
|
abbr[title] { border-bottom: 1px dotted; }
|
||||||
|
|
||||||
|
/** Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
|
||||||
|
b, strong { font-weight: bold; }
|
||||||
|
|
||||||
|
/** Address styling not present in Safari 5 and Chrome. */
|
||||||
|
dfn { font-style: italic; }
|
||||||
|
|
||||||
|
/** Address differences between Firefox and other browsers. */
|
||||||
|
hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; }
|
||||||
|
|
||||||
|
/** Address styling not present in IE 8/9. */
|
||||||
|
mark { background: #ff0; color: #000; }
|
||||||
|
|
||||||
|
/** Correct font family set oddly in Safari 5 and Chrome. */
|
||||||
|
code, kbd, pre, samp { font-family: monospace, serif; font-size: 1em; }
|
||||||
|
|
||||||
|
/** Improve readability of pre-formatted text in all browsers. */
|
||||||
|
pre { white-space: pre-wrap; }
|
||||||
|
|
||||||
|
/** Set consistent quote types. */
|
||||||
|
q { quotes: "\201C" "\201D" "\2018" "\2019"; }
|
||||||
|
|
||||||
|
/** Address inconsistent and variable font size in all browsers. */
|
||||||
|
small { font-size: 80%; }
|
||||||
|
|
||||||
|
/** Prevent `sub` and `sup` affecting `line-height` in all browsers. */
|
||||||
|
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
|
||||||
|
|
||||||
|
sup { top: -0.5em; }
|
||||||
|
|
||||||
|
sub { bottom: -0.25em; }
|
||||||
|
|
||||||
|
/* ========================================================================== Embedded content ========================================================================== */
|
||||||
|
/** Remove border when inside `a` element in IE 8/9. */
|
||||||
|
img { border: 0; }
|
||||||
|
|
||||||
|
/** Correct overflow displayed oddly in IE 9. */
|
||||||
|
svg:not(:root) { overflow: hidden; }
|
||||||
|
|
||||||
|
/* ========================================================================== Figures ========================================================================== */
|
||||||
|
/** Address margin not present in IE 8/9 and Safari 5. */
|
||||||
|
figure { margin: 0; }
|
||||||
|
|
||||||
|
/* ========================================================================== Forms ========================================================================== */
|
||||||
|
/** Define consistent border, margin, and padding. */
|
||||||
|
fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; }
|
||||||
|
|
||||||
|
/** 1. Correct `color` not being inherited in IE 8/9. 2. Remove padding so people aren't caught out if they zero out fieldsets. */
|
||||||
|
legend { border: 0; /* 1 */ padding: 0; /* 2 */ }
|
||||||
|
|
||||||
|
/** 1. Correct font family not being inherited in all browsers. 2. Correct font size not being inherited in all browsers. 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. */
|
||||||
|
button, input, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 2 */ margin: 0; /* 3 */ }
|
||||||
|
|
||||||
|
/** Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet. */
|
||||||
|
button, input { line-height: normal; }
|
||||||
|
|
||||||
|
/** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */
|
||||||
|
button, select { text-transform: none; }
|
||||||
|
|
||||||
|
/** 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. 2. Correct inability to style clickable `input` types in iOS. 3. Improve usability and consistency of cursor style between image-type `input` and others. */
|
||||||
|
button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ }
|
||||||
|
|
||||||
|
/** Re-set default cursor for disabled elements. */
|
||||||
|
button[disabled], html input[disabled] { cursor: default; }
|
||||||
|
|
||||||
|
/** 1. Address box sizing set to `content-box` in IE 8/9. 2. Remove excess padding in IE 8/9. */
|
||||||
|
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ }
|
||||||
|
|
||||||
|
/** 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome (include `-moz` to future-proof). */
|
||||||
|
input[type="search"] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; }
|
||||||
|
|
||||||
|
/** Remove inner padding and search cancel button in Safari 5 and Chrome on OS X. */
|
||||||
|
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
|
||||||
|
|
||||||
|
/** Remove inner padding and border in Firefox 4+. */
|
||||||
|
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
|
||||||
|
|
||||||
|
/** 1. Remove default vertical scrollbar in IE 8/9. 2. Improve readability and alignment in all browsers. */
|
||||||
|
textarea { overflow: auto; /* 1 */ vertical-align: top; /* 2 */ }
|
||||||
|
|
||||||
|
/* ========================================================================== Tables ========================================================================== */
|
||||||
|
/** Remove most spacing between table cells. */
|
||||||
|
table { border-collapse: collapse; border-spacing: 0; }
|
||||||
|
|
||||||
|
meta.foundation-mq-small { font-family: "only screen and (min-width: 768px)"; width: 768px; }
|
||||||
|
|
||||||
|
meta.foundation-mq-medium { font-family: "only screen and (min-width:1280px)"; width: 1280px; }
|
||||||
|
|
||||||
|
meta.foundation-mq-large { font-family: "only screen and (min-width:1440px)"; width: 1440px; }
|
||||||
|
|
||||||
|
*, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
|
||||||
|
|
||||||
|
html, body { font-size: 100%; }
|
||||||
|
|
||||||
|
body { background: white; color: #222222; padding: 0; margin: 0; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; line-height: 1; position: relative; cursor: auto; }
|
||||||
|
|
||||||
|
a:hover { cursor: pointer; }
|
||||||
|
|
||||||
|
img, object, embed { max-width: 100%; height: auto; }
|
||||||
|
|
||||||
|
object, embed { height: 100%; }
|
||||||
|
|
||||||
|
img { -ms-interpolation-mode: bicubic; }
|
||||||
|
|
||||||
|
#map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object { max-width: none !important; }
|
||||||
|
|
||||||
|
.left { float: left !important; }
|
||||||
|
|
||||||
|
.right { float: right !important; }
|
||||||
|
|
||||||
|
.text-left { text-align: left !important; }
|
||||||
|
|
||||||
|
.text-right { text-align: right !important; }
|
||||||
|
|
||||||
|
.text-center { text-align: center !important; }
|
||||||
|
|
||||||
|
.text-justify { text-align: justify !important; }
|
||||||
|
|
||||||
|
.hide { display: none; }
|
||||||
|
|
||||||
|
.antialiased { -webkit-font-smoothing: antialiased; }
|
||||||
|
|
||||||
|
img { display: inline-block; vertical-align: middle; }
|
||||||
|
|
||||||
|
textarea { height: auto; min-height: 50px; }
|
||||||
|
|
||||||
|
select { width: 100%; }
|
||||||
|
|
||||||
|
object, svg { display: inline-block; vertical-align: middle; }
|
||||||
|
|
||||||
|
.center { margin-left: auto; margin-right: auto; }
|
||||||
|
|
||||||
|
.spread { width: 100%; }
|
||||||
|
|
||||||
|
p.lead, .paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p { font-size: 1.21875em; line-height: 1.6; }
|
||||||
|
|
||||||
|
.subheader, .admonitionblock td.content > .title, .audioblock > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .stemblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, table.tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title { line-height: 1.4; color: #6f6f6f; font-weight: 300; margin-top: 0.2em; margin-bottom: 0.5em; }
|
||||||
|
|
||||||
|
/* Typography resets */
|
||||||
|
div, dl, dt, dd, ul, ol, li, h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; direction: ltr; }
|
||||||
|
|
||||||
|
/* Default Link Styles */
|
||||||
|
a { color: #2ba6cb; text-decoration: none; line-height: inherit; }
|
||||||
|
a:hover, a:focus { color: #2795b6; }
|
||||||
|
a img { border: none; }
|
||||||
|
|
||||||
|
/* Default paragraph styles */
|
||||||
|
p { font-family: inherit; font-weight: normal; font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; text-rendering: optimizeLegibility; }
|
||||||
|
p aside { font-size: 0.875em; line-height: 1.35; font-style: italic; }
|
||||||
|
|
||||||
|
/* Default header styles */
|
||||||
|
h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: bold; font-style: normal; color: #222222; text-rendering: optimizeLegibility; margin-top: 1em; margin-bottom: 0.5em; line-height: 1.2125em; }
|
||||||
|
h1 small, h2 small, h3 small, #toctitle small, .sidebarblock > .content > .title small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; }
|
||||||
|
|
||||||
|
h1 { font-size: 2.125em; }
|
||||||
|
|
||||||
|
h2 { font-size: 1.6875em; }
|
||||||
|
|
||||||
|
h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.375em; }
|
||||||
|
|
||||||
|
h4 { font-size: 1.125em; }
|
||||||
|
|
||||||
|
h5 { font-size: 1.125em; }
|
||||||
|
|
||||||
|
h6 { font-size: 1em; }
|
||||||
|
|
||||||
|
hr { border: solid #dddddd; border-width: 1px 0 0; clear: both; margin: 1.25em 0 1.1875em; height: 0; }
|
||||||
|
|
||||||
|
/* Helpful Typography Defaults */
|
||||||
|
em, i { font-style: italic; line-height: inherit; }
|
||||||
|
|
||||||
|
strong, b { font-weight: bold; line-height: inherit; }
|
||||||
|
|
||||||
|
small { font-size: 60%; line-height: inherit; }
|
||||||
|
|
||||||
|
code { font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: bold; color: #7f0a0c; }
|
||||||
|
|
||||||
|
/* Lists */
|
||||||
|
ul, ol, dl { font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; list-style-position: outside; font-family: inherit; }
|
||||||
|
|
||||||
|
ul, ol { margin-left: 1.5em; }
|
||||||
|
ul.no-bullet, ol.no-bullet { margin-left: 1.5em; }
|
||||||
|
|
||||||
|
/* Unordered Lists */
|
||||||
|
ul li ul, ul li ol { margin-left: 1.25em; margin-bottom: 0; font-size: 1em; /* Override nested font-size change */ }
|
||||||
|
ul.square li ul, ul.circle li ul, ul.disc li ul { list-style: inherit; }
|
||||||
|
ul.square { list-style-type: square; }
|
||||||
|
ul.circle { list-style-type: circle; }
|
||||||
|
ul.disc { list-style-type: disc; }
|
||||||
|
ul.no-bullet { list-style: none; }
|
||||||
|
|
||||||
|
/* Ordered Lists */
|
||||||
|
ol li ul, ol li ol { margin-left: 1.25em; margin-bottom: 0; }
|
||||||
|
|
||||||
|
/* Definition Lists */
|
||||||
|
dl dt { margin-bottom: 0.3125em; font-weight: bold; }
|
||||||
|
dl dd { margin-bottom: 1.25em; }
|
||||||
|
|
||||||
|
/* Abbreviations */
|
||||||
|
abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222222; border-bottom: 1px dotted #dddddd; cursor: help; }
|
||||||
|
|
||||||
|
abbr { text-transform: none; }
|
||||||
|
|
||||||
|
/* Blockquotes */
|
||||||
|
blockquote { margin: 0 0 1.25em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #dddddd; }
|
||||||
|
blockquote cite { display: block; font-size: 0.8125em; color: #555555; }
|
||||||
|
blockquote cite:before { content: "\2014 \0020"; }
|
||||||
|
blockquote cite a, blockquote cite a:visited { color: #555555; }
|
||||||
|
|
||||||
|
blockquote, blockquote p { line-height: 1.6; color: #6f6f6f; }
|
||||||
|
|
||||||
|
/* Microformats */
|
||||||
|
.vcard { display: inline-block; margin: 0 0 1.25em 0; border: 1px solid #dddddd; padding: 0.625em 0.75em; }
|
||||||
|
.vcard li { margin: 0; display: block; }
|
||||||
|
.vcard .fn { font-weight: bold; font-size: 0.9375em; }
|
||||||
|
|
||||||
|
.vevent .summary { font-weight: bold; }
|
||||||
|
.vevent abbr { cursor: auto; text-decoration: none; font-weight: bold; border: none; padding: 0 0.0625em; }
|
||||||
|
|
||||||
|
@media only screen and (min-width: 768px) { h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.4; }
|
||||||
|
h1 { font-size: 2.75em; }
|
||||||
|
h2 { font-size: 2.3125em; }
|
||||||
|
h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.6875em; }
|
||||||
|
h4 { font-size: 1.4375em; } }
|
||||||
|
/* Tables */
|
||||||
|
table { background: white; margin-bottom: 1.25em; border: solid 1px #dddddd; }
|
||||||
|
table thead, table tfoot { background: whitesmoke; font-weight: bold; }
|
||||||
|
table thead tr th, table thead tr td, table tfoot tr th, table tfoot tr td { padding: 0.5em 0.625em 0.625em; font-size: inherit; color: #222222; text-align: left; }
|
||||||
|
table tr th, table tr td { padding: 0.5625em 0.625em; font-size: inherit; color: #222222; }
|
||||||
|
table tr.even, table tr.alt, table tr:nth-of-type(even) { background: #f9f9f9; }
|
||||||
|
table thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td { display: table-cell; line-height: 1.4; }
|
||||||
|
|
||||||
|
body { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; tab-size: 4; }
|
||||||
|
|
||||||
|
h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.4; }
|
||||||
|
|
||||||
|
.clearfix:before, .clearfix:after, .float-group:before, .float-group:after { content: " "; display: table; }
|
||||||
|
.clearfix:after, .float-group:after { clear: both; }
|
||||||
|
|
||||||
|
*:not(pre) > code { font-size: inherit; font-style: normal !important; letter-spacing: 0; padding: 0; line-height: inherit; word-wrap: break-word; }
|
||||||
|
*:not(pre) > code.nobreak { word-wrap: normal; }
|
||||||
|
*:not(pre) > code.nowrap { white-space: nowrap; }
|
||||||
|
|
||||||
|
pre, pre > code { line-height: 1.4; color: black; font-family: monospace, serif; font-weight: normal; }
|
||||||
|
|
||||||
|
em em { font-style: normal; }
|
||||||
|
|
||||||
|
strong strong { font-weight: normal; }
|
||||||
|
|
||||||
|
.keyseq { color: #555555; }
|
||||||
|
|
||||||
|
kbd { font-family: Consolas, "Liberation Mono", Courier, monospace; display: inline-block; color: #222222; font-size: 0.65em; line-height: 1.45; background-color: #f7f7f7; border: 1px solid #ccc; -webkit-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 0.1em white inset; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 0.1em white inset; margin: 0 0.15em; padding: 0.2em 0.5em; vertical-align: middle; position: relative; top: -0.1em; white-space: nowrap; }
|
||||||
|
|
||||||
|
.keyseq kbd:first-child { margin-left: 0; }
|
||||||
|
|
||||||
|
.keyseq kbd:last-child { margin-right: 0; }
|
||||||
|
|
||||||
|
.menuseq, .menu { color: #090909; }
|
||||||
|
|
||||||
|
b.button:before, b.button:after { position: relative; top: -1px; font-weight: normal; }
|
||||||
|
|
||||||
|
b.button:before { content: "["; padding: 0 3px 0 2px; }
|
||||||
|
|
||||||
|
b.button:after { content: "]"; padding: 0 2px 0 3px; }
|
||||||
|
|
||||||
|
#header, #content, #footnotes, #footer { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 62.5em; *zoom: 1; position: relative; padding-left: 0.9375em; padding-right: 0.9375em; }
|
||||||
|
#header:before, #header:after, #content:before, #content:after, #footnotes:before, #footnotes:after, #footer:before, #footer:after { content: " "; display: table; }
|
||||||
|
#header:after, #content:after, #footnotes:after, #footer:after { clear: both; }
|
||||||
|
|
||||||
|
#content { margin-top: 1.25em; }
|
||||||
|
|
||||||
|
#content:before { content: none; }
|
||||||
|
|
||||||
|
#header > h1:first-child { color: black; margin-top: 2.25rem; margin-bottom: 0; }
|
||||||
|
#header > h1:first-child + #toc { margin-top: 8px; border-top: 1px solid #dddddd; }
|
||||||
|
#header > h1:only-child, body.toc2 #header > h1:nth-last-child(2) { border-bottom: 1px solid #dddddd; padding-bottom: 8px; }
|
||||||
|
#header .details { border-bottom: 1px solid #dddddd; line-height: 1.45; padding-top: 0.25em; padding-bottom: 0.25em; padding-left: 0.25em; color: #555555; display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-flow: row wrap; -webkit-flex-flow: row wrap; flex-flow: row wrap; }
|
||||||
|
#header .details span:first-child { margin-left: -0.125em; }
|
||||||
|
#header .details span.email a { color: #6f6f6f; }
|
||||||
|
#header .details br { display: none; }
|
||||||
|
#header .details br + span:before { content: "\00a0\2013\00a0"; }
|
||||||
|
#header .details br + span.author:before { content: "\00a0\22c5\00a0"; color: #6f6f6f; }
|
||||||
|
#header .details br + span#revremark:before { content: "\00a0|\00a0"; }
|
||||||
|
#header #revnumber { text-transform: capitalize; }
|
||||||
|
#header #revnumber:after { content: "\00a0"; }
|
||||||
|
|
||||||
|
#content > h1:first-child:not([class]) { color: black; border-bottom: 1px solid #dddddd; padding-bottom: 8px; margin-top: 0; padding-top: 1rem; margin-bottom: 1.25rem; }
|
||||||
|
|
||||||
|
#toc { border-bottom: 1px solid #dddddd; padding-bottom: 0.5em; }
|
||||||
|
#toc > ul { margin-left: 0.125em; }
|
||||||
|
#toc ul.sectlevel0 > li > a { font-style: italic; }
|
||||||
|
#toc ul.sectlevel0 ul.sectlevel1 { margin: 0.5em 0; }
|
||||||
|
#toc ul { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; list-style-type: none; }
|
||||||
|
#toc li { line-height: 1.3334; margin-top: 0.3334em; }
|
||||||
|
#toc a { text-decoration: none; }
|
||||||
|
#toc a:active { text-decoration: underline; }
|
||||||
|
|
||||||
|
#toctitle { color: #6f6f6f; font-size: 1.2em; }
|
||||||
|
|
||||||
|
@media only screen and (min-width: 768px) { #toctitle { font-size: 1.375em; }
|
||||||
|
body.toc2 { padding-left: 15em; padding-right: 0; }
|
||||||
|
#toc.toc2 { margin-top: 0 !important; background-color: #f2f2f2; position: fixed; width: 15em; left: 0; top: 0; border-right: 1px solid #dddddd; border-top-width: 0 !important; border-bottom-width: 0 !important; z-index: 1000; padding: 1.25em 1em; height: 100%; overflow: auto; }
|
||||||
|
#toc.toc2 #toctitle { margin-top: 0; margin-bottom: 0.8rem; font-size: 1.2em; }
|
||||||
|
#toc.toc2 > ul { font-size: 0.9em; margin-bottom: 0; }
|
||||||
|
#toc.toc2 ul ul { margin-left: 0; padding-left: 1em; }
|
||||||
|
#toc.toc2 ul.sectlevel0 ul.sectlevel1 { padding-left: 0; margin-top: 0.5em; margin-bottom: 0.5em; }
|
||||||
|
body.toc2.toc-right { padding-left: 0; padding-right: 15em; }
|
||||||
|
body.toc2.toc-right #toc.toc2 { border-right-width: 0; border-left: 1px solid #dddddd; left: auto; right: 0; } }
|
||||||
|
@media only screen and (min-width: 1280px) { body.toc2 { padding-left: 20em; padding-right: 0; }
|
||||||
|
#toc.toc2 { width: 20em; }
|
||||||
|
#toc.toc2 #toctitle { font-size: 1.375em; }
|
||||||
|
#toc.toc2 > ul { font-size: 0.95em; }
|
||||||
|
#toc.toc2 ul ul { padding-left: 1.25em; }
|
||||||
|
body.toc2.toc-right { padding-left: 0; padding-right: 20em; } }
|
||||||
|
#content #toc { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
#content #toc > :first-child { margin-top: 0; }
|
||||||
|
#content #toc > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
#footer { max-width: 100%; background-color: #222222; padding: 1.25em; }
|
||||||
|
|
||||||
|
#footer-text { color: #dddddd; line-height: 1.44; }
|
||||||
|
|
||||||
|
.sect1 { padding-bottom: 0.625em; }
|
||||||
|
|
||||||
|
@media only screen and (min-width: 768px) { .sect1 { padding-bottom: 1.25em; } }
|
||||||
|
.sect1 + .sect1 { border-top: 1px solid #dddddd; }
|
||||||
|
|
||||||
|
#content h1 > a.anchor, h2 > a.anchor, h3 > a.anchor, #toctitle > a.anchor, .sidebarblock > .content > .title > a.anchor, h4 > a.anchor, h5 > a.anchor, h6 > a.anchor { position: absolute; z-index: 1001; width: 1.5ex; margin-left: -1.5ex; display: block; text-decoration: none !important; visibility: hidden; text-align: center; font-weight: normal; }
|
||||||
|
#content h1 > a.anchor:before, h2 > a.anchor:before, h3 > a.anchor:before, #toctitle > a.anchor:before, .sidebarblock > .content > .title > a.anchor:before, h4 > a.anchor:before, h5 > a.anchor:before, h6 > a.anchor:before { content: "\00A7"; font-size: 0.85em; display: block; padding-top: 0.1em; }
|
||||||
|
#content h1:hover > a.anchor, #content h1 > a.anchor:hover, h2:hover > a.anchor, h2 > a.anchor:hover, h3:hover > a.anchor, #toctitle:hover > a.anchor, .sidebarblock > .content > .title:hover > a.anchor, h3 > a.anchor:hover, #toctitle > a.anchor:hover, .sidebarblock > .content > .title > a.anchor:hover, h4:hover > a.anchor, h4 > a.anchor:hover, h5:hover > a.anchor, h5 > a.anchor:hover, h6:hover > a.anchor, h6 > a.anchor:hover { visibility: visible; }
|
||||||
|
#content h1 > a.link, h2 > a.link, h3 > a.link, #toctitle > a.link, .sidebarblock > .content > .title > a.link, h4 > a.link, h5 > a.link, h6 > a.link { color: #222222; text-decoration: none; }
|
||||||
|
#content h1 > a.link:hover, h2 > a.link:hover, h3 > a.link:hover, #toctitle > a.link:hover, .sidebarblock > .content > .title > a.link:hover, h4 > a.link:hover, h5 > a.link:hover, h6 > a.link:hover { color: #151515; }
|
||||||
|
|
||||||
|
.audioblock, .imageblock, .literalblock, .listingblock, .stemblock, .videoblock { margin-bottom: 1.25em; }
|
||||||
|
|
||||||
|
.admonitionblock td.content > .title, .audioblock > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .stemblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, table.tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title { text-rendering: optimizeLegibility; text-align: left; }
|
||||||
|
|
||||||
|
table.tableblock > caption.title { white-space: nowrap; overflow: visible; max-width: 0; }
|
||||||
|
|
||||||
|
.paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p { color: black; }
|
||||||
|
|
||||||
|
table.tableblock #preamble > .sectionbody > .paragraph:first-of-type p { font-size: inherit; }
|
||||||
|
|
||||||
|
.admonitionblock > table { border-collapse: separate; border: 0; background: none; width: 100%; }
|
||||||
|
.admonitionblock > table td.icon { text-align: center; width: 80px; }
|
||||||
|
.admonitionblock > table td.icon img { max-width: initial; }
|
||||||
|
.admonitionblock > table td.icon .title { font-weight: bold; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; text-transform: uppercase; }
|
||||||
|
.admonitionblock > table td.content { padding-left: 1.125em; padding-right: 1.25em; border-left: 1px solid #dddddd; color: #555555; }
|
||||||
|
.admonitionblock > table td.content > :last-child > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
.exampleblock > .content { border-style: solid; border-width: 1px; border-color: #e6e6e6; margin-bottom: 1.25em; padding: 1.25em; background: white; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
.exampleblock > .content > :first-child { margin-top: 0; }
|
||||||
|
.exampleblock > .content > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
.sidebarblock { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
.sidebarblock > :first-child { margin-top: 0; }
|
||||||
|
.sidebarblock > :last-child { margin-bottom: 0; }
|
||||||
|
.sidebarblock > .content > .title { color: #6f6f6f; margin-top: 0; }
|
||||||
|
|
||||||
|
.exampleblock > .content > :last-child > :last-child, .exampleblock > .content .olist > ol > li:last-child > :last-child, .exampleblock > .content .ulist > ul > li:last-child > :last-child, .exampleblock > .content .qlist > ol > li:last-child > :last-child, .sidebarblock > .content > :last-child > :last-child, .sidebarblock > .content .olist > ol > li:last-child > :last-child, .sidebarblock > .content .ulist > ul > li:last-child > :last-child, .sidebarblock > .content .qlist > ol > li:last-child > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
.literalblock pre, .listingblock pre:not(.highlight), .listingblock pre[class="highlight"], .listingblock pre[class^="highlight "], .listingblock pre.CodeRay, .listingblock pre.prettyprint { background: #eeeeee; }
|
||||||
|
.sidebarblock .literalblock pre, .sidebarblock .listingblock pre:not(.highlight), .sidebarblock .listingblock pre[class="highlight"], .sidebarblock .listingblock pre[class^="highlight "], .sidebarblock .listingblock pre.CodeRay, .sidebarblock .listingblock pre.prettyprint { background: #f2f1f1; }
|
||||||
|
|
||||||
|
.literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { border: 1px solid #cccccc; -webkit-border-radius: 0; border-radius: 0; word-wrap: break-word; padding: 0.8em 0.8em 0.65em 0.8em; font-size: 0.8125em; }
|
||||||
|
.literalblock pre.nowrap, .literalblock pre[class].nowrap, .listingblock pre.nowrap, .listingblock pre[class].nowrap { overflow-x: auto; white-space: pre; word-wrap: normal; }
|
||||||
|
@media only screen and (min-width: 768px) { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 0.90625em; } }
|
||||||
|
@media only screen and (min-width: 1280px) { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 1em; } }
|
||||||
|
|
||||||
|
.literalblock.output pre { color: #eeeeee; background-color: black; }
|
||||||
|
|
||||||
|
.listingblock pre.highlightjs { padding: 0; }
|
||||||
|
.listingblock pre.highlightjs > code { padding: 0.8em 0.8em 0.65em 0.8em; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
|
||||||
|
.listingblock > .content { position: relative; }
|
||||||
|
|
||||||
|
.listingblock code[data-lang]:before { display: none; content: attr(data-lang); position: absolute; font-size: 0.75em; top: 0.425rem; right: 0.5rem; line-height: 1; text-transform: uppercase; color: #999; }
|
||||||
|
|
||||||
|
.listingblock:hover code[data-lang]:before { display: block; }
|
||||||
|
|
||||||
|
.listingblock.terminal pre .command:before { content: attr(data-prompt); padding-right: 0.5em; color: #999; }
|
||||||
|
|
||||||
|
.listingblock.terminal pre .command:not([data-prompt]):before { content: "$"; }
|
||||||
|
|
||||||
|
table.pyhltable { border-collapse: separate; border: 0; margin-bottom: 0; background: none; }
|
||||||
|
|
||||||
|
table.pyhltable td { vertical-align: top; padding-top: 0; padding-bottom: 0; line-height: 1.4; }
|
||||||
|
|
||||||
|
table.pyhltable td.code { padding-left: .75em; padding-right: 0; }
|
||||||
|
|
||||||
|
pre.pygments .lineno, table.pyhltable td:not(.code) { color: #999; padding-left: 0; padding-right: .5em; border-right: 1px solid #dddddd; }
|
||||||
|
|
||||||
|
pre.pygments .lineno { display: inline-block; margin-right: .25em; }
|
||||||
|
|
||||||
|
table.pyhltable .linenodiv { background: none !important; padding-right: 0 !important; }
|
||||||
|
|
||||||
|
.quoteblock { margin: 0 1em 1.25em 1.5em; display: table; }
|
||||||
|
.quoteblock > .title { margin-left: -1.5em; margin-bottom: 0.75em; }
|
||||||
|
.quoteblock blockquote, .quoteblock blockquote p { color: #6f6f6f; font-size: 1.15rem; line-height: 1.75; word-spacing: 0.1em; letter-spacing: 0; font-style: italic; text-align: justify; }
|
||||||
|
.quoteblock blockquote { margin: 0; padding: 0; border: 0; }
|
||||||
|
.quoteblock blockquote:before { content: "\201c"; float: left; font-size: 2.75em; font-weight: bold; line-height: 0.6em; margin-left: -0.6em; color: #6f6f6f; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
|
||||||
|
.quoteblock blockquote > .paragraph:last-child p { margin-bottom: 0; }
|
||||||
|
.quoteblock .attribution { margin-top: 0.5em; margin-right: 0.5ex; text-align: right; }
|
||||||
|
.quoteblock .quoteblock { margin-left: 0; margin-right: 0; padding: 0.5em 0; border-left: 3px solid #555555; }
|
||||||
|
.quoteblock .quoteblock blockquote { padding: 0 0 0 0.75em; }
|
||||||
|
.quoteblock .quoteblock blockquote:before { display: none; }
|
||||||
|
|
||||||
|
.verseblock { margin: 0 1em 1.25em 1em; }
|
||||||
|
.verseblock pre { font-family: "Open Sans", "DejaVu Sans", sans; font-size: 1.15rem; color: #6f6f6f; font-weight: 300; text-rendering: optimizeLegibility; }
|
||||||
|
.verseblock pre strong { font-weight: 400; }
|
||||||
|
.verseblock .attribution { margin-top: 1.25rem; margin-left: 0.5ex; }
|
||||||
|
|
||||||
|
.quoteblock .attribution, .verseblock .attribution { font-size: 0.8125em; line-height: 1.45; font-style: italic; }
|
||||||
|
.quoteblock .attribution br, .verseblock .attribution br { display: none; }
|
||||||
|
.quoteblock .attribution cite, .verseblock .attribution cite { display: block; letter-spacing: -0.025em; color: #555555; }
|
||||||
|
|
||||||
|
.quoteblock.abstract { margin: 0 0 1.25em 0; display: block; }
|
||||||
|
.quoteblock.abstract blockquote, .quoteblock.abstract blockquote p { text-align: left; word-spacing: 0; }
|
||||||
|
.quoteblock.abstract blockquote:before, .quoteblock.abstract blockquote p:first-of-type:before { display: none; }
|
||||||
|
|
||||||
|
table.tableblock { max-width: 100%; border-collapse: separate; }
|
||||||
|
table.tableblock td > .paragraph:last-child p > p:last-child, table.tableblock th > p:last-child, table.tableblock td > p:last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
table.tableblock, th.tableblock, td.tableblock { border: 0 solid #dddddd; }
|
||||||
|
|
||||||
|
table.grid-all th.tableblock, table.grid-all td.tableblock { border-width: 0 1px 1px 0; }
|
||||||
|
|
||||||
|
table.grid-all tfoot > tr > th.tableblock, table.grid-all tfoot > tr > td.tableblock { border-width: 1px 1px 0 0; }
|
||||||
|
|
||||||
|
table.grid-cols th.tableblock, table.grid-cols td.tableblock { border-width: 0 1px 0 0; }
|
||||||
|
|
||||||
|
table.grid-all * > tr > .tableblock:last-child, table.grid-cols * > tr > .tableblock:last-child { border-right-width: 0; }
|
||||||
|
|
||||||
|
table.grid-rows th.tableblock, table.grid-rows td.tableblock { border-width: 0 0 1px 0; }
|
||||||
|
|
||||||
|
table.grid-all tbody > tr:last-child > th.tableblock, table.grid-all tbody > tr:last-child > td.tableblock, table.grid-all thead:last-child > tr > th.tableblock, table.grid-rows tbody > tr:last-child > th.tableblock, table.grid-rows tbody > tr:last-child > td.tableblock, table.grid-rows thead:last-child > tr > th.tableblock { border-bottom-width: 0; }
|
||||||
|
|
||||||
|
table.grid-rows tfoot > tr > th.tableblock, table.grid-rows tfoot > tr > td.tableblock { border-width: 1px 0 0 0; }
|
||||||
|
|
||||||
|
table.frame-all { border-width: 1px; }
|
||||||
|
|
||||||
|
table.frame-sides { border-width: 0 1px; }
|
||||||
|
|
||||||
|
table.frame-topbot { border-width: 1px 0; }
|
||||||
|
|
||||||
|
th.halign-left, td.halign-left { text-align: left; }
|
||||||
|
|
||||||
|
th.halign-right, td.halign-right { text-align: right; }
|
||||||
|
|
||||||
|
th.halign-center, td.halign-center { text-align: center; }
|
||||||
|
|
||||||
|
th.valign-top, td.valign-top { vertical-align: top; }
|
||||||
|
|
||||||
|
th.valign-bottom, td.valign-bottom { vertical-align: bottom; }
|
||||||
|
|
||||||
|
th.valign-middle, td.valign-middle { vertical-align: middle; }
|
||||||
|
|
||||||
|
table thead th, table tfoot th { font-weight: bold; }
|
||||||
|
|
||||||
|
tbody tr th { display: table-cell; line-height: 1.4; background: whitesmoke; }
|
||||||
|
|
||||||
|
tbody tr th, tbody tr th p, tfoot tr th, tfoot tr th p { color: #222222; font-weight: bold; }
|
||||||
|
|
||||||
|
p.tableblock > code:only-child { background: none; padding: 0; }
|
||||||
|
|
||||||
|
p.tableblock { font-size: 1em; }
|
||||||
|
|
||||||
|
td > div.verse { white-space: pre; }
|
||||||
|
|
||||||
|
ol { margin-left: 1.75em; }
|
||||||
|
|
||||||
|
ul li ol { margin-left: 1.5em; }
|
||||||
|
|
||||||
|
dl dd { margin-left: 1.125em; }
|
||||||
|
|
||||||
|
dl dd:last-child, dl dd:last-child > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
ol > li p, ul > li p, ul dd, ol dd, .olist .olist, .ulist .ulist, .ulist .olist, .olist .ulist { margin-bottom: 0.625em; }
|
||||||
|
|
||||||
|
ul.unstyled, ol.unnumbered, ul.checklist, ul.none { list-style-type: none; }
|
||||||
|
|
||||||
|
ul.unstyled, ol.unnumbered, ul.checklist { margin-left: 0.625em; }
|
||||||
|
|
||||||
|
ul.checklist li > p:first-child > .fa-square-o:first-child, ul.checklist li > p:first-child > .fa-check-square-o:first-child { width: 1em; font-size: 0.85em; }
|
||||||
|
|
||||||
|
ul.checklist li > p:first-child > input[type="checkbox"]:first-child { width: 1em; position: relative; top: 1px; }
|
||||||
|
|
||||||
|
ul.inline { margin: 0 auto 0.625em auto; margin-left: -1.375em; margin-right: 0; padding: 0; list-style: none; overflow: hidden; }
|
||||||
|
ul.inline > li { list-style: none; float: left; margin-left: 1.375em; display: block; }
|
||||||
|
ul.inline > li > * { display: block; }
|
||||||
|
|
||||||
|
.unstyled dl dt { font-weight: normal; font-style: normal; }
|
||||||
|
|
||||||
|
ol.arabic { list-style-type: decimal; }
|
||||||
|
|
||||||
|
ol.decimal { list-style-type: decimal-leading-zero; }
|
||||||
|
|
||||||
|
ol.loweralpha { list-style-type: lower-alpha; }
|
||||||
|
|
||||||
|
ol.upperalpha { list-style-type: upper-alpha; }
|
||||||
|
|
||||||
|
ol.lowerroman { list-style-type: lower-roman; }
|
||||||
|
|
||||||
|
ol.upperroman { list-style-type: upper-roman; }
|
||||||
|
|
||||||
|
ol.lowergreek { list-style-type: lower-greek; }
|
||||||
|
|
||||||
|
.hdlist > table, .colist > table { border: 0; background: none; }
|
||||||
|
.hdlist > table > tbody > tr, .colist > table > tbody > tr { background: none; }
|
||||||
|
|
||||||
|
td.hdlist1, td.hdlist2 { vertical-align: top; padding: 0 0.625em; }
|
||||||
|
|
||||||
|
td.hdlist1 { font-weight: bold; padding-bottom: 1.25em; }
|
||||||
|
|
||||||
|
.literalblock + .colist, .listingblock + .colist { margin-top: -0.5em; }
|
||||||
|
|
||||||
|
.colist > table tr > td:first-of-type { padding: 0 0.75em; line-height: 1; }
|
||||||
|
.colist > table tr > td:first-of-type img { max-width: initial; }
|
||||||
|
.colist > table tr > td:last-of-type { padding: 0.25em 0; }
|
||||||
|
|
||||||
|
.thumb, .th { line-height: 0; display: inline-block; border: solid 4px white; -webkit-box-shadow: 0 0 0 1px #dddddd; box-shadow: 0 0 0 1px #dddddd; }
|
||||||
|
|
||||||
|
.imageblock.left, .imageblock[style*="float: left"] { margin: 0.25em 0.625em 1.25em 0; }
|
||||||
|
.imageblock.right, .imageblock[style*="float: right"] { margin: 0.25em 0 1.25em 0.625em; }
|
||||||
|
.imageblock > .title { margin-bottom: 0; }
|
||||||
|
.imageblock.thumb, .imageblock.th { border-width: 6px; }
|
||||||
|
.imageblock.thumb > .title, .imageblock.th > .title { padding: 0 0.125em; }
|
||||||
|
|
||||||
|
.image.left, .image.right { margin-top: 0.25em; margin-bottom: 0.25em; display: inline-block; line-height: 0; }
|
||||||
|
.image.left { margin-right: 0.625em; }
|
||||||
|
.image.right { margin-left: 0.625em; }
|
||||||
|
|
||||||
|
a.image { text-decoration: none; display: inline-block; }
|
||||||
|
a.image object { pointer-events: none; }
|
||||||
|
|
||||||
|
sup.footnote, sup.footnoteref { font-size: 0.875em; position: static; vertical-align: super; }
|
||||||
|
sup.footnote a, sup.footnoteref a { text-decoration: none; }
|
||||||
|
sup.footnote a:active, sup.footnoteref a:active { text-decoration: underline; }
|
||||||
|
|
||||||
|
#footnotes { padding-top: 0.75em; padding-bottom: 0.75em; margin-bottom: 0.625em; }
|
||||||
|
#footnotes hr { width: 20%; min-width: 6.25em; margin: -0.25em 0 0.75em 0; border-width: 1px 0 0 0; }
|
||||||
|
#footnotes .footnote { padding: 0 0.375em 0 0.225em; line-height: 1.3334; font-size: 0.875em; margin-left: 1.2em; text-indent: -1.05em; margin-bottom: 0.2em; }
|
||||||
|
#footnotes .footnote a:first-of-type { font-weight: bold; text-decoration: none; }
|
||||||
|
#footnotes .footnote:last-of-type { margin-bottom: 0; }
|
||||||
|
#content #footnotes { margin-top: -0.625em; margin-bottom: 0; padding: 0.75em 0; }
|
||||||
|
|
||||||
|
.gist .file-data > table { border: 0; background: #fff; width: 100%; margin-bottom: 0; }
|
||||||
|
.gist .file-data > table td.line-data { width: 99%; }
|
||||||
|
|
||||||
|
div.unbreakable { page-break-inside: avoid; }
|
||||||
|
|
||||||
|
.big { font-size: larger; }
|
||||||
|
|
||||||
|
.small { font-size: smaller; }
|
||||||
|
|
||||||
|
.underline { text-decoration: underline; }
|
||||||
|
|
||||||
|
.overline { text-decoration: overline; }
|
||||||
|
|
||||||
|
.line-through { text-decoration: line-through; }
|
||||||
|
|
||||||
|
.aqua { color: #00bfbf; }
|
||||||
|
|
||||||
|
.aqua-background { background-color: #00fafa; }
|
||||||
|
|
||||||
|
.black { color: black; }
|
||||||
|
|
||||||
|
.black-background { background-color: black; }
|
||||||
|
|
||||||
|
.blue { color: #0000bf; }
|
||||||
|
|
||||||
|
.blue-background { background-color: #0000fa; }
|
||||||
|
|
||||||
|
.fuchsia { color: #bf00bf; }
|
||||||
|
|
||||||
|
.fuchsia-background { background-color: #fa00fa; }
|
||||||
|
|
||||||
|
.gray { color: #606060; }
|
||||||
|
|
||||||
|
.gray-background { background-color: #7d7d7d; }
|
||||||
|
|
||||||
|
.green { color: #006000; }
|
||||||
|
|
||||||
|
.green-background { background-color: #007d00; }
|
||||||
|
|
||||||
|
.lime { color: #00bf00; }
|
||||||
|
|
||||||
|
.lime-background { background-color: #00fa00; }
|
||||||
|
|
||||||
|
.maroon { color: #600000; }
|
||||||
|
|
||||||
|
.maroon-background { background-color: #7d0000; }
|
||||||
|
|
||||||
|
.navy { color: #000060; }
|
||||||
|
|
||||||
|
.navy-background { background-color: #00007d; }
|
||||||
|
|
||||||
|
.olive { color: #606000; }
|
||||||
|
|
||||||
|
.olive-background { background-color: #7d7d00; }
|
||||||
|
|
||||||
|
.purple { color: #600060; }
|
||||||
|
|
||||||
|
.purple-background { background-color: #7d007d; }
|
||||||
|
|
||||||
|
.red { color: #bf0000; }
|
||||||
|
|
||||||
|
.red-background { background-color: #fa0000; }
|
||||||
|
|
||||||
|
.silver { color: #909090; }
|
||||||
|
|
||||||
|
.silver-background { background-color: #bcbcbc; }
|
||||||
|
|
||||||
|
.teal { color: #006060; }
|
||||||
|
|
||||||
|
.teal-background { background-color: #007d7d; }
|
||||||
|
|
||||||
|
.white { color: #bfbfbf; }
|
||||||
|
|
||||||
|
.white-background { background-color: #fafafa; }
|
||||||
|
|
||||||
|
.yellow { color: #bfbf00; }
|
||||||
|
|
||||||
|
.yellow-background { background-color: #fafa00; }
|
||||||
|
|
||||||
|
span.icon > .fa { cursor: default; }
|
||||||
|
|
||||||
|
.admonitionblock td.icon [class^="fa icon-"] { font-size: 2.5em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); cursor: default; }
|
||||||
|
.admonitionblock td.icon .icon-note:before { content: "\f05a"; color: #207c98; }
|
||||||
|
.admonitionblock td.icon .icon-tip:before { content: "\f0eb"; text-shadow: 1px 1px 2px rgba(155, 155, 0, 0.8); color: #111; }
|
||||||
|
.admonitionblock td.icon .icon-warning:before { content: "\f071"; color: #bf6900; }
|
||||||
|
.admonitionblock td.icon .icon-caution:before { content: "\f06d"; color: #bf3400; }
|
||||||
|
.admonitionblock td.icon .icon-important:before { content: "\f06a"; color: #bf0000; }
|
||||||
|
|
||||||
|
.conum[data-value] { display: inline-block; color: #fff !important; background-color: #222222; -webkit-border-radius: 100px; border-radius: 100px; text-align: center; font-size: 0.75em; width: 1.67em; height: 1.67em; line-height: 1.67em; font-family: "Open Sans", "DejaVu Sans", sans-serif; font-style: normal; font-weight: bold; }
|
||||||
|
.conum[data-value] * { color: #fff !important; }
|
||||||
|
.conum[data-value] + b { display: none; }
|
||||||
|
.conum[data-value]:after { content: attr(data-value); }
|
||||||
|
pre .conum[data-value] { position: relative; top: -0.125em; }
|
||||||
|
|
||||||
|
b.conum * { color: inherit !important; }
|
||||||
|
|
||||||
|
.conum:not([data-value]):empty { display: none; }
|
||||||
|
|
||||||
|
.literalblock pre, .listingblock pre { background: #eeeeee; }
|
4
common/src/docs/asciidoclet/overview.adoc
Normal file
4
common/src/docs/asciidoclet/overview.adoc
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
= Elasticsearch Java client
|
||||||
|
Jörg Prante
|
||||||
|
Version 5.4.0.0
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client;
|
||||||
|
|
||||||
import com.carrotsearch.hppc.cursors.ObjectCursor;
|
import com.carrotsearch.hppc.cursors.ObjectCursor;
|
||||||
import com.carrotsearch.hppc.cursors.ObjectObjectCursor;
|
import com.carrotsearch.hppc.cursors.ObjectObjectCursor;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
|
import org.elasticsearch.ElasticsearchException;
|
||||||
import org.elasticsearch.ElasticsearchTimeoutException;
|
import org.elasticsearch.ElasticsearchTimeoutException;
|
||||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthAction;
|
import org.elasticsearch.action.admin.cluster.health.ClusterHealthAction;
|
||||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthRequest;
|
import org.elasticsearch.action.admin.cluster.health.ClusterHealthRequest;
|
||||||
|
@ -16,6 +17,9 @@ import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequestBuilder
|
||||||
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesAction;
|
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesAction;
|
||||||
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesRequestBuilder;
|
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesRequestBuilder;
|
||||||
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesResponse;
|
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesResponse;
|
||||||
|
import org.elasticsearch.action.admin.indices.create.CreateIndexAction;
|
||||||
|
import org.elasticsearch.action.admin.indices.create.CreateIndexRequestBuilder;
|
||||||
|
import org.elasticsearch.action.admin.indices.create.CreateIndexResponse;
|
||||||
import org.elasticsearch.action.admin.indices.delete.DeleteIndexAction;
|
import org.elasticsearch.action.admin.indices.delete.DeleteIndexAction;
|
||||||
import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequestBuilder;
|
import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequestBuilder;
|
||||||
import org.elasticsearch.action.admin.indices.delete.DeleteIndexResponse;
|
import org.elasticsearch.action.admin.indices.delete.DeleteIndexResponse;
|
||||||
|
@ -26,6 +30,7 @@ import org.elasticsearch.action.admin.indices.get.GetIndexRequestBuilder;
|
||||||
import org.elasticsearch.action.admin.indices.get.GetIndexResponse;
|
import org.elasticsearch.action.admin.indices.get.GetIndexResponse;
|
||||||
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingAction;
|
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingAction;
|
||||||
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest;
|
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest;
|
||||||
|
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequestBuilder;
|
||||||
import org.elasticsearch.action.admin.indices.recovery.RecoveryAction;
|
import org.elasticsearch.action.admin.indices.recovery.RecoveryAction;
|
||||||
import org.elasticsearch.action.admin.indices.recovery.RecoveryRequest;
|
import org.elasticsearch.action.admin.indices.recovery.RecoveryRequest;
|
||||||
import org.elasticsearch.action.admin.indices.recovery.RecoveryResponse;
|
import org.elasticsearch.action.admin.indices.recovery.RecoveryResponse;
|
||||||
|
@ -33,15 +38,23 @@ import org.elasticsearch.action.admin.indices.refresh.RefreshAction;
|
||||||
import org.elasticsearch.action.admin.indices.refresh.RefreshRequest;
|
import org.elasticsearch.action.admin.indices.refresh.RefreshRequest;
|
||||||
import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsAction;
|
import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsAction;
|
||||||
import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||||
|
import org.elasticsearch.action.bulk.BulkItemResponse;
|
||||||
|
import org.elasticsearch.action.bulk.BulkRequest;
|
||||||
|
import org.elasticsearch.action.bulk.BulkResponse;
|
||||||
|
import org.elasticsearch.action.delete.DeleteRequest;
|
||||||
|
import org.elasticsearch.action.index.IndexRequest;
|
||||||
import org.elasticsearch.action.search.SearchAction;
|
import org.elasticsearch.action.search.SearchAction;
|
||||||
import org.elasticsearch.action.search.SearchRequestBuilder;
|
import org.elasticsearch.action.search.SearchRequestBuilder;
|
||||||
import org.elasticsearch.action.search.SearchResponse;
|
import org.elasticsearch.action.search.SearchResponse;
|
||||||
|
import org.elasticsearch.action.update.UpdateRequest;
|
||||||
import org.elasticsearch.client.ElasticsearchClient;
|
import org.elasticsearch.client.ElasticsearchClient;
|
||||||
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
||||||
import org.elasticsearch.cluster.health.ClusterHealthStatus;
|
import org.elasticsearch.cluster.health.ClusterHealthStatus;
|
||||||
import org.elasticsearch.cluster.metadata.AliasMetaData;
|
import org.elasticsearch.cluster.metadata.AliasMetaData;
|
||||||
|
import org.elasticsearch.common.bytes.BytesReference;
|
||||||
import org.elasticsearch.common.io.Streams;
|
import org.elasticsearch.common.io.Streams;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
import org.elasticsearch.common.unit.ByteSizeValue;
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
import org.elasticsearch.common.xcontent.XContentType;
|
import org.elasticsearch.common.xcontent.XContentType;
|
||||||
import org.elasticsearch.search.SearchHit;
|
import org.elasticsearch.search.SearchHit;
|
||||||
|
@ -53,6 +66,7 @@ import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import java.io.StringWriter;
|
import java.io.StringWriter;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
@ -61,13 +75,15 @@ import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.TreeSet;
|
import java.util.TreeSet;
|
||||||
|
import java.util.concurrent.ExecutionException;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.regex.Matcher;
|
import java.util.regex.Matcher;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractClient {
|
public abstract class AbstractClient implements ClientMethods {
|
||||||
|
|
||||||
private static final Logger logger = LogManager.getLogger(AbstractClient.class.getName());
|
private static final Logger logger = LogManager.getLogger(AbstractClient.class.getName());
|
||||||
|
|
||||||
|
@ -75,16 +91,168 @@ public abstract class AbstractClient {
|
||||||
|
|
||||||
private Settings settings;
|
private Settings settings;
|
||||||
|
|
||||||
private Map<String, String> mappings = new HashMap<>();
|
private Map<String, String> mappings;
|
||||||
|
|
||||||
public abstract ElasticsearchClient client();
|
private ElasticsearchClient client;
|
||||||
|
|
||||||
protected abstract void createClient(Settings settings) throws IOException;
|
protected BulkProcessor bulkProcessor;
|
||||||
|
|
||||||
public abstract void shutdown();
|
protected BulkMetric metric;
|
||||||
|
|
||||||
public Settings.Builder getSettingsBuilder() {
|
protected BulkControl control;
|
||||||
return settingsBuilder();
|
|
||||||
|
protected Throwable throwable;
|
||||||
|
|
||||||
|
protected boolean closed;
|
||||||
|
|
||||||
|
protected int maxActionsPerRequest = DEFAULT_MAX_ACTIONS_PER_REQUEST;
|
||||||
|
|
||||||
|
protected int maxConcurrentRequests = DEFAULT_MAX_CONCURRENT_REQUESTS;
|
||||||
|
|
||||||
|
protected ByteSizeValue maxVolume = DEFAULT_MAX_VOLUME_PER_REQUEST;
|
||||||
|
|
||||||
|
protected TimeValue flushInterval = DEFAULT_FLUSH_INTERVAL;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public AbstractClient init(ElasticsearchClient client, Settings settings,
|
||||||
|
final BulkMetric metric, final BulkControl control) {
|
||||||
|
this.client = client;
|
||||||
|
this.mappings = new HashMap<>();
|
||||||
|
if (settings == null) {
|
||||||
|
settings = findSettings();
|
||||||
|
}
|
||||||
|
if (client == null && settings != null) {
|
||||||
|
try {
|
||||||
|
this.client = createClient(settings);
|
||||||
|
} catch (IOException e) {
|
||||||
|
logger.error(e.getMessage(), e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.metric = metric;
|
||||||
|
this.control = control;
|
||||||
|
if (metric != null) {
|
||||||
|
metric.start();
|
||||||
|
}
|
||||||
|
resetSettings();
|
||||||
|
BulkProcessor.Listener listener = new BulkProcessor.Listener() {
|
||||||
|
|
||||||
|
private final Logger logger = LogManager.getLogger(getClass().getName() + ".Listener");
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void beforeBulk(long executionId, BulkRequest request) {
|
||||||
|
long l = -1;
|
||||||
|
if (metric != null) {
|
||||||
|
metric.getCurrentIngest().inc();
|
||||||
|
l = metric.getCurrentIngest().getCount();
|
||||||
|
int n = request.numberOfActions();
|
||||||
|
metric.getSubmitted().inc(n);
|
||||||
|
metric.getCurrentIngestNumDocs().inc(n);
|
||||||
|
metric.getTotalIngestSizeInBytes().inc(request.estimatedSizeInBytes());
|
||||||
|
}
|
||||||
|
logger.debug("before bulk [{}] [actions={}] [bytes={}] [concurrent requests={}]",
|
||||||
|
executionId,
|
||||||
|
request.numberOfActions(),
|
||||||
|
request.estimatedSizeInBytes(),
|
||||||
|
l);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void afterBulk(long executionId, BulkRequest request, BulkResponse response) {
|
||||||
|
long l = -1;
|
||||||
|
if (metric != null) {
|
||||||
|
metric.getCurrentIngest().dec();
|
||||||
|
l = metric.getCurrentIngest().getCount();
|
||||||
|
metric.getSucceeded().inc(response.getItems().length);
|
||||||
|
}
|
||||||
|
int n = 0;
|
||||||
|
for (BulkItemResponse itemResponse : response.getItems()) {
|
||||||
|
if (metric != null) {
|
||||||
|
metric.getCurrentIngest().dec(itemResponse.getIndex(), itemResponse.getType(), itemResponse.getId());
|
||||||
|
}
|
||||||
|
if (itemResponse.isFailed()) {
|
||||||
|
n++;
|
||||||
|
if (metric != null) {
|
||||||
|
metric.getSucceeded().dec(1);
|
||||||
|
metric.getFailed().inc(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (metric != null) {
|
||||||
|
logger.debug("after bulk [{}] [succeeded={}] [failed={}] [{}ms] {} concurrent requests",
|
||||||
|
executionId,
|
||||||
|
metric.getSucceeded().getCount(),
|
||||||
|
metric.getFailed().getCount(),
|
||||||
|
response.getTook().millis(),
|
||||||
|
l);
|
||||||
|
}
|
||||||
|
if (n > 0) {
|
||||||
|
logger.error("bulk [{}] failed with {} failed items, failure message = {}",
|
||||||
|
executionId, n, response.buildFailureMessage());
|
||||||
|
} else {
|
||||||
|
if (metric != null) {
|
||||||
|
metric.getCurrentIngestNumDocs().dec(response.getItems().length);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void afterBulk(long executionId, BulkRequest request, Throwable failure) {
|
||||||
|
if (metric != null) {
|
||||||
|
metric.getCurrentIngest().dec();
|
||||||
|
}
|
||||||
|
throwable = failure;
|
||||||
|
closed = true;
|
||||||
|
logger.error("after bulk [" + executionId + "] error", failure);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
if (this.client != null) {
|
||||||
|
BulkProcessor.Builder builder = BulkProcessor.builder(this.client, listener)
|
||||||
|
.setBulkActions(maxActionsPerRequest)
|
||||||
|
.setConcurrentRequests(maxConcurrentRequests)
|
||||||
|
.setFlushInterval(flushInterval);
|
||||||
|
if (maxVolume != null) {
|
||||||
|
builder.setBulkSize(maxVolume);
|
||||||
|
}
|
||||||
|
this.bulkProcessor = builder.build();
|
||||||
|
}
|
||||||
|
this.closed = false;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected abstract ElasticsearchClient createClient(Settings settings) throws IOException;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ElasticsearchClient client() {
|
||||||
|
return client;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods maxActionsPerRequest(int maxActionsPerRequest) {
|
||||||
|
this.maxActionsPerRequest = maxActionsPerRequest;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods maxConcurrentRequests(int maxConcurrentRequests) {
|
||||||
|
this.maxConcurrentRequests = maxConcurrentRequests;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods maxVolumePerRequest(ByteSizeValue maxVolume) {
|
||||||
|
this.maxVolume = maxVolume;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods flushIngestInterval(TimeValue flushInterval) {
|
||||||
|
this.flushInterval = flushInterval;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BulkMetric getMetric() {
|
||||||
|
return metric;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void resetSettings() {
|
public void resetSettings() {
|
||||||
|
@ -119,7 +287,7 @@ public abstract class AbstractClient {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setting(InputStream in) throws IOException {
|
public void setting(InputStream in) throws IOException {
|
||||||
settingsBuilder = Settings.builder().loadFromStream(".json", in);
|
settingsBuilder = Settings.builder().loadFromStream(".json", in, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Settings.Builder settingsBuilder() {
|
public Settings.Builder settingsBuilder() {
|
||||||
|
@ -136,42 +304,248 @@ public abstract class AbstractClient {
|
||||||
return settingsBuilder.build();
|
return settingsBuilder.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public void mapping(String type, String mapping) throws IOException {
|
public void mapping(String type, String mapping) throws IOException {
|
||||||
mappings.put(type, mapping);
|
mappings.put(type, mapping);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public void mapping(String type, InputStream in) throws IOException {
|
public void mapping(String type, InputStream in) throws IOException {
|
||||||
if (type == null) {
|
if (type == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
StringWriter sw = new StringWriter();
|
StringWriter sw = new StringWriter();
|
||||||
Streams.copy(new InputStreamReader(in), sw);
|
Streams.copy(new InputStreamReader(in, StandardCharsets.UTF_8), sw);
|
||||||
mappings.put(type, sw.toString());
|
mappings.put(type, sw.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
public Map<String, String> mappings() {
|
@Override
|
||||||
return mappings.isEmpty() ? null : mappings;
|
public ClientMethods index(String index, String type, String id, boolean create, BytesReference source) {
|
||||||
|
return indexRequest(new IndexRequest(index).type(type).id(id).create(create).source(source, XContentType.JSON));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods index(String index, String type, String id, boolean create, String source) {
|
||||||
|
return indexRequest(new IndexRequest(index).type(type).id(id).create(create).source(source, XContentType.JSON));
|
||||||
|
}
|
||||||
|
|
||||||
public void updateIndexSetting(String index, String key, Object value) throws IOException {
|
@Override
|
||||||
|
public ClientMethods indexRequest(IndexRequest indexRequest) {
|
||||||
|
if (closed) {
|
||||||
|
throwClose();
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
if (metric != null) {
|
||||||
|
metric.getCurrentIngest().inc(indexRequest.index(), indexRequest.type(), indexRequest.id());
|
||||||
|
}
|
||||||
|
bulkProcessor.add(indexRequest);
|
||||||
|
} catch (Exception e) {
|
||||||
|
throwable = e;
|
||||||
|
closed = true;
|
||||||
|
logger.error("bulk add of index request failed: " + e.getMessage(), e);
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods delete(String index, String type, String id) {
|
||||||
|
return deleteRequest(new DeleteRequest(index).type(type).id(id));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods deleteRequest(DeleteRequest deleteRequest) {
|
||||||
|
if (closed) {
|
||||||
|
throwClose();
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
if (metric != null) {
|
||||||
|
metric.getCurrentIngest().inc(deleteRequest.index(), deleteRequest.type(), deleteRequest.id());
|
||||||
|
}
|
||||||
|
bulkProcessor.add(deleteRequest);
|
||||||
|
} catch (Exception e) {
|
||||||
|
throwable = e;
|
||||||
|
closed = true;
|
||||||
|
logger.error("bulk add of delete failed: " + e.getMessage(), e);
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods update(String index, String type, String id, BytesReference source) {
|
||||||
|
return updateRequest(new UpdateRequest().index(index).type(type).id(id).upsert(source, XContentType.JSON));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods update(String index, String type, String id, String source) {
|
||||||
|
return updateRequest(new UpdateRequest().index(index).type(type).id(id).upsert(source, XContentType.JSON));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods updateRequest(UpdateRequest updateRequest) {
|
||||||
|
if (closed) {
|
||||||
|
throwClose();
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
if (metric != null) {
|
||||||
|
metric.getCurrentIngest().inc(updateRequest.index(), updateRequest.type(), updateRequest.id());
|
||||||
|
}
|
||||||
|
bulkProcessor.add(updateRequest);
|
||||||
|
} catch (Exception e) {
|
||||||
|
throwable = e;
|
||||||
|
closed = true;
|
||||||
|
logger.error("bulk add of update request failed: " + e.getMessage(), e);
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods startBulk(String index, long startRefreshIntervalSeconds, long stopRefreshIntervalSeconds)
|
||||||
|
throws IOException {
|
||||||
|
if (control == null) {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
if (!control.isBulk(index) && startRefreshIntervalSeconds > 0L && stopRefreshIntervalSeconds > 0L) {
|
||||||
|
control.startBulk(index, startRefreshIntervalSeconds, stopRefreshIntervalSeconds);
|
||||||
|
updateIndexSetting(index, "refresh_interval", startRefreshIntervalSeconds + "s");
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods stopBulk(String index) throws IOException {
|
||||||
|
if (control == null) {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
if (control.isBulk(index)) {
|
||||||
|
long secs = control.getStopBulkRefreshIntervals().get(index);
|
||||||
|
if (secs > 0L) {
|
||||||
|
updateIndexSetting(index, "refresh_interval", secs + "s");
|
||||||
|
}
|
||||||
|
control.finishBulk(index);
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods flushIngest() {
|
||||||
|
if (closed) {
|
||||||
|
throwClose();
|
||||||
|
}
|
||||||
|
logger.debug("flushing bulk processor");
|
||||||
|
bulkProcessor.flush();
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public synchronized void shutdown() throws IOException {
|
||||||
|
if (closed) {
|
||||||
|
throwClose();
|
||||||
|
}
|
||||||
|
if (bulkProcessor != null) {
|
||||||
|
logger.info("closing bulk processor...");
|
||||||
|
bulkProcessor.close();
|
||||||
|
}
|
||||||
|
if (metric != null) {
|
||||||
|
logger.info("stopping metric");
|
||||||
|
metric.stop();
|
||||||
|
}
|
||||||
|
if (control != null && control.indices() != null && !control.indices().isEmpty()) {
|
||||||
|
logger.info("stopping bulk mode for indices {}...", control.indices());
|
||||||
|
for (String index : control.indices()) {
|
||||||
|
stopBulk(index);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods newIndex(String index) {
|
||||||
|
if (closed) {
|
||||||
|
throwClose();
|
||||||
|
}
|
||||||
|
return newIndex(index, null, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods newIndex(String index, String type, InputStream settings, InputStream mappings) throws IOException {
|
||||||
|
resetSettings();
|
||||||
|
setting(settings);
|
||||||
|
mapping(type, mappings);
|
||||||
|
return newIndex(index, settings(), this.mappings);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods newIndex(String index, Settings settings, Map<String, String> mappings) {
|
||||||
|
if (closed) {
|
||||||
|
throwClose();
|
||||||
|
}
|
||||||
if (client() == null) {
|
if (client() == null) {
|
||||||
return;
|
logger.warn("no client for create index");
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
if (index == null) {
|
if (index == null) {
|
||||||
throw new IOException("no index name given");
|
logger.warn("no index name given to create index");
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
if (key == null) {
|
CreateIndexRequestBuilder createIndexRequestBuilder =
|
||||||
throw new IOException("no key given");
|
new CreateIndexRequestBuilder(client(), CreateIndexAction.INSTANCE).setIndex(index);
|
||||||
|
if (settings != null) {
|
||||||
|
logger.info("found settings {}", settings.toString());
|
||||||
|
createIndexRequestBuilder.setSettings(settings);
|
||||||
}
|
}
|
||||||
if (value == null) {
|
if (mappings != null) {
|
||||||
throw new IOException("no value given");
|
for (Map.Entry<String, String> entry : mappings.entrySet()) {
|
||||||
|
String type = entry.getKey();
|
||||||
|
String mapping = entry.getValue();
|
||||||
|
logger.info("found mapping for {}", type);
|
||||||
|
createIndexRequestBuilder.addMapping(type, mapping, XContentType.JSON);
|
||||||
}
|
}
|
||||||
Settings.Builder updateSettingsBuilder = Settings.builder();
|
}
|
||||||
updateSettingsBuilder.put(key, value.toString());
|
CreateIndexResponse createIndexResponse = createIndexRequestBuilder.execute().actionGet();
|
||||||
UpdateSettingsRequest updateSettingsRequest = new UpdateSettingsRequest(index)
|
logger.info("index {} created: {}", index, createIndexResponse);
|
||||||
.settings(updateSettingsBuilder);
|
return this;
|
||||||
client().execute(UpdateSettingsAction.INSTANCE, updateSettingsRequest).actionGet();
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods newMapping(String index, String type, Map<String, Object> mapping) {
|
||||||
|
PutMappingRequestBuilder putMappingRequestBuilder =
|
||||||
|
new PutMappingRequestBuilder(client(), PutMappingAction.INSTANCE)
|
||||||
|
.setIndices(index)
|
||||||
|
.setType(type)
|
||||||
|
.setSource(mapping);
|
||||||
|
putMappingRequestBuilder.execute().actionGet();
|
||||||
|
logger.info("mapping created for index {} and type {}", index, type);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods deleteIndex(String index) {
|
||||||
|
if (closed) {
|
||||||
|
throwClose();
|
||||||
|
}
|
||||||
|
if (client == null) {
|
||||||
|
logger.warn("no client");
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
if (index == null) {
|
||||||
|
logger.warn("no index name given to delete index");
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
DeleteIndexRequestBuilder deleteIndexRequestBuilder =
|
||||||
|
new DeleteIndexRequestBuilder(client(), DeleteIndexAction.INSTANCE, index);
|
||||||
|
deleteIndexRequestBuilder.execute().actionGet();
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClientMethods waitForResponses(TimeValue maxWaitTime) throws InterruptedException, ExecutionException {
|
||||||
|
if (closed) {
|
||||||
|
throwClose();
|
||||||
|
}
|
||||||
|
while (!bulkProcessor.awaitClose(maxWaitTime.getMillis(), TimeUnit.MILLISECONDS)) {
|
||||||
|
logger.warn("still waiting for responses");
|
||||||
|
}
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void waitForRecovery() throws IOException {
|
public void waitForRecovery() throws IOException {
|
||||||
|
@ -181,6 +555,7 @@ public abstract class AbstractClient {
|
||||||
client().execute(RecoveryAction.INSTANCE, new RecoveryRequest()).actionGet();
|
client().execute(RecoveryAction.INSTANCE, new RecoveryRequest()).actionGet();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public int waitForRecovery(String index) throws IOException {
|
public int waitForRecovery(String index) throws IOException {
|
||||||
if (client() == null) {
|
if (client() == null) {
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -195,6 +570,7 @@ public abstract class AbstractClient {
|
||||||
return shards;
|
return shards;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public void waitForCluster(String statusString, TimeValue timeout) throws IOException {
|
public void waitForCluster(String statusString, TimeValue timeout) throws IOException {
|
||||||
if (client() == null) {
|
if (client() == null) {
|
||||||
return;
|
return;
|
||||||
|
@ -283,8 +659,8 @@ public abstract class AbstractClient {
|
||||||
if (client() == null) {
|
if (client() == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!mappings().isEmpty()) {
|
if (!mappings.isEmpty()) {
|
||||||
for (Map.Entry<String, String> me : mappings().entrySet()) {
|
for (Map.Entry<String, String> me : mappings.entrySet()) {
|
||||||
client().execute(PutMappingAction.INSTANCE,
|
client().execute(PutMappingAction.INSTANCE,
|
||||||
new PutMappingRequest(index).type(me.getKey()).source(me.getValue(), XContentType.JSON)).actionGet();
|
new PutMappingRequest(index).type(me.getKey()).source(me.getValue(), XContentType.JSON)).actionGet();
|
||||||
}
|
}
|
||||||
|
@ -333,25 +709,13 @@ public abstract class AbstractClient {
|
||||||
return getFilters(getAliasesRequestBuilder.setIndices(index).execute().actionGet());
|
return getFilters(getAliasesRequestBuilder.setIndices(index).execute().actionGet());
|
||||||
}
|
}
|
||||||
|
|
||||||
private Map<String, String> getFilters(GetAliasesResponse getAliasesResponse) {
|
|
||||||
Map<String, String> result = new HashMap<>();
|
|
||||||
for (ObjectObjectCursor<String, List<AliasMetaData>> object : getAliasesResponse.getAliases()) {
|
|
||||||
List<AliasMetaData> aliasMetaDataList = object.value;
|
|
||||||
for (AliasMetaData aliasMetaData : aliasMetaDataList) {
|
|
||||||
if (aliasMetaData.filteringRequired()) {
|
|
||||||
result.put(aliasMetaData.alias(), new String(aliasMetaData.getFilter().uncompressed()));
|
|
||||||
} else {
|
|
||||||
result.put(aliasMetaData.alias(), null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
@Override
|
||||||
public void switchAliases(String index, String concreteIndex, List<String> extraAliases) {
|
public void switchAliases(String index, String concreteIndex, List<String> extraAliases) {
|
||||||
switchAliases(index, concreteIndex, extraAliases, null);
|
switchAliases(index, concreteIndex, extraAliases, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public void switchAliases(String index, String concreteIndex,
|
public void switchAliases(String index, String concreteIndex,
|
||||||
List<String> extraAliases, IndexAliasAdder adder) {
|
List<String> extraAliases, IndexAliasAdder adder) {
|
||||||
if (client() == null) {
|
if (client() == null) {
|
||||||
|
@ -414,6 +778,7 @@ public abstract class AbstractClient {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public void performRetentionPolicy(String index, String concreteIndex, int timestampdiff, int mintokeep) {
|
public void performRetentionPolicy(String index, String concreteIndex, int timestampdiff, int mintokeep) {
|
||||||
if (client() == null) {
|
if (client() == null) {
|
||||||
return;
|
return;
|
||||||
|
@ -472,6 +837,7 @@ public abstract class AbstractClient {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public Long mostRecentDocument(String index, String timestampfieldname) {
|
public Long mostRecentDocument(String index, String timestampfieldname) {
|
||||||
if (client() == null) {
|
if (client() == null) {
|
||||||
return null;
|
return null;
|
||||||
|
@ -494,4 +860,68 @@ public abstract class AbstractClient {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean hasThrowable() {
|
||||||
|
return throwable != null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Throwable getThrowable() {
|
||||||
|
return throwable;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected static void throwClose() {
|
||||||
|
throw new ElasticsearchException("client is closed");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
protected void updateIndexSetting(String index, String key, Object value) throws IOException {
|
||||||
|
if (client() == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (index == null) {
|
||||||
|
throw new IOException("no index name given");
|
||||||
|
}
|
||||||
|
if (key == null) {
|
||||||
|
throw new IOException("no key given");
|
||||||
|
}
|
||||||
|
if (value == null) {
|
||||||
|
throw new IOException("no value given");
|
||||||
|
}
|
||||||
|
Settings.Builder updateSettingsBuilder = Settings.builder();
|
||||||
|
updateSettingsBuilder.put(key, value.toString());
|
||||||
|
UpdateSettingsRequest updateSettingsRequest = new UpdateSettingsRequest(index)
|
||||||
|
.settings(updateSettingsBuilder);
|
||||||
|
client().execute(UpdateSettingsAction.INSTANCE, updateSettingsRequest).actionGet();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Map<String, String> getFilters(GetAliasesResponse getAliasesResponse) {
|
||||||
|
Map<String, String> result = new HashMap<>();
|
||||||
|
for (ObjectObjectCursor<String, List<AliasMetaData>> object : getAliasesResponse.getAliases()) {
|
||||||
|
List<AliasMetaData> aliasMetaDataList = object.value;
|
||||||
|
for (AliasMetaData aliasMetaData : aliasMetaDataList) {
|
||||||
|
if (aliasMetaData.filteringRequired()) {
|
||||||
|
String metaData = new String(aliasMetaData.getFilter().uncompressed(), StandardCharsets.UTF_8);
|
||||||
|
result.put(aliasMetaData.alias(), metaData);
|
||||||
|
} else {
|
||||||
|
result.put(aliasMetaData.alias(), null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Settings findSettings() {
|
||||||
|
Settings.Builder settingsBuilder = Settings.builder();
|
||||||
|
settingsBuilder.put("host", "localhost");
|
||||||
|
try {
|
||||||
|
String hostname = NetworkUtils.getLocalAddress().getHostName();
|
||||||
|
logger.debug("the hostname is {}", hostname);
|
||||||
|
settingsBuilder.put("host", hostname)
|
||||||
|
.put("port", 9300);
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.warn(e.getMessage(), e);
|
||||||
|
}
|
||||||
|
return settingsBuilder.build();
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
@ -18,5 +18,4 @@ public interface BulkControl {
|
||||||
Map<String, Long> getStartBulkRefreshIntervals();
|
Map<String, Long> getStartBulkRefreshIntervals();
|
||||||
|
|
||||||
Map<String, Long> getStopBulkRefreshIntervals();
|
Map<String, Long> getStopBulkRefreshIntervals();
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client;
|
||||||
|
|
||||||
import org.xbib.metrics.Count;
|
import org.xbib.metrics.Count;
|
||||||
import org.xbib.metrics.Metered;
|
import org.xbib.metrics.Metered;
|
||||||
|
@ -27,5 +27,4 @@ public interface BulkMetric {
|
||||||
void stop();
|
void stop();
|
||||||
|
|
||||||
long elapsed();
|
long elapsed();
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client;
|
||||||
|
|
||||||
import org.elasticsearch.action.ActionListener;
|
import org.elasticsearch.action.ActionListener;
|
||||||
import org.elasticsearch.action.bulk.BulkAction;
|
import org.elasticsearch.action.bulk.BulkAction;
|
||||||
|
@ -7,13 +7,11 @@ import org.elasticsearch.action.bulk.BulkResponse;
|
||||||
import org.elasticsearch.action.delete.DeleteRequest;
|
import org.elasticsearch.action.delete.DeleteRequest;
|
||||||
import org.elasticsearch.action.index.IndexRequest;
|
import org.elasticsearch.action.index.IndexRequest;
|
||||||
import org.elasticsearch.action.update.UpdateRequest;
|
import org.elasticsearch.action.update.UpdateRequest;
|
||||||
import org.elasticsearch.client.Client;
|
import org.elasticsearch.client.ElasticsearchClient;
|
||||||
import org.elasticsearch.common.Nullable;
|
import org.elasticsearch.common.Nullable;
|
||||||
import org.elasticsearch.common.unit.ByteSizeUnit;
|
import org.elasticsearch.common.unit.ByteSizeUnit;
|
||||||
import org.elasticsearch.common.unit.ByteSizeValue;
|
import org.elasticsearch.common.unit.ByteSizeValue;
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
import org.elasticsearch.common.util.concurrent.EsExecutors;
|
|
||||||
import org.elasticsearch.common.util.concurrent.FutureUtils;
|
|
||||||
|
|
||||||
import java.io.Closeable;
|
import java.io.Closeable;
|
||||||
import java.util.concurrent.Executors;
|
import java.util.concurrent.Executors;
|
||||||
|
@ -31,9 +29,9 @@ import java.util.concurrent.atomic.AtomicLong;
|
||||||
*/
|
*/
|
||||||
public class BulkProcessor implements Closeable {
|
public class BulkProcessor implements Closeable {
|
||||||
|
|
||||||
private final int bulkActions;
|
private final int maximumBulkActionsPerRequest;
|
||||||
|
|
||||||
private final long bulkSize;
|
private final long maximumBulkRequestByteSize;
|
||||||
|
|
||||||
private final ScheduledThreadPoolExecutor scheduler;
|
private final ScheduledThreadPoolExecutor scheduler;
|
||||||
|
|
||||||
|
@ -41,26 +39,24 @@ public class BulkProcessor implements Closeable {
|
||||||
|
|
||||||
private final AtomicLong executionIdGen = new AtomicLong();
|
private final AtomicLong executionIdGen = new AtomicLong();
|
||||||
|
|
||||||
private final BulkRequestHandler bulkRequestHandler;
|
private final BulkExecutor bulkExecutor;
|
||||||
|
|
||||||
private BulkRequest bulkRequest;
|
private BulkRequest bulkRequest;
|
||||||
|
|
||||||
private volatile boolean closed = false;
|
private volatile boolean closed = false;
|
||||||
|
|
||||||
private BulkProcessor(Client client, Listener listener, @Nullable String name, int concurrentRequests,
|
private BulkProcessor(ElasticsearchClient client, Listener listener, int maximumConcurrentBulkRequests,
|
||||||
int bulkActions, ByteSizeValue bulkSize, @Nullable TimeValue flushInterval) {
|
int maximumBulkActionsPerRequest, ByteSizeValue maximumBulkRequestByteSize,
|
||||||
this.bulkActions = bulkActions;
|
@Nullable TimeValue flushInterval) {
|
||||||
this.bulkSize = bulkSize.getBytes();
|
this.maximumBulkActionsPerRequest = maximumBulkActionsPerRequest;
|
||||||
|
this.maximumBulkRequestByteSize = maximumBulkRequestByteSize.getBytes();
|
||||||
this.bulkRequest = new BulkRequest();
|
this.bulkRequest = new BulkRequest();
|
||||||
this.bulkRequestHandler = concurrentRequests == 0 ?
|
this.bulkExecutor = maximumConcurrentBulkRequests == 0 ?
|
||||||
new SyncBulkRequestHandler(client, listener) :
|
new SyncBulkExecutor(client, listener) :
|
||||||
new AsyncBulkRequestHandler(client, listener, concurrentRequests);
|
new AsyncBulkExecutor(client, listener, maximumConcurrentBulkRequests);
|
||||||
|
|
||||||
if (flushInterval != null) {
|
if (flushInterval != null) {
|
||||||
this.scheduler = (ScheduledThreadPoolExecutor) Executors.newScheduledThreadPool(1,
|
this.scheduler = (ScheduledThreadPoolExecutor) Executors.newScheduledThreadPool(1);
|
||||||
EsExecutors.daemonThreadFactory(client.settings(),
|
|
||||||
name != null ? "[" + name + "]" : "" + "bulk_processor"));
|
|
||||||
this.scheduler.setExecuteExistingDelayedTasksAfterShutdownPolicy(false);
|
this.scheduler.setExecuteExistingDelayedTasksAfterShutdownPolicy(false);
|
||||||
this.scheduler.setContinueExistingPeriodicTasksAfterShutdownPolicy(false);
|
this.scheduler.setContinueExistingPeriodicTasksAfterShutdownPolicy(false);
|
||||||
this.scheduledFuture = this.scheduler.scheduleWithFixedDelay(new Flush(), flushInterval.millis(),
|
this.scheduledFuture = this.scheduler.scheduleWithFixedDelay(new Flush(), flushInterval.millis(),
|
||||||
|
@ -71,7 +67,7 @@ public class BulkProcessor implements Closeable {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Builder builder(Client client, Listener listener) {
|
public static Builder builder(ElasticsearchClient client, Listener listener) {
|
||||||
if (client == null) {
|
if (client == null) {
|
||||||
throw new NullPointerException("The client you specified while building a BulkProcessor is null");
|
throw new NullPointerException("The client you specified while building a BulkProcessor is null");
|
||||||
}
|
}
|
||||||
|
@ -111,13 +107,13 @@ public class BulkProcessor implements Closeable {
|
||||||
}
|
}
|
||||||
closed = true;
|
closed = true;
|
||||||
if (this.scheduledFuture != null) {
|
if (this.scheduledFuture != null) {
|
||||||
FutureUtils.cancel(this.scheduledFuture);
|
this.scheduledFuture.cancel(false);
|
||||||
this.scheduler.shutdown();
|
this.scheduler.shutdown();
|
||||||
}
|
}
|
||||||
if (bulkRequest.numberOfActions() > 0) {
|
if (bulkRequest.numberOfActions() > 0) {
|
||||||
execute();
|
execute();
|
||||||
}
|
}
|
||||||
return bulkRequestHandler.awaitClose(timeout, unit);
|
return bulkExecutor.awaitClose(timeout, unit);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -158,7 +154,7 @@ public class BulkProcessor implements Closeable {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds an {@link org.elasticsearch.action.update.UpdateRequest} to the list of actions to execute.
|
* Adds an {@link UpdateRequest} to the list of actions to execute.
|
||||||
*
|
*
|
||||||
* @param request request
|
* @param request request
|
||||||
* @return his bulk processor
|
* @return his bulk processor
|
||||||
|
@ -184,13 +180,13 @@ public class BulkProcessor implements Closeable {
|
||||||
private boolean isOverTheLimit() {
|
private boolean isOverTheLimit() {
|
||||||
final int count = bulkRequest.numberOfActions();
|
final int count = bulkRequest.numberOfActions();
|
||||||
return count > 0 &&
|
return count > 0 &&
|
||||||
(bulkActions != -1 && count >= bulkActions) ||
|
(maximumBulkActionsPerRequest != -1 && count >= maximumBulkActionsPerRequest) ||
|
||||||
(bulkSize != -1 && bulkRequest.estimatedSizeInBytes() >= bulkSize);
|
(maximumBulkRequestByteSize != -1 && bulkRequest.estimatedSizeInBytes() >= maximumBulkRequestByteSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void execute() {
|
private void execute() {
|
||||||
final BulkRequest myBulkRequest = this.bulkRequest;
|
final BulkRequest myBulkRequest = this.bulkRequest;
|
||||||
bulkRequestHandler.execute(myBulkRequest, executionIdGen.incrementAndGet());
|
bulkExecutor.execute(myBulkRequest, executionIdGen.incrementAndGet());
|
||||||
this.bulkRequest = new BulkRequest();
|
this.bulkRequest = new BulkRequest();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -245,9 +241,8 @@ public class BulkProcessor implements Closeable {
|
||||||
*/
|
*/
|
||||||
public static class Builder {
|
public static class Builder {
|
||||||
|
|
||||||
private final Client client;
|
private final ElasticsearchClient client;
|
||||||
private final Listener listener;
|
private final Listener listener;
|
||||||
private String name;
|
|
||||||
private int concurrentRequests = 1;
|
private int concurrentRequests = 1;
|
||||||
private int bulkActions = 1000;
|
private int bulkActions = 1000;
|
||||||
private ByteSizeValue bulkSize = new ByteSizeValue(5, ByteSizeUnit.MB);
|
private ByteSizeValue bulkSize = new ByteSizeValue(5, ByteSizeUnit.MB);
|
||||||
|
@ -260,22 +255,11 @@ public class BulkProcessor implements Closeable {
|
||||||
* @param client the client
|
* @param client the client
|
||||||
* @param listener the listener
|
* @param listener the listener
|
||||||
*/
|
*/
|
||||||
Builder(Client client, Listener listener) {
|
Builder(ElasticsearchClient client, Listener listener) {
|
||||||
this.client = client;
|
this.client = client;
|
||||||
this.listener = listener;
|
this.listener = listener;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets an optional name to identify this bulk processor.
|
|
||||||
*
|
|
||||||
* @param name name
|
|
||||||
* @return this builder
|
|
||||||
*/
|
|
||||||
public Builder setName(String name) {
|
|
||||||
this.name = name;
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the number of concurrent requests allowed to be executed. A value of 0 means that only a single
|
* Sets the number of concurrent requests allowed to be executed. A value of 0 means that only a single
|
||||||
* request will be allowed to be executed. A value of 1 means 1 concurrent request is allowed to be executed
|
* request will be allowed to be executed. A value of 1 means 1 concurrent request is allowed to be executed
|
||||||
|
@ -332,7 +316,7 @@ public class BulkProcessor implements Closeable {
|
||||||
* @return a bulk processor
|
* @return a bulk processor
|
||||||
*/
|
*/
|
||||||
public BulkProcessor build() {
|
public BulkProcessor build() {
|
||||||
return new BulkProcessor(client, listener, name, concurrentRequests, bulkActions, bulkSize, flushInterval);
|
return new BulkProcessor(client, listener, concurrentRequests, bulkActions, bulkSize, flushInterval);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -351,7 +335,7 @@ public class BulkProcessor implements Closeable {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
interface BulkRequestHandler {
|
interface BulkExecutor {
|
||||||
|
|
||||||
void execute(BulkRequest bulkRequest, long executionId);
|
void execute(BulkRequest bulkRequest, long executionId);
|
||||||
|
|
||||||
|
@ -359,11 +343,13 @@ public class BulkProcessor implements Closeable {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private class SyncBulkRequestHandler implements BulkRequestHandler {
|
private static class SyncBulkExecutor implements BulkExecutor {
|
||||||
private final Client client;
|
|
||||||
|
private final ElasticsearchClient client;
|
||||||
|
|
||||||
private final BulkProcessor.Listener listener;
|
private final BulkProcessor.Listener listener;
|
||||||
|
|
||||||
SyncBulkRequestHandler(Client client, BulkProcessor.Listener listener) {
|
SyncBulkExecutor(ElasticsearchClient client, BulkProcessor.Listener listener) {
|
||||||
this.client = client;
|
this.client = client;
|
||||||
this.listener = listener;
|
this.listener = listener;
|
||||||
}
|
}
|
||||||
|
@ -389,13 +375,17 @@ public class BulkProcessor implements Closeable {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private class AsyncBulkRequestHandler implements BulkRequestHandler {
|
private static class AsyncBulkExecutor implements BulkExecutor {
|
||||||
private final Client client;
|
|
||||||
|
private final ElasticsearchClient client;
|
||||||
|
|
||||||
private final BulkProcessor.Listener listener;
|
private final BulkProcessor.Listener listener;
|
||||||
|
|
||||||
private final Semaphore semaphore;
|
private final Semaphore semaphore;
|
||||||
|
|
||||||
private final int concurrentRequests;
|
private final int concurrentRequests;
|
||||||
|
|
||||||
private AsyncBulkRequestHandler(Client client, BulkProcessor.Listener listener, int concurrentRequests) {
|
private AsyncBulkExecutor(ElasticsearchClient client, BulkProcessor.Listener listener, int concurrentRequests) {
|
||||||
this.client = client;
|
this.client = client;
|
||||||
this.listener = listener;
|
this.listener = listener;
|
||||||
this.concurrentRequests = concurrentRequests;
|
this.concurrentRequests = concurrentRequests;
|
|
@ -1,12 +1,14 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client;
|
||||||
|
|
||||||
import org.elasticsearch.client.Client;
|
import org.elasticsearch.client.Client;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
import org.elasticsearch.common.unit.ByteSizeValue;
|
import org.elasticsearch.common.unit.ByteSizeValue;
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
import org.xbib.elasticsearch.extras.client.node.BulkNodeClient;
|
|
||||||
import org.xbib.elasticsearch.extras.client.transport.BulkTransportClient;
|
import java.io.IOException;
|
||||||
import org.xbib.elasticsearch.extras.client.transport.MockTransportClient;
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.ServiceLoader;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
@ -15,12 +17,25 @@ public final class ClientBuilder implements Parameters {
|
||||||
|
|
||||||
private final Settings.Builder settingsBuilder;
|
private final Settings.Builder settingsBuilder;
|
||||||
|
|
||||||
|
private Map<Class<? extends ClientMethods>, ClientMethods> clientMethodsMap;
|
||||||
|
|
||||||
private BulkMetric metric;
|
private BulkMetric metric;
|
||||||
|
|
||||||
private BulkControl control;
|
private BulkControl control;
|
||||||
|
|
||||||
public ClientBuilder() {
|
public ClientBuilder() {
|
||||||
settingsBuilder = Settings.builder();
|
this(Thread.currentThread().getContextClassLoader());
|
||||||
|
}
|
||||||
|
|
||||||
|
public ClientBuilder(ClassLoader classLoader) {
|
||||||
|
this.settingsBuilder = Settings.builder();
|
||||||
|
//settingsBuilder.put("node.name", "clientnode");
|
||||||
|
this.clientMethodsMap = new HashMap<>();
|
||||||
|
ServiceLoader<ClientMethods> serviceLoader = ServiceLoader.load(ClientMethods.class,
|
||||||
|
classLoader != null ? classLoader : Thread.currentThread().getContextClassLoader());
|
||||||
|
for (ClientMethods clientMethods : serviceLoader) {
|
||||||
|
clientMethodsMap.put(clientMethods.getClass(), clientMethods);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static ClientBuilder builder() {
|
public static ClientBuilder builder() {
|
||||||
|
@ -72,34 +87,18 @@ public final class ClientBuilder implements Parameters {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public BulkNodeClient toBulkNodeClient(Client client) {
|
public <C extends ClientMethods> C getClient(Class<C> clientClass) throws IOException {
|
||||||
|
return getClient(null, clientClass);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
public <C extends ClientMethods> C getClient(Client client, Class<C> clientClass) throws IOException {
|
||||||
Settings settings = settingsBuilder.build();
|
Settings settings = settingsBuilder.build();
|
||||||
return new BulkNodeClient()
|
return (C) clientMethodsMap.get(clientClass)
|
||||||
.maxActionsPerRequest(settings.getAsInt(MAX_ACTIONS_PER_REQUEST, DEFAULT_MAX_ACTIONS_PER_REQUEST))
|
.maxActionsPerRequest(settings.getAsInt(MAX_ACTIONS_PER_REQUEST, DEFAULT_MAX_ACTIONS_PER_REQUEST))
|
||||||
.maxConcurrentRequests(settings.getAsInt(MAX_CONCURRENT_REQUESTS, DEFAULT_MAX_CONCURRENT_REQUESTS))
|
.maxConcurrentRequests(settings.getAsInt(MAX_CONCURRENT_REQUESTS, DEFAULT_MAX_CONCURRENT_REQUESTS))
|
||||||
.maxVolumePerRequest(settings.getAsBytesSize(MAX_VOLUME_PER_REQUEST, DEFAULT_MAX_VOLUME_PER_REQUEST))
|
.maxVolumePerRequest(settings.getAsBytesSize(MAX_VOLUME_PER_REQUEST, DEFAULT_MAX_VOLUME_PER_REQUEST))
|
||||||
.flushIngestInterval(settings.getAsTime(FLUSH_INTERVAL, DEFAULT_FLUSH_INTERVAL))
|
.flushIngestInterval(settings.getAsTime(FLUSH_INTERVAL, DEFAULT_FLUSH_INTERVAL))
|
||||||
.init(client, metric, control);
|
.init(client, settings, metric, control);
|
||||||
}
|
}
|
||||||
|
|
||||||
public BulkTransportClient toBulkTransportClient() {
|
|
||||||
Settings settings = settingsBuilder.build();
|
|
||||||
return new BulkTransportClient()
|
|
||||||
.maxActionsPerRequest(settings.getAsInt(MAX_ACTIONS_PER_REQUEST, DEFAULT_MAX_ACTIONS_PER_REQUEST))
|
|
||||||
.maxConcurrentRequests(settings.getAsInt(MAX_CONCURRENT_REQUESTS, DEFAULT_MAX_CONCURRENT_REQUESTS))
|
|
||||||
.maxVolumePerRequest(settings.getAsBytesSize(MAX_VOLUME_PER_REQUEST, DEFAULT_MAX_VOLUME_PER_REQUEST))
|
|
||||||
.flushIngestInterval(settings.getAsTime(FLUSH_INTERVAL, DEFAULT_FLUSH_INTERVAL))
|
|
||||||
.init(settings, metric, control);
|
|
||||||
}
|
|
||||||
|
|
||||||
public MockTransportClient toMockTransportClient() {
|
|
||||||
Settings settings = settingsBuilder.build();
|
|
||||||
return new MockTransportClient()
|
|
||||||
.maxActionsPerRequest(settings.getAsInt(MAX_ACTIONS_PER_REQUEST, DEFAULT_MAX_ACTIONS_PER_REQUEST))
|
|
||||||
.maxConcurrentRequests(settings.getAsInt(MAX_CONCURRENT_REQUESTS, DEFAULT_MAX_CONCURRENT_REQUESTS))
|
|
||||||
.maxVolumePerRequest(settings.getAsBytesSize(MAX_VOLUME_PER_REQUEST, DEFAULT_MAX_VOLUME_PER_REQUEST))
|
|
||||||
.flushIngestInterval(settings.getAsTime(FLUSH_INTERVAL, DEFAULT_FLUSH_INTERVAL))
|
|
||||||
.init(settings, metric, control);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,9 +1,10 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client;
|
||||||
|
|
||||||
import org.elasticsearch.action.delete.DeleteRequest;
|
import org.elasticsearch.action.delete.DeleteRequest;
|
||||||
import org.elasticsearch.action.index.IndexRequest;
|
import org.elasticsearch.action.index.IndexRequest;
|
||||||
import org.elasticsearch.action.update.UpdateRequest;
|
import org.elasticsearch.action.update.UpdateRequest;
|
||||||
import org.elasticsearch.client.ElasticsearchClient;
|
import org.elasticsearch.client.ElasticsearchClient;
|
||||||
|
import org.elasticsearch.common.bytes.BytesReference;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
import org.elasticsearch.common.unit.ByteSizeValue;
|
import org.elasticsearch.common.unit.ByteSizeValue;
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
|
@ -19,27 +20,7 @@ import java.util.concurrent.ExecutionException;
|
||||||
*/
|
*/
|
||||||
public interface ClientMethods extends Parameters {
|
public interface ClientMethods extends Parameters {
|
||||||
|
|
||||||
/**
|
ClientMethods init(ElasticsearchClient client, Settings settings, BulkMetric metric, BulkControl control);
|
||||||
* Initialize new ingest client, wrap an existing Elasticsearch client, and set up metrics.
|
|
||||||
*
|
|
||||||
* @param client the Elasticsearch client
|
|
||||||
* @param metric metric
|
|
||||||
* @param control control
|
|
||||||
* @return this ingest
|
|
||||||
* @throws IOException if client could not get created
|
|
||||||
*/
|
|
||||||
ClientMethods init(ElasticsearchClient client, BulkMetric metric, BulkControl control) throws IOException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Initialize, create new ingest client, and set up metrics.
|
|
||||||
*
|
|
||||||
* @param settings settings
|
|
||||||
* @param metric metric
|
|
||||||
* @param control control
|
|
||||||
* @return this ingest
|
|
||||||
* @throws IOException if client could not get created
|
|
||||||
*/
|
|
||||||
ClientMethods init(Settings settings, BulkMetric metric, BulkControl control) throws IOException;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return Elasticsearch client.
|
* Return Elasticsearch client.
|
||||||
|
@ -49,15 +30,39 @@ public interface ClientMethods extends Parameters {
|
||||||
ElasticsearchClient client();
|
ElasticsearchClient client();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Index document.
|
* Bulked index request. Each request will be added to a queue for bulking requests.
|
||||||
|
* Submitting request will be done when bulk limits are exceeded.
|
||||||
*
|
*
|
||||||
* @param index the index
|
* @param index the index
|
||||||
* @param type the type
|
* @param type the type
|
||||||
* @param id the id
|
* @param id the id
|
||||||
|
* @param create true if document must be created
|
||||||
* @param source the source
|
* @param source the source
|
||||||
* @return this
|
* @return this
|
||||||
*/
|
*/
|
||||||
ClientMethods index(String index, String type, String id, String source);
|
ClientMethods index(String index, String type, String id, boolean create, BytesReference source);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bulked index request. Each request will be added to a queue for bulking requests.
|
||||||
|
* Submitting request will be done when bulk limits are exceeded.
|
||||||
|
*
|
||||||
|
* @param index the index
|
||||||
|
* @param type the type
|
||||||
|
* @param id the id
|
||||||
|
* @param create true if document must be created
|
||||||
|
* @param source the source
|
||||||
|
* @return this
|
||||||
|
*/
|
||||||
|
ClientMethods index(String index, String type, String id, boolean create, String source);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bulked index request. Each request will be added to a queue for bulking requests.
|
||||||
|
* Submitting request will be done when bulk limits are exceeded.
|
||||||
|
*
|
||||||
|
* @param indexRequest the index request to add
|
||||||
|
* @return this ingest
|
||||||
|
*/
|
||||||
|
ClientMethods indexRequest(IndexRequest indexRequest);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Delete document.
|
* Delete document.
|
||||||
|
@ -70,7 +75,31 @@ public interface ClientMethods extends Parameters {
|
||||||
ClientMethods delete(String index, String type, String id);
|
ClientMethods delete(String index, String type, String id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Update document. Use with precaution! Does not work in all cases.
|
* Bulked delete request. Each request will be added to a queue for bulking requests.
|
||||||
|
* Submitting request will be done when bulk limits are exceeded.
|
||||||
|
*
|
||||||
|
* @param deleteRequest the delete request to add
|
||||||
|
* @return this ingest
|
||||||
|
*/
|
||||||
|
ClientMethods deleteRequest(DeleteRequest deleteRequest);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bulked update request. Each request will be added to a queue for bulking requests.
|
||||||
|
* Submitting request will be done when bulk limits are exceeded.
|
||||||
|
* Note that updates only work correctly when all operations between nodes are synchronized.
|
||||||
|
*
|
||||||
|
* @param index the index
|
||||||
|
* @param type the type
|
||||||
|
* @param id the id
|
||||||
|
* @param source the source
|
||||||
|
* @return this
|
||||||
|
*/
|
||||||
|
ClientMethods update(String index, String type, String id, BytesReference source);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bulked update request. Each request will be added to a queue for bulking requests.
|
||||||
|
* Submitting request will be done when bulk limits are exceeded.
|
||||||
|
* Note that updates only work correctly when all operations between nodes are synchronized.
|
||||||
*
|
*
|
||||||
* @param index the index
|
* @param index the index
|
||||||
* @param type the type
|
* @param type the type
|
||||||
|
@ -80,6 +109,16 @@ public interface ClientMethods extends Parameters {
|
||||||
*/
|
*/
|
||||||
ClientMethods update(String index, String type, String id, String source);
|
ClientMethods update(String index, String type, String id, String source);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bulked update request. Each request will be added to a queue for bulking requests.
|
||||||
|
* Submitting request will be done when bulk limits are exceeded.
|
||||||
|
* Note that updates only work correctly when all operations between nodes are synchronized.
|
||||||
|
*
|
||||||
|
* @param updateRequest the update request to add
|
||||||
|
* @return this ingest
|
||||||
|
*/
|
||||||
|
ClientMethods updateRequest(UpdateRequest updateRequest);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the maximum number of actions per request.
|
* Set the maximum number of actions per request.
|
||||||
*
|
*
|
||||||
|
@ -205,34 +244,6 @@ public interface ClientMethods extends Parameters {
|
||||||
*/
|
*/
|
||||||
ClientMethods stopBulk(String index) throws IOException;
|
ClientMethods stopBulk(String index) throws IOException;
|
||||||
|
|
||||||
/**
|
|
||||||
* Bulked index request. Each request will be added to a queue for bulking requests.
|
|
||||||
* Submitting request will be done when bulk limits are exceeded.
|
|
||||||
*
|
|
||||||
* @param indexRequest the index request to add
|
|
||||||
* @return this ingest
|
|
||||||
*/
|
|
||||||
ClientMethods bulkIndex(IndexRequest indexRequest);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Bulked delete request. Each request will be added to a queue for bulking requests.
|
|
||||||
* Submitting request will be done when bulk limits are exceeded.
|
|
||||||
*
|
|
||||||
* @param deleteRequest the delete request to add
|
|
||||||
* @return this ingest
|
|
||||||
*/
|
|
||||||
ClientMethods bulkDelete(DeleteRequest deleteRequest);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Bulked update request. Each request will be added to a queue for bulking requests.
|
|
||||||
* Submitting request will be done when bulk limits are exceeded.
|
|
||||||
* Note that updates only work correctly when all operations between nodes are synchronized!
|
|
||||||
*
|
|
||||||
* @param updateRequest the update request to add
|
|
||||||
* @return this ingest
|
|
||||||
*/
|
|
||||||
ClientMethods bulkUpdate(UpdateRequest updateRequest);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Flush ingest, move all pending documents to the cluster.
|
* Flush ingest, move all pending documents to the cluster.
|
||||||
*
|
*
|
||||||
|
@ -388,5 +399,5 @@ public interface ClientMethods extends Parameters {
|
||||||
/**
|
/**
|
||||||
* Shutdown the ingesting.
|
* Shutdown the ingesting.
|
||||||
*/
|
*/
|
||||||
void shutdown();
|
void shutdown() throws IOException;
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client;
|
||||||
|
|
||||||
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequestBuilder;
|
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequestBuilder;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client;
|
||||||
|
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
|
@ -11,6 +11,7 @@ import java.net.NetworkInterface;
|
||||||
import java.net.SocketException;
|
import java.net.SocketException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
|
import java.util.Comparator;
|
||||||
import java.util.Enumeration;
|
import java.util.Enumeration;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
|
@ -234,7 +235,7 @@ public class NetworkUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void sortInterfaces(List<NetworkInterface> interfaces) {
|
private static void sortInterfaces(List<NetworkInterface> interfaces) {
|
||||||
Collections.sort(interfaces, (o1, o2) -> Integer.compare(o1.getIndex(), o2.getIndex()));
|
Collections.sort(interfaces, Comparator.comparingInt(NetworkInterface::getIndex));
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void sortAddresses(List<InetAddress> addressList) {
|
private static void sortAddresses(List<InetAddress> addressList) {
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client;
|
||||||
|
|
||||||
import org.elasticsearch.common.unit.ByteSizeUnit;
|
import org.elasticsearch.common.unit.ByteSizeUnit;
|
||||||
import org.elasticsearch.common.unit.ByteSizeValue;
|
import org.elasticsearch.common.unit.ByteSizeValue;
|
||||||
|
@ -24,5 +24,4 @@ public interface Parameters {
|
||||||
String MAX_VOLUME_PER_REQUEST = "max_volume_per_request";
|
String MAX_VOLUME_PER_REQUEST = "max_volume_per_request";
|
||||||
|
|
||||||
String FLUSH_INTERVAL = "flush_interval";
|
String FLUSH_INTERVAL = "flush_interval";
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
|
@ -1,32 +1,53 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client;
|
||||||
|
|
||||||
import org.xbib.metrics.Count;
|
import org.xbib.metrics.Count;
|
||||||
import org.xbib.metrics.CountMetric;
|
import org.xbib.metrics.CountMetric;
|
||||||
import org.xbib.metrics.Meter;
|
import org.xbib.metrics.Meter;
|
||||||
import org.xbib.metrics.Metered;
|
import org.xbib.metrics.Metered;
|
||||||
|
|
||||||
|
import java.util.concurrent.Executors;
|
||||||
|
import java.util.concurrent.ScheduledExecutorService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class SimpleBulkMetric implements BulkMetric {
|
public class SimpleBulkMetric implements BulkMetric {
|
||||||
|
|
||||||
private final Meter totalIngest = new Meter();
|
private final ScheduledExecutorService executorService;
|
||||||
|
|
||||||
private final Count totalIngestSizeInBytes = new CountMetric();
|
private final Meter totalIngest;
|
||||||
|
|
||||||
private final Count currentIngest = new CountMetric();
|
private final Count totalIngestSizeInBytes;
|
||||||
|
|
||||||
private final Count currentIngestNumDocs = new CountMetric();
|
private final Count currentIngest;
|
||||||
|
|
||||||
private final Count submitted = new CountMetric();
|
private final Count currentIngestNumDocs;
|
||||||
|
|
||||||
private final Count succeeded = new CountMetric();
|
private final Count submitted;
|
||||||
|
|
||||||
private final Count failed = new CountMetric();
|
private final Count succeeded;
|
||||||
|
|
||||||
|
private final Count failed;
|
||||||
|
|
||||||
private Long started;
|
private Long started;
|
||||||
|
|
||||||
private Long stopped;
|
private Long stopped;
|
||||||
|
|
||||||
|
public SimpleBulkMetric() {
|
||||||
|
this(Executors.newSingleThreadScheduledExecutor());
|
||||||
|
}
|
||||||
|
|
||||||
|
public SimpleBulkMetric(ScheduledExecutorService executorService) {
|
||||||
|
this.executorService = executorService;
|
||||||
|
totalIngest = new Meter(executorService);
|
||||||
|
totalIngestSizeInBytes = new CountMetric();
|
||||||
|
currentIngest = new CountMetric();
|
||||||
|
currentIngestNumDocs = new CountMetric();
|
||||||
|
submitted = new CountMetric();
|
||||||
|
succeeded = new CountMetric();
|
||||||
|
failed = new CountMetric();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Metered getTotalIngest() {
|
public Metered getTotalIngest() {
|
||||||
return totalIngest;
|
return totalIngest;
|
||||||
|
@ -65,13 +86,14 @@ public class SimpleBulkMetric implements BulkMetric {
|
||||||
@Override
|
@Override
|
||||||
public void start() {
|
public void start() {
|
||||||
this.started = System.nanoTime();
|
this.started = System.nanoTime();
|
||||||
totalIngest.spawn(5L);
|
totalIngest.start(5L);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void stop() {
|
public void stop() {
|
||||||
this.stopped = System.nanoTime();
|
this.stopped = System.nanoTime();
|
||||||
totalIngest.stop();
|
totalIngest.stop();
|
||||||
|
executorService.shutdownNow();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
|
@ -0,0 +1,4 @@
|
||||||
|
/**
|
||||||
|
* Classes for Elasticsearch client.
|
||||||
|
*/
|
||||||
|
package org.xbib.elasticsearch.client;
|
|
@ -1,7 +1,4 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client.common;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertTrue;
|
|
||||||
|
|
||||||
import com.carrotsearch.hppc.cursors.ObjectCursor;
|
import com.carrotsearch.hppc.cursors.ObjectCursor;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
@ -13,10 +10,8 @@ import org.elasticsearch.action.admin.indices.alias.get.GetAliasesRequestBuilder
|
||||||
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesResponse;
|
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesResponse;
|
||||||
import org.elasticsearch.action.admin.indices.create.CreateIndexRequest;
|
import org.elasticsearch.action.admin.indices.create.CreateIndexRequest;
|
||||||
import org.elasticsearch.common.Strings;
|
import org.elasticsearch.common.Strings;
|
||||||
import org.junit.Test;
|
import org.elasticsearch.test.ESSingleNodeTestCase;
|
||||||
import org.xbib.elasticsearch.NodeTestBase;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
@ -24,49 +19,44 @@ import java.util.TreeSet;
|
||||||
import java.util.regex.Matcher;
|
import java.util.regex.Matcher;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
/**
|
public class AliasTests extends ESSingleNodeTestCase {
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class AliasTest extends NodeTestBase {
|
|
||||||
|
|
||||||
private static final Logger logger = LogManager.getLogger(AliasTest.class.getName());
|
private static final Logger logger = LogManager.getLogger(AliasTests.class.getName());
|
||||||
|
|
||||||
@Test
|
public void testAlias() {
|
||||||
public void testAlias() throws IOException {
|
|
||||||
CreateIndexRequest indexRequest = new CreateIndexRequest("test");
|
CreateIndexRequest indexRequest = new CreateIndexRequest("test");
|
||||||
client("1").admin().indices().create(indexRequest).actionGet();
|
client().admin().indices().create(indexRequest).actionGet();
|
||||||
// put alias
|
// put alias
|
||||||
IndicesAliasesRequest indicesAliasesRequest = new IndicesAliasesRequest();
|
IndicesAliasesRequest indicesAliasesRequest = new IndicesAliasesRequest();
|
||||||
indicesAliasesRequest.addAliasAction(IndicesAliasesRequest.AliasActions.add()
|
indicesAliasesRequest.addAliasAction(IndicesAliasesRequest.AliasActions.add()
|
||||||
.index("test").alias("test_alias")
|
.index("test").alias("test_alias")
|
||||||
);
|
);
|
||||||
client("1").admin().indices().aliases(indicesAliasesRequest).actionGet();
|
client().admin().indices().aliases(indicesAliasesRequest).actionGet();
|
||||||
// get alias
|
// get alias
|
||||||
GetAliasesRequest getAliasesRequest = new GetAliasesRequest(Strings.EMPTY_ARRAY);
|
GetAliasesRequest getAliasesRequest = new GetAliasesRequest(Strings.EMPTY_ARRAY);
|
||||||
long t0 = System.nanoTime();
|
long t0 = System.nanoTime();
|
||||||
GetAliasesResponse getAliasesResponse = client("1").admin().indices().getAliases(getAliasesRequest).actionGet();
|
GetAliasesResponse getAliasesResponse = client().admin().indices().getAliases(getAliasesRequest).actionGet();
|
||||||
long t1 = (System.nanoTime() - t0) / 1000000;
|
long t1 = (System.nanoTime() - t0) / 1000000;
|
||||||
logger.info("{} time(ms) = {}", getAliasesResponse.getAliases(), t1);
|
logger.info("{} time(ms) = {}", getAliasesResponse.getAliases(), t1);
|
||||||
assertTrue(t1 >= 0);
|
assertTrue(t1 >= 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
public void testMostRecentIndex() {
|
||||||
public void testMostRecentIndex() throws IOException {
|
|
||||||
String alias = "test";
|
String alias = "test";
|
||||||
CreateIndexRequest indexRequest = new CreateIndexRequest("test20160101");
|
CreateIndexRequest indexRequest = new CreateIndexRequest("test20160101");
|
||||||
client("1").admin().indices().create(indexRequest).actionGet();
|
client().admin().indices().create(indexRequest).actionGet();
|
||||||
indexRequest = new CreateIndexRequest("test20160102");
|
indexRequest = new CreateIndexRequest("test20160102");
|
||||||
client("1").admin().indices().create(indexRequest).actionGet();
|
client().admin().indices().create(indexRequest).actionGet();
|
||||||
indexRequest = new CreateIndexRequest("test20160103");
|
indexRequest = new CreateIndexRequest("test20160103");
|
||||||
client("1").admin().indices().create(indexRequest).actionGet();
|
client().admin().indices().create(indexRequest).actionGet();
|
||||||
IndicesAliasesRequest indicesAliasesRequest = new IndicesAliasesRequest();
|
IndicesAliasesRequest indicesAliasesRequest = new IndicesAliasesRequest();
|
||||||
indicesAliasesRequest.addAliasAction(IndicesAliasesRequest.AliasActions.add()
|
indicesAliasesRequest.addAliasAction(IndicesAliasesRequest.AliasActions.add()
|
||||||
.indices("test20160101", "test20160102", "test20160103")
|
.indices("test20160101", "test20160102", "test20160103")
|
||||||
.alias(alias)
|
.alias(alias)
|
||||||
);
|
);
|
||||||
client("1").admin().indices().aliases(indicesAliasesRequest).actionGet();
|
client().admin().indices().aliases(indicesAliasesRequest).actionGet();
|
||||||
|
|
||||||
GetAliasesRequestBuilder getAliasesRequestBuilder = new GetAliasesRequestBuilder(client("1"),
|
GetAliasesRequestBuilder getAliasesRequestBuilder = new GetAliasesRequestBuilder(client(),
|
||||||
GetAliasesAction.INSTANCE);
|
GetAliasesAction.INSTANCE);
|
||||||
GetAliasesResponse getAliasesResponse = getAliasesRequestBuilder.setAliases(alias).execute().actionGet();
|
GetAliasesResponse getAliasesResponse = getAliasesRequestBuilder.setAliases(alias).execute().actionGet();
|
||||||
Pattern pattern = Pattern.compile("^(.*?)(\\d+)$");
|
Pattern pattern = Pattern.compile("^(.*?)(\\d+)$");
|
||||||
|
@ -83,5 +73,4 @@ public class AliasTest extends NodeTestBase {
|
||||||
assertEquals("test20160101", it.next());
|
assertEquals("test20160101", it.next());
|
||||||
logger.info("result={}", result);
|
logger.info("result={}", result);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client.common;
|
||||||
|
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
|
@ -9,18 +9,21 @@ import java.net.NetworkInterface;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.Enumeration;
|
import java.util.Enumeration;
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class NetworkTest {
|
public class NetworkTest {
|
||||||
|
|
||||||
private static final Logger logger = LogManager.getLogger(NetworkTest.class);
|
private static final Logger logger = LogManager.getLogger(NetworkTest.class);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Demonstrates the slowness oj Java network interface lookup on certain environments.
|
||||||
|
* May be a killer for ES node startup - so avoid automatic traversal of NICs at all costs.
|
||||||
|
*
|
||||||
|
* @throws Exception if test fails
|
||||||
|
*/
|
||||||
@Test
|
@Test
|
||||||
public void testNetwork() throws Exception {
|
public void testNetwork() throws Exception {
|
||||||
Enumeration<NetworkInterface> nets = NetworkInterface.getNetworkInterfaces();
|
Enumeration<NetworkInterface> nets = NetworkInterface.getNetworkInterfaces();
|
||||||
for (NetworkInterface netint : Collections.list(nets)) {
|
for (NetworkInterface netint : Collections.list(nets)) {
|
||||||
System.out.println("checking network interface = " + netint.getName());
|
logger.info("checking network interface = " + netint.getName());
|
||||||
Enumeration<InetAddress> inetAddresses = netint.getInetAddresses();
|
Enumeration<InetAddress> inetAddresses = netint.getInetAddresses();
|
||||||
for (InetAddress addr : Collections.list(inetAddresses)) {
|
for (InetAddress addr : Collections.list(inetAddresses)) {
|
||||||
logger.info("found address = " + addr.getHostAddress()
|
logger.info("found address = " + addr.getHostAddress()
|
|
@ -1,8 +1,4 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client.common;
|
||||||
|
|
||||||
import static org.elasticsearch.client.Requests.indexRequest;
|
|
||||||
import static org.elasticsearch.client.Requests.refreshRequest;
|
|
||||||
import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder;
|
|
||||||
|
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
|
@ -10,29 +6,24 @@ import org.elasticsearch.action.bulk.BulkAction;
|
||||||
import org.elasticsearch.action.bulk.BulkRequestBuilder;
|
import org.elasticsearch.action.bulk.BulkRequestBuilder;
|
||||||
import org.elasticsearch.action.search.SearchRequestBuilder;
|
import org.elasticsearch.action.search.SearchRequestBuilder;
|
||||||
import org.elasticsearch.action.search.SearchResponse;
|
import org.elasticsearch.action.search.SearchResponse;
|
||||||
import org.elasticsearch.client.Client;
|
import org.elasticsearch.client.Requests;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentFactory;
|
||||||
import org.elasticsearch.index.query.QueryBuilder;
|
import org.elasticsearch.index.query.QueryBuilder;
|
||||||
import org.elasticsearch.index.query.QueryBuilders;
|
import org.elasticsearch.index.query.QueryBuilders;
|
||||||
import org.elasticsearch.search.sort.SortOrder;
|
import org.elasticsearch.search.sort.SortOrder;
|
||||||
import org.junit.Test;
|
import org.elasticsearch.test.ESSingleNodeTestCase;
|
||||||
import org.xbib.elasticsearch.NodeTestBase;
|
|
||||||
|
|
||||||
/**
|
public class SearchTests extends ESSingleNodeTestCase {
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class SearchTest extends NodeTestBase {
|
|
||||||
|
|
||||||
private static final Logger logger = LogManager.getLogger(SearchTest.class.getName());
|
private static final Logger logger = LogManager.getLogger(SearchTests.class.getName());
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testSearch() throws Exception {
|
public void testSearch() throws Exception {
|
||||||
Client client = client("1");
|
|
||||||
long t0 = System.currentTimeMillis();
|
long t0 = System.currentTimeMillis();
|
||||||
BulkRequestBuilder builder = new BulkRequestBuilder(client, BulkAction.INSTANCE);
|
BulkRequestBuilder builder = new BulkRequestBuilder(client(), BulkAction.INSTANCE);
|
||||||
for (int i = 0; i < 1000; i++) {
|
for (int i = 0; i < 1000; i++) {
|
||||||
builder.add(indexRequest()
|
builder.add(Requests.indexRequest()
|
||||||
.index("pages").type("row")
|
.index("pages").type("row")
|
||||||
.source(jsonBuilder()
|
.source(XContentFactory.jsonBuilder()
|
||||||
.startObject()
|
.startObject()
|
||||||
.field("user1", "kimchy")
|
.field("user1", "kimchy")
|
||||||
.field("user2", "kimchy")
|
.field("user2", "kimchy")
|
||||||
|
@ -47,18 +38,15 @@ public class SearchTest extends NodeTestBase {
|
||||||
.field("rs", 1234)
|
.field("rs", 1234)
|
||||||
.endObject()));
|
.endObject()));
|
||||||
}
|
}
|
||||||
client.bulk(builder.request()).actionGet();
|
client().bulk(builder.request()).actionGet();
|
||||||
|
client().admin().indices().refresh(Requests.refreshRequest()).actionGet();
|
||||||
client.admin().indices().refresh(refreshRequest()).actionGet();
|
|
||||||
|
|
||||||
long t1 = System.currentTimeMillis();
|
long t1 = System.currentTimeMillis();
|
||||||
logger.info("t1-t0 = {}", t1 - t0);
|
logger.info("t1-t0 = {}", t1 - t0);
|
||||||
|
|
||||||
for (int i = 0; i < 100; i++) {
|
for (int i = 0; i < 100; i++) {
|
||||||
t1 = System.currentTimeMillis();
|
t1 = System.currentTimeMillis();
|
||||||
QueryBuilder queryStringBuilder =
|
QueryBuilder queryStringBuilder =
|
||||||
QueryBuilders.queryStringQuery("rs:" + 1234);
|
QueryBuilders.queryStringQuery("rs:" + 1234);
|
||||||
SearchRequestBuilder requestBuilder = client.prepareSearch()
|
SearchRequestBuilder requestBuilder = client().prepareSearch()
|
||||||
.setIndices("pages")
|
.setIndices("pages")
|
||||||
.setTypes("row")
|
.setTypes("row")
|
||||||
.setQuery(queryStringBuilder)
|
.setQuery(queryStringBuilder)
|
|
@ -1,9 +1,7 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client.common;
|
||||||
|
|
||||||
import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder;
|
|
||||||
import static org.elasticsearch.index.query.QueryBuilders.matchQuery;
|
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
|
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
import org.apache.logging.log4j.Logger;
|
||||||
import org.elasticsearch.action.admin.indices.create.CreateIndexAction;
|
import org.elasticsearch.action.admin.indices.create.CreateIndexAction;
|
||||||
import org.elasticsearch.action.admin.indices.create.CreateIndexRequestBuilder;
|
import org.elasticsearch.action.admin.indices.create.CreateIndexRequestBuilder;
|
||||||
import org.elasticsearch.action.admin.indices.delete.DeleteIndexAction;
|
import org.elasticsearch.action.admin.indices.delete.DeleteIndexAction;
|
||||||
|
@ -11,49 +9,47 @@ import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequestBuilder;
|
||||||
import org.elasticsearch.action.index.IndexAction;
|
import org.elasticsearch.action.index.IndexAction;
|
||||||
import org.elasticsearch.action.index.IndexRequestBuilder;
|
import org.elasticsearch.action.index.IndexRequestBuilder;
|
||||||
import org.elasticsearch.action.support.WriteRequest;
|
import org.elasticsearch.action.support.WriteRequest;
|
||||||
import org.elasticsearch.client.Client;
|
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
import org.junit.Test;
|
import org.elasticsearch.common.xcontent.XContentFactory;
|
||||||
import org.xbib.elasticsearch.NodeTestBase;
|
import org.elasticsearch.index.query.QueryBuilders;
|
||||||
|
import org.elasticsearch.test.ESSingleNodeTestCase;
|
||||||
|
|
||||||
/**
|
public class SimpleTests extends ESSingleNodeTestCase {
|
||||||
*
|
|
||||||
*/
|
private static final Logger logger = LogManager.getLogger(SimpleTests.class.getName());
|
||||||
public class SimpleTest extends NodeTestBase {
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void test() throws Exception {
|
public void test() throws Exception {
|
||||||
Client client = client("1");
|
|
||||||
try {
|
try {
|
||||||
DeleteIndexRequestBuilder deleteIndexRequestBuilder =
|
DeleteIndexRequestBuilder deleteIndexRequestBuilder =
|
||||||
new DeleteIndexRequestBuilder(client, DeleteIndexAction.INSTANCE, "test");
|
new DeleteIndexRequestBuilder(client(), DeleteIndexAction.INSTANCE, "test");
|
||||||
deleteIndexRequestBuilder.execute().actionGet();
|
deleteIndexRequestBuilder.execute().actionGet();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
// ignore
|
logger.warn(e.getMessage(), e);
|
||||||
}
|
}
|
||||||
CreateIndexRequestBuilder createIndexRequestBuilder = new CreateIndexRequestBuilder(client,
|
CreateIndexRequestBuilder createIndexRequestBuilder = new CreateIndexRequestBuilder(client(),
|
||||||
CreateIndexAction.INSTANCE)
|
CreateIndexAction.INSTANCE)
|
||||||
.setIndex("test")
|
.setIndex("test")
|
||||||
.setSettings(Settings.builder()
|
.setSettings(Settings.builder()
|
||||||
.put("index.analysis.analyzer.default.filter.0", "lowercase")
|
.put("index.analysis.analyzer.default.filter.0", "lowercase")
|
||||||
.put("index.analysis.analyzer.default.filter.1", "trim")
|
// where is the trim token filter???
|
||||||
|
//.put("index.analysis.analyzer.default.filter.1", "trim")
|
||||||
.put("index.analysis.analyzer.default.tokenizer", "keyword")
|
.put("index.analysis.analyzer.default.tokenizer", "keyword")
|
||||||
.build());
|
.build());
|
||||||
createIndexRequestBuilder.execute().actionGet();
|
createIndexRequestBuilder.execute().actionGet();
|
||||||
|
|
||||||
IndexRequestBuilder indexRequestBuilder = new IndexRequestBuilder(client, IndexAction.INSTANCE);
|
IndexRequestBuilder indexRequestBuilder = new IndexRequestBuilder(client(), IndexAction.INSTANCE);
|
||||||
indexRequestBuilder
|
indexRequestBuilder
|
||||||
.setIndex("test")
|
.setIndex("test")
|
||||||
.setType("test")
|
.setType("test")
|
||||||
.setId("1")
|
.setId("1")
|
||||||
.setSource(jsonBuilder().startObject().field("field",
|
.setSource(XContentFactory.jsonBuilder().startObject().field("field",
|
||||||
"1%2fPJJP3JV2C24iDfEu9XpHBaYxXh%2fdHTbmchB35SDznXO2g8Vz4D7GTIvY54iMiX_149c95f02a8").endObject())
|
"1%2fPJJP3JV2C24iDfEu9XpHBaYxXh%2fdHTbmchB35SDznXO2g8Vz4D7GTIvY54iMiX_149c95f02a8").endObject())
|
||||||
.setRefreshPolicy(WriteRequest.RefreshPolicy.IMMEDIATE)
|
.setRefreshPolicy(WriteRequest.RefreshPolicy.IMMEDIATE)
|
||||||
.execute()
|
.execute()
|
||||||
.actionGet();
|
.actionGet();
|
||||||
String doc = client.prepareSearch("test")
|
String doc = client().prepareSearch("test")
|
||||||
.setTypes("test")
|
.setTypes("test")
|
||||||
.setQuery(matchQuery("field",
|
.setQuery(QueryBuilders.matchQuery("field",
|
||||||
"1%2fPJJP3JV2C24iDfEu9XpHBaYxXh%2fdHTbmchB35SDznXO2g8Vz4D7GTIvY54iMiX_149c95f02a8"))
|
"1%2fPJJP3JV2C24iDfEu9XpHBaYxXh%2fdHTbmchB35SDznXO2g8Vz4D7GTIvY54iMiX_149c95f02a8"))
|
||||||
.execute()
|
.execute()
|
||||||
.actionGet()
|
.actionGet()
|
|
@ -0,0 +1,51 @@
|
||||||
|
package org.xbib.elasticsearch.client.common;
|
||||||
|
|
||||||
|
import org.elasticsearch.action.support.WriteRequest;
|
||||||
|
import org.elasticsearch.client.Requests;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentFactory;
|
||||||
|
import org.elasticsearch.index.query.QueryBuilder;
|
||||||
|
import org.elasticsearch.index.query.QueryBuilders;
|
||||||
|
import org.elasticsearch.test.ESSingleNodeTestCase;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
public class WildcardTests extends ESSingleNodeTestCase {
|
||||||
|
|
||||||
|
public void testWildcard() throws Exception {
|
||||||
|
index("1", "010");
|
||||||
|
index("2", "0*0");
|
||||||
|
// exact
|
||||||
|
validateCount(QueryBuilders.queryStringQuery("010").defaultField("field"), 1);
|
||||||
|
validateCount(QueryBuilders.queryStringQuery("0\\*0").defaultField("field"), 1);
|
||||||
|
// pattern
|
||||||
|
validateCount(QueryBuilders.queryStringQuery("0*0").defaultField("field"), 1); // 2?
|
||||||
|
validateCount(QueryBuilders.queryStringQuery("0?0").defaultField("field"), 1); // 2?
|
||||||
|
validateCount(QueryBuilders.queryStringQuery("0**0").defaultField("field"), 1); // 2?
|
||||||
|
validateCount(QueryBuilders.queryStringQuery("0??0").defaultField("field"), 0);
|
||||||
|
validateCount(QueryBuilders.queryStringQuery("*10").defaultField("field"), 1);
|
||||||
|
validateCount(QueryBuilders.queryStringQuery("*1*").defaultField("field"), 1);
|
||||||
|
validateCount(QueryBuilders.queryStringQuery("*\\*0").defaultField("field"), 0); // 1?
|
||||||
|
validateCount(QueryBuilders.queryStringQuery("*\\**").defaultField("field"), 0); // 1?
|
||||||
|
}
|
||||||
|
|
||||||
|
private void index(String id, String fieldValue) throws IOException {
|
||||||
|
client().index(Requests.indexRequest()
|
||||||
|
.index("index").type("type").id(id)
|
||||||
|
.source(XContentFactory.jsonBuilder().startObject().field("field", fieldValue).endObject())
|
||||||
|
.setRefreshPolicy(WriteRequest.RefreshPolicy.IMMEDIATE))
|
||||||
|
.actionGet();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void validateCount(QueryBuilder queryBuilder, long expectedHits) {
|
||||||
|
final long actualHits = count(queryBuilder);
|
||||||
|
if (actualHits != expectedHits) {
|
||||||
|
throw new RuntimeException("actualHits=" + actualHits + ", expectedHits=" + expectedHits);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private long count(QueryBuilder queryBuilder) {
|
||||||
|
return client().prepareSearch("index").setTypes("type")
|
||||||
|
.setQuery(queryBuilder)
|
||||||
|
.execute().actionGet().getHits().getTotalHits();
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
/**
|
/**
|
||||||
* Classes to test Elasticsearch clients.
|
* Classes to test Elasticsearch clients.
|
||||||
*/
|
*/
|
||||||
package org.xbib.elasticsearch.extras.client;
|
package org.xbib.elasticsearch.client.common;
|
|
@ -1,10 +1,28 @@
|
||||||
group = org.xbib
|
org.gradle.daemon=false
|
||||||
name = elasticsearch-extras-client
|
org.gradle.warning.mode=all
|
||||||
version = 5.3.0.1
|
|
||||||
|
|
||||||
elasticsearch-client-transport.version = 5.3.0
|
group = org.xbib.elasticsearch
|
||||||
xbib-metrics.version = 1.0.0
|
name = elasticsearch-client-netty
|
||||||
netty-transport-native-epoll.version = 4.1.7.Final
|
version = 6.2.2.0
|
||||||
log4j.version = 2.8
|
|
||||||
|
elasticsearch.version = 6.2.2
|
||||||
|
netty.version = 4.1.24.Final
|
||||||
|
tcnative.version = 2.0.7.Final
|
||||||
|
alpnagent.version = 2.0.7
|
||||||
|
#xbib-netty-http-client.version = 4.1.16.1
|
||||||
|
xbib-netty-http-client.version = 4.1.24.0
|
||||||
|
xbib-metrics.version = 1.1.0
|
||||||
|
|
||||||
|
# elasticsearch build plugin
|
||||||
|
xbib-elasticsearch-test.version = 6.2.2.0
|
||||||
|
lucene.version = 7.2.1
|
||||||
|
spatial4j.version = 0.6
|
||||||
|
jts.version = 1.13
|
||||||
|
jna.version = 4.5.1
|
||||||
|
|
||||||
|
# test
|
||||||
|
log4j.version = 2.9.1
|
||||||
junit.version = 4.12
|
junit.version = 4.12
|
||||||
wagon.version = 2.10
|
wagon.version = 3.0.0
|
||||||
|
asciidoclet.version = 1.6.0.0
|
||||||
|
|
||||||
|
|
8
gradle/ext.gradle
Normal file
8
gradle/ext.gradle
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
ext {
|
||||||
|
user = 'xbib'
|
||||||
|
name = 'elasticsearch-java-client'
|
||||||
|
description = 'Netty Java client for Elasticsearch'
|
||||||
|
scmUrl = 'https://github.com/' + user + '/' + name
|
||||||
|
scmConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
|
||||||
|
scmDeveloperConnection = 'scm:git:git://github.com/' + user + '/' + name + '.git'
|
||||||
|
}
|
|
@ -6,7 +6,7 @@ task xbibUpload(type: Upload) {
|
||||||
if (project.hasProperty("xbibUsername")) {
|
if (project.hasProperty("xbibUsername")) {
|
||||||
mavenDeployer {
|
mavenDeployer {
|
||||||
configuration = configurations.wagon
|
configuration = configurations.wagon
|
||||||
repository(url: 'scpexe://xbib.org/repository') {
|
repository(url: 'sftp://xbib.org/repository') {
|
||||||
authentication(userName: xbibUsername, privateKey: xbibPrivateKey)
|
authentication(userName: xbibUsername, privateKey: xbibPrivateKey)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
tasks.withType(FindBugs) {
|
tasks.withType(FindBugs) {
|
||||||
ignoreFailures = true
|
ignoreFailures = true
|
||||||
reports {
|
reports {
|
||||||
xml.enabled = true
|
xml.enabled = false
|
||||||
html.enabled = false
|
html.enabled = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
tasks.withType(Pmd) {
|
tasks.withType(Pmd) {
|
||||||
|
@ -20,22 +20,11 @@ tasks.withType(Checkstyle) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
jacocoTestReport {
|
|
||||||
reports {
|
|
||||||
xml.enabled true
|
|
||||||
csv.enabled false
|
|
||||||
xml.destination "${buildDir}/reports/jacoco-xml"
|
|
||||||
html.destination "${buildDir}/reports/jacoco-html"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
sonarqube {
|
sonarqube {
|
||||||
properties {
|
properties {
|
||||||
property "sonar.projectName", "${project.group} ${project.name}"
|
property "sonar.projectName", "${project.group} ${project.name}"
|
||||||
property "sonar.sourceEncoding", "UTF-8"
|
property "sonar.sourceEncoding", "UTF-8"
|
||||||
property "sonar.tests", "src/integration-test/java"
|
|
||||||
property "sonar.scm.provider", "git"
|
property "sonar.scm.provider", "git"
|
||||||
property "sonar.java.coveragePlugin", "jacoco"
|
|
||||||
property "sonar.junit.reportsPath", "build/test-results/test/"
|
property "sonar.junit.reportsPath", "build/test-results/test/"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,6 +1,6 @@
|
||||||
#Sun Dec 04 10:06:25 CET 2016
|
#Fri May 04 14:40:54 CEST 2018
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-3.2.1-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-4.7-all.zip
|
||||||
|
|
6
gradlew
vendored
6
gradlew
vendored
|
@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS=""
|
||||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
MAX_FD="maximum"
|
MAX_FD="maximum"
|
||||||
|
|
||||||
warn ( ) {
|
warn () {
|
||||||
echo "$*"
|
echo "$*"
|
||||||
}
|
}
|
||||||
|
|
||||||
die ( ) {
|
die () {
|
||||||
echo
|
echo
|
||||||
echo "$*"
|
echo "$*"
|
||||||
echo
|
echo
|
||||||
|
@ -155,7 +155,7 @@ if $cygwin ; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Escape application args
|
# Escape application args
|
||||||
save ( ) {
|
save () {
|
||||||
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
|
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
|
||||||
echo " "
|
echo " "
|
||||||
}
|
}
|
||||||
|
|
63
http/build.gradle
Normal file
63
http/build.gradle
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
buildscript {
|
||||||
|
repositories {
|
||||||
|
jcenter()
|
||||||
|
maven {
|
||||||
|
url 'http://xbib.org/repository'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dependencies {
|
||||||
|
classpath "org.xbib.elasticsearch:gradle-plugin-elasticsearch-build:6.2.2.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
apply plugin: 'org.xbib.gradle.plugin.elasticsearch.build'
|
||||||
|
|
||||||
|
configurations {
|
||||||
|
main
|
||||||
|
tests
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compile project(':common')
|
||||||
|
compile "org.xbib:netty-http-client:${project.property('xbib-netty-http-client.version')}"
|
||||||
|
testCompile "org.xbib.elasticsearch:elasticsearch-test-framework:${project.property('xbib-elasticsearch-test.version')}"
|
||||||
|
testRuntime "org.xbib.elasticsearch:elasticsearch-test-framework:${project.property('xbib-elasticsearch-test.version')}"
|
||||||
|
}
|
||||||
|
|
||||||
|
jar {
|
||||||
|
baseName "${rootProject.name}-common"
|
||||||
|
}
|
||||||
|
|
||||||
|
task testJar(type: Jar, dependsOn: testClasses) {
|
||||||
|
baseName = "${project.archivesBaseName}-tests"
|
||||||
|
from sourceSets.test.output
|
||||||
|
}
|
||||||
|
|
||||||
|
artifacts {
|
||||||
|
main jar
|
||||||
|
tests testJar
|
||||||
|
archives sourcesJar, javadocJar
|
||||||
|
}
|
||||||
|
|
||||||
|
test {
|
||||||
|
enabled = true
|
||||||
|
include '**/SimpleTest.*'
|
||||||
|
testLogging {
|
||||||
|
showStandardStreams = true
|
||||||
|
exceptionFormat = 'full'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
randomizedTest {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
|
||||||
|
esTest {
|
||||||
|
enabled = true
|
||||||
|
// test with the jars, not the classes, for security manager
|
||||||
|
classpath = files(configurations.testRuntime) + configurations.main.artifacts.files + configurations.tests.artifacts.files
|
||||||
|
systemProperty 'tests.security.manager', 'true'
|
||||||
|
// maybe we like some extra security policy for our code
|
||||||
|
systemProperty 'tests.security.policy', '/extra-security.policy'
|
||||||
|
}
|
||||||
|
esTest.dependsOn jar, testJar
|
323
http/config/checkstyle/checkstyle.xml
Normal file
323
http/config/checkstyle/checkstyle.xml
Normal file
|
@ -0,0 +1,323 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE module PUBLIC
|
||||||
|
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
|
||||||
|
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
|
||||||
|
|
||||||
|
<!-- This is a checkstyle configuration file. For descriptions of
|
||||||
|
what the following rules do, please see the checkstyle configuration
|
||||||
|
page at http://checkstyle.sourceforge.net/config.html -->
|
||||||
|
|
||||||
|
<module name="Checker">
|
||||||
|
|
||||||
|
<module name="FileTabCharacter">
|
||||||
|
<!-- Checks that there are no tab characters in the file.
|
||||||
|
-->
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="NewlineAtEndOfFile">
|
||||||
|
<property name="lineSeparator" value="lf"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="RegexpSingleline">
|
||||||
|
<!-- Checks that FIXME is not used in comments. TODO is preferred.
|
||||||
|
-->
|
||||||
|
<property name="format" value="((//.*)|(\*.*))FIXME" />
|
||||||
|
<property name="message" value='TODO is preferred to FIXME. e.g. "TODO(johndoe): Refactor when v2 is released."' />
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="RegexpSingleline">
|
||||||
|
<!-- Checks that TODOs are named. (Actually, just that they are followed
|
||||||
|
by an open paren.)
|
||||||
|
-->
|
||||||
|
<property name="format" value="((//.*)|(\*.*))TODO[^(]" />
|
||||||
|
<property name="message" value='All TODOs should be named. e.g. "TODO(johndoe): Refactor when v2 is released."' />
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="JavadocPackage">
|
||||||
|
<!-- Checks that each Java package has a Javadoc file used for commenting.
|
||||||
|
Only allows a package-info.java, not package.html. -->
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!-- All Java AST specific tests live under TreeWalker module. -->
|
||||||
|
<module name="TreeWalker">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
IMPORT CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="RedundantImport">
|
||||||
|
<!-- Checks for redundant import statements. -->
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ImportOrder">
|
||||||
|
<!-- Checks for out of order import statements. -->
|
||||||
|
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
<property name="groups" value="com,io,junit,net,org,java,javax"/>
|
||||||
|
<!-- This ensures that static imports go first. -->
|
||||||
|
<property name="option" value="top"/>
|
||||||
|
<property name="tokens" value="IMPORT, STATIC_IMPORT,"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
JAVADOC CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Checks for Javadoc comments. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
|
||||||
|
<module name="JavadocMethod">
|
||||||
|
<property name="scope" value="protected"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
<property name="allowMissingJavadoc" value="true"/>
|
||||||
|
<property name="allowMissingParamTags" value="true"/>
|
||||||
|
<property name="allowMissingReturnTag" value="true"/>
|
||||||
|
<property name="allowMissingThrowsTags" value="true"/>
|
||||||
|
<property name="allowThrowsTagsForSubclasses" value="true"/>
|
||||||
|
<property name="allowUndeclaredRTE" value="true"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="JavadocType">
|
||||||
|
<property name="scope" value="protected"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="JavadocStyle">
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
NAMING CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Item 38 - Adhere to generally accepted naming conventions -->
|
||||||
|
|
||||||
|
<module name="PackageName">
|
||||||
|
<!-- Validates identifiers for package names against the
|
||||||
|
supplied expression. -->
|
||||||
|
<!-- Here the default checkstyle rule restricts package name parts to
|
||||||
|
seven characters, this is not in line with common practice at Google.
|
||||||
|
-->
|
||||||
|
<property name="format" value="^[a-z]+(\.[a-z][a-z0-9]{1,})*$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="TypeNameCheck">
|
||||||
|
<!-- Validates static, final fields against the
|
||||||
|
expression "^[A-Z][a-zA-Z0-9]*$". -->
|
||||||
|
<metadata name="altname" value="TypeName"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ConstantNameCheck">
|
||||||
|
<!-- Validates non-private, static, final fields against the supplied
|
||||||
|
public/package final fields "^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$". -->
|
||||||
|
<metadata name="altname" value="ConstantName"/>
|
||||||
|
<property name="applyToPublic" value="true"/>
|
||||||
|
<property name="applyToProtected" value="true"/>
|
||||||
|
<property name="applyToPackage" value="true"/>
|
||||||
|
<property name="applyToPrivate" value="false"/>
|
||||||
|
<property name="format" value="^([A-Z][A-Z0-9]*(_[A-Z0-9]+)*|FLAG_.*)$"/>
|
||||||
|
<message key="name.invalidPattern"
|
||||||
|
value="Variable ''{0}'' should be in ALL_CAPS (if it is a constant) or be private (otherwise)."/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="StaticVariableNameCheck">
|
||||||
|
<!-- Validates static, non-final fields against the supplied
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*_?$". -->
|
||||||
|
<metadata name="altname" value="StaticVariableName"/>
|
||||||
|
<property name="applyToPublic" value="true"/>
|
||||||
|
<property name="applyToProtected" value="true"/>
|
||||||
|
<property name="applyToPackage" value="true"/>
|
||||||
|
<property name="applyToPrivate" value="true"/>
|
||||||
|
<property name="format" value="^[a-z][a-zA-Z0-9]*_?$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="MemberNameCheck">
|
||||||
|
<!-- Validates non-static members against the supplied expression. -->
|
||||||
|
<metadata name="altname" value="MemberName"/>
|
||||||
|
<property name="applyToPublic" value="true"/>
|
||||||
|
<property name="applyToProtected" value="true"/>
|
||||||
|
<property name="applyToPackage" value="true"/>
|
||||||
|
<property name="applyToPrivate" value="true"/>
|
||||||
|
<property name="format" value="^[a-z][a-zA-Z0-9]*$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="MethodNameCheck">
|
||||||
|
<!-- Validates identifiers for method names. -->
|
||||||
|
<metadata name="altname" value="MethodName"/>
|
||||||
|
<property name="format" value="^[a-z][a-zA-Z0-9]*(_[a-zA-Z0-9]+)*$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ParameterName">
|
||||||
|
<!-- Validates identifiers for method parameters against the
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*$". -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="LocalFinalVariableName">
|
||||||
|
<!-- Validates identifiers for local final variables against the
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*$". -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="LocalVariableName">
|
||||||
|
<!-- Validates identifiers for local variables against the
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*$". -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
LENGTH and CODING CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="LineLength">
|
||||||
|
<!-- Checks if a line is too long. -->
|
||||||
|
<property name="max" value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.max}" default="128"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
The default ignore pattern exempts the following elements:
|
||||||
|
- import statements
|
||||||
|
- long URLs inside comments
|
||||||
|
-->
|
||||||
|
|
||||||
|
<property name="ignorePattern"
|
||||||
|
value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.ignorePattern}"
|
||||||
|
default="^(package .*;\s*)|(import .*;\s*)|( *(\*|//).*https?://.*)$"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="LeftCurly">
|
||||||
|
<!-- Checks for placement of the left curly brace ('{'). -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="RightCurly">
|
||||||
|
<!-- Checks right curlies on CATCH, ELSE, and TRY blocks are on
|
||||||
|
the same line. e.g., the following example is fine:
|
||||||
|
<pre>
|
||||||
|
if {
|
||||||
|
...
|
||||||
|
} else
|
||||||
|
</pre>
|
||||||
|
-->
|
||||||
|
<!-- This next example is not fine:
|
||||||
|
<pre>
|
||||||
|
if {
|
||||||
|
...
|
||||||
|
}
|
||||||
|
else
|
||||||
|
</pre>
|
||||||
|
-->
|
||||||
|
<property name="option" value="same"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!-- Checks for braces around if and else blocks -->
|
||||||
|
<module name="NeedBraces">
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
<property name="tokens" value="LITERAL_IF, LITERAL_ELSE, LITERAL_FOR, LITERAL_WHILE, LITERAL_DO"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="UpperEll">
|
||||||
|
<!-- Checks that long constants are defined with an upper ell.-->
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="FallThrough">
|
||||||
|
<!-- Warn about falling through to the next case statement. Similar to
|
||||||
|
javac -Xlint:fallthrough, but the check is suppressed if a single-line comment
|
||||||
|
on the last non-blank line preceding the fallen-into case contains 'fall through' (or
|
||||||
|
some other variants which we don't publicized to promote consistency).
|
||||||
|
-->
|
||||||
|
<property name="reliefPattern"
|
||||||
|
value="fall through|Fall through|fallthru|Fallthru|falls through|Falls through|fallthrough|Fallthrough|No break|NO break|no break|continue on"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
MODIFIERS CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="ModifierOrder">
|
||||||
|
<!-- Warn if modifier order is inconsistent with JLS3 8.1.1, 8.3.1, and
|
||||||
|
8.4.3. The prescribed order is:
|
||||||
|
public, protected, private, abstract, static, final, transient, volatile,
|
||||||
|
synchronized, native, strictfp
|
||||||
|
-->
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
WHITESPACE CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="WhitespaceAround">
|
||||||
|
<!-- Checks that various tokens are surrounded by whitespace.
|
||||||
|
This includes most binary operators and keywords followed
|
||||||
|
by regular or curly braces.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="ASSIGN, BAND, BAND_ASSIGN, BOR,
|
||||||
|
BOR_ASSIGN, BSR, BSR_ASSIGN, BXOR, BXOR_ASSIGN, COLON, DIV, DIV_ASSIGN,
|
||||||
|
EQUAL, GE, GT, LAND, LE, LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE,
|
||||||
|
LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, LITERAL_RETURN,
|
||||||
|
LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE, LOR, LT, MINUS,
|
||||||
|
MINUS_ASSIGN, MOD, MOD_ASSIGN, NOT_EQUAL, PLUS, PLUS_ASSIGN, QUESTION,
|
||||||
|
SL, SL_ASSIGN, SR_ASSIGN, STAR, STAR_ASSIGN"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="WhitespaceAfter">
|
||||||
|
<!-- Checks that commas, semicolons and typecasts are followed by
|
||||||
|
whitespace.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="COMMA, SEMI, TYPECAST"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="NoWhitespaceAfter">
|
||||||
|
<!-- Checks that there is no whitespace after various unary operators.
|
||||||
|
Linebreaks are allowed.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="BNOT, DEC, DOT, INC, LNOT, UNARY_MINUS,
|
||||||
|
UNARY_PLUS"/>
|
||||||
|
<property name="allowLineBreaks" value="true"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="NoWhitespaceBefore">
|
||||||
|
<!-- Checks that there is no whitespace before various unary operators.
|
||||||
|
Linebreaks are allowed.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="SEMI, DOT, POST_DEC, POST_INC"/>
|
||||||
|
<property name="allowLineBreaks" value="true"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ParenPad">
|
||||||
|
<!-- Checks that there is no whitespace before close parens or after
|
||||||
|
open parens.
|
||||||
|
-->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
</module>
|
||||||
|
</module>
|
||||||
|
|
684
http/src/docs/asciidoc/css/foundation.css
vendored
Normal file
684
http/src/docs/asciidoc/css/foundation.css
vendored
Normal file
|
@ -0,0 +1,684 @@
|
||||||
|
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */
|
||||||
|
/* ========================================================================== HTML5 display definitions ========================================================================== */
|
||||||
|
/** Correct `block` display not defined in IE 8/9. */
|
||||||
|
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; }
|
||||||
|
|
||||||
|
/** Correct `inline-block` display not defined in IE 8/9. */
|
||||||
|
audio, canvas, video { display: inline-block; }
|
||||||
|
|
||||||
|
/** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */
|
||||||
|
audio:not([controls]) { display: none; height: 0; }
|
||||||
|
|
||||||
|
/** Address `[hidden]` styling not present in IE 8/9. Hide the `template` element in IE, Safari, and Firefox < 22. */
|
||||||
|
[hidden], template { display: none; }
|
||||||
|
|
||||||
|
script { display: none !important; }
|
||||||
|
|
||||||
|
/* ========================================================================== Base ========================================================================== */
|
||||||
|
/** 1. Set default font family to sans-serif. 2. Prevent iOS text size adjust after orientation change, without disabling user zoom. */
|
||||||
|
html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ }
|
||||||
|
|
||||||
|
/** Remove default margin. */
|
||||||
|
body { margin: 0; }
|
||||||
|
|
||||||
|
/* ========================================================================== Links ========================================================================== */
|
||||||
|
/** Remove the gray background color from active links in IE 10. */
|
||||||
|
a { background: transparent; }
|
||||||
|
|
||||||
|
/** Address `outline` inconsistency between Chrome and other browsers. */
|
||||||
|
a:focus { outline: thin dotted; }
|
||||||
|
|
||||||
|
/** Improve readability when focused and also mouse hovered in all browsers. */
|
||||||
|
a:active, a:hover { outline: 0; }
|
||||||
|
|
||||||
|
/* ========================================================================== Typography ========================================================================== */
|
||||||
|
/** Address variable `h1` font-size and margin within `section` and `article` contexts in Firefox 4+, Safari 5, and Chrome. */
|
||||||
|
h1 { font-size: 2em; margin: 0.67em 0; }
|
||||||
|
|
||||||
|
/** Address styling not present in IE 8/9, Safari 5, and Chrome. */
|
||||||
|
abbr[title] { border-bottom: 1px dotted; }
|
||||||
|
|
||||||
|
/** Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
|
||||||
|
b, strong { font-weight: bold; }
|
||||||
|
|
||||||
|
/** Address styling not present in Safari 5 and Chrome. */
|
||||||
|
dfn { font-style: italic; }
|
||||||
|
|
||||||
|
/** Address differences between Firefox and other browsers. */
|
||||||
|
hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; }
|
||||||
|
|
||||||
|
/** Address styling not present in IE 8/9. */
|
||||||
|
mark { background: #ff0; color: #000; }
|
||||||
|
|
||||||
|
/** Correct font family set oddly in Safari 5 and Chrome. */
|
||||||
|
code, kbd, pre, samp { font-family: monospace, serif; font-size: 1em; }
|
||||||
|
|
||||||
|
/** Improve readability of pre-formatted text in all browsers. */
|
||||||
|
pre { white-space: pre-wrap; }
|
||||||
|
|
||||||
|
/** Set consistent quote types. */
|
||||||
|
q { quotes: "\201C" "\201D" "\2018" "\2019"; }
|
||||||
|
|
||||||
|
/** Address inconsistent and variable font size in all browsers. */
|
||||||
|
small { font-size: 80%; }
|
||||||
|
|
||||||
|
/** Prevent `sub` and `sup` affecting `line-height` in all browsers. */
|
||||||
|
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
|
||||||
|
|
||||||
|
sup { top: -0.5em; }
|
||||||
|
|
||||||
|
sub { bottom: -0.25em; }
|
||||||
|
|
||||||
|
/* ========================================================================== Embedded content ========================================================================== */
|
||||||
|
/** Remove border when inside `a` element in IE 8/9. */
|
||||||
|
img { border: 0; }
|
||||||
|
|
||||||
|
/** Correct overflow displayed oddly in IE 9. */
|
||||||
|
svg:not(:root) { overflow: hidden; }
|
||||||
|
|
||||||
|
/* ========================================================================== Figures ========================================================================== */
|
||||||
|
/** Address margin not present in IE 8/9 and Safari 5. */
|
||||||
|
figure { margin: 0; }
|
||||||
|
|
||||||
|
/* ========================================================================== Forms ========================================================================== */
|
||||||
|
/** Define consistent border, margin, and padding. */
|
||||||
|
fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; }
|
||||||
|
|
||||||
|
/** 1. Correct `color` not being inherited in IE 8/9. 2. Remove padding so people aren't caught out if they zero out fieldsets. */
|
||||||
|
legend { border: 0; /* 1 */ padding: 0; /* 2 */ }
|
||||||
|
|
||||||
|
/** 1. Correct font family not being inherited in all browsers. 2. Correct font size not being inherited in all browsers. 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. */
|
||||||
|
button, input, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 2 */ margin: 0; /* 3 */ }
|
||||||
|
|
||||||
|
/** Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet. */
|
||||||
|
button, input { line-height: normal; }
|
||||||
|
|
||||||
|
/** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */
|
||||||
|
button, select { text-transform: none; }
|
||||||
|
|
||||||
|
/** 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. 2. Correct inability to style clickable `input` types in iOS. 3. Improve usability and consistency of cursor style between image-type `input` and others. */
|
||||||
|
button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ }
|
||||||
|
|
||||||
|
/** Re-set default cursor for disabled elements. */
|
||||||
|
button[disabled], html input[disabled] { cursor: default; }
|
||||||
|
|
||||||
|
/** 1. Address box sizing set to `content-box` in IE 8/9. 2. Remove excess padding in IE 8/9. */
|
||||||
|
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ }
|
||||||
|
|
||||||
|
/** 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome (include `-moz` to future-proof). */
|
||||||
|
input[type="search"] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; }
|
||||||
|
|
||||||
|
/** Remove inner padding and search cancel button in Safari 5 and Chrome on OS X. */
|
||||||
|
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
|
||||||
|
|
||||||
|
/** Remove inner padding and border in Firefox 4+. */
|
||||||
|
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
|
||||||
|
|
||||||
|
/** 1. Remove default vertical scrollbar in IE 8/9. 2. Improve readability and alignment in all browsers. */
|
||||||
|
textarea { overflow: auto; /* 1 */ vertical-align: top; /* 2 */ }
|
||||||
|
|
||||||
|
/* ========================================================================== Tables ========================================================================== */
|
||||||
|
/** Remove most spacing between table cells. */
|
||||||
|
table { border-collapse: collapse; border-spacing: 0; }
|
||||||
|
|
||||||
|
meta.foundation-mq-small { font-family: "only screen and (min-width: 768px)"; width: 768px; }
|
||||||
|
|
||||||
|
meta.foundation-mq-medium { font-family: "only screen and (min-width:1280px)"; width: 1280px; }
|
||||||
|
|
||||||
|
meta.foundation-mq-large { font-family: "only screen and (min-width:1440px)"; width: 1440px; }
|
||||||
|
|
||||||
|
*, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
|
||||||
|
|
||||||
|
html, body { font-size: 100%; }
|
||||||
|
|
||||||
|
body { background: white; color: #222222; padding: 0; margin: 0; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; line-height: 1; position: relative; cursor: auto; }
|
||||||
|
|
||||||
|
a:hover { cursor: pointer; }
|
||||||
|
|
||||||
|
img, object, embed { max-width: 100%; height: auto; }
|
||||||
|
|
||||||
|
object, embed { height: 100%; }
|
||||||
|
|
||||||
|
img { -ms-interpolation-mode: bicubic; }
|
||||||
|
|
||||||
|
#map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object { max-width: none !important; }
|
||||||
|
|
||||||
|
.left { float: left !important; }
|
||||||
|
|
||||||
|
.right { float: right !important; }
|
||||||
|
|
||||||
|
.text-left { text-align: left !important; }
|
||||||
|
|
||||||
|
.text-right { text-align: right !important; }
|
||||||
|
|
||||||
|
.text-center { text-align: center !important; }
|
||||||
|
|
||||||
|
.text-justify { text-align: justify !important; }
|
||||||
|
|
||||||
|
.hide { display: none; }
|
||||||
|
|
||||||
|
.antialiased { -webkit-font-smoothing: antialiased; }
|
||||||
|
|
||||||
|
img { display: inline-block; vertical-align: middle; }
|
||||||
|
|
||||||
|
textarea { height: auto; min-height: 50px; }
|
||||||
|
|
||||||
|
select { width: 100%; }
|
||||||
|
|
||||||
|
object, svg { display: inline-block; vertical-align: middle; }
|
||||||
|
|
||||||
|
.center { margin-left: auto; margin-right: auto; }
|
||||||
|
|
||||||
|
.spread { width: 100%; }
|
||||||
|
|
||||||
|
p.lead, .paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p { font-size: 1.21875em; line-height: 1.6; }
|
||||||
|
|
||||||
|
.subheader, .admonitionblock td.content > .title, .audioblock > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .stemblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, table.tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title { line-height: 1.4; color: #6f6f6f; font-weight: 300; margin-top: 0.2em; margin-bottom: 0.5em; }
|
||||||
|
|
||||||
|
/* Typography resets */
|
||||||
|
div, dl, dt, dd, ul, ol, li, h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; direction: ltr; }
|
||||||
|
|
||||||
|
/* Default Link Styles */
|
||||||
|
a { color: #2ba6cb; text-decoration: none; line-height: inherit; }
|
||||||
|
a:hover, a:focus { color: #2795b6; }
|
||||||
|
a img { border: none; }
|
||||||
|
|
||||||
|
/* Default paragraph styles */
|
||||||
|
p { font-family: inherit; font-weight: normal; font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; text-rendering: optimizeLegibility; }
|
||||||
|
p aside { font-size: 0.875em; line-height: 1.35; font-style: italic; }
|
||||||
|
|
||||||
|
/* Default header styles */
|
||||||
|
h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: bold; font-style: normal; color: #222222; text-rendering: optimizeLegibility; margin-top: 1em; margin-bottom: 0.5em; line-height: 1.2125em; }
|
||||||
|
h1 small, h2 small, h3 small, #toctitle small, .sidebarblock > .content > .title small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; }
|
||||||
|
|
||||||
|
h1 { font-size: 2.125em; }
|
||||||
|
|
||||||
|
h2 { font-size: 1.6875em; }
|
||||||
|
|
||||||
|
h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.375em; }
|
||||||
|
|
||||||
|
h4 { font-size: 1.125em; }
|
||||||
|
|
||||||
|
h5 { font-size: 1.125em; }
|
||||||
|
|
||||||
|
h6 { font-size: 1em; }
|
||||||
|
|
||||||
|
hr { border: solid #dddddd; border-width: 1px 0 0; clear: both; margin: 1.25em 0 1.1875em; height: 0; }
|
||||||
|
|
||||||
|
/* Helpful Typography Defaults */
|
||||||
|
em, i { font-style: italic; line-height: inherit; }
|
||||||
|
|
||||||
|
strong, b { font-weight: bold; line-height: inherit; }
|
||||||
|
|
||||||
|
small { font-size: 60%; line-height: inherit; }
|
||||||
|
|
||||||
|
code { font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: bold; color: #7f0a0c; }
|
||||||
|
|
||||||
|
/* Lists */
|
||||||
|
ul, ol, dl { font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; list-style-position: outside; font-family: inherit; }
|
||||||
|
|
||||||
|
ul, ol { margin-left: 1.5em; }
|
||||||
|
ul.no-bullet, ol.no-bullet { margin-left: 1.5em; }
|
||||||
|
|
||||||
|
/* Unordered Lists */
|
||||||
|
ul li ul, ul li ol { margin-left: 1.25em; margin-bottom: 0; font-size: 1em; /* Override nested font-size change */ }
|
||||||
|
ul.square li ul, ul.circle li ul, ul.disc li ul { list-style: inherit; }
|
||||||
|
ul.square { list-style-type: square; }
|
||||||
|
ul.circle { list-style-type: circle; }
|
||||||
|
ul.disc { list-style-type: disc; }
|
||||||
|
ul.no-bullet { list-style: none; }
|
||||||
|
|
||||||
|
/* Ordered Lists */
|
||||||
|
ol li ul, ol li ol { margin-left: 1.25em; margin-bottom: 0; }
|
||||||
|
|
||||||
|
/* Definition Lists */
|
||||||
|
dl dt { margin-bottom: 0.3125em; font-weight: bold; }
|
||||||
|
dl dd { margin-bottom: 1.25em; }
|
||||||
|
|
||||||
|
/* Abbreviations */
|
||||||
|
abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222222; border-bottom: 1px dotted #dddddd; cursor: help; }
|
||||||
|
|
||||||
|
abbr { text-transform: none; }
|
||||||
|
|
||||||
|
/* Blockquotes */
|
||||||
|
blockquote { margin: 0 0 1.25em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #dddddd; }
|
||||||
|
blockquote cite { display: block; font-size: 0.8125em; color: #555555; }
|
||||||
|
blockquote cite:before { content: "\2014 \0020"; }
|
||||||
|
blockquote cite a, blockquote cite a:visited { color: #555555; }
|
||||||
|
|
||||||
|
blockquote, blockquote p { line-height: 1.6; color: #6f6f6f; }
|
||||||
|
|
||||||
|
/* Microformats */
|
||||||
|
.vcard { display: inline-block; margin: 0 0 1.25em 0; border: 1px solid #dddddd; padding: 0.625em 0.75em; }
|
||||||
|
.vcard li { margin: 0; display: block; }
|
||||||
|
.vcard .fn { font-weight: bold; font-size: 0.9375em; }
|
||||||
|
|
||||||
|
.vevent .summary { font-weight: bold; }
|
||||||
|
.vevent abbr { cursor: auto; text-decoration: none; font-weight: bold; border: none; padding: 0 0.0625em; }
|
||||||
|
|
||||||
|
@media only screen and (min-width: 768px) { h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.4; }
|
||||||
|
h1 { font-size: 2.75em; }
|
||||||
|
h2 { font-size: 2.3125em; }
|
||||||
|
h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.6875em; }
|
||||||
|
h4 { font-size: 1.4375em; } }
|
||||||
|
/* Tables */
|
||||||
|
table { background: white; margin-bottom: 1.25em; border: solid 1px #dddddd; }
|
||||||
|
table thead, table tfoot { background: whitesmoke; font-weight: bold; }
|
||||||
|
table thead tr th, table thead tr td, table tfoot tr th, table tfoot tr td { padding: 0.5em 0.625em 0.625em; font-size: inherit; color: #222222; text-align: left; }
|
||||||
|
table tr th, table tr td { padding: 0.5625em 0.625em; font-size: inherit; color: #222222; }
|
||||||
|
table tr.even, table tr.alt, table tr:nth-of-type(even) { background: #f9f9f9; }
|
||||||
|
table thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td { display: table-cell; line-height: 1.4; }
|
||||||
|
|
||||||
|
body { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; tab-size: 4; }
|
||||||
|
|
||||||
|
h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.4; }
|
||||||
|
|
||||||
|
.clearfix:before, .clearfix:after, .float-group:before, .float-group:after { content: " "; display: table; }
|
||||||
|
.clearfix:after, .float-group:after { clear: both; }
|
||||||
|
|
||||||
|
*:not(pre) > code { font-size: inherit; font-style: normal !important; letter-spacing: 0; padding: 0; line-height: inherit; word-wrap: break-word; }
|
||||||
|
*:not(pre) > code.nobreak { word-wrap: normal; }
|
||||||
|
*:not(pre) > code.nowrap { white-space: nowrap; }
|
||||||
|
|
||||||
|
pre, pre > code { line-height: 1.4; color: black; font-family: monospace, serif; font-weight: normal; }
|
||||||
|
|
||||||
|
em em { font-style: normal; }
|
||||||
|
|
||||||
|
strong strong { font-weight: normal; }
|
||||||
|
|
||||||
|
.keyseq { color: #555555; }
|
||||||
|
|
||||||
|
kbd { font-family: Consolas, "Liberation Mono", Courier, monospace; display: inline-block; color: #222222; font-size: 0.65em; line-height: 1.45; background-color: #f7f7f7; border: 1px solid #ccc; -webkit-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 0.1em white inset; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 0.1em white inset; margin: 0 0.15em; padding: 0.2em 0.5em; vertical-align: middle; position: relative; top: -0.1em; white-space: nowrap; }
|
||||||
|
|
||||||
|
.keyseq kbd:first-child { margin-left: 0; }
|
||||||
|
|
||||||
|
.keyseq kbd:last-child { margin-right: 0; }
|
||||||
|
|
||||||
|
.menuseq, .menu { color: #090909; }
|
||||||
|
|
||||||
|
b.button:before, b.button:after { position: relative; top: -1px; font-weight: normal; }
|
||||||
|
|
||||||
|
b.button:before { content: "["; padding: 0 3px 0 2px; }
|
||||||
|
|
||||||
|
b.button:after { content: "]"; padding: 0 2px 0 3px; }
|
||||||
|
|
||||||
|
#header, #content, #footnotes, #footer { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 62.5em; *zoom: 1; position: relative; padding-left: 0.9375em; padding-right: 0.9375em; }
|
||||||
|
#header:before, #header:after, #content:before, #content:after, #footnotes:before, #footnotes:after, #footer:before, #footer:after { content: " "; display: table; }
|
||||||
|
#header:after, #content:after, #footnotes:after, #footer:after { clear: both; }
|
||||||
|
|
||||||
|
#content { margin-top: 1.25em; }
|
||||||
|
|
||||||
|
#content:before { content: none; }
|
||||||
|
|
||||||
|
#header > h1:first-child { color: black; margin-top: 2.25rem; margin-bottom: 0; }
|
||||||
|
#header > h1:first-child + #toc { margin-top: 8px; border-top: 1px solid #dddddd; }
|
||||||
|
#header > h1:only-child, body.toc2 #header > h1:nth-last-child(2) { border-bottom: 1px solid #dddddd; padding-bottom: 8px; }
|
||||||
|
#header .details { border-bottom: 1px solid #dddddd; line-height: 1.45; padding-top: 0.25em; padding-bottom: 0.25em; padding-left: 0.25em; color: #555555; display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-flow: row wrap; -webkit-flex-flow: row wrap; flex-flow: row wrap; }
|
||||||
|
#header .details span:first-child { margin-left: -0.125em; }
|
||||||
|
#header .details span.email a { color: #6f6f6f; }
|
||||||
|
#header .details br { display: none; }
|
||||||
|
#header .details br + span:before { content: "\00a0\2013\00a0"; }
|
||||||
|
#header .details br + span.author:before { content: "\00a0\22c5\00a0"; color: #6f6f6f; }
|
||||||
|
#header .details br + span#revremark:before { content: "\00a0|\00a0"; }
|
||||||
|
#header #revnumber { text-transform: capitalize; }
|
||||||
|
#header #revnumber:after { content: "\00a0"; }
|
||||||
|
|
||||||
|
#content > h1:first-child:not([class]) { color: black; border-bottom: 1px solid #dddddd; padding-bottom: 8px; margin-top: 0; padding-top: 1rem; margin-bottom: 1.25rem; }
|
||||||
|
|
||||||
|
#toc { border-bottom: 1px solid #dddddd; padding-bottom: 0.5em; }
|
||||||
|
#toc > ul { margin-left: 0.125em; }
|
||||||
|
#toc ul.sectlevel0 > li > a { font-style: italic; }
|
||||||
|
#toc ul.sectlevel0 ul.sectlevel1 { margin: 0.5em 0; }
|
||||||
|
#toc ul { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; list-style-type: none; }
|
||||||
|
#toc li { line-height: 1.3334; margin-top: 0.3334em; }
|
||||||
|
#toc a { text-decoration: none; }
|
||||||
|
#toc a:active { text-decoration: underline; }
|
||||||
|
|
||||||
|
#toctitle { color: #6f6f6f; font-size: 1.2em; }
|
||||||
|
|
||||||
|
@media only screen and (min-width: 768px) { #toctitle { font-size: 1.375em; }
|
||||||
|
body.toc2 { padding-left: 15em; padding-right: 0; }
|
||||||
|
#toc.toc2 { margin-top: 0 !important; background-color: #f2f2f2; position: fixed; width: 15em; left: 0; top: 0; border-right: 1px solid #dddddd; border-top-width: 0 !important; border-bottom-width: 0 !important; z-index: 1000; padding: 1.25em 1em; height: 100%; overflow: auto; }
|
||||||
|
#toc.toc2 #toctitle { margin-top: 0; margin-bottom: 0.8rem; font-size: 1.2em; }
|
||||||
|
#toc.toc2 > ul { font-size: 0.9em; margin-bottom: 0; }
|
||||||
|
#toc.toc2 ul ul { margin-left: 0; padding-left: 1em; }
|
||||||
|
#toc.toc2 ul.sectlevel0 ul.sectlevel1 { padding-left: 0; margin-top: 0.5em; margin-bottom: 0.5em; }
|
||||||
|
body.toc2.toc-right { padding-left: 0; padding-right: 15em; }
|
||||||
|
body.toc2.toc-right #toc.toc2 { border-right-width: 0; border-left: 1px solid #dddddd; left: auto; right: 0; } }
|
||||||
|
@media only screen and (min-width: 1280px) { body.toc2 { padding-left: 20em; padding-right: 0; }
|
||||||
|
#toc.toc2 { width: 20em; }
|
||||||
|
#toc.toc2 #toctitle { font-size: 1.375em; }
|
||||||
|
#toc.toc2 > ul { font-size: 0.95em; }
|
||||||
|
#toc.toc2 ul ul { padding-left: 1.25em; }
|
||||||
|
body.toc2.toc-right { padding-left: 0; padding-right: 20em; } }
|
||||||
|
#content #toc { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
#content #toc > :first-child { margin-top: 0; }
|
||||||
|
#content #toc > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
#footer { max-width: 100%; background-color: #222222; padding: 1.25em; }
|
||||||
|
|
||||||
|
#footer-text { color: #dddddd; line-height: 1.44; }
|
||||||
|
|
||||||
|
.sect1 { padding-bottom: 0.625em; }
|
||||||
|
|
||||||
|
@media only screen and (min-width: 768px) { .sect1 { padding-bottom: 1.25em; } }
|
||||||
|
.sect1 + .sect1 { border-top: 1px solid #dddddd; }
|
||||||
|
|
||||||
|
#content h1 > a.anchor, h2 > a.anchor, h3 > a.anchor, #toctitle > a.anchor, .sidebarblock > .content > .title > a.anchor, h4 > a.anchor, h5 > a.anchor, h6 > a.anchor { position: absolute; z-index: 1001; width: 1.5ex; margin-left: -1.5ex; display: block; text-decoration: none !important; visibility: hidden; text-align: center; font-weight: normal; }
|
||||||
|
#content h1 > a.anchor:before, h2 > a.anchor:before, h3 > a.anchor:before, #toctitle > a.anchor:before, .sidebarblock > .content > .title > a.anchor:before, h4 > a.anchor:before, h5 > a.anchor:before, h6 > a.anchor:before { content: "\00A7"; font-size: 0.85em; display: block; padding-top: 0.1em; }
|
||||||
|
#content h1:hover > a.anchor, #content h1 > a.anchor:hover, h2:hover > a.anchor, h2 > a.anchor:hover, h3:hover > a.anchor, #toctitle:hover > a.anchor, .sidebarblock > .content > .title:hover > a.anchor, h3 > a.anchor:hover, #toctitle > a.anchor:hover, .sidebarblock > .content > .title > a.anchor:hover, h4:hover > a.anchor, h4 > a.anchor:hover, h5:hover > a.anchor, h5 > a.anchor:hover, h6:hover > a.anchor, h6 > a.anchor:hover { visibility: visible; }
|
||||||
|
#content h1 > a.link, h2 > a.link, h3 > a.link, #toctitle > a.link, .sidebarblock > .content > .title > a.link, h4 > a.link, h5 > a.link, h6 > a.link { color: #222222; text-decoration: none; }
|
||||||
|
#content h1 > a.link:hover, h2 > a.link:hover, h3 > a.link:hover, #toctitle > a.link:hover, .sidebarblock > .content > .title > a.link:hover, h4 > a.link:hover, h5 > a.link:hover, h6 > a.link:hover { color: #151515; }
|
||||||
|
|
||||||
|
.audioblock, .imageblock, .literalblock, .listingblock, .stemblock, .videoblock { margin-bottom: 1.25em; }
|
||||||
|
|
||||||
|
.admonitionblock td.content > .title, .audioblock > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .stemblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, table.tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title { text-rendering: optimizeLegibility; text-align: left; }
|
||||||
|
|
||||||
|
table.tableblock > caption.title { white-space: nowrap; overflow: visible; max-width: 0; }
|
||||||
|
|
||||||
|
.paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p { color: black; }
|
||||||
|
|
||||||
|
table.tableblock #preamble > .sectionbody > .paragraph:first-of-type p { font-size: inherit; }
|
||||||
|
|
||||||
|
.admonitionblock > table { border-collapse: separate; border: 0; background: none; width: 100%; }
|
||||||
|
.admonitionblock > table td.icon { text-align: center; width: 80px; }
|
||||||
|
.admonitionblock > table td.icon img { max-width: initial; }
|
||||||
|
.admonitionblock > table td.icon .title { font-weight: bold; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; text-transform: uppercase; }
|
||||||
|
.admonitionblock > table td.content { padding-left: 1.125em; padding-right: 1.25em; border-left: 1px solid #dddddd; color: #555555; }
|
||||||
|
.admonitionblock > table td.content > :last-child > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
.exampleblock > .content { border-style: solid; border-width: 1px; border-color: #e6e6e6; margin-bottom: 1.25em; padding: 1.25em; background: white; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
.exampleblock > .content > :first-child { margin-top: 0; }
|
||||||
|
.exampleblock > .content > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
.sidebarblock { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
.sidebarblock > :first-child { margin-top: 0; }
|
||||||
|
.sidebarblock > :last-child { margin-bottom: 0; }
|
||||||
|
.sidebarblock > .content > .title { color: #6f6f6f; margin-top: 0; }
|
||||||
|
|
||||||
|
.exampleblock > .content > :last-child > :last-child, .exampleblock > .content .olist > ol > li:last-child > :last-child, .exampleblock > .content .ulist > ul > li:last-child > :last-child, .exampleblock > .content .qlist > ol > li:last-child > :last-child, .sidebarblock > .content > :last-child > :last-child, .sidebarblock > .content .olist > ol > li:last-child > :last-child, .sidebarblock > .content .ulist > ul > li:last-child > :last-child, .sidebarblock > .content .qlist > ol > li:last-child > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
.literalblock pre, .listingblock pre:not(.highlight), .listingblock pre[class="highlight"], .listingblock pre[class^="highlight "], .listingblock pre.CodeRay, .listingblock pre.prettyprint { background: #eeeeee; }
|
||||||
|
.sidebarblock .literalblock pre, .sidebarblock .listingblock pre:not(.highlight), .sidebarblock .listingblock pre[class="highlight"], .sidebarblock .listingblock pre[class^="highlight "], .sidebarblock .listingblock pre.CodeRay, .sidebarblock .listingblock pre.prettyprint { background: #f2f1f1; }
|
||||||
|
|
||||||
|
.literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { border: 1px solid #cccccc; -webkit-border-radius: 0; border-radius: 0; word-wrap: break-word; padding: 0.8em 0.8em 0.65em 0.8em; font-size: 0.8125em; }
|
||||||
|
.literalblock pre.nowrap, .literalblock pre[class].nowrap, .listingblock pre.nowrap, .listingblock pre[class].nowrap { overflow-x: auto; white-space: pre; word-wrap: normal; }
|
||||||
|
@media only screen and (min-width: 768px) { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 0.90625em; } }
|
||||||
|
@media only screen and (min-width: 1280px) { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 1em; } }
|
||||||
|
|
||||||
|
.literalblock.output pre { color: #eeeeee; background-color: black; }
|
||||||
|
|
||||||
|
.listingblock pre.highlightjs { padding: 0; }
|
||||||
|
.listingblock pre.highlightjs > code { padding: 0.8em 0.8em 0.65em 0.8em; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
|
||||||
|
.listingblock > .content { position: relative; }
|
||||||
|
|
||||||
|
.listingblock code[data-lang]:before { display: none; content: attr(data-lang); position: absolute; font-size: 0.75em; top: 0.425rem; right: 0.5rem; line-height: 1; text-transform: uppercase; color: #999; }
|
||||||
|
|
||||||
|
.listingblock:hover code[data-lang]:before { display: block; }
|
||||||
|
|
||||||
|
.listingblock.terminal pre .command:before { content: attr(data-prompt); padding-right: 0.5em; color: #999; }
|
||||||
|
|
||||||
|
.listingblock.terminal pre .command:not([data-prompt]):before { content: "$"; }
|
||||||
|
|
||||||
|
table.pyhltable { border-collapse: separate; border: 0; margin-bottom: 0; background: none; }
|
||||||
|
|
||||||
|
table.pyhltable td { vertical-align: top; padding-top: 0; padding-bottom: 0; line-height: 1.4; }
|
||||||
|
|
||||||
|
table.pyhltable td.code { padding-left: .75em; padding-right: 0; }
|
||||||
|
|
||||||
|
pre.pygments .lineno, table.pyhltable td:not(.code) { color: #999; padding-left: 0; padding-right: .5em; border-right: 1px solid #dddddd; }
|
||||||
|
|
||||||
|
pre.pygments .lineno { display: inline-block; margin-right: .25em; }
|
||||||
|
|
||||||
|
table.pyhltable .linenodiv { background: none !important; padding-right: 0 !important; }
|
||||||
|
|
||||||
|
.quoteblock { margin: 0 1em 1.25em 1.5em; display: table; }
|
||||||
|
.quoteblock > .title { margin-left: -1.5em; margin-bottom: 0.75em; }
|
||||||
|
.quoteblock blockquote, .quoteblock blockquote p { color: #6f6f6f; font-size: 1.15rem; line-height: 1.75; word-spacing: 0.1em; letter-spacing: 0; font-style: italic; text-align: justify; }
|
||||||
|
.quoteblock blockquote { margin: 0; padding: 0; border: 0; }
|
||||||
|
.quoteblock blockquote:before { content: "\201c"; float: left; font-size: 2.75em; font-weight: bold; line-height: 0.6em; margin-left: -0.6em; color: #6f6f6f; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
|
||||||
|
.quoteblock blockquote > .paragraph:last-child p { margin-bottom: 0; }
|
||||||
|
.quoteblock .attribution { margin-top: 0.5em; margin-right: 0.5ex; text-align: right; }
|
||||||
|
.quoteblock .quoteblock { margin-left: 0; margin-right: 0; padding: 0.5em 0; border-left: 3px solid #555555; }
|
||||||
|
.quoteblock .quoteblock blockquote { padding: 0 0 0 0.75em; }
|
||||||
|
.quoteblock .quoteblock blockquote:before { display: none; }
|
||||||
|
|
||||||
|
.verseblock { margin: 0 1em 1.25em 1em; }
|
||||||
|
.verseblock pre { font-family: "Open Sans", "DejaVu Sans", sans; font-size: 1.15rem; color: #6f6f6f; font-weight: 300; text-rendering: optimizeLegibility; }
|
||||||
|
.verseblock pre strong { font-weight: 400; }
|
||||||
|
.verseblock .attribution { margin-top: 1.25rem; margin-left: 0.5ex; }
|
||||||
|
|
||||||
|
.quoteblock .attribution, .verseblock .attribution { font-size: 0.8125em; line-height: 1.45; font-style: italic; }
|
||||||
|
.quoteblock .attribution br, .verseblock .attribution br { display: none; }
|
||||||
|
.quoteblock .attribution cite, .verseblock .attribution cite { display: block; letter-spacing: -0.025em; color: #555555; }
|
||||||
|
|
||||||
|
.quoteblock.abstract { margin: 0 0 1.25em 0; display: block; }
|
||||||
|
.quoteblock.abstract blockquote, .quoteblock.abstract blockquote p { text-align: left; word-spacing: 0; }
|
||||||
|
.quoteblock.abstract blockquote:before, .quoteblock.abstract blockquote p:first-of-type:before { display: none; }
|
||||||
|
|
||||||
|
table.tableblock { max-width: 100%; border-collapse: separate; }
|
||||||
|
table.tableblock td > .paragraph:last-child p > p:last-child, table.tableblock th > p:last-child, table.tableblock td > p:last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
table.tableblock, th.tableblock, td.tableblock { border: 0 solid #dddddd; }
|
||||||
|
|
||||||
|
table.grid-all th.tableblock, table.grid-all td.tableblock { border-width: 0 1px 1px 0; }
|
||||||
|
|
||||||
|
table.grid-all tfoot > tr > th.tableblock, table.grid-all tfoot > tr > td.tableblock { border-width: 1px 1px 0 0; }
|
||||||
|
|
||||||
|
table.grid-cols th.tableblock, table.grid-cols td.tableblock { border-width: 0 1px 0 0; }
|
||||||
|
|
||||||
|
table.grid-all * > tr > .tableblock:last-child, table.grid-cols * > tr > .tableblock:last-child { border-right-width: 0; }
|
||||||
|
|
||||||
|
table.grid-rows th.tableblock, table.grid-rows td.tableblock { border-width: 0 0 1px 0; }
|
||||||
|
|
||||||
|
table.grid-all tbody > tr:last-child > th.tableblock, table.grid-all tbody > tr:last-child > td.tableblock, table.grid-all thead:last-child > tr > th.tableblock, table.grid-rows tbody > tr:last-child > th.tableblock, table.grid-rows tbody > tr:last-child > td.tableblock, table.grid-rows thead:last-child > tr > th.tableblock { border-bottom-width: 0; }
|
||||||
|
|
||||||
|
table.grid-rows tfoot > tr > th.tableblock, table.grid-rows tfoot > tr > td.tableblock { border-width: 1px 0 0 0; }
|
||||||
|
|
||||||
|
table.frame-all { border-width: 1px; }
|
||||||
|
|
||||||
|
table.frame-sides { border-width: 0 1px; }
|
||||||
|
|
||||||
|
table.frame-topbot { border-width: 1px 0; }
|
||||||
|
|
||||||
|
th.halign-left, td.halign-left { text-align: left; }
|
||||||
|
|
||||||
|
th.halign-right, td.halign-right { text-align: right; }
|
||||||
|
|
||||||
|
th.halign-center, td.halign-center { text-align: center; }
|
||||||
|
|
||||||
|
th.valign-top, td.valign-top { vertical-align: top; }
|
||||||
|
|
||||||
|
th.valign-bottom, td.valign-bottom { vertical-align: bottom; }
|
||||||
|
|
||||||
|
th.valign-middle, td.valign-middle { vertical-align: middle; }
|
||||||
|
|
||||||
|
table thead th, table tfoot th { font-weight: bold; }
|
||||||
|
|
||||||
|
tbody tr th { display: table-cell; line-height: 1.4; background: whitesmoke; }
|
||||||
|
|
||||||
|
tbody tr th, tbody tr th p, tfoot tr th, tfoot tr th p { color: #222222; font-weight: bold; }
|
||||||
|
|
||||||
|
p.tableblock > code:only-child { background: none; padding: 0; }
|
||||||
|
|
||||||
|
p.tableblock { font-size: 1em; }
|
||||||
|
|
||||||
|
td > div.verse { white-space: pre; }
|
||||||
|
|
||||||
|
ol { margin-left: 1.75em; }
|
||||||
|
|
||||||
|
ul li ol { margin-left: 1.5em; }
|
||||||
|
|
||||||
|
dl dd { margin-left: 1.125em; }
|
||||||
|
|
||||||
|
dl dd:last-child, dl dd:last-child > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
ol > li p, ul > li p, ul dd, ol dd, .olist .olist, .ulist .ulist, .ulist .olist, .olist .ulist { margin-bottom: 0.625em; }
|
||||||
|
|
||||||
|
ul.unstyled, ol.unnumbered, ul.checklist, ul.none { list-style-type: none; }
|
||||||
|
|
||||||
|
ul.unstyled, ol.unnumbered, ul.checklist { margin-left: 0.625em; }
|
||||||
|
|
||||||
|
ul.checklist li > p:first-child > .fa-square-o:first-child, ul.checklist li > p:first-child > .fa-check-square-o:first-child { width: 1em; font-size: 0.85em; }
|
||||||
|
|
||||||
|
ul.checklist li > p:first-child > input[type="checkbox"]:first-child { width: 1em; position: relative; top: 1px; }
|
||||||
|
|
||||||
|
ul.inline { margin: 0 auto 0.625em auto; margin-left: -1.375em; margin-right: 0; padding: 0; list-style: none; overflow: hidden; }
|
||||||
|
ul.inline > li { list-style: none; float: left; margin-left: 1.375em; display: block; }
|
||||||
|
ul.inline > li > * { display: block; }
|
||||||
|
|
||||||
|
.unstyled dl dt { font-weight: normal; font-style: normal; }
|
||||||
|
|
||||||
|
ol.arabic { list-style-type: decimal; }
|
||||||
|
|
||||||
|
ol.decimal { list-style-type: decimal-leading-zero; }
|
||||||
|
|
||||||
|
ol.loweralpha { list-style-type: lower-alpha; }
|
||||||
|
|
||||||
|
ol.upperalpha { list-style-type: upper-alpha; }
|
||||||
|
|
||||||
|
ol.lowerroman { list-style-type: lower-roman; }
|
||||||
|
|
||||||
|
ol.upperroman { list-style-type: upper-roman; }
|
||||||
|
|
||||||
|
ol.lowergreek { list-style-type: lower-greek; }
|
||||||
|
|
||||||
|
.hdlist > table, .colist > table { border: 0; background: none; }
|
||||||
|
.hdlist > table > tbody > tr, .colist > table > tbody > tr { background: none; }
|
||||||
|
|
||||||
|
td.hdlist1, td.hdlist2 { vertical-align: top; padding: 0 0.625em; }
|
||||||
|
|
||||||
|
td.hdlist1 { font-weight: bold; padding-bottom: 1.25em; }
|
||||||
|
|
||||||
|
.literalblock + .colist, .listingblock + .colist { margin-top: -0.5em; }
|
||||||
|
|
||||||
|
.colist > table tr > td:first-of-type { padding: 0 0.75em; line-height: 1; }
|
||||||
|
.colist > table tr > td:first-of-type img { max-width: initial; }
|
||||||
|
.colist > table tr > td:last-of-type { padding: 0.25em 0; }
|
||||||
|
|
||||||
|
.thumb, .th { line-height: 0; display: inline-block; border: solid 4px white; -webkit-box-shadow: 0 0 0 1px #dddddd; box-shadow: 0 0 0 1px #dddddd; }
|
||||||
|
|
||||||
|
.imageblock.left, .imageblock[style*="float: left"] { margin: 0.25em 0.625em 1.25em 0; }
|
||||||
|
.imageblock.right, .imageblock[style*="float: right"] { margin: 0.25em 0 1.25em 0.625em; }
|
||||||
|
.imageblock > .title { margin-bottom: 0; }
|
||||||
|
.imageblock.thumb, .imageblock.th { border-width: 6px; }
|
||||||
|
.imageblock.thumb > .title, .imageblock.th > .title { padding: 0 0.125em; }
|
||||||
|
|
||||||
|
.image.left, .image.right { margin-top: 0.25em; margin-bottom: 0.25em; display: inline-block; line-height: 0; }
|
||||||
|
.image.left { margin-right: 0.625em; }
|
||||||
|
.image.right { margin-left: 0.625em; }
|
||||||
|
|
||||||
|
a.image { text-decoration: none; display: inline-block; }
|
||||||
|
a.image object { pointer-events: none; }
|
||||||
|
|
||||||
|
sup.footnote, sup.footnoteref { font-size: 0.875em; position: static; vertical-align: super; }
|
||||||
|
sup.footnote a, sup.footnoteref a { text-decoration: none; }
|
||||||
|
sup.footnote a:active, sup.footnoteref a:active { text-decoration: underline; }
|
||||||
|
|
||||||
|
#footnotes { padding-top: 0.75em; padding-bottom: 0.75em; margin-bottom: 0.625em; }
|
||||||
|
#footnotes hr { width: 20%; min-width: 6.25em; margin: -0.25em 0 0.75em 0; border-width: 1px 0 0 0; }
|
||||||
|
#footnotes .footnote { padding: 0 0.375em 0 0.225em; line-height: 1.3334; font-size: 0.875em; margin-left: 1.2em; text-indent: -1.05em; margin-bottom: 0.2em; }
|
||||||
|
#footnotes .footnote a:first-of-type { font-weight: bold; text-decoration: none; }
|
||||||
|
#footnotes .footnote:last-of-type { margin-bottom: 0; }
|
||||||
|
#content #footnotes { margin-top: -0.625em; margin-bottom: 0; padding: 0.75em 0; }
|
||||||
|
|
||||||
|
.gist .file-data > table { border: 0; background: #fff; width: 100%; margin-bottom: 0; }
|
||||||
|
.gist .file-data > table td.line-data { width: 99%; }
|
||||||
|
|
||||||
|
div.unbreakable { page-break-inside: avoid; }
|
||||||
|
|
||||||
|
.big { font-size: larger; }
|
||||||
|
|
||||||
|
.small { font-size: smaller; }
|
||||||
|
|
||||||
|
.underline { text-decoration: underline; }
|
||||||
|
|
||||||
|
.overline { text-decoration: overline; }
|
||||||
|
|
||||||
|
.line-through { text-decoration: line-through; }
|
||||||
|
|
||||||
|
.aqua { color: #00bfbf; }
|
||||||
|
|
||||||
|
.aqua-background { background-color: #00fafa; }
|
||||||
|
|
||||||
|
.black { color: black; }
|
||||||
|
|
||||||
|
.black-background { background-color: black; }
|
||||||
|
|
||||||
|
.blue { color: #0000bf; }
|
||||||
|
|
||||||
|
.blue-background { background-color: #0000fa; }
|
||||||
|
|
||||||
|
.fuchsia { color: #bf00bf; }
|
||||||
|
|
||||||
|
.fuchsia-background { background-color: #fa00fa; }
|
||||||
|
|
||||||
|
.gray { color: #606060; }
|
||||||
|
|
||||||
|
.gray-background { background-color: #7d7d7d; }
|
||||||
|
|
||||||
|
.green { color: #006000; }
|
||||||
|
|
||||||
|
.green-background { background-color: #007d00; }
|
||||||
|
|
||||||
|
.lime { color: #00bf00; }
|
||||||
|
|
||||||
|
.lime-background { background-color: #00fa00; }
|
||||||
|
|
||||||
|
.maroon { color: #600000; }
|
||||||
|
|
||||||
|
.maroon-background { background-color: #7d0000; }
|
||||||
|
|
||||||
|
.navy { color: #000060; }
|
||||||
|
|
||||||
|
.navy-background { background-color: #00007d; }
|
||||||
|
|
||||||
|
.olive { color: #606000; }
|
||||||
|
|
||||||
|
.olive-background { background-color: #7d7d00; }
|
||||||
|
|
||||||
|
.purple { color: #600060; }
|
||||||
|
|
||||||
|
.purple-background { background-color: #7d007d; }
|
||||||
|
|
||||||
|
.red { color: #bf0000; }
|
||||||
|
|
||||||
|
.red-background { background-color: #fa0000; }
|
||||||
|
|
||||||
|
.silver { color: #909090; }
|
||||||
|
|
||||||
|
.silver-background { background-color: #bcbcbc; }
|
||||||
|
|
||||||
|
.teal { color: #006060; }
|
||||||
|
|
||||||
|
.teal-background { background-color: #007d7d; }
|
||||||
|
|
||||||
|
.white { color: #bfbfbf; }
|
||||||
|
|
||||||
|
.white-background { background-color: #fafafa; }
|
||||||
|
|
||||||
|
.yellow { color: #bfbf00; }
|
||||||
|
|
||||||
|
.yellow-background { background-color: #fafa00; }
|
||||||
|
|
||||||
|
span.icon > .fa { cursor: default; }
|
||||||
|
|
||||||
|
.admonitionblock td.icon [class^="fa icon-"] { font-size: 2.5em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); cursor: default; }
|
||||||
|
.admonitionblock td.icon .icon-note:before { content: "\f05a"; color: #207c98; }
|
||||||
|
.admonitionblock td.icon .icon-tip:before { content: "\f0eb"; text-shadow: 1px 1px 2px rgba(155, 155, 0, 0.8); color: #111; }
|
||||||
|
.admonitionblock td.icon .icon-warning:before { content: "\f071"; color: #bf6900; }
|
||||||
|
.admonitionblock td.icon .icon-caution:before { content: "\f06d"; color: #bf3400; }
|
||||||
|
.admonitionblock td.icon .icon-important:before { content: "\f06a"; color: #bf0000; }
|
||||||
|
|
||||||
|
.conum[data-value] { display: inline-block; color: #fff !important; background-color: #222222; -webkit-border-radius: 100px; border-radius: 100px; text-align: center; font-size: 0.75em; width: 1.67em; height: 1.67em; line-height: 1.67em; font-family: "Open Sans", "DejaVu Sans", sans-serif; font-style: normal; font-weight: bold; }
|
||||||
|
.conum[data-value] * { color: #fff !important; }
|
||||||
|
.conum[data-value] + b { display: none; }
|
||||||
|
.conum[data-value]:after { content: attr(data-value); }
|
||||||
|
pre .conum[data-value] { position: relative; top: -0.125em; }
|
||||||
|
|
||||||
|
b.conum * { color: inherit !important; }
|
||||||
|
|
||||||
|
.conum:not([data-value]):empty { display: none; }
|
||||||
|
|
||||||
|
.literalblock pre, .listingblock pre { background: #eeeeee; }
|
4
http/src/docs/asciidoclet/overview.adoc
Normal file
4
http/src/docs/asciidoclet/overview.adoc
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
= Elasticsearch Java client
|
||||||
|
Jörg Prante
|
||||||
|
Version 5.4.0.0
|
||||||
|
|
|
@ -0,0 +1,164 @@
|
||||||
|
package org.elasticsearch.action.admin.cluster.node.info;
|
||||||
|
|
||||||
|
import org.elasticsearch.Build;
|
||||||
|
import org.elasticsearch.Version;
|
||||||
|
import org.elasticsearch.action.FailedNodeException;
|
||||||
|
import org.elasticsearch.cluster.ClusterName;
|
||||||
|
import org.elasticsearch.cluster.node.DiscoveryNode;
|
||||||
|
import org.elasticsearch.common.CheckedFunction;
|
||||||
|
import org.elasticsearch.common.transport.TransportAddress;
|
||||||
|
import org.elasticsearch.common.unit.ByteSizeValue;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
|
import org.elasticsearch.http.HttpInfo;
|
||||||
|
import org.elasticsearch.ingest.IngestInfo;
|
||||||
|
import org.elasticsearch.monitor.jvm.JvmInfo;
|
||||||
|
import org.elasticsearch.monitor.os.OsInfo;
|
||||||
|
import org.elasticsearch.monitor.process.ProcessInfo;
|
||||||
|
import org.elasticsearch.threadpool.ThreadPoolInfo;
|
||||||
|
import org.elasticsearch.transport.TransportInfo;
|
||||||
|
import org.xbib.elasticsearch.client.http.HttpAction;
|
||||||
|
import org.xbib.elasticsearch.client.http.HttpActionContext;
|
||||||
|
import org.xbib.netty.http.client.RequestBuilder;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.UncheckedIOException;
|
||||||
|
import java.net.InetAddress;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.LinkedList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class HttpNodesInfoAction extends HttpAction<NodesInfoRequest, NodesInfoResponse> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public NodesInfoAction getActionInstance() {
|
||||||
|
return NodesInfoAction.INSTANCE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Endpoint "/_nodes/{nodeId}/{metrics}"
|
||||||
|
*
|
||||||
|
* @param url url
|
||||||
|
* @param request request
|
||||||
|
* @return HTTP request
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
protected RequestBuilder createHttpRequest(String url, NodesInfoRequest request) {
|
||||||
|
StringBuilder path = new StringBuilder("/_nodes");
|
||||||
|
if (request.nodesIds() != null) {
|
||||||
|
String nodeIds = String.join(",", request.nodesIds());
|
||||||
|
if (nodeIds.length() > 0) {
|
||||||
|
path.append("/").append(nodeIds);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
path.append("/_all");
|
||||||
|
}
|
||||||
|
List<String> metrics = new LinkedList<>();
|
||||||
|
if (request.http()) {
|
||||||
|
metrics.add("http");
|
||||||
|
}
|
||||||
|
if (request.jvm()) {
|
||||||
|
metrics.add("jvm");
|
||||||
|
}
|
||||||
|
if (request.os()) {
|
||||||
|
metrics.add("os");
|
||||||
|
}
|
||||||
|
if (request.plugins()) {
|
||||||
|
metrics.add("plugins");
|
||||||
|
}
|
||||||
|
if (request.process()) {
|
||||||
|
metrics.add("process");
|
||||||
|
}
|
||||||
|
if (request.settings()) {
|
||||||
|
metrics.add("settings");
|
||||||
|
}
|
||||||
|
if (request.threadPool()) {
|
||||||
|
metrics.add("thread_pool");
|
||||||
|
}
|
||||||
|
if (request.transport()) {
|
||||||
|
metrics.add("transport");
|
||||||
|
}
|
||||||
|
if (!metrics.isEmpty()) {
|
||||||
|
path.append("/").append(String.join(",", metrics));
|
||||||
|
}
|
||||||
|
return newGetRequest(url, path.toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected CheckedFunction<XContentParser, NodesInfoResponse, IOException> entityParser() {
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
protected NodesInfoResponse createResponse(HttpActionContext<NodesInfoRequest, NodesInfoResponse> httpContext) {
|
||||||
|
Map<String, Object> map = null;
|
||||||
|
|
||||||
|
String string = (String)map.get("cluster_name");
|
||||||
|
ClusterName clusterName = new ClusterName(string);
|
||||||
|
List<NodeInfo> nodeInfoList = new LinkedList<>();
|
||||||
|
map = (Map<String, Object>)map.get("nodes");
|
||||||
|
for (Map.Entry<String, Object> entry : map.entrySet()) {
|
||||||
|
String nodeId = entry.getKey();
|
||||||
|
String ephemeralId = null;
|
||||||
|
Map<String,Object> map2 = (Map<String, Object>) entry.getValue();
|
||||||
|
String nodeName = (String)map2.get("name");
|
||||||
|
String hostName = (String)map2.get("host");
|
||||||
|
String hostAddress = (String)map2.get("ip");
|
||||||
|
// <host>[/<ip>][:<port>]
|
||||||
|
String transportAddressString = (String)map2.get("transport_address");
|
||||||
|
int pos = transportAddressString.indexOf(':');
|
||||||
|
String host = pos > 0 ? transportAddressString.substring(0, pos) : transportAddressString;
|
||||||
|
int port = Integer.parseInt(pos > 0 ? transportAddressString.substring(pos + 1) : "0");
|
||||||
|
pos = host.indexOf('/');
|
||||||
|
host = pos > 0 ? host.substring(0, pos) : host;
|
||||||
|
try {
|
||||||
|
InetAddress[] inetAddresses = InetAddress.getAllByName(host);
|
||||||
|
TransportAddress transportAddress = new TransportAddress(inetAddresses[0], port);
|
||||||
|
Build build = new Build((String) map2.get("build"), (String)map2.get("date"), (Boolean)map2.get("snapshst"));
|
||||||
|
Map<String, String> attributes = Collections.emptyMap();
|
||||||
|
Set<DiscoveryNode.Role> roles = new HashSet<>();
|
||||||
|
Version version = Version.fromString((String) map2.get("version"));
|
||||||
|
DiscoveryNode discoveryNode = new DiscoveryNode(nodeName, nodeId, ephemeralId, hostName, hostAddress,
|
||||||
|
transportAddress,
|
||||||
|
attributes, roles, version);
|
||||||
|
/*Map<String, String> settingsMap = map2.containsKey("settings") ?
|
||||||
|
XContentHelper.
|
||||||
|
SettingsLoader.Helper.loadNestedFromMap((Map<String, Object>) map2.get("settings")) :
|
||||||
|
Collections.emptyMap();
|
||||||
|
|
||||||
|
Settings settings = Settings.builder()
|
||||||
|
|
||||||
|
.put(settingsMap)
|
||||||
|
.build();*/
|
||||||
|
OsInfo os = null;
|
||||||
|
ProcessInfo processInfo = null;
|
||||||
|
JvmInfo jvmInfo = null;
|
||||||
|
ThreadPoolInfo threadPoolInfo = null;
|
||||||
|
TransportInfo transportInfo = null;
|
||||||
|
HttpInfo httpInfo = null;
|
||||||
|
PluginsAndModules pluginsAndModules = null;
|
||||||
|
IngestInfo ingestInfo = null;
|
||||||
|
ByteSizeValue totalIndexingBuffer = null;
|
||||||
|
NodeInfo nodeInfo = new NodeInfo(version,
|
||||||
|
build,
|
||||||
|
discoveryNode,
|
||||||
|
//serviceAttributes,
|
||||||
|
//settings,
|
||||||
|
null,
|
||||||
|
os, processInfo, jvmInfo, threadPoolInfo, transportInfo, httpInfo, pluginsAndModules,
|
||||||
|
ingestInfo,
|
||||||
|
totalIndexingBuffer);
|
||||||
|
nodeInfoList.add(nodeInfo);
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new UncheckedIOException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
List<FailedNodeException> failures = null;
|
||||||
|
return new NodesInfoResponse(clusterName, nodeInfoList, failures);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,48 @@
|
||||||
|
package org.elasticsearch.action.admin.cluster.settings;
|
||||||
|
|
||||||
|
import org.elasticsearch.common.CheckedFunction;
|
||||||
|
import org.elasticsearch.common.xcontent.ToXContent;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentBuilder;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
|
import org.xbib.elasticsearch.client.http.HttpAction;
|
||||||
|
import org.xbib.netty.http.client.RequestBuilder;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.UncheckedIOException;
|
||||||
|
|
||||||
|
import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class HttpClusterUpdateSettingsAction extends HttpAction<ClusterUpdateSettingsRequest, ClusterUpdateSettingsResponse> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ClusterUpdateSettingsAction getActionInstance() {
|
||||||
|
return ClusterUpdateSettingsAction.INSTANCE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected RequestBuilder createHttpRequest(String url, ClusterUpdateSettingsRequest request) {
|
||||||
|
try {
|
||||||
|
XContentBuilder builder = jsonBuilder();
|
||||||
|
builder.startObject().startObject("persistent");
|
||||||
|
request.persistentSettings().toXContent(builder, ToXContent.EMPTY_PARAMS);
|
||||||
|
builder.endObject();
|
||||||
|
builder.startObject("transient");
|
||||||
|
request.transientSettings().toXContent(builder, ToXContent.EMPTY_PARAMS);
|
||||||
|
builder.endObject().endObject();
|
||||||
|
return newPutRequest(url, "/_cluster/settings", builder.bytes());
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new UncheckedIOException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected CheckedFunction<XContentParser, ClusterUpdateSettingsResponse, IOException> entityParser() {
|
||||||
|
return parser -> {
|
||||||
|
// TODO(jprante)
|
||||||
|
return new ClusterUpdateSettingsResponse();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
package org.elasticsearch.action.admin.indices.create;
|
||||||
|
|
||||||
|
import org.elasticsearch.common.CheckedFunction;
|
||||||
|
import org.elasticsearch.common.xcontent.ToXContent;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentBuilder;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentFactory;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
|
import org.xbib.elasticsearch.client.http.HttpAction;
|
||||||
|
import org.xbib.netty.http.client.Request;
|
||||||
|
import org.xbib.netty.http.client.RequestBuilder;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
public class HttpCreateIndexAction extends HttpAction<CreateIndexRequest, CreateIndexResponse> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public CreateIndexAction getActionInstance() {
|
||||||
|
return CreateIndexAction.INSTANCE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected RequestBuilder createHttpRequest(String url, CreateIndexRequest createIndexRequest) throws IOException {
|
||||||
|
XContentBuilder builder = XContentFactory.jsonBuilder();
|
||||||
|
builder = createIndexRequest.toXContent(builder, ToXContent.EMPTY_PARAMS);
|
||||||
|
return newPutRequest(url, "/" + createIndexRequest.index(), builder.bytes());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected CheckedFunction<XContentParser, CreateIndexResponse, IOException> entityParser() {
|
||||||
|
return parser -> {
|
||||||
|
// TODO(jprante) build real create index response
|
||||||
|
return new CreateIndexResponse();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
package org.elasticsearch.action.admin.indices.refresh;
|
||||||
|
|
||||||
|
import org.elasticsearch.common.CheckedFunction;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
|
import org.xbib.elasticsearch.client.http.HttpAction;
|
||||||
|
import org.xbib.netty.http.client.RequestBuilder;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class HttpRefreshIndexAction extends HttpAction<RefreshRequest, RefreshResponse> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public RefreshAction getActionInstance() {
|
||||||
|
return RefreshAction.INSTANCE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected RequestBuilder createHttpRequest(String url, RefreshRequest request) {
|
||||||
|
String index = request.indices() != null ? "/" + String.join(",", request.indices()) : "";
|
||||||
|
return newPostRequest(url, index + "/_refresh");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected CheckedFunction<XContentParser, RefreshResponse, IOException> entityParser() {
|
||||||
|
return parser -> new RefreshResponse();
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
package org.elasticsearch.action.admin.indices.settings.put;
|
||||||
|
|
||||||
|
import org.elasticsearch.common.CheckedFunction;
|
||||||
|
import org.elasticsearch.common.xcontent.ToXContent;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentBuilder;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
|
import org.xbib.elasticsearch.client.http.HttpAction;
|
||||||
|
import org.xbib.netty.http.client.RequestBuilder;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.UncheckedIOException;
|
||||||
|
|
||||||
|
import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class HttpUpdateSettingsAction extends HttpAction<UpdateSettingsRequest, UpdateSettingsResponse> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public UpdateSettingsAction getActionInstance() {
|
||||||
|
return UpdateSettingsAction.INSTANCE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected RequestBuilder createHttpRequest(String url, UpdateSettingsRequest request) {
|
||||||
|
try {
|
||||||
|
XContentBuilder builder = jsonBuilder();
|
||||||
|
builder.startObject();
|
||||||
|
request.settings().toXContent(builder, ToXContent.EMPTY_PARAMS);
|
||||||
|
builder.endObject();
|
||||||
|
String index = request.indices() != null ? "/" + String.join(",", request.indices()) : "";
|
||||||
|
return newPutRequest(url, index + "/_settings", builder.bytes());
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new UncheckedIOException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected CheckedFunction<XContentParser, UpdateSettingsResponse, IOException> entityParser() {
|
||||||
|
return parser -> new UpdateSettingsResponse();
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,69 @@
|
||||||
|
package org.elasticsearch.action.bulk;
|
||||||
|
|
||||||
|
import org.elasticsearch.action.DocWriteRequest;
|
||||||
|
import org.elasticsearch.action.delete.DeleteRequest;
|
||||||
|
import org.elasticsearch.action.index.IndexRequest;
|
||||||
|
import org.elasticsearch.common.CheckedFunction;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
|
import org.xbib.elasticsearch.client.http.HttpAction;
|
||||||
|
import org.xbib.netty.http.client.RequestBuilder;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class HttpBulkAction extends HttpAction<BulkRequest, BulkResponse> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BulkAction getActionInstance() {
|
||||||
|
return BulkAction.INSTANCE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected RequestBuilder createHttpRequest(String url, BulkRequest request) {
|
||||||
|
StringBuilder bulkContent = new StringBuilder();
|
||||||
|
for (DocWriteRequest<?> actionRequest : request.requests()) {
|
||||||
|
if (actionRequest instanceof IndexRequest) {
|
||||||
|
IndexRequest indexRequest = (IndexRequest) actionRequest;
|
||||||
|
bulkContent.append("{\"").append(indexRequest.opType()).append("\":{");
|
||||||
|
bulkContent.append("\"_index\":\"").append(indexRequest.index()).append("\"");
|
||||||
|
bulkContent.append(",\"_type\":\"").append(indexRequest.type()).append("\"");
|
||||||
|
if (indexRequest.id() != null) {
|
||||||
|
bulkContent.append(",\"_id\":\"").append(indexRequest.id()).append("\"");
|
||||||
|
}
|
||||||
|
if (indexRequest.routing() != null) {
|
||||||
|
bulkContent.append(",\"_routing\":\"").append(indexRequest.routing()).append("\"");
|
||||||
|
}
|
||||||
|
if (indexRequest.parent() != null) {
|
||||||
|
bulkContent.append(",\"_parent\":\"").append(indexRequest.parent()).append("\"");
|
||||||
|
}
|
||||||
|
if (indexRequest.version() > 0) {
|
||||||
|
bulkContent.append(",\"_version\":\"").append(indexRequest.version()).append("\"");
|
||||||
|
if (indexRequest.versionType() != null) {
|
||||||
|
bulkContent.append(",\"_version_type\":\"").append(indexRequest.versionType().name()).append("\"");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
bulkContent.append("}}\n");
|
||||||
|
bulkContent.append(indexRequest.source().utf8ToString());
|
||||||
|
bulkContent.append("\n");
|
||||||
|
} else if (actionRequest instanceof DeleteRequest) {
|
||||||
|
DeleteRequest deleteRequest = (DeleteRequest) actionRequest;
|
||||||
|
bulkContent.append("{\"delete\":{");
|
||||||
|
bulkContent.append("\"_index\":\"").append(deleteRequest.index()).append("\"");
|
||||||
|
bulkContent.append(",\"_type\":\"").append(deleteRequest.type()).append("\"");
|
||||||
|
bulkContent.append(",\"_id\":\"").append(deleteRequest.id()).append("\"");
|
||||||
|
if (deleteRequest.routing() != null) {
|
||||||
|
bulkContent.append(",\"_routing\":\"").append(deleteRequest.routing()).append("\""); // _routing
|
||||||
|
}
|
||||||
|
bulkContent.append("}}\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return newPostRequest(url, "/_bulk", bulkContent.toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected CheckedFunction<XContentParser, BulkResponse, IOException> entityParser() {
|
||||||
|
return BulkResponse::fromXContent;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
package org.elasticsearch.action.get;
|
||||||
|
|
||||||
|
import org.elasticsearch.action.GenericAction;
|
||||||
|
import org.elasticsearch.common.CheckedFunction;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
|
import org.xbib.elasticsearch.client.http.HttpAction;
|
||||||
|
import org.xbib.netty.http.client.RequestBuilder;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*/
|
||||||
|
public class HttpExistsAction extends HttpAction<GetRequest, GetResponse> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GenericAction<GetRequest, GetResponse> getActionInstance() {
|
||||||
|
return GetAction.INSTANCE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected RequestBuilder createHttpRequest(String url, GetRequest request) {
|
||||||
|
return newHeadRequest(url, request.index() + "/" + request.type() + "/" + request.id());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected CheckedFunction<XContentParser, GetResponse, IOException> entityParser() {
|
||||||
|
return GetResponse::fromXContent;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
package org.elasticsearch.action.get;
|
||||||
|
|
||||||
|
import org.elasticsearch.action.GenericAction;
|
||||||
|
import org.elasticsearch.common.CheckedFunction;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
|
import org.xbib.elasticsearch.client.http.HttpAction;
|
||||||
|
import org.xbib.netty.http.client.RequestBuilder;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*/
|
||||||
|
public class HttpGetAction extends HttpAction<GetRequest, GetResponse> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GenericAction<GetRequest, GetResponse> getActionInstance() {
|
||||||
|
return GetAction.INSTANCE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected RequestBuilder createHttpRequest(String url, GetRequest request) {
|
||||||
|
return newGetRequest(url, request.index() + "/" + request.type() + "/" + request.id());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected CheckedFunction<XContentParser, GetResponse, IOException> entityParser() {
|
||||||
|
return GetResponse::fromXContent;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
package org.elasticsearch.action.index;
|
||||||
|
|
||||||
|
import org.elasticsearch.action.GenericAction;
|
||||||
|
import org.elasticsearch.common.CheckedFunction;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
|
import org.xbib.elasticsearch.client.http.HttpAction;
|
||||||
|
import org.xbib.netty.http.client.RequestBuilder;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*/
|
||||||
|
public class HttpIndexAction extends HttpAction<IndexRequest, IndexResponse> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GenericAction<IndexRequest, IndexResponse> getActionInstance() {
|
||||||
|
return IndexAction.INSTANCE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected RequestBuilder createHttpRequest(String url, IndexRequest request) {
|
||||||
|
return newPutRequest(url, request.index() + "/" + request.type() + "/" + request.id(),
|
||||||
|
request.source());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected CheckedFunction<XContentParser, IndexResponse, IOException> entityParser() {
|
||||||
|
return IndexResponse::fromXContent;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
package org.elasticsearch.action.main;
|
||||||
|
|
||||||
|
import org.elasticsearch.action.GenericAction;
|
||||||
|
import org.elasticsearch.common.CheckedFunction;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
|
import org.xbib.elasticsearch.client.http.HttpAction;
|
||||||
|
import org.xbib.netty.http.client.RequestBuilder;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*/
|
||||||
|
public class HttpMainAction extends HttpAction<MainRequest, MainResponse> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GenericAction<MainRequest, MainResponse> getActionInstance() {
|
||||||
|
return MainAction.INSTANCE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected RequestBuilder createHttpRequest(String url, MainRequest request) {
|
||||||
|
return newGetRequest(url, "/");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected CheckedFunction<XContentParser, MainResponse, IOException> entityParser() {
|
||||||
|
return MainResponse::fromXContent;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
package org.elasticsearch.action.search;
|
||||||
|
|
||||||
|
import org.elasticsearch.common.CheckedFunction;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
|
import org.xbib.elasticsearch.client.http.HttpAction;
|
||||||
|
import org.xbib.netty.http.client.RequestBuilder;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class HttpSearchAction extends HttpAction<SearchRequest, SearchResponse> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SearchAction getActionInstance() {
|
||||||
|
return SearchAction.INSTANCE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected RequestBuilder createHttpRequest(String url, SearchRequest request) {
|
||||||
|
String index = request.indices() != null ? "/" + String.join(",", request.indices()) : "";
|
||||||
|
return newPostRequest(url, index + "/_search", request.source().toString() );
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected CheckedFunction<XContentParser, SearchResponse, IOException> entityParser() {
|
||||||
|
return parser -> {
|
||||||
|
// TODO(jprante) build search response
|
||||||
|
return new SearchResponse();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,61 @@
|
||||||
|
package org.elasticsearch.action.update;
|
||||||
|
|
||||||
|
import org.elasticsearch.action.GenericAction;
|
||||||
|
import org.elasticsearch.client.Requests;
|
||||||
|
import org.elasticsearch.common.CheckedFunction;
|
||||||
|
import org.elasticsearch.common.bytes.BytesReference;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentHelper;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentType;
|
||||||
|
import org.xbib.elasticsearch.client.http.HttpAction;
|
||||||
|
import org.xbib.netty.http.client.RequestBuilder;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*/
|
||||||
|
public class HttpUpdateAction extends HttpAction<UpdateRequest, UpdateResponse> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GenericAction<UpdateRequest, UpdateResponse> getActionInstance() {
|
||||||
|
return UpdateAction.INSTANCE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected RequestBuilder createHttpRequest(String url, UpdateRequest updateRequest) {
|
||||||
|
try {
|
||||||
|
// The Java API allows update requests with different content types
|
||||||
|
// set for the partial document and the upsert document. This client
|
||||||
|
// only accepts update requests that have the same content types set
|
||||||
|
// for both doc and upsert.
|
||||||
|
XContentType xContentType = null;
|
||||||
|
if (updateRequest.doc() != null) {
|
||||||
|
xContentType = updateRequest.doc().getContentType();
|
||||||
|
}
|
||||||
|
if (updateRequest.upsertRequest() != null) {
|
||||||
|
XContentType upsertContentType = updateRequest.upsertRequest().getContentType();
|
||||||
|
if ((xContentType != null) && (xContentType != upsertContentType)) {
|
||||||
|
throw new IllegalStateException("update request cannot have different content types for doc [" + xContentType + "]" +
|
||||||
|
" and upsert [" + upsertContentType + "] documents");
|
||||||
|
} else {
|
||||||
|
xContentType = upsertContentType;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (xContentType == null) {
|
||||||
|
xContentType = Requests.INDEX_CONTENT_TYPE;
|
||||||
|
}
|
||||||
|
BytesReference source = XContentHelper.toXContent(updateRequest, xContentType, false);
|
||||||
|
return newPostRequest(url,
|
||||||
|
updateRequest.index() + "/" + updateRequest.type() + "/" + updateRequest.id() + "/_update",
|
||||||
|
source);
|
||||||
|
} catch (IOException e) {
|
||||||
|
logger.error(e.getMessage(), e);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected CheckedFunction<XContentParser, UpdateResponse, IOException> entityParser() {
|
||||||
|
return UpdateResponse::fromXContent;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,158 @@
|
||||||
|
package org.xbib.elasticsearch.client.http;
|
||||||
|
|
||||||
|
import io.netty.buffer.ByteBuf;
|
||||||
|
import io.netty.handler.codec.http.HttpHeaderNames;
|
||||||
|
import io.netty.handler.codec.http.HttpMethod;
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
import org.apache.logging.log4j.Logger;
|
||||||
|
import org.elasticsearch.action.ActionListener;
|
||||||
|
import org.elasticsearch.action.ActionRequest;
|
||||||
|
import org.elasticsearch.action.ActionRequestValidationException;
|
||||||
|
import org.elasticsearch.action.ActionResponse;
|
||||||
|
import org.elasticsearch.action.GenericAction;
|
||||||
|
import org.elasticsearch.common.CheckedFunction;
|
||||||
|
import org.elasticsearch.common.bytes.BytesReference;
|
||||||
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentParser;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentType;
|
||||||
|
import org.xbib.netty.http.client.Request;
|
||||||
|
import org.xbib.netty.http.client.RequestBuilder;
|
||||||
|
import org.xbib.netty.http.client.transport.Transport;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Base class for HTTP actions.
|
||||||
|
*
|
||||||
|
* @param <R> the request type
|
||||||
|
* @param <T> the response type
|
||||||
|
*/
|
||||||
|
public abstract class HttpAction<R extends ActionRequest, T extends ActionResponse> {
|
||||||
|
|
||||||
|
protected final Logger logger = LogManager.getLogger(getClass().getName());
|
||||||
|
|
||||||
|
protected static final String APPLICATION_JSON = "application/json";
|
||||||
|
|
||||||
|
protected Settings settings;
|
||||||
|
|
||||||
|
protected void setSettings(Settings settings) {
|
||||||
|
this.settings = settings;
|
||||||
|
}
|
||||||
|
|
||||||
|
public abstract GenericAction<R, T> getActionInstance();
|
||||||
|
|
||||||
|
/*public final ActionFuture<T> execute(HttpActionContext<R, T> httpActionContext) {
|
||||||
|
PlainActionFuture<T> future = PlainActionFuture.newFuture();
|
||||||
|
//HttpActionFuture<T, T> future = new HttpActionFuture<>();
|
||||||
|
execute(httpActionContext, future);
|
||||||
|
return future;
|
||||||
|
}*/
|
||||||
|
|
||||||
|
public final void execute(HttpActionContext<R, T> httpActionContext, ActionListener<T> listener) throws IOException {
|
||||||
|
try {
|
||||||
|
ActionRequestValidationException validationException = httpActionContext.getRequest().validate();
|
||||||
|
if (validationException != null) {
|
||||||
|
listener.onFailure(validationException);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
RequestBuilder httpRequestBuilder =
|
||||||
|
createHttpRequest(httpActionContext.getUrl(), httpActionContext.getRequest());
|
||||||
|
//httpRequestBuilder.addHeader("content-type", "application/json");
|
||||||
|
Request httpRequest = httpRequestBuilder.build();
|
||||||
|
// logger.info("action = {} request = {}", this.getClass().getName(), httpRequest.toString());
|
||||||
|
httpRequest.setResponseListener(fullHttpResponse -> {
|
||||||
|
logger.info("returned response " + fullHttpResponse.status().code() +
|
||||||
|
" headers = " + fullHttpResponse.headers().entries() +
|
||||||
|
" content = " + fullHttpResponse.content().toString(StandardCharsets.UTF_8));
|
||||||
|
listener.onResponse(parseToResponse(httpActionContext.setHttpResponse(fullHttpResponse)));
|
||||||
|
});
|
||||||
|
Transport transport = httpActionContext.getHttpClient().internalClient().execute(httpRequest);
|
||||||
|
logger.info("transport = " + transport);
|
||||||
|
httpActionContext.setHttpClientTransport(transport);
|
||||||
|
if (transport.isFailed()) {
|
||||||
|
listener.onFailure(new Exception(transport.getFailure()));
|
||||||
|
}
|
||||||
|
logger.info("done, listener is " + listener);
|
||||||
|
} catch (Throwable e) {
|
||||||
|
listener.onFailure(new RuntimeException(e));
|
||||||
|
throw new IOException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RequestBuilder newGetRequest(String url, String path) {
|
||||||
|
return Request.builder(HttpMethod.GET).url(url).uri(path);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RequestBuilder newGetRequest(String url, String path, BytesReference content) {
|
||||||
|
return newRequest(HttpMethod.GET, url, path, content);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RequestBuilder newHeadRequest(String url, String path) {
|
||||||
|
return newRequest(HttpMethod.HEAD, url, path);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RequestBuilder newPostRequest(String url, String path) {
|
||||||
|
return newRequest(HttpMethod.POST, url, path);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RequestBuilder newPostRequest(String url, String path, BytesReference content) {
|
||||||
|
return newRequest(HttpMethod.POST, url, path, content);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RequestBuilder newPostRequest(String url, String path, String content) {
|
||||||
|
return newRequest(HttpMethod.POST, url, path, content);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RequestBuilder newPutRequest(String url, String path) {
|
||||||
|
return newRequest(HttpMethod.PUT, url, path);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RequestBuilder newPutRequest(String url, String path, String content) {
|
||||||
|
return newRequest(HttpMethod.PUT, url, path, content);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RequestBuilder newPutRequest(String url, String path, BytesReference content) {
|
||||||
|
return newRequest(HttpMethod.PUT, url, path, content);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RequestBuilder newDeleteRequest(String url, String path, BytesReference content) {
|
||||||
|
return newRequest(HttpMethod.DELETE, url, path, content);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RequestBuilder newRequest(HttpMethod method, String baseUrl, String path) {
|
||||||
|
return Request.builder(method).url(baseUrl).uri(path);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RequestBuilder newRequest(HttpMethod method, String baseUrl, String path, BytesReference content) {
|
||||||
|
return Request.builder(method).url(baseUrl).uri(path).content(content.toBytesRef().bytes, APPLICATION_JSON);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RequestBuilder newRequest(HttpMethod method, String baseUrl, String path, String content) {
|
||||||
|
return Request.builder(method).url(baseUrl).uri(path).content(content, APPLICATION_JSON);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected RequestBuilder newRequest(HttpMethod method, String baseUrl, String path, ByteBuf byteBuf) {
|
||||||
|
return Request.builder(method).url(baseUrl).uri(path).content(byteBuf, APPLICATION_JSON);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected T parseToResponse(HttpActionContext<R, T> httpActionContext) {
|
||||||
|
String mediaType = httpActionContext.getHttpResponse().headers().get(HttpHeaderNames.CONTENT_TYPE);
|
||||||
|
XContentType xContentType = XContentType.fromMediaTypeOrFormat(mediaType);
|
||||||
|
if (xContentType == null) {
|
||||||
|
throw new IllegalStateException("unsupported content-type: " + mediaType);
|
||||||
|
}
|
||||||
|
try (XContentParser parser = xContentType.xContent().createParser(httpActionContext.getHttpClient().getRegistry(),
|
||||||
|
httpActionContext.getHttpResponse().content().array())) {
|
||||||
|
return entityParser().apply(parser);
|
||||||
|
} catch (IOException e) {
|
||||||
|
logger.error(e.getMessage(), e);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected abstract RequestBuilder createHttpRequest(String baseUrl, R request) throws IOException;
|
||||||
|
|
||||||
|
protected abstract CheckedFunction<XContentParser, T, IOException> entityParser();
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,60 @@
|
||||||
|
package org.xbib.elasticsearch.client.http;
|
||||||
|
|
||||||
|
import io.netty.handler.codec.http.FullHttpResponse;
|
||||||
|
import org.elasticsearch.action.ActionRequest;
|
||||||
|
import org.elasticsearch.action.ActionResponse;
|
||||||
|
import org.xbib.netty.http.client.transport.Transport;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* HTTP action context.
|
||||||
|
*
|
||||||
|
* @param <R> request type
|
||||||
|
* @param <T> response type
|
||||||
|
*/
|
||||||
|
public class HttpActionContext<R extends ActionRequest, T extends ActionResponse> {
|
||||||
|
|
||||||
|
private final HttpClient httpClient;
|
||||||
|
|
||||||
|
private final R request;
|
||||||
|
|
||||||
|
private final String url;
|
||||||
|
|
||||||
|
private Transport httpClientTransport;
|
||||||
|
|
||||||
|
private FullHttpResponse httpResponse;
|
||||||
|
|
||||||
|
HttpActionContext(HttpClient httpClient, R request, String url) {
|
||||||
|
this.httpClient = httpClient;
|
||||||
|
this.request = request;
|
||||||
|
this.url = url;
|
||||||
|
}
|
||||||
|
|
||||||
|
public HttpClient getHttpClient() {
|
||||||
|
return httpClient;
|
||||||
|
}
|
||||||
|
|
||||||
|
public R getRequest() {
|
||||||
|
return request;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUrl() {
|
||||||
|
return url;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setHttpClientTransport(Transport httpClientTransport) {
|
||||||
|
this.httpClientTransport = httpClientTransport;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Transport getHttpClientTransport() {
|
||||||
|
return httpClientTransport;
|
||||||
|
}
|
||||||
|
|
||||||
|
public HttpActionContext<R, T> setHttpResponse(FullHttpResponse fullHttpResponse) {
|
||||||
|
this.httpResponse = fullHttpResponse;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public FullHttpResponse getHttpResponse() {
|
||||||
|
return httpResponse;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,100 @@
|
||||||
|
package org.xbib.elasticsearch.client.http;
|
||||||
|
|
||||||
|
import org.elasticsearch.ElasticsearchException;
|
||||||
|
import org.elasticsearch.ElasticsearchTimeoutException;
|
||||||
|
import org.elasticsearch.action.ActionFuture;
|
||||||
|
import org.elasticsearch.action.ActionListener;
|
||||||
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
|
import org.elasticsearch.common.util.concurrent.BaseFuture;
|
||||||
|
import org.elasticsearch.common.util.concurrent.UncategorizedExecutionException;
|
||||||
|
import org.xbib.netty.http.client.transport.Transport;
|
||||||
|
|
||||||
|
import java.util.concurrent.ExecutionException;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import java.util.concurrent.TimeoutException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*/
|
||||||
|
public class HttpActionFuture<T, L> extends BaseFuture<T> implements ActionFuture<T>, ActionListener<L> {
|
||||||
|
|
||||||
|
private Transport httpClientTransport;
|
||||||
|
|
||||||
|
HttpActionFuture<T, L> setHttpClientTransport(Transport httpClientTransport) {
|
||||||
|
this.httpClientTransport = httpClientTransport;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public T actionGet() {
|
||||||
|
try {
|
||||||
|
httpClientTransport.get();
|
||||||
|
return get();
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
|
throw new IllegalStateException("future got interrupted", e);
|
||||||
|
} catch (ExecutionException e) {
|
||||||
|
throw rethrowExecutionException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public T actionGet(String timeout) {
|
||||||
|
return actionGet(TimeValue.parseTimeValue(timeout, null, getClass().getSimpleName() + ".actionGet.timeout"));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public T actionGet(long timeoutMillis) {
|
||||||
|
return actionGet(timeoutMillis, TimeUnit.MILLISECONDS);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public T actionGet(TimeValue timeout) {
|
||||||
|
return actionGet(timeout.millis(), TimeUnit.MILLISECONDS);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public T actionGet(long timeout, TimeUnit unit) {
|
||||||
|
try {
|
||||||
|
return get(timeout, unit);
|
||||||
|
} catch (TimeoutException e) {
|
||||||
|
throw new ElasticsearchTimeoutException(e);
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
|
throw new IllegalStateException("Future got interrupted", e);
|
||||||
|
} catch (ExecutionException e) {
|
||||||
|
throw rethrowExecutionException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static RuntimeException rethrowExecutionException(ExecutionException e) {
|
||||||
|
if (e.getCause() instanceof ElasticsearchException) {
|
||||||
|
ElasticsearchException esEx = (ElasticsearchException) e.getCause();
|
||||||
|
Throwable root = esEx.unwrapCause();
|
||||||
|
if (root instanceof ElasticsearchException) {
|
||||||
|
return (ElasticsearchException) root;
|
||||||
|
} else if (root instanceof RuntimeException) {
|
||||||
|
return (RuntimeException) root;
|
||||||
|
}
|
||||||
|
return new UncategorizedExecutionException("Failed execution", root);
|
||||||
|
} else if (e.getCause() instanceof RuntimeException) {
|
||||||
|
return (RuntimeException) e.getCause();
|
||||||
|
} else {
|
||||||
|
return new UncategorizedExecutionException("Failed execution", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onResponse(L result) {
|
||||||
|
set(convert(result));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onFailure(Exception e) {
|
||||||
|
setException(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
private T convert(L listenerResponse) {
|
||||||
|
return (T) listenerResponse;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,209 @@
|
||||||
|
package org.xbib.elasticsearch.client.http;
|
||||||
|
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
import org.apache.logging.log4j.Logger;
|
||||||
|
import org.elasticsearch.action.Action;
|
||||||
|
import org.elasticsearch.action.ActionFuture;
|
||||||
|
import org.elasticsearch.action.ActionListener;
|
||||||
|
import org.elasticsearch.action.ActionRequest;
|
||||||
|
import org.elasticsearch.action.ActionRequestBuilder;
|
||||||
|
import org.elasticsearch.action.ActionResponse;
|
||||||
|
import org.elasticsearch.action.GenericAction;
|
||||||
|
import org.elasticsearch.action.support.PlainActionFuture;
|
||||||
|
import org.elasticsearch.client.ElasticsearchClient;
|
||||||
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
import org.elasticsearch.common.xcontent.NamedXContentRegistry;
|
||||||
|
import org.elasticsearch.node.Node;
|
||||||
|
import org.elasticsearch.threadpool.ThreadPool;
|
||||||
|
import org.xbib.elasticsearch.client.AbstractClient;
|
||||||
|
import org.xbib.elasticsearch.client.BulkControl;
|
||||||
|
import org.xbib.elasticsearch.client.BulkMetric;
|
||||||
|
import org.xbib.netty.http.client.Client;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.ServiceLoader;
|
||||||
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
|
import java.util.function.Function;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
import java.util.stream.Stream;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Elasticsearch HTTP client.
|
||||||
|
*/
|
||||||
|
public class HttpClient extends AbstractClient implements ElasticsearchClient {
|
||||||
|
|
||||||
|
private static final Logger logger = LogManager.getLogger(HttpClient.class);
|
||||||
|
|
||||||
|
private Client client;
|
||||||
|
|
||||||
|
private NamedXContentRegistry registry;
|
||||||
|
|
||||||
|
@SuppressWarnings("rawtypes")
|
||||||
|
private Map<GenericAction, HttpAction> actionMap;
|
||||||
|
|
||||||
|
private List<String> urls;
|
||||||
|
|
||||||
|
//private ThreadPool threadPool;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public HttpClient init(ElasticsearchClient client, Settings settings, BulkMetric metric, BulkControl control) {
|
||||||
|
init(client, settings, metric, control, null, Collections.emptyList());
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||||
|
private void init(ElasticsearchClient client, Settings settings, BulkMetric metric, BulkControl control,
|
||||||
|
ClassLoader classLoader, List<NamedXContentRegistry.Entry> namedXContentEntries) {
|
||||||
|
//super.init(client, settings, metric, control);
|
||||||
|
this.urls = settings.getAsList("urls");
|
||||||
|
if (urls.isEmpty()) {
|
||||||
|
throw new IllegalArgumentException("no urls given");
|
||||||
|
}
|
||||||
|
this.registry = new NamedXContentRegistry(Stream.of(getNamedXContents().stream(),
|
||||||
|
namedXContentEntries.stream()
|
||||||
|
).flatMap(Function.identity()).collect(Collectors.toList()));
|
||||||
|
this.actionMap = new HashMap<>();
|
||||||
|
ServiceLoader<HttpAction> httpActionServiceLoader = ServiceLoader.load(HttpAction.class,
|
||||||
|
classLoader != null ? classLoader : Thread.currentThread().getContextClassLoader());
|
||||||
|
for (HttpAction<? extends ActionRequest, ? extends ActionResponse> httpAction : httpActionServiceLoader) {
|
||||||
|
httpAction.setSettings(settings);
|
||||||
|
actionMap.put(httpAction.getActionInstance(), httpAction);
|
||||||
|
}
|
||||||
|
this.client = Client.builder().enableDebug().build();
|
||||||
|
Settings threadPoolsettings = Settings.builder()
|
||||||
|
.put(settings)
|
||||||
|
.put(Node.NODE_NAME_SETTING.getKey(), "httpclient")
|
||||||
|
.build();
|
||||||
|
//this.threadPool = threadPool != null ? threadPool : new ThreadPool(threadPoolsettings);
|
||||||
|
logger.info("HTTP client initialized with {} actions", actionMap.size());
|
||||||
|
}
|
||||||
|
|
||||||
|
private static List<NamedXContentRegistry.Entry> getNamedXContents() {
|
||||||
|
return new ArrayList<>();
|
||||||
|
}
|
||||||
|
|
||||||
|
public NamedXContentRegistry getRegistry() {
|
||||||
|
return registry;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Builder builder() {
|
||||||
|
return new Builder();
|
||||||
|
}
|
||||||
|
|
||||||
|
public Client internalClient() {
|
||||||
|
return client;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ElasticsearchClient client() {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected ElasticsearchClient createClient(Settings settings) throws IOException {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void shutdown() throws IOException {
|
||||||
|
client.shutdownGracefully();
|
||||||
|
//threadPool.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public <Request extends ActionRequest, Response extends ActionResponse,
|
||||||
|
RequestBuilder extends ActionRequestBuilder<Request, Response, RequestBuilder>> ActionFuture<Response>
|
||||||
|
execute(Action<Request, Response, RequestBuilder> action, Request request) {
|
||||||
|
PlainActionFuture<Response> actionFuture = PlainActionFuture.newFuture();
|
||||||
|
logger.info("plain action future = " + actionFuture);
|
||||||
|
execute(action, request, actionFuture);
|
||||||
|
return actionFuture;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public <Request extends ActionRequest, Response extends ActionResponse,
|
||||||
|
RequestBuilder extends ActionRequestBuilder<Request, Response, RequestBuilder>> void
|
||||||
|
execute(Action<Request, Response, RequestBuilder> action, Request request, ActionListener<Response> listener) {
|
||||||
|
doExecute(action, request, listener);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public <Request extends ActionRequest, Response extends ActionResponse,
|
||||||
|
RequestBuilder extends ActionRequestBuilder<Request, Response, RequestBuilder>> RequestBuilder
|
||||||
|
prepareExecute(Action<Request, Response, RequestBuilder> action) {
|
||||||
|
return action.newRequestBuilder(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ThreadPool threadPool() {
|
||||||
|
logger.info("returning null for threadPool() request");
|
||||||
|
return null; //threadPool;
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||||
|
public <R extends ActionRequest, T extends ActionResponse, B extends ActionRequestBuilder<R, T, B>>
|
||||||
|
void doExecute(Action<R, T, B> action, R request, ActionListener<T> listener) {
|
||||||
|
HttpAction httpAction = actionMap.get(action);
|
||||||
|
if (httpAction == null) {
|
||||||
|
throw new IllegalStateException("failed to find http action [" + action + "] to execute");
|
||||||
|
}
|
||||||
|
logger.info("http action = " + httpAction);
|
||||||
|
String url = urls.get(0); // TODO
|
||||||
|
try {
|
||||||
|
logger.info("submitting to URL {}", url);
|
||||||
|
HttpActionContext httpActionContext = new HttpActionContext(this, request, url);
|
||||||
|
httpAction.execute(httpActionContext, listener);
|
||||||
|
logger.info("submitted to URL {}", url);
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error(e.getMessage(), e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The Builder for HTTP client.
|
||||||
|
*/
|
||||||
|
public static class Builder {
|
||||||
|
|
||||||
|
private final Settings.Builder settingsBuilder = Settings.builder();
|
||||||
|
|
||||||
|
private ClassLoader classLoader;
|
||||||
|
|
||||||
|
private List<NamedXContentRegistry.Entry> namedXContentEntries;
|
||||||
|
|
||||||
|
private ThreadPool threadPool = null;
|
||||||
|
|
||||||
|
public Builder settings(Settings settings) {
|
||||||
|
this.settingsBuilder.put(settings);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Builder classLoader(ClassLoader classLoader) {
|
||||||
|
this.classLoader = classLoader;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Builder namedXContentEntries(List<NamedXContentRegistry.Entry> namedXContentEntries) {
|
||||||
|
this.namedXContentEntries = namedXContentEntries;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Builder threadPool(ThreadPool threadPool) {
|
||||||
|
this.threadPool = threadPool;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings({"unchecked", "rawtypes"})
|
||||||
|
public HttpClient build() {
|
||||||
|
Settings settings = settingsBuilder.build();
|
||||||
|
HttpClient httpClient = new HttpClient();
|
||||||
|
httpClient.init(null, settings, null, null,
|
||||||
|
classLoader, namedXContentEntries);
|
||||||
|
return httpClient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
/**
|
||||||
|
* Classes for Elasticsearch HTTP client.
|
||||||
|
*/
|
||||||
|
package org.xbib.elasticsearch.client.http;
|
|
@ -0,0 +1 @@
|
||||||
|
org.xbib.elasticsearch.client.http.HttpClient
|
|
@ -0,0 +1,11 @@
|
||||||
|
org.elasticsearch.action.admin.cluster.node.info.HttpNodesInfoAction
|
||||||
|
org.elasticsearch.action.admin.cluster.settings.HttpClusterUpdateSettingsAction
|
||||||
|
org.elasticsearch.action.admin.indices.create.HttpCreateIndexAction
|
||||||
|
org.elasticsearch.action.admin.indices.refresh.HttpRefreshIndexAction
|
||||||
|
org.elasticsearch.action.admin.indices.settings.put.HttpUpdateSettingsAction
|
||||||
|
org.elasticsearch.action.bulk.HttpBulkAction
|
||||||
|
org.elasticsearch.action.index.HttpIndexAction
|
||||||
|
org.elasticsearch.action.search.HttpSearchAction
|
||||||
|
org.elasticsearch.action.main.HttpMainAction
|
||||||
|
org.elasticsearch.action.get.HttpExistsAction
|
||||||
|
org.elasticsearch.action.get.HttpGetAction
|
20
http/src/main/resources/extra-security.policy
Normal file
20
http/src/main/resources/extra-security.policy
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
|
||||||
|
grant codeBase "${codebase.netty-common}" {
|
||||||
|
// for reading the system-wide configuration for the backlog of established sockets
|
||||||
|
permission java.io.FilePermission "/proc/sys/net/core/somaxconn", "read";
|
||||||
|
// netty makes and accepts socket connections
|
||||||
|
permission java.net.SocketPermission "*", "accept,connect,resolve";
|
||||||
|
// 4.1.24 io.netty.util.concurrent.GlobalEventExecutor$2.run(GlobalEventExecutor.java:228)
|
||||||
|
permission java.lang.RuntimePermission "setContextClassLoader";
|
||||||
|
};
|
||||||
|
|
||||||
|
grant codeBase "${codebase.netty-transport}" {
|
||||||
|
// Netty NioEventLoop wants to change this, because of https://bugs.openjdk.java.net/browse/JDK-6427854
|
||||||
|
// the bug says it only happened rarely, and that its fixed, but apparently it still happens rarely!
|
||||||
|
permission java.util.PropertyPermission "sun.nio.ch.bugLevel", "write";
|
||||||
|
};
|
||||||
|
|
||||||
|
grant codeBase "${codebase.netty-http-client}" {
|
||||||
|
// org.xbib.netty.http.client.Client.<clinit>(Client.java:67)
|
||||||
|
permission java.util.PropertyPermission "io.netty.noUnsafe", "write";
|
||||||
|
;}
|
|
@ -0,0 +1,109 @@
|
||||||
|
package org.xbib.elasticsearch.client.http;
|
||||||
|
|
||||||
|
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters;
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
import org.apache.logging.log4j.Logger;
|
||||||
|
import org.elasticsearch.action.admin.cluster.node.info.NodeInfo;
|
||||||
|
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequestBuilder;
|
||||||
|
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
||||||
|
import org.elasticsearch.common.network.NetworkModule;
|
||||||
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
import org.elasticsearch.common.transport.TransportAddress;
|
||||||
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
|
import org.elasticsearch.index.query.QueryBuilders;
|
||||||
|
import org.elasticsearch.plugins.Plugin;
|
||||||
|
import org.elasticsearch.test.ESSingleNodeTestCase;
|
||||||
|
import org.elasticsearch.transport.Netty4Plugin;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.xbib.elasticsearch.client.ClientBuilder;
|
||||||
|
import org.xbib.elasticsearch.client.IndexAliasAdder;
|
||||||
|
import org.xbib.elasticsearch.client.SimpleBulkControl;
|
||||||
|
import org.xbib.elasticsearch.client.SimpleBulkMetric;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
@ThreadLeakFilters(defaultFilters = true, filters = {TestRunnerThreadsFilter.class})
|
||||||
|
public class HttpClientAliasTests extends ESSingleNodeTestCase {
|
||||||
|
|
||||||
|
private static final Logger logger = LogManager.getLogger(HttpClientAliasTests.class.getName());
|
||||||
|
|
||||||
|
private TransportAddress httpAddress;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void fetchTransportAddress() {
|
||||||
|
NodeInfo nodeInfo = client().admin().cluster().prepareNodesInfo().get().getNodes().get(0);
|
||||||
|
httpAddress = nodeInfo.getHttp().getAddress().publishAddress();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Collection<Class<? extends Plugin>> getPlugins() {
|
||||||
|
return Collections.singletonList(Netty4Plugin.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Settings nodeSettings() {
|
||||||
|
return Settings.builder()
|
||||||
|
.put(super.nodeSettings())
|
||||||
|
.put(NetworkModule.TRANSPORT_TYPE_KEY, Netty4Plugin.NETTY_TRANSPORT_NAME)
|
||||||
|
.put(NetworkModule.HTTP_TYPE_DEFAULT_KEY, Netty4Plugin.NETTY_HTTP_TRANSPORT_NAME)
|
||||||
|
.put(NetworkModule.HTTP_ENABLED.getKey(), true)
|
||||||
|
.build();
|
||||||
|
}
|
||||||
|
|
||||||
|
private String findHttpAddress() {
|
||||||
|
return "http://" + httpAddress.address().getHostName() + ":" + httpAddress.address().getPort();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testIndexAlias() throws Exception {
|
||||||
|
final HttpClient client = ClientBuilder.builder()
|
||||||
|
.put("urls", findHttpAddress())
|
||||||
|
.setMetric(new SimpleBulkMetric())
|
||||||
|
.setControl(new SimpleBulkControl())
|
||||||
|
.getClient(HttpClient.class);
|
||||||
|
try {
|
||||||
|
client.newIndex("test1234");
|
||||||
|
for (int i = 0; i < 1; i++) {
|
||||||
|
client.index("test1234", "test", randomAlphaOfLength(1), false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
|
}
|
||||||
|
client.flushIngest();
|
||||||
|
client.refreshIndex("test1234");
|
||||||
|
|
||||||
|
List<String> simpleAliases = Arrays.asList("a", "b", "c");
|
||||||
|
client.switchAliases("test", "test1234", simpleAliases);
|
||||||
|
|
||||||
|
client.newIndex("test5678");
|
||||||
|
for (int i = 0; i < 1; i++) {
|
||||||
|
client.index("test5678", "test", randomAlphaOfLength(1), false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
|
}
|
||||||
|
client.flushIngest();
|
||||||
|
client.refreshIndex("test5678");
|
||||||
|
|
||||||
|
simpleAliases = Arrays.asList("d", "e", "f");
|
||||||
|
client.switchAliases("test", "test5678", simpleAliases, new IndexAliasAdder() {
|
||||||
|
@Override
|
||||||
|
public void addIndexAlias(IndicesAliasesRequestBuilder builder, String index, String alias) {
|
||||||
|
builder.addAlias(index, alias, QueryBuilders.termQuery("my_key", alias));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
Map<String, String> aliases = client.getIndexFilters("test5678");
|
||||||
|
logger.info("aliases of index test5678 = {}", aliases);
|
||||||
|
|
||||||
|
aliases = client.getAliasFilters("test");
|
||||||
|
logger.info("aliases of alias test = {}", aliases);
|
||||||
|
|
||||||
|
} catch (NoNodeAvailableException e) {
|
||||||
|
logger.warn("skipping, no node available");
|
||||||
|
} finally {
|
||||||
|
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
||||||
|
client.shutdown();
|
||||||
|
if (client.hasThrowable()) {
|
||||||
|
logger.error("error", client.getThrowable());
|
||||||
|
}
|
||||||
|
assertFalse(client.hasThrowable());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,101 @@
|
||||||
|
package org.xbib.elasticsearch.client.http;
|
||||||
|
|
||||||
|
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters;
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
import org.apache.logging.log4j.Logger;
|
||||||
|
import org.elasticsearch.action.admin.cluster.node.info.NodeInfo;
|
||||||
|
import org.elasticsearch.action.search.SearchAction;
|
||||||
|
import org.elasticsearch.action.search.SearchRequestBuilder;
|
||||||
|
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
||||||
|
import org.elasticsearch.common.network.NetworkModule;
|
||||||
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
import org.elasticsearch.common.transport.TransportAddress;
|
||||||
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
|
import org.elasticsearch.index.query.QueryBuilders;
|
||||||
|
import org.elasticsearch.plugins.Plugin;
|
||||||
|
import org.elasticsearch.test.ESSingleNodeTestCase;
|
||||||
|
import org.elasticsearch.transport.Netty4Plugin;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.xbib.elasticsearch.client.ClientBuilder;
|
||||||
|
import org.xbib.elasticsearch.client.SimpleBulkControl;
|
||||||
|
import org.xbib.elasticsearch.client.SimpleBulkMetric;
|
||||||
|
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.Collections;
|
||||||
|
|
||||||
|
@ThreadLeakFilters(defaultFilters = true, filters = {TestRunnerThreadsFilter.class})
|
||||||
|
public class HttpClientDuplicateIDTests extends ESSingleNodeTestCase {
|
||||||
|
|
||||||
|
private static final Logger logger = LogManager.getLogger(HttpClientDuplicateIDTests.class.getName());
|
||||||
|
|
||||||
|
private static final long MAX_ACTIONS = 10L;
|
||||||
|
|
||||||
|
private static final long NUM_ACTIONS = 12345L;
|
||||||
|
|
||||||
|
private TransportAddress httpAddress;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void fetchTransportAddress() {
|
||||||
|
NodeInfo nodeInfo = client().admin().cluster().prepareNodesInfo().get().getNodes().get(0);
|
||||||
|
httpAddress = nodeInfo.getHttp().getAddress().publishAddress();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Collection<Class<? extends Plugin>> getPlugins() {
|
||||||
|
return Collections.singletonList(Netty4Plugin.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Settings nodeSettings() {
|
||||||
|
return Settings.builder()
|
||||||
|
.put(super.nodeSettings())
|
||||||
|
.put(NetworkModule.TRANSPORT_TYPE_KEY, Netty4Plugin.NETTY_TRANSPORT_NAME)
|
||||||
|
.put(NetworkModule.HTTP_TYPE_DEFAULT_KEY, Netty4Plugin.NETTY_HTTP_TRANSPORT_NAME)
|
||||||
|
.put(NetworkModule.HTTP_ENABLED.getKey(), true)
|
||||||
|
.build();
|
||||||
|
}
|
||||||
|
|
||||||
|
private String findHttpAddress() {
|
||||||
|
return "http://" + httpAddress.address().getHostName() + ":" + httpAddress.address().getPort();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testDuplicateDocIDs() throws Exception {
|
||||||
|
final HttpClient client = ClientBuilder.builder()
|
||||||
|
//.put(ClientBuilder.MAX_CONCURRENT_REQUESTS, 2) // avoid EsRejectedExecutionException
|
||||||
|
.put(ClientBuilder.MAX_ACTIONS_PER_REQUEST, MAX_ACTIONS)
|
||||||
|
.put("urls", findHttpAddress())
|
||||||
|
.setMetric(new SimpleBulkMetric())
|
||||||
|
.setControl(new SimpleBulkControl())
|
||||||
|
.getClient(HttpClient.class);
|
||||||
|
try {
|
||||||
|
client.newIndex("test");
|
||||||
|
for (int i = 0; i < NUM_ACTIONS; i++) {
|
||||||
|
client.index("test", "test", randomAlphaOfLength(1), false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
|
}
|
||||||
|
client.flushIngest();
|
||||||
|
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
||||||
|
client.refreshIndex("test");
|
||||||
|
SearchRequestBuilder searchRequestBuilder = new SearchRequestBuilder(client.client(), SearchAction.INSTANCE)
|
||||||
|
.setIndices("test")
|
||||||
|
.setTypes("test")
|
||||||
|
.setQuery(QueryBuilders.matchAllQuery());
|
||||||
|
long hits = searchRequestBuilder.execute().actionGet().getHits().getTotalHits();
|
||||||
|
logger.info("hits = {}", hits);
|
||||||
|
assertTrue(hits < NUM_ACTIONS);
|
||||||
|
} catch (NoNodeAvailableException e) {
|
||||||
|
logger.warn("skipping, no node available");
|
||||||
|
} finally {
|
||||||
|
client.shutdown();
|
||||||
|
if (client.hasThrowable()) {
|
||||||
|
logger.error("error", client.getThrowable());
|
||||||
|
}
|
||||||
|
assertFalse(client.hasThrowable());
|
||||||
|
logger.info("numactions = {}, submitted = {}, succeeded= {}, failed = {}", NUM_ACTIONS,
|
||||||
|
client.getMetric().getSubmitted().getCount(),
|
||||||
|
client.getMetric().getSucceeded().getCount(),
|
||||||
|
client.getMetric().getFailed().getCount());
|
||||||
|
assertEquals(NUM_ACTIONS, client.getMetric().getSubmitted().getCount());
|
||||||
|
assertEquals(NUM_ACTIONS, client.getMetric().getSucceeded().getCount());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,142 @@
|
||||||
|
package org.xbib.elasticsearch.client.http;
|
||||||
|
|
||||||
|
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters;
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
import org.apache.logging.log4j.Logger;
|
||||||
|
import org.elasticsearch.action.admin.cluster.node.info.NodeInfo;
|
||||||
|
import org.elasticsearch.action.admin.indices.stats.CommonStats;
|
||||||
|
import org.elasticsearch.action.admin.indices.stats.IndexShardStats;
|
||||||
|
import org.elasticsearch.action.admin.indices.stats.IndexStats;
|
||||||
|
import org.elasticsearch.action.admin.indices.stats.IndicesStatsAction;
|
||||||
|
import org.elasticsearch.action.admin.indices.stats.IndicesStatsRequestBuilder;
|
||||||
|
import org.elasticsearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||||
|
import org.elasticsearch.action.search.SearchAction;
|
||||||
|
import org.elasticsearch.action.search.SearchRequestBuilder;
|
||||||
|
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
||||||
|
import org.elasticsearch.common.network.NetworkModule;
|
||||||
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
import org.elasticsearch.common.transport.TransportAddress;
|
||||||
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
|
import org.elasticsearch.common.util.concurrent.EsExecutors;
|
||||||
|
import org.elasticsearch.index.query.QueryBuilders;
|
||||||
|
import org.elasticsearch.index.shard.IndexingStats;
|
||||||
|
import org.elasticsearch.plugins.Plugin;
|
||||||
|
import org.elasticsearch.test.ESIntegTestCase;
|
||||||
|
import org.elasticsearch.transport.Netty4Plugin;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.xbib.elasticsearch.client.ClientBuilder;
|
||||||
|
import org.xbib.elasticsearch.client.SimpleBulkControl;
|
||||||
|
import org.xbib.elasticsearch.client.SimpleBulkMetric;
|
||||||
|
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
@ThreadLeakFilters(defaultFilters = true, filters = {TestRunnerThreadsFilter.class})
|
||||||
|
@ESIntegTestCase.ClusterScope(scope=ESIntegTestCase.Scope.SUITE, numDataNodes=3)
|
||||||
|
public class HttpClientReplicaTests extends ESIntegTestCase {
|
||||||
|
|
||||||
|
private static final Logger logger = LogManager.getLogger(HttpClientReplicaTests.class.getName());
|
||||||
|
|
||||||
|
private TransportAddress httpAddress;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void fetchTransportAddress() {
|
||||||
|
NodeInfo nodeInfo = client().admin().cluster().prepareNodesInfo().get().getNodes().get(0);
|
||||||
|
httpAddress = nodeInfo.getHttp().getAddress().publishAddress();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Collection<Class<? extends Plugin>> nodePlugins() {
|
||||||
|
return Collections.singletonList(Netty4Plugin.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Settings nodeSettings(int nodeNumber) {
|
||||||
|
return Settings.builder()
|
||||||
|
.put(super.nodeSettings(nodeNumber))
|
||||||
|
.put(EsExecutors.PROCESSORS_SETTING.getKey(), 1)
|
||||||
|
.put(NetworkModule.TRANSPORT_TYPE_KEY, Netty4Plugin.NETTY_TRANSPORT_NAME)
|
||||||
|
.put(NetworkModule.HTTP_TYPE_DEFAULT_KEY, Netty4Plugin.NETTY_HTTP_TRANSPORT_NAME)
|
||||||
|
.put(NetworkModule.HTTP_ENABLED.getKey(), true)
|
||||||
|
.build();
|
||||||
|
}
|
||||||
|
|
||||||
|
private String findHttpAddress() {
|
||||||
|
return "http://" + httpAddress.address().getHostName() + ":" + httpAddress.address().getPort();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testReplicaLevel() throws Exception {
|
||||||
|
|
||||||
|
Settings settingsTest1 = Settings.builder()
|
||||||
|
.put("index.number_of_shards", 1)
|
||||||
|
.put("index.number_of_replicas", 2)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
Settings settingsTest2 = Settings.builder()
|
||||||
|
.put("index.number_of_shards", 1)
|
||||||
|
.put("index.number_of_replicas", 1)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
final HttpClient client = ClientBuilder.builder()
|
||||||
|
.put("urls", findHttpAddress())
|
||||||
|
.setMetric(new SimpleBulkMetric())
|
||||||
|
.setControl(new SimpleBulkControl())
|
||||||
|
.getClient(HttpClient.class);
|
||||||
|
|
||||||
|
try {
|
||||||
|
client.newIndex("test1", settingsTest1, null)
|
||||||
|
.newIndex("test2", settingsTest2, null);
|
||||||
|
client.waitForCluster("GREEN", TimeValue.timeValueSeconds(30));
|
||||||
|
for (int i = 0; i < 1234; i++) {
|
||||||
|
client.index("test1", "test", null, false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
|
}
|
||||||
|
for (int i = 0; i < 1234; i++) {
|
||||||
|
client.index("test2", "test", null, false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
|
}
|
||||||
|
client.flushIngest();
|
||||||
|
client.waitForResponses(TimeValue.timeValueSeconds(60));
|
||||||
|
} catch (NoNodeAvailableException e) {
|
||||||
|
logger.warn("skipping, no node available");
|
||||||
|
} finally {
|
||||||
|
logger.info("refreshing");
|
||||||
|
client.refreshIndex("test1");
|
||||||
|
client.refreshIndex("test2");
|
||||||
|
SearchRequestBuilder searchRequestBuilder = new SearchRequestBuilder(client.client(), SearchAction.INSTANCE)
|
||||||
|
.setIndices("test1", "test2")
|
||||||
|
.setQuery(QueryBuilders.matchAllQuery());
|
||||||
|
long hits = searchRequestBuilder.execute().actionGet().getHits().getTotalHits();
|
||||||
|
logger.info("query total hits={}", hits);
|
||||||
|
assertEquals(2468, hits);
|
||||||
|
IndicesStatsRequestBuilder indicesStatsRequestBuilder = new IndicesStatsRequestBuilder(client.client(),
|
||||||
|
IndicesStatsAction.INSTANCE)
|
||||||
|
.all();
|
||||||
|
IndicesStatsResponse response = indicesStatsRequestBuilder.execute().actionGet();
|
||||||
|
for (Map.Entry<String, IndexStats> m : response.getIndices().entrySet()) {
|
||||||
|
IndexStats indexStats = m.getValue();
|
||||||
|
CommonStats commonStats = indexStats.getTotal();
|
||||||
|
IndexingStats indexingStats = commonStats.getIndexing();
|
||||||
|
IndexingStats.Stats stats = indexingStats.getTotal();
|
||||||
|
logger.info("index {}: count = {}", m.getKey(), stats.getIndexCount());
|
||||||
|
for (Map.Entry<Integer, IndexShardStats> me : indexStats.getIndexShards().entrySet()) {
|
||||||
|
IndexShardStats indexShardStats = me.getValue();
|
||||||
|
CommonStats commonShardStats = indexShardStats.getTotal();
|
||||||
|
logger.info("shard {} count = {}", me.getKey(),
|
||||||
|
commonShardStats.getIndexing().getTotal().getIndexCount());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
client.deleteIndex("test1")
|
||||||
|
.deleteIndex("test2");
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error("delete index failed, ignored. Reason:", e);
|
||||||
|
}
|
||||||
|
client.shutdown();
|
||||||
|
if (client.hasThrowable()) {
|
||||||
|
logger.error("error", client.getThrowable());
|
||||||
|
}
|
||||||
|
assertFalse(client.hasThrowable());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,204 @@
|
||||||
|
package org.xbib.elasticsearch.client.http;
|
||||||
|
|
||||||
|
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters;
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
import org.apache.logging.log4j.Logger;
|
||||||
|
import org.elasticsearch.action.admin.cluster.node.info.NodeInfo;
|
||||||
|
import org.elasticsearch.common.network.NetworkModule;
|
||||||
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
import org.elasticsearch.common.transport.TransportAddress;
|
||||||
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
|
import org.elasticsearch.plugins.Plugin;
|
||||||
|
import org.elasticsearch.test.ESSingleNodeTestCase;
|
||||||
|
import org.elasticsearch.transport.Netty4Plugin;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.xbib.elasticsearch.client.ClientBuilder;
|
||||||
|
import org.xbib.elasticsearch.client.SimpleBulkControl;
|
||||||
|
import org.xbib.elasticsearch.client.SimpleBulkMetric;
|
||||||
|
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.Collections;
|
||||||
|
|
||||||
|
@ThreadLeakFilters(defaultFilters = true, filters = {TestRunnerThreadsFilter.class})
|
||||||
|
public class HttpClientTests extends ESSingleNodeTestCase {
|
||||||
|
|
||||||
|
private static final Logger logger = LogManager.getLogger(HttpClientTests.class.getName());
|
||||||
|
|
||||||
|
private static final Long MAX_ACTIONS = 10L;
|
||||||
|
|
||||||
|
private static final Long NUM_ACTIONS = 1234L;
|
||||||
|
|
||||||
|
private TransportAddress httpAddress;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void fetchTransportAddress() {
|
||||||
|
NodeInfo nodeInfo = client().admin().cluster().prepareNodesInfo().get().getNodes().get(0);
|
||||||
|
httpAddress = nodeInfo.getHttp().getAddress().publishAddress();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Collection<Class<? extends Plugin>> getPlugins() {
|
||||||
|
return Collections.singletonList(Netty4Plugin.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Settings nodeSettings() {
|
||||||
|
return Settings.builder()
|
||||||
|
.put(super.nodeSettings())
|
||||||
|
.put(NetworkModule.TRANSPORT_TYPE_KEY, Netty4Plugin.NETTY_TRANSPORT_NAME)
|
||||||
|
.put(NetworkModule.HTTP_TYPE_DEFAULT_KEY, Netty4Plugin.NETTY_HTTP_TRANSPORT_NAME)
|
||||||
|
.put(NetworkModule.HTTP_ENABLED.getKey(), true)
|
||||||
|
.build();
|
||||||
|
}
|
||||||
|
|
||||||
|
private String findHttpAddress() {
|
||||||
|
return "http://" + httpAddress.address().getHostName() + ":" + httpAddress.address().getPort();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testNewIndex() throws Exception {
|
||||||
|
final HttpClient client = ClientBuilder.builder()
|
||||||
|
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(5))
|
||||||
|
.put("urls", findHttpAddress())
|
||||||
|
.setMetric(new SimpleBulkMetric())
|
||||||
|
.setControl(new SimpleBulkControl())
|
||||||
|
.getClient(HttpClient.class);
|
||||||
|
client.newIndex("test");
|
||||||
|
if (client.hasThrowable()) {
|
||||||
|
logger.error("error", client.getThrowable());
|
||||||
|
}
|
||||||
|
assertFalse(client.hasThrowable());
|
||||||
|
client.shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
/*public void testMapping() throws Exception {
|
||||||
|
final HttpClient client = ClientBuilder.builder()
|
||||||
|
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(5))
|
||||||
|
.put("urls", findHttpAddress())
|
||||||
|
.setMetric(new SimpleBulkMetric())
|
||||||
|
.setControl(new SimpleBulkControl())
|
||||||
|
.getClient(HttpClient.class);
|
||||||
|
XContentBuilder builder = XContentFactory.jsonBuilder()
|
||||||
|
.startObject()
|
||||||
|
.startObject("test")
|
||||||
|
.startObject("properties")
|
||||||
|
.startObject("location")
|
||||||
|
.field("type", "geo_point")
|
||||||
|
.endObject()
|
||||||
|
.endObject()
|
||||||
|
.endObject()
|
||||||
|
.endObject();
|
||||||
|
client.mapping("test", builder.string());
|
||||||
|
client.newIndex("test");
|
||||||
|
GetMappingsRequest getMappingsRequest = new GetMappingsRequest().indices("test");
|
||||||
|
GetMappingsResponse getMappingsResponse =
|
||||||
|
client.client().execute(GetMappingsAction.INSTANCE, getMappingsRequest).actionGet();
|
||||||
|
logger.info("mappings={}", getMappingsResponse.getMappings());
|
||||||
|
if (client.hasThrowable()) {
|
||||||
|
logger.error("error", client.getThrowable());
|
||||||
|
}
|
||||||
|
assertFalse(client.hasThrowable());
|
||||||
|
client.shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testSingleDoc() throws Exception {
|
||||||
|
final HttpClient client = ClientBuilder.builder()
|
||||||
|
.put("urls", findHttpAddress())
|
||||||
|
.put(ClientBuilder.MAX_ACTIONS_PER_REQUEST, MAX_ACTIONS)
|
||||||
|
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(30))
|
||||||
|
.setMetric(new SimpleBulkMetric())
|
||||||
|
.setControl(new SimpleBulkControl())
|
||||||
|
.getClient(HttpClient.class);
|
||||||
|
client.newIndex("test");
|
||||||
|
client.index("test", "test", "1", false,"{ \"name\" : \"Hello World\"}"); // single doc ingest
|
||||||
|
client.flushIngest();
|
||||||
|
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
||||||
|
assertEquals(1, client.getMetric().getSucceeded().getCount());
|
||||||
|
if (client.hasThrowable()) {
|
||||||
|
logger.error("error", client.getThrowable());
|
||||||
|
}
|
||||||
|
assertFalse(client.hasThrowable());
|
||||||
|
client.shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testRandomDocs() throws Exception {
|
||||||
|
long numactions = NUM_ACTIONS;
|
||||||
|
final HttpClient client = ClientBuilder.builder()
|
||||||
|
.put("urls", findHttpAddress())
|
||||||
|
.put(ClientBuilder.MAX_ACTIONS_PER_REQUEST, MAX_ACTIONS)
|
||||||
|
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(60))
|
||||||
|
.setMetric(new SimpleBulkMetric())
|
||||||
|
.setControl(new SimpleBulkControl())
|
||||||
|
.getClient(HttpClient.class);
|
||||||
|
try {
|
||||||
|
client.newIndex("test");
|
||||||
|
for (int i = 0; i < NUM_ACTIONS; i++) {
|
||||||
|
client.index("test", "test", null, false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
|
}
|
||||||
|
client.flushIngest();
|
||||||
|
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
||||||
|
} catch (NoNodeAvailableException e) {
|
||||||
|
logger.warn("skipping, no node available");
|
||||||
|
} finally {
|
||||||
|
if (client.hasThrowable()) {
|
||||||
|
logger.error("error", client.getThrowable());
|
||||||
|
}
|
||||||
|
logger.info("assuring {} == {}", numactions, client.getMetric().getSucceeded().getCount());
|
||||||
|
assertEquals(numactions, client.getMetric().getSucceeded().getCount());
|
||||||
|
assertFalse(client.hasThrowable());
|
||||||
|
client.shutdown();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testThreadedRandomDocs() throws Exception {
|
||||||
|
int maxthreads = Runtime.getRuntime().availableProcessors();
|
||||||
|
Long maxactions = MAX_ACTIONS;
|
||||||
|
final Long maxloop = NUM_ACTIONS;
|
||||||
|
logger.info("max={} maxactions={} maxloop={}", maxthreads, maxactions, maxloop);
|
||||||
|
final HttpClient client = ClientBuilder.builder()
|
||||||
|
.put("urls", findHttpAddress())
|
||||||
|
.put(ClientBuilder.MAX_ACTIONS_PER_REQUEST, maxactions)
|
||||||
|
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(60))// disable auto flush for this test
|
||||||
|
.setMetric(new SimpleBulkMetric())
|
||||||
|
.setControl(new SimpleBulkControl())
|
||||||
|
.getClient(HttpClient.class);
|
||||||
|
try {
|
||||||
|
client.newIndex("test").startBulk("test", 30 * 1000, 1000);
|
||||||
|
ExecutorService executorService = Executors.newFixedThreadPool(maxthreads);
|
||||||
|
final CountDownLatch latch = new CountDownLatch(maxthreads);
|
||||||
|
for (int i = 0; i < maxthreads; i++) {
|
||||||
|
executorService.execute(() -> {
|
||||||
|
for (int i1 = 0; i1 < maxloop; i1++) {
|
||||||
|
client.index("test", "test", null, false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
|
}
|
||||||
|
latch.countDown();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
logger.info("waiting for max 30 seconds...");
|
||||||
|
latch.await(30, TimeUnit.SECONDS);
|
||||||
|
logger.info("flush...");
|
||||||
|
client.flushIngest();
|
||||||
|
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
||||||
|
logger.info("got all responses, executor service shutdown...");
|
||||||
|
executorService.shutdown();
|
||||||
|
logger.info("executor service is shut down");
|
||||||
|
client.stopBulk("test");
|
||||||
|
} catch (NoNodeAvailableException e) {
|
||||||
|
logger.warn("skipping, no node available");
|
||||||
|
} finally {
|
||||||
|
logger.info("assuring {} == {}", maxthreads * maxloop, client.getMetric().getSucceeded().getCount());
|
||||||
|
assertEquals(maxthreads * maxloop, client.getMetric().getSucceeded().getCount());
|
||||||
|
if (client.hasThrowable()) {
|
||||||
|
logger.error("error", client.getThrowable());
|
||||||
|
}
|
||||||
|
assertFalse(client.hasThrowable());
|
||||||
|
client.refreshIndex("test");
|
||||||
|
SearchRequestBuilder searchRequestBuilder = new SearchRequestBuilder(client.client(), SearchAction.INSTANCE)
|
||||||
|
.setIndices("test")
|
||||||
|
.setQuery(QueryBuilders.matchAllQuery())
|
||||||
|
.setSize(0);
|
||||||
|
assertEquals(maxthreads * maxloop,
|
||||||
|
searchRequestBuilder.execute().actionGet().getHits().getTotalHits());
|
||||||
|
client.shutdown();
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
}
|
|
@ -0,0 +1,97 @@
|
||||||
|
package org.xbib.elasticsearch.client.http;
|
||||||
|
|
||||||
|
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters;
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
import org.apache.logging.log4j.Logger;
|
||||||
|
import org.elasticsearch.action.admin.cluster.node.info.NodeInfo;
|
||||||
|
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
||||||
|
import org.elasticsearch.common.network.NetworkModule;
|
||||||
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
import org.elasticsearch.common.transport.TransportAddress;
|
||||||
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
|
import org.elasticsearch.common.util.concurrent.EsExecutors;
|
||||||
|
import org.elasticsearch.plugins.Plugin;
|
||||||
|
import org.elasticsearch.test.ESIntegTestCase;
|
||||||
|
import org.elasticsearch.transport.Netty4Plugin;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.xbib.elasticsearch.client.ClientBuilder;
|
||||||
|
import org.xbib.elasticsearch.client.SimpleBulkControl;
|
||||||
|
import org.xbib.elasticsearch.client.SimpleBulkMetric;
|
||||||
|
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.Collections;
|
||||||
|
|
||||||
|
@ThreadLeakFilters(defaultFilters = true, filters = {TestRunnerThreadsFilter.class})
|
||||||
|
@ESIntegTestCase.ClusterScope(scope=ESIntegTestCase.Scope.SUITE, numDataNodes=3)
|
||||||
|
public class HttpClientUpdateReplicaLevelTests extends ESIntegTestCase {
|
||||||
|
|
||||||
|
private static final Logger logger = LogManager.getLogger(HttpClientUpdateReplicaLevelTests.class.getName());
|
||||||
|
|
||||||
|
private TransportAddress httpAddress;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void fetchTransportAddress() {
|
||||||
|
NodeInfo nodeInfo = client().admin().cluster().prepareNodesInfo().get().getNodes().get(0);
|
||||||
|
httpAddress = nodeInfo.getHttp().getAddress().publishAddress();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Collection<Class<? extends Plugin>> nodePlugins() {
|
||||||
|
return Collections.singletonList(Netty4Plugin.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Settings nodeSettings(int nodeNumber) {
|
||||||
|
return Settings.builder()
|
||||||
|
.put(super.nodeSettings(nodeNumber))
|
||||||
|
.put(EsExecutors.PROCESSORS_SETTING.getKey(), 1)
|
||||||
|
.put(NetworkModule.TRANSPORT_TYPE_KEY, Netty4Plugin.NETTY_TRANSPORT_NAME)
|
||||||
|
.put(NetworkModule.HTTP_TYPE_DEFAULT_KEY, Netty4Plugin.NETTY_HTTP_TRANSPORT_NAME)
|
||||||
|
.put(NetworkModule.HTTP_ENABLED.getKey(), true)
|
||||||
|
.build();
|
||||||
|
}
|
||||||
|
|
||||||
|
private String findHttpAddress() {
|
||||||
|
return "http://" + httpAddress.address().getHostName() + ":" + httpAddress.address().getPort();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testUpdateReplicaLevel() throws Exception {
|
||||||
|
|
||||||
|
int numberOfShards = 1;
|
||||||
|
int replicaLevel = 2;
|
||||||
|
|
||||||
|
int shardsAfterReplica;
|
||||||
|
|
||||||
|
Settings settings = Settings.builder()
|
||||||
|
.put("index.number_of_shards", numberOfShards)
|
||||||
|
.put("index.number_of_replicas", 0)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
final HttpClient client = ClientBuilder.builder()
|
||||||
|
.put("urls", findHttpAddress())
|
||||||
|
.setMetric(new SimpleBulkMetric())
|
||||||
|
.setControl(new SimpleBulkControl())
|
||||||
|
.getClient(client(), HttpClient.class);
|
||||||
|
|
||||||
|
try {
|
||||||
|
client.newIndex("replicatest", settings, null);
|
||||||
|
client.waitForCluster("GREEN", TimeValue.timeValueSeconds(30));
|
||||||
|
for (int i = 0; i < 12345; i++) {
|
||||||
|
client.index("replicatest", "replicatest", null, false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
|
}
|
||||||
|
client.flushIngest();
|
||||||
|
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
||||||
|
shardsAfterReplica = client.updateReplicaLevel("replicatest", replicaLevel);
|
||||||
|
assertEquals(shardsAfterReplica, numberOfShards * (replicaLevel + 1));
|
||||||
|
} catch (NoNodeAvailableException e) {
|
||||||
|
logger.warn("skipping, no node available");
|
||||||
|
} finally {
|
||||||
|
client.shutdown();
|
||||||
|
if (client.hasThrowable()) {
|
||||||
|
logger.error("error", client.getThrowable());
|
||||||
|
}
|
||||||
|
assertFalse(client.hasThrowable());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,50 @@
|
||||||
|
package org.xbib.elasticsearch.client.http;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.xbib.elasticsearch.client.ClientBuilder;
|
||||||
|
|
||||||
|
import java.util.logging.ConsoleHandler;
|
||||||
|
import java.util.logging.Handler;
|
||||||
|
import java.util.logging.Level;
|
||||||
|
import java.util.logging.LogManager;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
import java.util.logging.SimpleFormatter;
|
||||||
|
|
||||||
|
public class IndexCreationTest {
|
||||||
|
|
||||||
|
private static final Logger logger = Logger.getLogger(IndexCreationTest.class.getName());
|
||||||
|
static {
|
||||||
|
//System.setProperty("io.netty.leakDetection.level", "paranoid");
|
||||||
|
System.setProperty("io.netty.noKeySetOptimization", Boolean.toString(true));
|
||||||
|
System.setProperty("log4j2.disable.jmx", Boolean.toString(true));
|
||||||
|
|
||||||
|
System.setProperty("java.util.logging.SimpleFormatter.format",
|
||||||
|
"%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS.%1$tL %4$-7s [%3$s] %5$s %6$s%n");
|
||||||
|
LogManager.getLogManager().reset();
|
||||||
|
Logger rootLogger = LogManager.getLogManager().getLogger("");
|
||||||
|
Handler handler = new ConsoleHandler();
|
||||||
|
handler.setFormatter(new SimpleFormatter());
|
||||||
|
rootLogger.addHandler(handler);
|
||||||
|
rootLogger.setLevel(Level.ALL);
|
||||||
|
for (Handler h : rootLogger.getHandlers()) {
|
||||||
|
handler.setFormatter(new SimpleFormatter());
|
||||||
|
h.setLevel(Level.ALL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testNewIndex() throws Exception {
|
||||||
|
HttpClient client = ClientBuilder.builder()
|
||||||
|
//.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(5))
|
||||||
|
.put("urls", "http://localhost:9200")
|
||||||
|
//.setMetric(new SimpleBulkMetric())
|
||||||
|
//.setControl(new SimpleBulkControl())
|
||||||
|
.getClient(HttpClient.class);
|
||||||
|
try {
|
||||||
|
client.newIndex("demo");
|
||||||
|
Thread.sleep(3000L);
|
||||||
|
} finally {
|
||||||
|
client.shutdown();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
package org.xbib.elasticsearch.client.http;
|
||||||
|
|
||||||
|
import com.carrotsearch.randomizedtesting.ThreadFilter;
|
||||||
|
|
||||||
|
public class TestRunnerThreadsFilter implements ThreadFilter {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean reject(Thread thread) {
|
||||||
|
return thread.getName().startsWith("ObjectCleanerThread");
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
/**
|
/**
|
||||||
* Classes for testing Elasticsearch node client extras.
|
* Classes for testing Elasticsearch node client extras.
|
||||||
*/
|
*/
|
||||||
package org.xbib.elasticsearch.extras.client.node;
|
package org.xbib.elasticsearch.client.http;
|
63
node/build.gradle
Normal file
63
node/build.gradle
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
buildscript {
|
||||||
|
repositories {
|
||||||
|
jcenter()
|
||||||
|
maven {
|
||||||
|
url 'http://xbib.org/repository'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dependencies {
|
||||||
|
classpath "org.xbib.elasticsearch:gradle-plugin-elasticsearch-build:6.2.2.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
apply plugin: 'org.xbib.gradle.plugin.elasticsearch.build'
|
||||||
|
|
||||||
|
configurations {
|
||||||
|
main
|
||||||
|
tests
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compile project(':common')
|
||||||
|
testCompile "org.xbib.elasticsearch:elasticsearch-test-framework:${project.property('xbib-elasticsearch-test.version')}"
|
||||||
|
testRuntime "org.xbib.elasticsearch:elasticsearch-test-framework:${project.property('xbib-elasticsearch-test.version')}"
|
||||||
|
}
|
||||||
|
|
||||||
|
jar {
|
||||||
|
baseName "${rootProject.name}-node"
|
||||||
|
}
|
||||||
|
|
||||||
|
task testJar(type: Jar, dependsOn: testClasses) {
|
||||||
|
baseName = "${project.archivesBaseName}-tests"
|
||||||
|
from sourceSets.test.output
|
||||||
|
}
|
||||||
|
|
||||||
|
artifacts {
|
||||||
|
main jar
|
||||||
|
tests testJar
|
||||||
|
archives sourcesJar, javadocJar
|
||||||
|
}
|
||||||
|
|
||||||
|
test {
|
||||||
|
enabled = false
|
||||||
|
jvmArgs "-javaagent:" + configurations.alpnagent.asPath
|
||||||
|
systemProperty 'path.home', projectDir.absolutePath
|
||||||
|
testLogging {
|
||||||
|
showStandardStreams = true
|
||||||
|
exceptionFormat = 'full'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
randomizedTest {
|
||||||
|
enabled = false
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
esTest {
|
||||||
|
// test with the jars, not the classes, for security manager
|
||||||
|
classpath = files(configurations.testRuntime) + configurations.main.artifacts.files + configurations.tests.artifacts.files
|
||||||
|
systemProperty 'tests.security.manager', 'true'
|
||||||
|
// maybe we like some extra security policy for our code
|
||||||
|
systemProperty 'tests.security.policy', '/extra-security.policy'
|
||||||
|
}
|
||||||
|
esTest.dependsOn jar, testJar
|
323
node/config/checkstyle/checkstyle.xml
Normal file
323
node/config/checkstyle/checkstyle.xml
Normal file
|
@ -0,0 +1,323 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE module PUBLIC
|
||||||
|
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
|
||||||
|
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
|
||||||
|
|
||||||
|
<!-- This is a checkstyle configuration file. For descriptions of
|
||||||
|
what the following rules do, please see the checkstyle configuration
|
||||||
|
page at http://checkstyle.sourceforge.net/config.html -->
|
||||||
|
|
||||||
|
<module name="Checker">
|
||||||
|
|
||||||
|
<module name="FileTabCharacter">
|
||||||
|
<!-- Checks that there are no tab characters in the file.
|
||||||
|
-->
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="NewlineAtEndOfFile">
|
||||||
|
<property name="lineSeparator" value="lf"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="RegexpSingleline">
|
||||||
|
<!-- Checks that FIXME is not used in comments. TODO is preferred.
|
||||||
|
-->
|
||||||
|
<property name="format" value="((//.*)|(\*.*))FIXME" />
|
||||||
|
<property name="message" value='TODO is preferred to FIXME. e.g. "TODO(johndoe): Refactor when v2 is released."' />
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="RegexpSingleline">
|
||||||
|
<!-- Checks that TODOs are named. (Actually, just that they are followed
|
||||||
|
by an open paren.)
|
||||||
|
-->
|
||||||
|
<property name="format" value="((//.*)|(\*.*))TODO[^(]" />
|
||||||
|
<property name="message" value='All TODOs should be named. e.g. "TODO(johndoe): Refactor when v2 is released."' />
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="JavadocPackage">
|
||||||
|
<!-- Checks that each Java package has a Javadoc file used for commenting.
|
||||||
|
Only allows a package-info.java, not package.html. -->
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!-- All Java AST specific tests live under TreeWalker module. -->
|
||||||
|
<module name="TreeWalker">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
IMPORT CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="RedundantImport">
|
||||||
|
<!-- Checks for redundant import statements. -->
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ImportOrder">
|
||||||
|
<!-- Checks for out of order import statements. -->
|
||||||
|
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
<property name="groups" value="com,junit,net,org,java,javax"/>
|
||||||
|
<!-- This ensures that static imports go first. -->
|
||||||
|
<property name="option" value="top"/>
|
||||||
|
<property name="tokens" value="STATIC_IMPORT, IMPORT"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
JAVADOC CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Checks for Javadoc comments. -->
|
||||||
|
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
|
||||||
|
<module name="JavadocMethod">
|
||||||
|
<property name="scope" value="protected"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
<property name="allowMissingJavadoc" value="true"/>
|
||||||
|
<property name="allowMissingParamTags" value="true"/>
|
||||||
|
<property name="allowMissingReturnTag" value="true"/>
|
||||||
|
<property name="allowMissingThrowsTags" value="true"/>
|
||||||
|
<property name="allowThrowsTagsForSubclasses" value="true"/>
|
||||||
|
<property name="allowUndeclaredRTE" value="true"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="JavadocType">
|
||||||
|
<property name="scope" value="protected"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="JavadocStyle">
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
NAMING CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Item 38 - Adhere to generally accepted naming conventions -->
|
||||||
|
|
||||||
|
<module name="PackageName">
|
||||||
|
<!-- Validates identifiers for package names against the
|
||||||
|
supplied expression. -->
|
||||||
|
<!-- Here the default checkstyle rule restricts package name parts to
|
||||||
|
seven characters, this is not in line with common practice at Google.
|
||||||
|
-->
|
||||||
|
<property name="format" value="^[a-z]+(\.[a-z][a-z0-9]{1,})*$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="TypeNameCheck">
|
||||||
|
<!-- Validates static, final fields against the
|
||||||
|
expression "^[A-Z][a-zA-Z0-9]*$". -->
|
||||||
|
<metadata name="altname" value="TypeName"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ConstantNameCheck">
|
||||||
|
<!-- Validates non-private, static, final fields against the supplied
|
||||||
|
public/package final fields "^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$". -->
|
||||||
|
<metadata name="altname" value="ConstantName"/>
|
||||||
|
<property name="applyToPublic" value="true"/>
|
||||||
|
<property name="applyToProtected" value="true"/>
|
||||||
|
<property name="applyToPackage" value="true"/>
|
||||||
|
<property name="applyToPrivate" value="false"/>
|
||||||
|
<property name="format" value="^([A-Z][A-Z0-9]*(_[A-Z0-9]+)*|FLAG_.*)$"/>
|
||||||
|
<message key="name.invalidPattern"
|
||||||
|
value="Variable ''{0}'' should be in ALL_CAPS (if it is a constant) or be private (otherwise)."/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="StaticVariableNameCheck">
|
||||||
|
<!-- Validates static, non-final fields against the supplied
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*_?$". -->
|
||||||
|
<metadata name="altname" value="StaticVariableName"/>
|
||||||
|
<property name="applyToPublic" value="true"/>
|
||||||
|
<property name="applyToProtected" value="true"/>
|
||||||
|
<property name="applyToPackage" value="true"/>
|
||||||
|
<property name="applyToPrivate" value="true"/>
|
||||||
|
<property name="format" value="^[a-z][a-zA-Z0-9]*_?$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="MemberNameCheck">
|
||||||
|
<!-- Validates non-static members against the supplied expression. -->
|
||||||
|
<metadata name="altname" value="MemberName"/>
|
||||||
|
<property name="applyToPublic" value="true"/>
|
||||||
|
<property name="applyToProtected" value="true"/>
|
||||||
|
<property name="applyToPackage" value="true"/>
|
||||||
|
<property name="applyToPrivate" value="true"/>
|
||||||
|
<property name="format" value="^[a-z][a-zA-Z0-9]*$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="MethodNameCheck">
|
||||||
|
<!-- Validates identifiers for method names. -->
|
||||||
|
<metadata name="altname" value="MethodName"/>
|
||||||
|
<property name="format" value="^[a-z][a-zA-Z0-9]*(_[a-zA-Z0-9]+)*$"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ParameterName">
|
||||||
|
<!-- Validates identifiers for method parameters against the
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*$". -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="LocalFinalVariableName">
|
||||||
|
<!-- Validates identifiers for local final variables against the
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*$". -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="LocalVariableName">
|
||||||
|
<!-- Validates identifiers for local variables against the
|
||||||
|
expression "^[a-z][a-zA-Z0-9]*$". -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
LENGTH and CODING CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="LineLength">
|
||||||
|
<!-- Checks if a line is too long. -->
|
||||||
|
<property name="max" value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.max}" default="128"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
The default ignore pattern exempts the following elements:
|
||||||
|
- import statements
|
||||||
|
- long URLs inside comments
|
||||||
|
-->
|
||||||
|
|
||||||
|
<property name="ignorePattern"
|
||||||
|
value="${com.puppycrawl.tools.checkstyle.checks.sizes.LineLength.ignorePattern}"
|
||||||
|
default="^(package .*;\s*)|(import .*;\s*)|( *(\*|//).*https?://.*)$"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="LeftCurly">
|
||||||
|
<!-- Checks for placement of the left curly brace ('{'). -->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="RightCurly">
|
||||||
|
<!-- Checks right curlies on CATCH, ELSE, and TRY blocks are on
|
||||||
|
the same line. e.g., the following example is fine:
|
||||||
|
<pre>
|
||||||
|
if {
|
||||||
|
...
|
||||||
|
} else
|
||||||
|
</pre>
|
||||||
|
-->
|
||||||
|
<!-- This next example is not fine:
|
||||||
|
<pre>
|
||||||
|
if {
|
||||||
|
...
|
||||||
|
}
|
||||||
|
else
|
||||||
|
</pre>
|
||||||
|
-->
|
||||||
|
<property name="option" value="same"/>
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<!-- Checks for braces around if and else blocks -->
|
||||||
|
<module name="NeedBraces">
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
<property name="tokens" value="LITERAL_IF, LITERAL_ELSE, LITERAL_FOR, LITERAL_WHILE, LITERAL_DO"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="UpperEll">
|
||||||
|
<!-- Checks that long constants are defined with an upper ell.-->
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="FallThrough">
|
||||||
|
<!-- Warn about falling through to the next case statement. Similar to
|
||||||
|
javac -Xlint:fallthrough, but the check is suppressed if a single-line comment
|
||||||
|
on the last non-blank line preceding the fallen-into case contains 'fall through' (or
|
||||||
|
some other variants which we don't publicized to promote consistency).
|
||||||
|
-->
|
||||||
|
<property name="reliefPattern"
|
||||||
|
value="fall through|Fall through|fallthru|Fallthru|falls through|Falls through|fallthrough|Fallthrough|No break|NO break|no break|continue on"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
MODIFIERS CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="ModifierOrder">
|
||||||
|
<!-- Warn if modifier order is inconsistent with JLS3 8.1.1, 8.3.1, and
|
||||||
|
8.4.3. The prescribed order is:
|
||||||
|
public, protected, private, abstract, static, final, transient, volatile,
|
||||||
|
synchronized, native, strictfp
|
||||||
|
-->
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
|
||||||
|
WHITESPACE CHECKS
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<module name="WhitespaceAround">
|
||||||
|
<!-- Checks that various tokens are surrounded by whitespace.
|
||||||
|
This includes most binary operators and keywords followed
|
||||||
|
by regular or curly braces.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="ASSIGN, BAND, BAND_ASSIGN, BOR,
|
||||||
|
BOR_ASSIGN, BSR, BSR_ASSIGN, BXOR, BXOR_ASSIGN, COLON, DIV, DIV_ASSIGN,
|
||||||
|
EQUAL, GE, GT, LAND, LE, LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE,
|
||||||
|
LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, LITERAL_RETURN,
|
||||||
|
LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE, LOR, LT, MINUS,
|
||||||
|
MINUS_ASSIGN, MOD, MOD_ASSIGN, NOT_EQUAL, PLUS, PLUS_ASSIGN, QUESTION,
|
||||||
|
SL, SL_ASSIGN, SR_ASSIGN, STAR, STAR_ASSIGN"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="WhitespaceAfter">
|
||||||
|
<!-- Checks that commas, semicolons and typecasts are followed by
|
||||||
|
whitespace.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="COMMA, SEMI, TYPECAST"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="NoWhitespaceAfter">
|
||||||
|
<!-- Checks that there is no whitespace after various unary operators.
|
||||||
|
Linebreaks are allowed.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="BNOT, DEC, DOT, INC, LNOT, UNARY_MINUS,
|
||||||
|
UNARY_PLUS"/>
|
||||||
|
<property name="allowLineBreaks" value="true"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="NoWhitespaceBefore">
|
||||||
|
<!-- Checks that there is no whitespace before various unary operators.
|
||||||
|
Linebreaks are allowed.
|
||||||
|
-->
|
||||||
|
<property name="tokens" value="SEMI, DOT, POST_DEC, POST_INC"/>
|
||||||
|
<property name="allowLineBreaks" value="true"/>
|
||||||
|
<property name="severity" value="error"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
<module name="ParenPad">
|
||||||
|
<!-- Checks that there is no whitespace before close parens or after
|
||||||
|
open parens.
|
||||||
|
-->
|
||||||
|
<property name="severity" value="warning"/>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
</module>
|
||||||
|
</module>
|
||||||
|
|
684
node/src/docs/asciidoc/css/foundation.css
vendored
Normal file
684
node/src/docs/asciidoc/css/foundation.css
vendored
Normal file
|
@ -0,0 +1,684 @@
|
||||||
|
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */
|
||||||
|
/* ========================================================================== HTML5 display definitions ========================================================================== */
|
||||||
|
/** Correct `block` display not defined in IE 8/9. */
|
||||||
|
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; }
|
||||||
|
|
||||||
|
/** Correct `inline-block` display not defined in IE 8/9. */
|
||||||
|
audio, canvas, video { display: inline-block; }
|
||||||
|
|
||||||
|
/** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */
|
||||||
|
audio:not([controls]) { display: none; height: 0; }
|
||||||
|
|
||||||
|
/** Address `[hidden]` styling not present in IE 8/9. Hide the `template` element in IE, Safari, and Firefox < 22. */
|
||||||
|
[hidden], template { display: none; }
|
||||||
|
|
||||||
|
script { display: none !important; }
|
||||||
|
|
||||||
|
/* ========================================================================== Base ========================================================================== */
|
||||||
|
/** 1. Set default font family to sans-serif. 2. Prevent iOS text size adjust after orientation change, without disabling user zoom. */
|
||||||
|
html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ }
|
||||||
|
|
||||||
|
/** Remove default margin. */
|
||||||
|
body { margin: 0; }
|
||||||
|
|
||||||
|
/* ========================================================================== Links ========================================================================== */
|
||||||
|
/** Remove the gray background color from active links in IE 10. */
|
||||||
|
a { background: transparent; }
|
||||||
|
|
||||||
|
/** Address `outline` inconsistency between Chrome and other browsers. */
|
||||||
|
a:focus { outline: thin dotted; }
|
||||||
|
|
||||||
|
/** Improve readability when focused and also mouse hovered in all browsers. */
|
||||||
|
a:active, a:hover { outline: 0; }
|
||||||
|
|
||||||
|
/* ========================================================================== Typography ========================================================================== */
|
||||||
|
/** Address variable `h1` font-size and margin within `section` and `article` contexts in Firefox 4+, Safari 5, and Chrome. */
|
||||||
|
h1 { font-size: 2em; margin: 0.67em 0; }
|
||||||
|
|
||||||
|
/** Address styling not present in IE 8/9, Safari 5, and Chrome. */
|
||||||
|
abbr[title] { border-bottom: 1px dotted; }
|
||||||
|
|
||||||
|
/** Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
|
||||||
|
b, strong { font-weight: bold; }
|
||||||
|
|
||||||
|
/** Address styling not present in Safari 5 and Chrome. */
|
||||||
|
dfn { font-style: italic; }
|
||||||
|
|
||||||
|
/** Address differences between Firefox and other browsers. */
|
||||||
|
hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; }
|
||||||
|
|
||||||
|
/** Address styling not present in IE 8/9. */
|
||||||
|
mark { background: #ff0; color: #000; }
|
||||||
|
|
||||||
|
/** Correct font family set oddly in Safari 5 and Chrome. */
|
||||||
|
code, kbd, pre, samp { font-family: monospace, serif; font-size: 1em; }
|
||||||
|
|
||||||
|
/** Improve readability of pre-formatted text in all browsers. */
|
||||||
|
pre { white-space: pre-wrap; }
|
||||||
|
|
||||||
|
/** Set consistent quote types. */
|
||||||
|
q { quotes: "\201C" "\201D" "\2018" "\2019"; }
|
||||||
|
|
||||||
|
/** Address inconsistent and variable font size in all browsers. */
|
||||||
|
small { font-size: 80%; }
|
||||||
|
|
||||||
|
/** Prevent `sub` and `sup` affecting `line-height` in all browsers. */
|
||||||
|
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
|
||||||
|
|
||||||
|
sup { top: -0.5em; }
|
||||||
|
|
||||||
|
sub { bottom: -0.25em; }
|
||||||
|
|
||||||
|
/* ========================================================================== Embedded content ========================================================================== */
|
||||||
|
/** Remove border when inside `a` element in IE 8/9. */
|
||||||
|
img { border: 0; }
|
||||||
|
|
||||||
|
/** Correct overflow displayed oddly in IE 9. */
|
||||||
|
svg:not(:root) { overflow: hidden; }
|
||||||
|
|
||||||
|
/* ========================================================================== Figures ========================================================================== */
|
||||||
|
/** Address margin not present in IE 8/9 and Safari 5. */
|
||||||
|
figure { margin: 0; }
|
||||||
|
|
||||||
|
/* ========================================================================== Forms ========================================================================== */
|
||||||
|
/** Define consistent border, margin, and padding. */
|
||||||
|
fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; }
|
||||||
|
|
||||||
|
/** 1. Correct `color` not being inherited in IE 8/9. 2. Remove padding so people aren't caught out if they zero out fieldsets. */
|
||||||
|
legend { border: 0; /* 1 */ padding: 0; /* 2 */ }
|
||||||
|
|
||||||
|
/** 1. Correct font family not being inherited in all browsers. 2. Correct font size not being inherited in all browsers. 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. */
|
||||||
|
button, input, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 2 */ margin: 0; /* 3 */ }
|
||||||
|
|
||||||
|
/** Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet. */
|
||||||
|
button, input { line-height: normal; }
|
||||||
|
|
||||||
|
/** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */
|
||||||
|
button, select { text-transform: none; }
|
||||||
|
|
||||||
|
/** 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. 2. Correct inability to style clickable `input` types in iOS. 3. Improve usability and consistency of cursor style between image-type `input` and others. */
|
||||||
|
button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ }
|
||||||
|
|
||||||
|
/** Re-set default cursor for disabled elements. */
|
||||||
|
button[disabled], html input[disabled] { cursor: default; }
|
||||||
|
|
||||||
|
/** 1. Address box sizing set to `content-box` in IE 8/9. 2. Remove excess padding in IE 8/9. */
|
||||||
|
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ }
|
||||||
|
|
||||||
|
/** 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome (include `-moz` to future-proof). */
|
||||||
|
input[type="search"] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; }
|
||||||
|
|
||||||
|
/** Remove inner padding and search cancel button in Safari 5 and Chrome on OS X. */
|
||||||
|
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
|
||||||
|
|
||||||
|
/** Remove inner padding and border in Firefox 4+. */
|
||||||
|
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
|
||||||
|
|
||||||
|
/** 1. Remove default vertical scrollbar in IE 8/9. 2. Improve readability and alignment in all browsers. */
|
||||||
|
textarea { overflow: auto; /* 1 */ vertical-align: top; /* 2 */ }
|
||||||
|
|
||||||
|
/* ========================================================================== Tables ========================================================================== */
|
||||||
|
/** Remove most spacing between table cells. */
|
||||||
|
table { border-collapse: collapse; border-spacing: 0; }
|
||||||
|
|
||||||
|
meta.foundation-mq-small { font-family: "only screen and (min-width: 768px)"; width: 768px; }
|
||||||
|
|
||||||
|
meta.foundation-mq-medium { font-family: "only screen and (min-width:1280px)"; width: 1280px; }
|
||||||
|
|
||||||
|
meta.foundation-mq-large { font-family: "only screen and (min-width:1440px)"; width: 1440px; }
|
||||||
|
|
||||||
|
*, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
|
||||||
|
|
||||||
|
html, body { font-size: 100%; }
|
||||||
|
|
||||||
|
body { background: white; color: #222222; padding: 0; margin: 0; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; line-height: 1; position: relative; cursor: auto; }
|
||||||
|
|
||||||
|
a:hover { cursor: pointer; }
|
||||||
|
|
||||||
|
img, object, embed { max-width: 100%; height: auto; }
|
||||||
|
|
||||||
|
object, embed { height: 100%; }
|
||||||
|
|
||||||
|
img { -ms-interpolation-mode: bicubic; }
|
||||||
|
|
||||||
|
#map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object { max-width: none !important; }
|
||||||
|
|
||||||
|
.left { float: left !important; }
|
||||||
|
|
||||||
|
.right { float: right !important; }
|
||||||
|
|
||||||
|
.text-left { text-align: left !important; }
|
||||||
|
|
||||||
|
.text-right { text-align: right !important; }
|
||||||
|
|
||||||
|
.text-center { text-align: center !important; }
|
||||||
|
|
||||||
|
.text-justify { text-align: justify !important; }
|
||||||
|
|
||||||
|
.hide { display: none; }
|
||||||
|
|
||||||
|
.antialiased { -webkit-font-smoothing: antialiased; }
|
||||||
|
|
||||||
|
img { display: inline-block; vertical-align: middle; }
|
||||||
|
|
||||||
|
textarea { height: auto; min-height: 50px; }
|
||||||
|
|
||||||
|
select { width: 100%; }
|
||||||
|
|
||||||
|
object, svg { display: inline-block; vertical-align: middle; }
|
||||||
|
|
||||||
|
.center { margin-left: auto; margin-right: auto; }
|
||||||
|
|
||||||
|
.spread { width: 100%; }
|
||||||
|
|
||||||
|
p.lead, .paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p { font-size: 1.21875em; line-height: 1.6; }
|
||||||
|
|
||||||
|
.subheader, .admonitionblock td.content > .title, .audioblock > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .stemblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, table.tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title { line-height: 1.4; color: #6f6f6f; font-weight: 300; margin-top: 0.2em; margin-bottom: 0.5em; }
|
||||||
|
|
||||||
|
/* Typography resets */
|
||||||
|
div, dl, dt, dd, ul, ol, li, h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; direction: ltr; }
|
||||||
|
|
||||||
|
/* Default Link Styles */
|
||||||
|
a { color: #2ba6cb; text-decoration: none; line-height: inherit; }
|
||||||
|
a:hover, a:focus { color: #2795b6; }
|
||||||
|
a img { border: none; }
|
||||||
|
|
||||||
|
/* Default paragraph styles */
|
||||||
|
p { font-family: inherit; font-weight: normal; font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; text-rendering: optimizeLegibility; }
|
||||||
|
p aside { font-size: 0.875em; line-height: 1.35; font-style: italic; }
|
||||||
|
|
||||||
|
/* Default header styles */
|
||||||
|
h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: bold; font-style: normal; color: #222222; text-rendering: optimizeLegibility; margin-top: 1em; margin-bottom: 0.5em; line-height: 1.2125em; }
|
||||||
|
h1 small, h2 small, h3 small, #toctitle small, .sidebarblock > .content > .title small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; }
|
||||||
|
|
||||||
|
h1 { font-size: 2.125em; }
|
||||||
|
|
||||||
|
h2 { font-size: 1.6875em; }
|
||||||
|
|
||||||
|
h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.375em; }
|
||||||
|
|
||||||
|
h4 { font-size: 1.125em; }
|
||||||
|
|
||||||
|
h5 { font-size: 1.125em; }
|
||||||
|
|
||||||
|
h6 { font-size: 1em; }
|
||||||
|
|
||||||
|
hr { border: solid #dddddd; border-width: 1px 0 0; clear: both; margin: 1.25em 0 1.1875em; height: 0; }
|
||||||
|
|
||||||
|
/* Helpful Typography Defaults */
|
||||||
|
em, i { font-style: italic; line-height: inherit; }
|
||||||
|
|
||||||
|
strong, b { font-weight: bold; line-height: inherit; }
|
||||||
|
|
||||||
|
small { font-size: 60%; line-height: inherit; }
|
||||||
|
|
||||||
|
code { font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: bold; color: #7f0a0c; }
|
||||||
|
|
||||||
|
/* Lists */
|
||||||
|
ul, ol, dl { font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; list-style-position: outside; font-family: inherit; }
|
||||||
|
|
||||||
|
ul, ol { margin-left: 1.5em; }
|
||||||
|
ul.no-bullet, ol.no-bullet { margin-left: 1.5em; }
|
||||||
|
|
||||||
|
/* Unordered Lists */
|
||||||
|
ul li ul, ul li ol { margin-left: 1.25em; margin-bottom: 0; font-size: 1em; /* Override nested font-size change */ }
|
||||||
|
ul.square li ul, ul.circle li ul, ul.disc li ul { list-style: inherit; }
|
||||||
|
ul.square { list-style-type: square; }
|
||||||
|
ul.circle { list-style-type: circle; }
|
||||||
|
ul.disc { list-style-type: disc; }
|
||||||
|
ul.no-bullet { list-style: none; }
|
||||||
|
|
||||||
|
/* Ordered Lists */
|
||||||
|
ol li ul, ol li ol { margin-left: 1.25em; margin-bottom: 0; }
|
||||||
|
|
||||||
|
/* Definition Lists */
|
||||||
|
dl dt { margin-bottom: 0.3125em; font-weight: bold; }
|
||||||
|
dl dd { margin-bottom: 1.25em; }
|
||||||
|
|
||||||
|
/* Abbreviations */
|
||||||
|
abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222222; border-bottom: 1px dotted #dddddd; cursor: help; }
|
||||||
|
|
||||||
|
abbr { text-transform: none; }
|
||||||
|
|
||||||
|
/* Blockquotes */
|
||||||
|
blockquote { margin: 0 0 1.25em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #dddddd; }
|
||||||
|
blockquote cite { display: block; font-size: 0.8125em; color: #555555; }
|
||||||
|
blockquote cite:before { content: "\2014 \0020"; }
|
||||||
|
blockquote cite a, blockquote cite a:visited { color: #555555; }
|
||||||
|
|
||||||
|
blockquote, blockquote p { line-height: 1.6; color: #6f6f6f; }
|
||||||
|
|
||||||
|
/* Microformats */
|
||||||
|
.vcard { display: inline-block; margin: 0 0 1.25em 0; border: 1px solid #dddddd; padding: 0.625em 0.75em; }
|
||||||
|
.vcard li { margin: 0; display: block; }
|
||||||
|
.vcard .fn { font-weight: bold; font-size: 0.9375em; }
|
||||||
|
|
||||||
|
.vevent .summary { font-weight: bold; }
|
||||||
|
.vevent abbr { cursor: auto; text-decoration: none; font-weight: bold; border: none; padding: 0 0.0625em; }
|
||||||
|
|
||||||
|
@media only screen and (min-width: 768px) { h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.4; }
|
||||||
|
h1 { font-size: 2.75em; }
|
||||||
|
h2 { font-size: 2.3125em; }
|
||||||
|
h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.6875em; }
|
||||||
|
h4 { font-size: 1.4375em; } }
|
||||||
|
/* Tables */
|
||||||
|
table { background: white; margin-bottom: 1.25em; border: solid 1px #dddddd; }
|
||||||
|
table thead, table tfoot { background: whitesmoke; font-weight: bold; }
|
||||||
|
table thead tr th, table thead tr td, table tfoot tr th, table tfoot tr td { padding: 0.5em 0.625em 0.625em; font-size: inherit; color: #222222; text-align: left; }
|
||||||
|
table tr th, table tr td { padding: 0.5625em 0.625em; font-size: inherit; color: #222222; }
|
||||||
|
table tr.even, table tr.alt, table tr:nth-of-type(even) { background: #f9f9f9; }
|
||||||
|
table thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td { display: table-cell; line-height: 1.4; }
|
||||||
|
|
||||||
|
body { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; tab-size: 4; }
|
||||||
|
|
||||||
|
h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.4; }
|
||||||
|
|
||||||
|
.clearfix:before, .clearfix:after, .float-group:before, .float-group:after { content: " "; display: table; }
|
||||||
|
.clearfix:after, .float-group:after { clear: both; }
|
||||||
|
|
||||||
|
*:not(pre) > code { font-size: inherit; font-style: normal !important; letter-spacing: 0; padding: 0; line-height: inherit; word-wrap: break-word; }
|
||||||
|
*:not(pre) > code.nobreak { word-wrap: normal; }
|
||||||
|
*:not(pre) > code.nowrap { white-space: nowrap; }
|
||||||
|
|
||||||
|
pre, pre > code { line-height: 1.4; color: black; font-family: monospace, serif; font-weight: normal; }
|
||||||
|
|
||||||
|
em em { font-style: normal; }
|
||||||
|
|
||||||
|
strong strong { font-weight: normal; }
|
||||||
|
|
||||||
|
.keyseq { color: #555555; }
|
||||||
|
|
||||||
|
kbd { font-family: Consolas, "Liberation Mono", Courier, monospace; display: inline-block; color: #222222; font-size: 0.65em; line-height: 1.45; background-color: #f7f7f7; border: 1px solid #ccc; -webkit-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 0.1em white inset; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 0.1em white inset; margin: 0 0.15em; padding: 0.2em 0.5em; vertical-align: middle; position: relative; top: -0.1em; white-space: nowrap; }
|
||||||
|
|
||||||
|
.keyseq kbd:first-child { margin-left: 0; }
|
||||||
|
|
||||||
|
.keyseq kbd:last-child { margin-right: 0; }
|
||||||
|
|
||||||
|
.menuseq, .menu { color: #090909; }
|
||||||
|
|
||||||
|
b.button:before, b.button:after { position: relative; top: -1px; font-weight: normal; }
|
||||||
|
|
||||||
|
b.button:before { content: "["; padding: 0 3px 0 2px; }
|
||||||
|
|
||||||
|
b.button:after { content: "]"; padding: 0 2px 0 3px; }
|
||||||
|
|
||||||
|
#header, #content, #footnotes, #footer { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 62.5em; *zoom: 1; position: relative; padding-left: 0.9375em; padding-right: 0.9375em; }
|
||||||
|
#header:before, #header:after, #content:before, #content:after, #footnotes:before, #footnotes:after, #footer:before, #footer:after { content: " "; display: table; }
|
||||||
|
#header:after, #content:after, #footnotes:after, #footer:after { clear: both; }
|
||||||
|
|
||||||
|
#content { margin-top: 1.25em; }
|
||||||
|
|
||||||
|
#content:before { content: none; }
|
||||||
|
|
||||||
|
#header > h1:first-child { color: black; margin-top: 2.25rem; margin-bottom: 0; }
|
||||||
|
#header > h1:first-child + #toc { margin-top: 8px; border-top: 1px solid #dddddd; }
|
||||||
|
#header > h1:only-child, body.toc2 #header > h1:nth-last-child(2) { border-bottom: 1px solid #dddddd; padding-bottom: 8px; }
|
||||||
|
#header .details { border-bottom: 1px solid #dddddd; line-height: 1.45; padding-top: 0.25em; padding-bottom: 0.25em; padding-left: 0.25em; color: #555555; display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-flow: row wrap; -webkit-flex-flow: row wrap; flex-flow: row wrap; }
|
||||||
|
#header .details span:first-child { margin-left: -0.125em; }
|
||||||
|
#header .details span.email a { color: #6f6f6f; }
|
||||||
|
#header .details br { display: none; }
|
||||||
|
#header .details br + span:before { content: "\00a0\2013\00a0"; }
|
||||||
|
#header .details br + span.author:before { content: "\00a0\22c5\00a0"; color: #6f6f6f; }
|
||||||
|
#header .details br + span#revremark:before { content: "\00a0|\00a0"; }
|
||||||
|
#header #revnumber { text-transform: capitalize; }
|
||||||
|
#header #revnumber:after { content: "\00a0"; }
|
||||||
|
|
||||||
|
#content > h1:first-child:not([class]) { color: black; border-bottom: 1px solid #dddddd; padding-bottom: 8px; margin-top: 0; padding-top: 1rem; margin-bottom: 1.25rem; }
|
||||||
|
|
||||||
|
#toc { border-bottom: 1px solid #dddddd; padding-bottom: 0.5em; }
|
||||||
|
#toc > ul { margin-left: 0.125em; }
|
||||||
|
#toc ul.sectlevel0 > li > a { font-style: italic; }
|
||||||
|
#toc ul.sectlevel0 ul.sectlevel1 { margin: 0.5em 0; }
|
||||||
|
#toc ul { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; list-style-type: none; }
|
||||||
|
#toc li { line-height: 1.3334; margin-top: 0.3334em; }
|
||||||
|
#toc a { text-decoration: none; }
|
||||||
|
#toc a:active { text-decoration: underline; }
|
||||||
|
|
||||||
|
#toctitle { color: #6f6f6f; font-size: 1.2em; }
|
||||||
|
|
||||||
|
@media only screen and (min-width: 768px) { #toctitle { font-size: 1.375em; }
|
||||||
|
body.toc2 { padding-left: 15em; padding-right: 0; }
|
||||||
|
#toc.toc2 { margin-top: 0 !important; background-color: #f2f2f2; position: fixed; width: 15em; left: 0; top: 0; border-right: 1px solid #dddddd; border-top-width: 0 !important; border-bottom-width: 0 !important; z-index: 1000; padding: 1.25em 1em; height: 100%; overflow: auto; }
|
||||||
|
#toc.toc2 #toctitle { margin-top: 0; margin-bottom: 0.8rem; font-size: 1.2em; }
|
||||||
|
#toc.toc2 > ul { font-size: 0.9em; margin-bottom: 0; }
|
||||||
|
#toc.toc2 ul ul { margin-left: 0; padding-left: 1em; }
|
||||||
|
#toc.toc2 ul.sectlevel0 ul.sectlevel1 { padding-left: 0; margin-top: 0.5em; margin-bottom: 0.5em; }
|
||||||
|
body.toc2.toc-right { padding-left: 0; padding-right: 15em; }
|
||||||
|
body.toc2.toc-right #toc.toc2 { border-right-width: 0; border-left: 1px solid #dddddd; left: auto; right: 0; } }
|
||||||
|
@media only screen and (min-width: 1280px) { body.toc2 { padding-left: 20em; padding-right: 0; }
|
||||||
|
#toc.toc2 { width: 20em; }
|
||||||
|
#toc.toc2 #toctitle { font-size: 1.375em; }
|
||||||
|
#toc.toc2 > ul { font-size: 0.95em; }
|
||||||
|
#toc.toc2 ul ul { padding-left: 1.25em; }
|
||||||
|
body.toc2.toc-right { padding-left: 0; padding-right: 20em; } }
|
||||||
|
#content #toc { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
#content #toc > :first-child { margin-top: 0; }
|
||||||
|
#content #toc > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
#footer { max-width: 100%; background-color: #222222; padding: 1.25em; }
|
||||||
|
|
||||||
|
#footer-text { color: #dddddd; line-height: 1.44; }
|
||||||
|
|
||||||
|
.sect1 { padding-bottom: 0.625em; }
|
||||||
|
|
||||||
|
@media only screen and (min-width: 768px) { .sect1 { padding-bottom: 1.25em; } }
|
||||||
|
.sect1 + .sect1 { border-top: 1px solid #dddddd; }
|
||||||
|
|
||||||
|
#content h1 > a.anchor, h2 > a.anchor, h3 > a.anchor, #toctitle > a.anchor, .sidebarblock > .content > .title > a.anchor, h4 > a.anchor, h5 > a.anchor, h6 > a.anchor { position: absolute; z-index: 1001; width: 1.5ex; margin-left: -1.5ex; display: block; text-decoration: none !important; visibility: hidden; text-align: center; font-weight: normal; }
|
||||||
|
#content h1 > a.anchor:before, h2 > a.anchor:before, h3 > a.anchor:before, #toctitle > a.anchor:before, .sidebarblock > .content > .title > a.anchor:before, h4 > a.anchor:before, h5 > a.anchor:before, h6 > a.anchor:before { content: "\00A7"; font-size: 0.85em; display: block; padding-top: 0.1em; }
|
||||||
|
#content h1:hover > a.anchor, #content h1 > a.anchor:hover, h2:hover > a.anchor, h2 > a.anchor:hover, h3:hover > a.anchor, #toctitle:hover > a.anchor, .sidebarblock > .content > .title:hover > a.anchor, h3 > a.anchor:hover, #toctitle > a.anchor:hover, .sidebarblock > .content > .title > a.anchor:hover, h4:hover > a.anchor, h4 > a.anchor:hover, h5:hover > a.anchor, h5 > a.anchor:hover, h6:hover > a.anchor, h6 > a.anchor:hover { visibility: visible; }
|
||||||
|
#content h1 > a.link, h2 > a.link, h3 > a.link, #toctitle > a.link, .sidebarblock > .content > .title > a.link, h4 > a.link, h5 > a.link, h6 > a.link { color: #222222; text-decoration: none; }
|
||||||
|
#content h1 > a.link:hover, h2 > a.link:hover, h3 > a.link:hover, #toctitle > a.link:hover, .sidebarblock > .content > .title > a.link:hover, h4 > a.link:hover, h5 > a.link:hover, h6 > a.link:hover { color: #151515; }
|
||||||
|
|
||||||
|
.audioblock, .imageblock, .literalblock, .listingblock, .stemblock, .videoblock { margin-bottom: 1.25em; }
|
||||||
|
|
||||||
|
.admonitionblock td.content > .title, .audioblock > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .stemblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, table.tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title { text-rendering: optimizeLegibility; text-align: left; }
|
||||||
|
|
||||||
|
table.tableblock > caption.title { white-space: nowrap; overflow: visible; max-width: 0; }
|
||||||
|
|
||||||
|
.paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p { color: black; }
|
||||||
|
|
||||||
|
table.tableblock #preamble > .sectionbody > .paragraph:first-of-type p { font-size: inherit; }
|
||||||
|
|
||||||
|
.admonitionblock > table { border-collapse: separate; border: 0; background: none; width: 100%; }
|
||||||
|
.admonitionblock > table td.icon { text-align: center; width: 80px; }
|
||||||
|
.admonitionblock > table td.icon img { max-width: initial; }
|
||||||
|
.admonitionblock > table td.icon .title { font-weight: bold; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; text-transform: uppercase; }
|
||||||
|
.admonitionblock > table td.content { padding-left: 1.125em; padding-right: 1.25em; border-left: 1px solid #dddddd; color: #555555; }
|
||||||
|
.admonitionblock > table td.content > :last-child > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
.exampleblock > .content { border-style: solid; border-width: 1px; border-color: #e6e6e6; margin-bottom: 1.25em; padding: 1.25em; background: white; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
.exampleblock > .content > :first-child { margin-top: 0; }
|
||||||
|
.exampleblock > .content > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
.sidebarblock { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
.sidebarblock > :first-child { margin-top: 0; }
|
||||||
|
.sidebarblock > :last-child { margin-bottom: 0; }
|
||||||
|
.sidebarblock > .content > .title { color: #6f6f6f; margin-top: 0; }
|
||||||
|
|
||||||
|
.exampleblock > .content > :last-child > :last-child, .exampleblock > .content .olist > ol > li:last-child > :last-child, .exampleblock > .content .ulist > ul > li:last-child > :last-child, .exampleblock > .content .qlist > ol > li:last-child > :last-child, .sidebarblock > .content > :last-child > :last-child, .sidebarblock > .content .olist > ol > li:last-child > :last-child, .sidebarblock > .content .ulist > ul > li:last-child > :last-child, .sidebarblock > .content .qlist > ol > li:last-child > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
.literalblock pre, .listingblock pre:not(.highlight), .listingblock pre[class="highlight"], .listingblock pre[class^="highlight "], .listingblock pre.CodeRay, .listingblock pre.prettyprint { background: #eeeeee; }
|
||||||
|
.sidebarblock .literalblock pre, .sidebarblock .listingblock pre:not(.highlight), .sidebarblock .listingblock pre[class="highlight"], .sidebarblock .listingblock pre[class^="highlight "], .sidebarblock .listingblock pre.CodeRay, .sidebarblock .listingblock pre.prettyprint { background: #f2f1f1; }
|
||||||
|
|
||||||
|
.literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { border: 1px solid #cccccc; -webkit-border-radius: 0; border-radius: 0; word-wrap: break-word; padding: 0.8em 0.8em 0.65em 0.8em; font-size: 0.8125em; }
|
||||||
|
.literalblock pre.nowrap, .literalblock pre[class].nowrap, .listingblock pre.nowrap, .listingblock pre[class].nowrap { overflow-x: auto; white-space: pre; word-wrap: normal; }
|
||||||
|
@media only screen and (min-width: 768px) { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 0.90625em; } }
|
||||||
|
@media only screen and (min-width: 1280px) { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 1em; } }
|
||||||
|
|
||||||
|
.literalblock.output pre { color: #eeeeee; background-color: black; }
|
||||||
|
|
||||||
|
.listingblock pre.highlightjs { padding: 0; }
|
||||||
|
.listingblock pre.highlightjs > code { padding: 0.8em 0.8em 0.65em 0.8em; -webkit-border-radius: 0; border-radius: 0; }
|
||||||
|
|
||||||
|
.listingblock > .content { position: relative; }
|
||||||
|
|
||||||
|
.listingblock code[data-lang]:before { display: none; content: attr(data-lang); position: absolute; font-size: 0.75em; top: 0.425rem; right: 0.5rem; line-height: 1; text-transform: uppercase; color: #999; }
|
||||||
|
|
||||||
|
.listingblock:hover code[data-lang]:before { display: block; }
|
||||||
|
|
||||||
|
.listingblock.terminal pre .command:before { content: attr(data-prompt); padding-right: 0.5em; color: #999; }
|
||||||
|
|
||||||
|
.listingblock.terminal pre .command:not([data-prompt]):before { content: "$"; }
|
||||||
|
|
||||||
|
table.pyhltable { border-collapse: separate; border: 0; margin-bottom: 0; background: none; }
|
||||||
|
|
||||||
|
table.pyhltable td { vertical-align: top; padding-top: 0; padding-bottom: 0; line-height: 1.4; }
|
||||||
|
|
||||||
|
table.pyhltable td.code { padding-left: .75em; padding-right: 0; }
|
||||||
|
|
||||||
|
pre.pygments .lineno, table.pyhltable td:not(.code) { color: #999; padding-left: 0; padding-right: .5em; border-right: 1px solid #dddddd; }
|
||||||
|
|
||||||
|
pre.pygments .lineno { display: inline-block; margin-right: .25em; }
|
||||||
|
|
||||||
|
table.pyhltable .linenodiv { background: none !important; padding-right: 0 !important; }
|
||||||
|
|
||||||
|
.quoteblock { margin: 0 1em 1.25em 1.5em; display: table; }
|
||||||
|
.quoteblock > .title { margin-left: -1.5em; margin-bottom: 0.75em; }
|
||||||
|
.quoteblock blockquote, .quoteblock blockquote p { color: #6f6f6f; font-size: 1.15rem; line-height: 1.75; word-spacing: 0.1em; letter-spacing: 0; font-style: italic; text-align: justify; }
|
||||||
|
.quoteblock blockquote { margin: 0; padding: 0; border: 0; }
|
||||||
|
.quoteblock blockquote:before { content: "\201c"; float: left; font-size: 2.75em; font-weight: bold; line-height: 0.6em; margin-left: -0.6em; color: #6f6f6f; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
|
||||||
|
.quoteblock blockquote > .paragraph:last-child p { margin-bottom: 0; }
|
||||||
|
.quoteblock .attribution { margin-top: 0.5em; margin-right: 0.5ex; text-align: right; }
|
||||||
|
.quoteblock .quoteblock { margin-left: 0; margin-right: 0; padding: 0.5em 0; border-left: 3px solid #555555; }
|
||||||
|
.quoteblock .quoteblock blockquote { padding: 0 0 0 0.75em; }
|
||||||
|
.quoteblock .quoteblock blockquote:before { display: none; }
|
||||||
|
|
||||||
|
.verseblock { margin: 0 1em 1.25em 1em; }
|
||||||
|
.verseblock pre { font-family: "Open Sans", "DejaVu Sans", sans; font-size: 1.15rem; color: #6f6f6f; font-weight: 300; text-rendering: optimizeLegibility; }
|
||||||
|
.verseblock pre strong { font-weight: 400; }
|
||||||
|
.verseblock .attribution { margin-top: 1.25rem; margin-left: 0.5ex; }
|
||||||
|
|
||||||
|
.quoteblock .attribution, .verseblock .attribution { font-size: 0.8125em; line-height: 1.45; font-style: italic; }
|
||||||
|
.quoteblock .attribution br, .verseblock .attribution br { display: none; }
|
||||||
|
.quoteblock .attribution cite, .verseblock .attribution cite { display: block; letter-spacing: -0.025em; color: #555555; }
|
||||||
|
|
||||||
|
.quoteblock.abstract { margin: 0 0 1.25em 0; display: block; }
|
||||||
|
.quoteblock.abstract blockquote, .quoteblock.abstract blockquote p { text-align: left; word-spacing: 0; }
|
||||||
|
.quoteblock.abstract blockquote:before, .quoteblock.abstract blockquote p:first-of-type:before { display: none; }
|
||||||
|
|
||||||
|
table.tableblock { max-width: 100%; border-collapse: separate; }
|
||||||
|
table.tableblock td > .paragraph:last-child p > p:last-child, table.tableblock th > p:last-child, table.tableblock td > p:last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
table.tableblock, th.tableblock, td.tableblock { border: 0 solid #dddddd; }
|
||||||
|
|
||||||
|
table.grid-all th.tableblock, table.grid-all td.tableblock { border-width: 0 1px 1px 0; }
|
||||||
|
|
||||||
|
table.grid-all tfoot > tr > th.tableblock, table.grid-all tfoot > tr > td.tableblock { border-width: 1px 1px 0 0; }
|
||||||
|
|
||||||
|
table.grid-cols th.tableblock, table.grid-cols td.tableblock { border-width: 0 1px 0 0; }
|
||||||
|
|
||||||
|
table.grid-all * > tr > .tableblock:last-child, table.grid-cols * > tr > .tableblock:last-child { border-right-width: 0; }
|
||||||
|
|
||||||
|
table.grid-rows th.tableblock, table.grid-rows td.tableblock { border-width: 0 0 1px 0; }
|
||||||
|
|
||||||
|
table.grid-all tbody > tr:last-child > th.tableblock, table.grid-all tbody > tr:last-child > td.tableblock, table.grid-all thead:last-child > tr > th.tableblock, table.grid-rows tbody > tr:last-child > th.tableblock, table.grid-rows tbody > tr:last-child > td.tableblock, table.grid-rows thead:last-child > tr > th.tableblock { border-bottom-width: 0; }
|
||||||
|
|
||||||
|
table.grid-rows tfoot > tr > th.tableblock, table.grid-rows tfoot > tr > td.tableblock { border-width: 1px 0 0 0; }
|
||||||
|
|
||||||
|
table.frame-all { border-width: 1px; }
|
||||||
|
|
||||||
|
table.frame-sides { border-width: 0 1px; }
|
||||||
|
|
||||||
|
table.frame-topbot { border-width: 1px 0; }
|
||||||
|
|
||||||
|
th.halign-left, td.halign-left { text-align: left; }
|
||||||
|
|
||||||
|
th.halign-right, td.halign-right { text-align: right; }
|
||||||
|
|
||||||
|
th.halign-center, td.halign-center { text-align: center; }
|
||||||
|
|
||||||
|
th.valign-top, td.valign-top { vertical-align: top; }
|
||||||
|
|
||||||
|
th.valign-bottom, td.valign-bottom { vertical-align: bottom; }
|
||||||
|
|
||||||
|
th.valign-middle, td.valign-middle { vertical-align: middle; }
|
||||||
|
|
||||||
|
table thead th, table tfoot th { font-weight: bold; }
|
||||||
|
|
||||||
|
tbody tr th { display: table-cell; line-height: 1.4; background: whitesmoke; }
|
||||||
|
|
||||||
|
tbody tr th, tbody tr th p, tfoot tr th, tfoot tr th p { color: #222222; font-weight: bold; }
|
||||||
|
|
||||||
|
p.tableblock > code:only-child { background: none; padding: 0; }
|
||||||
|
|
||||||
|
p.tableblock { font-size: 1em; }
|
||||||
|
|
||||||
|
td > div.verse { white-space: pre; }
|
||||||
|
|
||||||
|
ol { margin-left: 1.75em; }
|
||||||
|
|
||||||
|
ul li ol { margin-left: 1.5em; }
|
||||||
|
|
||||||
|
dl dd { margin-left: 1.125em; }
|
||||||
|
|
||||||
|
dl dd:last-child, dl dd:last-child > :last-child { margin-bottom: 0; }
|
||||||
|
|
||||||
|
ol > li p, ul > li p, ul dd, ol dd, .olist .olist, .ulist .ulist, .ulist .olist, .olist .ulist { margin-bottom: 0.625em; }
|
||||||
|
|
||||||
|
ul.unstyled, ol.unnumbered, ul.checklist, ul.none { list-style-type: none; }
|
||||||
|
|
||||||
|
ul.unstyled, ol.unnumbered, ul.checklist { margin-left: 0.625em; }
|
||||||
|
|
||||||
|
ul.checklist li > p:first-child > .fa-square-o:first-child, ul.checklist li > p:first-child > .fa-check-square-o:first-child { width: 1em; font-size: 0.85em; }
|
||||||
|
|
||||||
|
ul.checklist li > p:first-child > input[type="checkbox"]:first-child { width: 1em; position: relative; top: 1px; }
|
||||||
|
|
||||||
|
ul.inline { margin: 0 auto 0.625em auto; margin-left: -1.375em; margin-right: 0; padding: 0; list-style: none; overflow: hidden; }
|
||||||
|
ul.inline > li { list-style: none; float: left; margin-left: 1.375em; display: block; }
|
||||||
|
ul.inline > li > * { display: block; }
|
||||||
|
|
||||||
|
.unstyled dl dt { font-weight: normal; font-style: normal; }
|
||||||
|
|
||||||
|
ol.arabic { list-style-type: decimal; }
|
||||||
|
|
||||||
|
ol.decimal { list-style-type: decimal-leading-zero; }
|
||||||
|
|
||||||
|
ol.loweralpha { list-style-type: lower-alpha; }
|
||||||
|
|
||||||
|
ol.upperalpha { list-style-type: upper-alpha; }
|
||||||
|
|
||||||
|
ol.lowerroman { list-style-type: lower-roman; }
|
||||||
|
|
||||||
|
ol.upperroman { list-style-type: upper-roman; }
|
||||||
|
|
||||||
|
ol.lowergreek { list-style-type: lower-greek; }
|
||||||
|
|
||||||
|
.hdlist > table, .colist > table { border: 0; background: none; }
|
||||||
|
.hdlist > table > tbody > tr, .colist > table > tbody > tr { background: none; }
|
||||||
|
|
||||||
|
td.hdlist1, td.hdlist2 { vertical-align: top; padding: 0 0.625em; }
|
||||||
|
|
||||||
|
td.hdlist1 { font-weight: bold; padding-bottom: 1.25em; }
|
||||||
|
|
||||||
|
.literalblock + .colist, .listingblock + .colist { margin-top: -0.5em; }
|
||||||
|
|
||||||
|
.colist > table tr > td:first-of-type { padding: 0 0.75em; line-height: 1; }
|
||||||
|
.colist > table tr > td:first-of-type img { max-width: initial; }
|
||||||
|
.colist > table tr > td:last-of-type { padding: 0.25em 0; }
|
||||||
|
|
||||||
|
.thumb, .th { line-height: 0; display: inline-block; border: solid 4px white; -webkit-box-shadow: 0 0 0 1px #dddddd; box-shadow: 0 0 0 1px #dddddd; }
|
||||||
|
|
||||||
|
.imageblock.left, .imageblock[style*="float: left"] { margin: 0.25em 0.625em 1.25em 0; }
|
||||||
|
.imageblock.right, .imageblock[style*="float: right"] { margin: 0.25em 0 1.25em 0.625em; }
|
||||||
|
.imageblock > .title { margin-bottom: 0; }
|
||||||
|
.imageblock.thumb, .imageblock.th { border-width: 6px; }
|
||||||
|
.imageblock.thumb > .title, .imageblock.th > .title { padding: 0 0.125em; }
|
||||||
|
|
||||||
|
.image.left, .image.right { margin-top: 0.25em; margin-bottom: 0.25em; display: inline-block; line-height: 0; }
|
||||||
|
.image.left { margin-right: 0.625em; }
|
||||||
|
.image.right { margin-left: 0.625em; }
|
||||||
|
|
||||||
|
a.image { text-decoration: none; display: inline-block; }
|
||||||
|
a.image object { pointer-events: none; }
|
||||||
|
|
||||||
|
sup.footnote, sup.footnoteref { font-size: 0.875em; position: static; vertical-align: super; }
|
||||||
|
sup.footnote a, sup.footnoteref a { text-decoration: none; }
|
||||||
|
sup.footnote a:active, sup.footnoteref a:active { text-decoration: underline; }
|
||||||
|
|
||||||
|
#footnotes { padding-top: 0.75em; padding-bottom: 0.75em; margin-bottom: 0.625em; }
|
||||||
|
#footnotes hr { width: 20%; min-width: 6.25em; margin: -0.25em 0 0.75em 0; border-width: 1px 0 0 0; }
|
||||||
|
#footnotes .footnote { padding: 0 0.375em 0 0.225em; line-height: 1.3334; font-size: 0.875em; margin-left: 1.2em; text-indent: -1.05em; margin-bottom: 0.2em; }
|
||||||
|
#footnotes .footnote a:first-of-type { font-weight: bold; text-decoration: none; }
|
||||||
|
#footnotes .footnote:last-of-type { margin-bottom: 0; }
|
||||||
|
#content #footnotes { margin-top: -0.625em; margin-bottom: 0; padding: 0.75em 0; }
|
||||||
|
|
||||||
|
.gist .file-data > table { border: 0; background: #fff; width: 100%; margin-bottom: 0; }
|
||||||
|
.gist .file-data > table td.line-data { width: 99%; }
|
||||||
|
|
||||||
|
div.unbreakable { page-break-inside: avoid; }
|
||||||
|
|
||||||
|
.big { font-size: larger; }
|
||||||
|
|
||||||
|
.small { font-size: smaller; }
|
||||||
|
|
||||||
|
.underline { text-decoration: underline; }
|
||||||
|
|
||||||
|
.overline { text-decoration: overline; }
|
||||||
|
|
||||||
|
.line-through { text-decoration: line-through; }
|
||||||
|
|
||||||
|
.aqua { color: #00bfbf; }
|
||||||
|
|
||||||
|
.aqua-background { background-color: #00fafa; }
|
||||||
|
|
||||||
|
.black { color: black; }
|
||||||
|
|
||||||
|
.black-background { background-color: black; }
|
||||||
|
|
||||||
|
.blue { color: #0000bf; }
|
||||||
|
|
||||||
|
.blue-background { background-color: #0000fa; }
|
||||||
|
|
||||||
|
.fuchsia { color: #bf00bf; }
|
||||||
|
|
||||||
|
.fuchsia-background { background-color: #fa00fa; }
|
||||||
|
|
||||||
|
.gray { color: #606060; }
|
||||||
|
|
||||||
|
.gray-background { background-color: #7d7d7d; }
|
||||||
|
|
||||||
|
.green { color: #006000; }
|
||||||
|
|
||||||
|
.green-background { background-color: #007d00; }
|
||||||
|
|
||||||
|
.lime { color: #00bf00; }
|
||||||
|
|
||||||
|
.lime-background { background-color: #00fa00; }
|
||||||
|
|
||||||
|
.maroon { color: #600000; }
|
||||||
|
|
||||||
|
.maroon-background { background-color: #7d0000; }
|
||||||
|
|
||||||
|
.navy { color: #000060; }
|
||||||
|
|
||||||
|
.navy-background { background-color: #00007d; }
|
||||||
|
|
||||||
|
.olive { color: #606000; }
|
||||||
|
|
||||||
|
.olive-background { background-color: #7d7d00; }
|
||||||
|
|
||||||
|
.purple { color: #600060; }
|
||||||
|
|
||||||
|
.purple-background { background-color: #7d007d; }
|
||||||
|
|
||||||
|
.red { color: #bf0000; }
|
||||||
|
|
||||||
|
.red-background { background-color: #fa0000; }
|
||||||
|
|
||||||
|
.silver { color: #909090; }
|
||||||
|
|
||||||
|
.silver-background { background-color: #bcbcbc; }
|
||||||
|
|
||||||
|
.teal { color: #006060; }
|
||||||
|
|
||||||
|
.teal-background { background-color: #007d7d; }
|
||||||
|
|
||||||
|
.white { color: #bfbfbf; }
|
||||||
|
|
||||||
|
.white-background { background-color: #fafafa; }
|
||||||
|
|
||||||
|
.yellow { color: #bfbf00; }
|
||||||
|
|
||||||
|
.yellow-background { background-color: #fafa00; }
|
||||||
|
|
||||||
|
span.icon > .fa { cursor: default; }
|
||||||
|
|
||||||
|
.admonitionblock td.icon [class^="fa icon-"] { font-size: 2.5em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); cursor: default; }
|
||||||
|
.admonitionblock td.icon .icon-note:before { content: "\f05a"; color: #207c98; }
|
||||||
|
.admonitionblock td.icon .icon-tip:before { content: "\f0eb"; text-shadow: 1px 1px 2px rgba(155, 155, 0, 0.8); color: #111; }
|
||||||
|
.admonitionblock td.icon .icon-warning:before { content: "\f071"; color: #bf6900; }
|
||||||
|
.admonitionblock td.icon .icon-caution:before { content: "\f06d"; color: #bf3400; }
|
||||||
|
.admonitionblock td.icon .icon-important:before { content: "\f06a"; color: #bf0000; }
|
||||||
|
|
||||||
|
.conum[data-value] { display: inline-block; color: #fff !important; background-color: #222222; -webkit-border-radius: 100px; border-radius: 100px; text-align: center; font-size: 0.75em; width: 1.67em; height: 1.67em; line-height: 1.67em; font-family: "Open Sans", "DejaVu Sans", sans-serif; font-style: normal; font-weight: bold; }
|
||||||
|
.conum[data-value] * { color: #fff !important; }
|
||||||
|
.conum[data-value] + b { display: none; }
|
||||||
|
.conum[data-value]:after { content: attr(data-value); }
|
||||||
|
pre .conum[data-value] { position: relative; top: -0.125em; }
|
||||||
|
|
||||||
|
b.conum * { color: inherit !important; }
|
||||||
|
|
||||||
|
.conum:not([data-value]):empty { display: none; }
|
||||||
|
|
||||||
|
.literalblock pre, .listingblock pre { background: #eeeeee; }
|
4
node/src/docs/asciidoclet/overview.adoc
Normal file
4
node/src/docs/asciidoclet/overview.adoc
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
= Elasticsearch Java client
|
||||||
|
Jörg Prante
|
||||||
|
Version 5.4.0.0
|
||||||
|
|
|
@ -0,0 +1,79 @@
|
||||||
|
package org.xbib.elasticsearch.client.node;
|
||||||
|
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
import org.apache.logging.log4j.Logger;
|
||||||
|
import org.elasticsearch.client.ElasticsearchClient;
|
||||||
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
import org.elasticsearch.env.Environment;
|
||||||
|
import org.elasticsearch.node.Node;
|
||||||
|
import org.elasticsearch.node.NodeValidationException;
|
||||||
|
import org.elasticsearch.plugins.Plugin;
|
||||||
|
import org.xbib.elasticsearch.client.AbstractClient;
|
||||||
|
import org.xbib.elasticsearch.client.BulkControl;
|
||||||
|
import org.xbib.elasticsearch.client.BulkMetric;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.Collections;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class NodeBulkClient extends AbstractClient {
|
||||||
|
|
||||||
|
private static final Logger logger = LogManager.getLogger(NodeBulkClient.class.getName());
|
||||||
|
|
||||||
|
private Node node;
|
||||||
|
|
||||||
|
public NodeBulkClient init(ElasticsearchClient client, Settings settings, BulkMetric metric, BulkControl control) {
|
||||||
|
super.init(client, settings, metric, control);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected ElasticsearchClient createClient(Settings settings) throws IOException {
|
||||||
|
if (settings != null) {
|
||||||
|
String version = System.getProperty("os.name")
|
||||||
|
+ " " + System.getProperty("java.vm.name")
|
||||||
|
+ " " + System.getProperty("java.vm.vendor")
|
||||||
|
+ " " + System.getProperty("java.runtime.version")
|
||||||
|
+ " " + System.getProperty("java.vm.version");
|
||||||
|
Settings effectiveSettings = Settings.builder().put(settings)
|
||||||
|
.put("node.client", true)
|
||||||
|
.put("node.master", false)
|
||||||
|
.put("node.data", false)
|
||||||
|
.build();
|
||||||
|
logger.info("creating node client on {} with effective settings {}",
|
||||||
|
version, effectiveSettings.toString());
|
||||||
|
Collection<Class<? extends Plugin>> plugins = Collections.emptyList();
|
||||||
|
this.node = new BulkNode(new Environment(effectiveSettings, null), plugins);
|
||||||
|
try {
|
||||||
|
node.start();
|
||||||
|
} catch (NodeValidationException e) {
|
||||||
|
throw new IOException(e);
|
||||||
|
}
|
||||||
|
return node.client();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public synchronized void shutdown() throws IOException {
|
||||||
|
super.shutdown();
|
||||||
|
try {
|
||||||
|
if (node != null) {
|
||||||
|
logger.debug("closing node...");
|
||||||
|
node.close();
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error(e.getMessage(), e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static class BulkNode extends Node {
|
||||||
|
|
||||||
|
BulkNode(Environment env, Collection<Class<? extends Plugin>> classpathPlugins) {
|
||||||
|
super(env, classpathPlugins);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
/**
|
/**
|
||||||
* Classes for Elasticsearch node client extras.
|
* Classes for Elasticsearch node client extras.
|
||||||
*/
|
*/
|
||||||
package org.xbib.elasticsearch.extras.client.node;
|
package org.xbib.elasticsearch.client.node;
|
|
@ -0,0 +1 @@
|
||||||
|
org.xbib.elasticsearch.client.node.NodeBulkClient
|
|
@ -1,46 +1,39 @@
|
||||||
package org.xbib.elasticsearch.extras.client.node;
|
package org.xbib.elasticsearch.client.node;
|
||||||
|
|
||||||
import static org.elasticsearch.index.query.QueryBuilders.matchAllQuery;
|
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertFalse;
|
|
||||||
import static org.junit.Assert.assertTrue;
|
|
||||||
|
|
||||||
|
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
import org.elasticsearch.action.search.SearchAction;
|
import org.elasticsearch.action.search.SearchAction;
|
||||||
import org.elasticsearch.action.search.SearchRequestBuilder;
|
import org.elasticsearch.action.search.SearchRequestBuilder;
|
||||||
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
import org.junit.Test;
|
import org.elasticsearch.test.ESSingleNodeTestCase;
|
||||||
import org.xbib.elasticsearch.NodeTestBase;
|
import org.xbib.elasticsearch.client.ClientBuilder;
|
||||||
import org.xbib.elasticsearch.extras.client.ClientBuilder;
|
import org.xbib.elasticsearch.client.SimpleBulkControl;
|
||||||
import org.xbib.elasticsearch.extras.client.SimpleBulkControl;
|
import org.xbib.elasticsearch.client.SimpleBulkMetric;
|
||||||
import org.xbib.elasticsearch.extras.client.SimpleBulkMetric;
|
|
||||||
|
|
||||||
/**
|
import static org.elasticsearch.index.query.QueryBuilders.matchAllQuery;
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class BulkNodeDuplicateIDTest extends NodeTestBase {
|
|
||||||
|
|
||||||
private static final Logger logger = LogManager.getLogger(BulkNodeDuplicateIDTest.class.getName());
|
@ThreadLeakFilters(defaultFilters = true, filters = {TestRunnerThreadsFilter.class})
|
||||||
|
public class NodeBulkClientDuplicateIDTests extends ESSingleNodeTestCase {
|
||||||
|
|
||||||
|
private static final Logger logger = LogManager.getLogger(NodeBulkClientDuplicateIDTests.class.getName());
|
||||||
|
|
||||||
private static final long MAX_ACTIONS = 100L;
|
private static final long MAX_ACTIONS = 100L;
|
||||||
|
|
||||||
private static final long NUM_ACTIONS = 12345L;
|
private static final long NUM_ACTIONS = 12345L;
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testDuplicateDocIDs() throws Exception {
|
public void testDuplicateDocIDs() throws Exception {
|
||||||
|
final NodeBulkClient client = ClientBuilder.builder()
|
||||||
final BulkNodeClient client = ClientBuilder.builder()
|
//.put(ClientBuilder.MAX_CONCURRENT_REQUESTS, 2) // avoid EsRejectedExecutionException
|
||||||
.put(ClientBuilder.MAX_CONCURRENT_REQUESTS, 2) // avoid EsRejectedExecutionException
|
|
||||||
.put(ClientBuilder.MAX_ACTIONS_PER_REQUEST, MAX_ACTIONS)
|
.put(ClientBuilder.MAX_ACTIONS_PER_REQUEST, MAX_ACTIONS)
|
||||||
.setMetric(new SimpleBulkMetric())
|
.setMetric(new SimpleBulkMetric())
|
||||||
.setControl(new SimpleBulkControl())
|
.setControl(new SimpleBulkControl())
|
||||||
.toBulkNodeClient(client("1"));
|
.getClient(client(), NodeBulkClient.class);
|
||||||
try {
|
try {
|
||||||
client.newIndex("test");
|
client.newIndex("test");
|
||||||
for (int i = 0; i < NUM_ACTIONS; i++) {
|
for (int i = 0; i < NUM_ACTIONS; i++) {
|
||||||
client.index("test", "test", randomString(1), "{ \"name\" : \"" + randomString(32) + "\"}");
|
client.index("test", "test", randomAlphaOfLength(1), false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
}
|
}
|
||||||
client.flushIngest();
|
client.flushIngest();
|
||||||
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
|
@ -1,41 +1,36 @@
|
||||||
package org.xbib.elasticsearch.extras.client.node;
|
package org.xbib.elasticsearch.client.node;
|
||||||
|
|
||||||
import static org.junit.Assert.assertFalse;
|
|
||||||
|
|
||||||
|
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequestBuilder;
|
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequestBuilder;
|
||||||
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
import org.elasticsearch.index.query.QueryBuilders;
|
import org.elasticsearch.index.query.QueryBuilders;
|
||||||
import org.junit.Test;
|
import org.elasticsearch.test.ESSingleNodeTestCase;
|
||||||
import org.xbib.elasticsearch.NodeTestBase;
|
import org.xbib.elasticsearch.client.ClientBuilder;
|
||||||
import org.xbib.elasticsearch.extras.client.ClientBuilder;
|
import org.xbib.elasticsearch.client.IndexAliasAdder;
|
||||||
import org.xbib.elasticsearch.extras.client.IndexAliasAdder;
|
import org.xbib.elasticsearch.client.SimpleBulkControl;
|
||||||
import org.xbib.elasticsearch.extras.client.SimpleBulkControl;
|
import org.xbib.elasticsearch.client.SimpleBulkMetric;
|
||||||
import org.xbib.elasticsearch.extras.client.SimpleBulkMetric;
|
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
/**
|
@ThreadLeakFilters(defaultFilters = true, filters = {TestRunnerThreadsFilter.class})
|
||||||
*
|
public class NodeBulkClientIndexAliasTests extends ESSingleNodeTestCase {
|
||||||
*/
|
|
||||||
public class BulkNodeIndexAliasTest extends NodeTestBase {
|
|
||||||
|
|
||||||
private static final Logger logger = LogManager.getLogger(BulkNodeIndexAliasTest.class.getName());
|
private static final Logger logger = LogManager.getLogger(NodeBulkClientIndexAliasTests.class.getName());
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testIndexAlias() throws Exception {
|
public void testIndexAlias() throws Exception {
|
||||||
final BulkNodeClient client = ClientBuilder.builder()
|
final NodeBulkClient client = ClientBuilder.builder()
|
||||||
.setMetric(new SimpleBulkMetric())
|
.setMetric(new SimpleBulkMetric())
|
||||||
.setControl(new SimpleBulkControl())
|
.setControl(new SimpleBulkControl())
|
||||||
.toBulkNodeClient(client("1"));
|
.getClient(client(), NodeBulkClient.class);
|
||||||
try {
|
try {
|
||||||
client.newIndex("test1234");
|
client.newIndex("test1234");
|
||||||
for (int i = 0; i < 1; i++) {
|
for (int i = 0; i < 1; i++) {
|
||||||
client.index("test1234", "test", randomString(1), "{ \"name\" : \"" + randomString(32) + "\"}");
|
client.index("test1234", "test", randomAlphaOfLength(1), false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
}
|
}
|
||||||
client.flushIngest();
|
client.flushIngest();
|
||||||
client.refreshIndex("test1234");
|
client.refreshIndex("test1234");
|
||||||
|
@ -45,7 +40,7 @@ public class BulkNodeIndexAliasTest extends NodeTestBase {
|
||||||
|
|
||||||
client.newIndex("test5678");
|
client.newIndex("test5678");
|
||||||
for (int i = 0; i < 1; i++) {
|
for (int i = 0; i < 1; i++) {
|
||||||
client.index("test5678", "test", randomString(1), "{ \"name\" : \"" + randomString(32) + "\"}");
|
client.index("test5678", "test", randomAlphaOfLength(1), false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
}
|
}
|
||||||
client.flushIngest();
|
client.flushIngest();
|
||||||
client.refreshIndex("test5678");
|
client.refreshIndex("test5678");
|
|
@ -1,9 +1,6 @@
|
||||||
package org.xbib.elasticsearch.extras.client.node;
|
package org.xbib.elasticsearch.client.node;
|
||||||
|
|
||||||
import static org.elasticsearch.index.query.QueryBuilders.matchAllQuery;
|
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertFalse;
|
|
||||||
|
|
||||||
|
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
import org.elasticsearch.action.admin.indices.stats.CommonStats;
|
import org.elasticsearch.action.admin.indices.stats.CommonStats;
|
||||||
|
@ -17,54 +14,47 @@ import org.elasticsearch.action.search.SearchRequestBuilder;
|
||||||
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
|
import org.elasticsearch.index.query.QueryBuilders;
|
||||||
import org.elasticsearch.index.shard.IndexingStats;
|
import org.elasticsearch.index.shard.IndexingStats;
|
||||||
import org.junit.Test;
|
import org.elasticsearch.test.ESIntegTestCase;
|
||||||
import org.xbib.elasticsearch.NodeTestBase;
|
import org.xbib.elasticsearch.client.ClientBuilder;
|
||||||
import org.xbib.elasticsearch.extras.client.ClientBuilder;
|
import org.xbib.elasticsearch.client.SimpleBulkControl;
|
||||||
import org.xbib.elasticsearch.extras.client.SimpleBulkControl;
|
import org.xbib.elasticsearch.client.SimpleBulkMetric;
|
||||||
import org.xbib.elasticsearch.extras.client.SimpleBulkMetric;
|
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
/**
|
@ThreadLeakFilters(defaultFilters = true, filters = {TestRunnerThreadsFilter.class})
|
||||||
*
|
@ESIntegTestCase.ClusterScope(scope=ESIntegTestCase.Scope.SUITE, numDataNodes=3)
|
||||||
*/
|
public class NodeBulkClientReplicaTests extends ESIntegTestCase {
|
||||||
public class BulkNodeReplicaTest extends NodeTestBase {
|
|
||||||
|
|
||||||
private static final Logger logger = LogManager.getLogger(BulkNodeReplicaTest.class.getName());
|
private static final Logger logger = LogManager.getLogger(NodeBulkClientReplicaTests.class.getName());
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testReplicaLevel() throws Exception {
|
public void testReplicaLevel() throws Exception {
|
||||||
|
|
||||||
// we need nodes for replica levels
|
|
||||||
startNode("2");
|
|
||||||
startNode("3");
|
|
||||||
startNode("4");
|
|
||||||
|
|
||||||
Settings settingsTest1 = Settings.builder()
|
Settings settingsTest1 = Settings.builder()
|
||||||
.put("index.number_of_shards", 2)
|
.put("index.number_of_shards", 1)
|
||||||
.put("index.number_of_replicas", 3)
|
.put("index.number_of_replicas", 2)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
Settings settingsTest2 = Settings.builder()
|
Settings settingsTest2 = Settings.builder()
|
||||||
.put("index.number_of_shards", 2)
|
.put("index.number_of_shards", 1)
|
||||||
.put("index.number_of_replicas", 1)
|
.put("index.number_of_replicas", 1)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
final BulkNodeClient client = ClientBuilder.builder()
|
final NodeBulkClient client = ClientBuilder.builder()
|
||||||
.setMetric(new SimpleBulkMetric())
|
.setMetric(new SimpleBulkMetric())
|
||||||
.setControl(new SimpleBulkControl())
|
.setControl(new SimpleBulkControl())
|
||||||
.toBulkNodeClient(client("1"));
|
.getClient(client(), NodeBulkClient.class);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
client.newIndex("test1", settingsTest1, null)
|
client.newIndex("test1", settingsTest1, null)
|
||||||
.newIndex("test2", settingsTest2, null);
|
.newIndex("test2", settingsTest2, null);
|
||||||
client.waitForCluster("GREEN", TimeValue.timeValueSeconds(30));
|
client.waitForCluster("GREEN", TimeValue.timeValueSeconds(30));
|
||||||
for (int i = 0; i < 1234; i++) {
|
for (int i = 0; i < 1234; i++) {
|
||||||
client.index("test1", "test", null, "{ \"name\" : \"" + randomString(32) + "\"}");
|
client.index("test1", "test", null, false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
}
|
}
|
||||||
for (int i = 0; i < 1234; i++) {
|
for (int i = 0; i < 1234; i++) {
|
||||||
client.index("test2", "test", null, "{ \"name\" : \"" + randomString(32) + "\"}");
|
client.index("test2", "test", null, false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
}
|
}
|
||||||
client.flushIngest();
|
client.flushIngest();
|
||||||
client.waitForResponses(TimeValue.timeValueSeconds(60));
|
client.waitForResponses(TimeValue.timeValueSeconds(60));
|
||||||
|
@ -76,7 +66,7 @@ public class BulkNodeReplicaTest extends NodeTestBase {
|
||||||
client.refreshIndex("test2");
|
client.refreshIndex("test2");
|
||||||
SearchRequestBuilder searchRequestBuilder = new SearchRequestBuilder(client.client(), SearchAction.INSTANCE)
|
SearchRequestBuilder searchRequestBuilder = new SearchRequestBuilder(client.client(), SearchAction.INSTANCE)
|
||||||
.setIndices("test1", "test2")
|
.setIndices("test1", "test2")
|
||||||
.setQuery(matchAllQuery());
|
.setQuery(QueryBuilders.matchAllQuery());
|
||||||
long hits = searchRequestBuilder.execute().actionGet().getHits().getTotalHits();
|
long hits = searchRequestBuilder.execute().actionGet().getHits().getTotalHits();
|
||||||
logger.info("query total hits={}", hits);
|
logger.info("query total hits={}", hits);
|
||||||
assertEquals(2468, hits);
|
assertEquals(2468, hits);
|
|
@ -1,9 +1,6 @@
|
||||||
package org.xbib.elasticsearch.extras.client.node;
|
package org.xbib.elasticsearch.client.node;
|
||||||
|
|
||||||
import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder;
|
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertFalse;
|
|
||||||
|
|
||||||
|
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsAction;
|
import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsAction;
|
||||||
|
@ -14,48 +11,33 @@ import org.elasticsearch.action.search.SearchRequestBuilder;
|
||||||
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
import org.elasticsearch.common.xcontent.XContentBuilder;
|
import org.elasticsearch.common.xcontent.XContentBuilder;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentFactory;
|
||||||
import org.elasticsearch.index.query.QueryBuilders;
|
import org.elasticsearch.index.query.QueryBuilders;
|
||||||
import org.junit.Before;
|
import org.elasticsearch.test.ESSingleNodeTestCase;
|
||||||
import org.junit.Test;
|
import org.xbib.elasticsearch.client.ClientBuilder;
|
||||||
import org.xbib.elasticsearch.NodeTestBase;
|
import org.xbib.elasticsearch.client.SimpleBulkControl;
|
||||||
import org.xbib.elasticsearch.extras.client.ClientBuilder;
|
import org.xbib.elasticsearch.client.SimpleBulkMetric;
|
||||||
import org.xbib.elasticsearch.extras.client.SimpleBulkControl;
|
|
||||||
import org.xbib.elasticsearch.extras.client.SimpleBulkMetric;
|
|
||||||
|
|
||||||
import java.util.concurrent.CountDownLatch;
|
import java.util.concurrent.CountDownLatch;
|
||||||
import java.util.concurrent.ExecutionException;
|
|
||||||
import java.util.concurrent.ExecutorService;
|
import java.util.concurrent.ExecutorService;
|
||||||
import java.util.concurrent.Executors;
|
import java.util.concurrent.Executors;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
/**
|
@ThreadLeakFilters(defaultFilters = true, filters = {TestRunnerThreadsFilter.class})
|
||||||
*
|
public class NodeBulkClientTests extends ESSingleNodeTestCase {
|
||||||
*/
|
|
||||||
public class BulkNodeClientTest extends NodeTestBase {
|
|
||||||
|
|
||||||
private static final Logger logger = LogManager.getLogger(BulkNodeClientTest.class.getName());
|
private static final Logger logger = LogManager.getLogger(NodeBulkClientTests.class.getName());
|
||||||
|
|
||||||
private static final Long MAX_ACTIONS = 1000L;
|
private static final Long MAX_ACTIONS = 10L;
|
||||||
|
|
||||||
private static final Long NUM_ACTIONS = 1234L;
|
private static final Long NUM_ACTIONS = 1234L;
|
||||||
|
|
||||||
@Before
|
|
||||||
public void startNodes() {
|
|
||||||
try {
|
|
||||||
super.startNodes();
|
|
||||||
startNode("2");
|
|
||||||
} catch (Throwable t) {
|
|
||||||
logger.error("startNodes failed", t);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testNewIndexNodeClient() throws Exception {
|
public void testNewIndexNodeClient() throws Exception {
|
||||||
final BulkNodeClient client = ClientBuilder.builder()
|
final NodeBulkClient client = ClientBuilder.builder()
|
||||||
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(5))
|
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(5))
|
||||||
.setMetric(new SimpleBulkMetric())
|
.setMetric(new SimpleBulkMetric())
|
||||||
.setControl(new SimpleBulkControl())
|
.setControl(new SimpleBulkControl())
|
||||||
.toBulkNodeClient(client("1"));
|
.getClient(client(), NodeBulkClient.class);
|
||||||
client.newIndex("test");
|
client.newIndex("test");
|
||||||
if (client.hasThrowable()) {
|
if (client.hasThrowable()) {
|
||||||
logger.error("error", client.getThrowable());
|
logger.error("error", client.getThrowable());
|
||||||
|
@ -64,14 +46,13 @@ public class BulkNodeClientTest extends NodeTestBase {
|
||||||
client.shutdown();
|
client.shutdown();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testBulkNodeClientMapping() throws Exception {
|
public void testBulkNodeClientMapping() throws Exception {
|
||||||
final BulkNodeClient client = ClientBuilder.builder()
|
final NodeBulkClient client = ClientBuilder.builder()
|
||||||
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(5))
|
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(5))
|
||||||
.setMetric(new SimpleBulkMetric())
|
.setMetric(new SimpleBulkMetric())
|
||||||
.setControl(new SimpleBulkControl())
|
.setControl(new SimpleBulkControl())
|
||||||
.toBulkNodeClient(client("1"));
|
.getClient(client(), NodeBulkClient.class);
|
||||||
XContentBuilder builder = jsonBuilder()
|
XContentBuilder builder = XContentFactory.jsonBuilder()
|
||||||
.startObject()
|
.startObject()
|
||||||
.startObject("test")
|
.startObject("test")
|
||||||
.startObject("properties")
|
.startObject("properties")
|
||||||
|
@ -94,26 +75,17 @@ public class BulkNodeClientTest extends NodeTestBase {
|
||||||
client.shutdown();
|
client.shutdown();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
public void testBulkNodeClientSingleDoc() throws Exception {
|
||||||
public void testBulkNodeClientSingleDoc() {
|
final NodeBulkClient client = ClientBuilder.builder()
|
||||||
final BulkNodeClient client = ClientBuilder.builder()
|
|
||||||
.put(ClientBuilder.MAX_ACTIONS_PER_REQUEST, MAX_ACTIONS)
|
.put(ClientBuilder.MAX_ACTIONS_PER_REQUEST, MAX_ACTIONS)
|
||||||
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(30))
|
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(30))
|
||||||
.setMetric(new SimpleBulkMetric())
|
.setMetric(new SimpleBulkMetric())
|
||||||
.setControl(new SimpleBulkControl())
|
.setControl(new SimpleBulkControl())
|
||||||
.toBulkNodeClient(client("1"));
|
.getClient(client(), NodeBulkClient.class);
|
||||||
try {
|
|
||||||
client.newIndex("test");
|
client.newIndex("test");
|
||||||
client.index("test", "test", "1", "{ \"name\" : \"Hello World\"}"); // single doc ingest
|
client.index("test", "test", "1", false, "{ \"name\" : \"Hello World\"}"); // single doc ingest
|
||||||
client.flushIngest();
|
client.flushIngest();
|
||||||
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
||||||
} catch (InterruptedException e) {
|
|
||||||
// ignore
|
|
||||||
} catch (NoNodeAvailableException e) {
|
|
||||||
logger.warn("skipping, no node available");
|
|
||||||
} catch (ExecutionException e) {
|
|
||||||
logger.error(e.getMessage(), e);
|
|
||||||
} finally {
|
|
||||||
assertEquals(1, client.getMetric().getSucceeded().getCount());
|
assertEquals(1, client.getMetric().getSucceeded().getCount());
|
||||||
if (client.hasThrowable()) {
|
if (client.hasThrowable()) {
|
||||||
logger.error("error", client.getThrowable());
|
logger.error("error", client.getThrowable());
|
||||||
|
@ -121,21 +93,19 @@ public class BulkNodeClientTest extends NodeTestBase {
|
||||||
assertFalse(client.hasThrowable());
|
assertFalse(client.hasThrowable());
|
||||||
client.shutdown();
|
client.shutdown();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testBulkNodeClientRandomDocs() throws Exception {
|
public void testBulkNodeClientRandomDocs() throws Exception {
|
||||||
long numactions = NUM_ACTIONS;
|
long numactions = NUM_ACTIONS;
|
||||||
final BulkNodeClient client = ClientBuilder.builder()
|
final NodeBulkClient client = ClientBuilder.builder()
|
||||||
.put(ClientBuilder.MAX_ACTIONS_PER_REQUEST, MAX_ACTIONS)
|
.put(ClientBuilder.MAX_ACTIONS_PER_REQUEST, MAX_ACTIONS)
|
||||||
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(60))
|
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(60))
|
||||||
.setMetric(new SimpleBulkMetric())
|
.setMetric(new SimpleBulkMetric())
|
||||||
.setControl(new SimpleBulkControl())
|
.setControl(new SimpleBulkControl())
|
||||||
.toBulkNodeClient(client("1"));
|
.getClient(client(), NodeBulkClient.class);
|
||||||
try {
|
try {
|
||||||
client.newIndex("test");
|
client.newIndex("test");
|
||||||
for (int i = 0; i < NUM_ACTIONS; i++) {
|
for (int i = 0; i < NUM_ACTIONS; i++) {
|
||||||
client.index("test", "test", null, "{ \"name\" : \"" + randomString(32) + "\"}");
|
client.index("test", "test", null, false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
}
|
}
|
||||||
client.flushIngest();
|
client.flushIngest();
|
||||||
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
||||||
|
@ -152,18 +122,17 @@ public class BulkNodeClientTest extends NodeTestBase {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testBulkNodeClientThreadedRandomDocs() throws Exception {
|
public void testBulkNodeClientThreadedRandomDocs() throws Exception {
|
||||||
int maxthreads = Runtime.getRuntime().availableProcessors();
|
int maxthreads = Runtime.getRuntime().availableProcessors();
|
||||||
Long maxactions = MAX_ACTIONS;
|
Long maxactions = MAX_ACTIONS;
|
||||||
final Long maxloop = NUM_ACTIONS;
|
final Long maxloop = NUM_ACTIONS;
|
||||||
logger.info("NodeClient max={} maxactions={} maxloop={}", maxthreads, maxactions, maxloop);
|
logger.info("NodeClient max={} maxactions={} maxloop={}", maxthreads, maxactions, maxloop);
|
||||||
final BulkNodeClient client = ClientBuilder.builder()
|
final NodeBulkClient client = ClientBuilder.builder()
|
||||||
.put(ClientBuilder.MAX_ACTIONS_PER_REQUEST, maxactions)
|
.put(ClientBuilder.MAX_ACTIONS_PER_REQUEST, maxactions)
|
||||||
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(60))// disable auto flush for this test
|
.put(ClientBuilder.FLUSH_INTERVAL, TimeValue.timeValueSeconds(60))// disable auto flush for this test
|
||||||
.setMetric(new SimpleBulkMetric())
|
.setMetric(new SimpleBulkMetric())
|
||||||
.setControl(new SimpleBulkControl())
|
.setControl(new SimpleBulkControl())
|
||||||
.toBulkNodeClient(client("1"));
|
.getClient(client(), NodeBulkClient.class);
|
||||||
try {
|
try {
|
||||||
client.newIndex("test").startBulk("test", 30 * 1000, 1000);
|
client.newIndex("test").startBulk("test", 30 * 1000, 1000);
|
||||||
ExecutorService executorService = Executors.newFixedThreadPool(maxthreads);
|
ExecutorService executorService = Executors.newFixedThreadPool(maxthreads);
|
||||||
|
@ -171,7 +140,7 @@ public class BulkNodeClientTest extends NodeTestBase {
|
||||||
for (int i = 0; i < maxthreads; i++) {
|
for (int i = 0; i < maxthreads; i++) {
|
||||||
executorService.execute(() -> {
|
executorService.execute(() -> {
|
||||||
for (int i1 = 0; i1 < maxloop; i1++) {
|
for (int i1 = 0; i1 < maxloop; i1++) {
|
||||||
client.index("test", "test", null, "{ \"name\" : \"" + randomString(32) + "\"}");
|
client.index("test", "test", null, false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
}
|
}
|
||||||
latch.countDown();
|
latch.countDown();
|
||||||
});
|
});
|
|
@ -1,35 +1,26 @@
|
||||||
package org.xbib.elasticsearch.extras.client.node;
|
package org.xbib.elasticsearch.client.node;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertFalse;
|
|
||||||
|
|
||||||
|
import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
import org.junit.Test;
|
import org.elasticsearch.test.ESIntegTestCase;
|
||||||
import org.xbib.elasticsearch.NodeTestBase;
|
import org.xbib.elasticsearch.client.ClientBuilder;
|
||||||
import org.xbib.elasticsearch.extras.client.ClientBuilder;
|
import org.xbib.elasticsearch.client.SimpleBulkControl;
|
||||||
import org.xbib.elasticsearch.extras.client.SimpleBulkControl;
|
import org.xbib.elasticsearch.client.SimpleBulkMetric;
|
||||||
import org.xbib.elasticsearch.extras.client.SimpleBulkMetric;
|
|
||||||
|
|
||||||
/**
|
@ThreadLeakFilters(defaultFilters = true, filters = {TestRunnerThreadsFilter.class})
|
||||||
*
|
@ESIntegTestCase.ClusterScope(scope=ESIntegTestCase.Scope.SUITE, numDataNodes=3)
|
||||||
*/
|
public class NodeBulkClientUpdateReplicaLevelTests extends ESIntegTestCase {
|
||||||
public class BulkNodeUpdateReplicaLevelTest extends NodeTestBase {
|
|
||||||
|
|
||||||
private static final Logger logger = LogManager.getLogger(BulkNodeUpdateReplicaLevelTest.class.getName());
|
private static final Logger logger = LogManager.getLogger(NodeBulkClientUpdateReplicaLevelTests.class.getName());
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testUpdateReplicaLevel() throws Exception {
|
public void testUpdateReplicaLevel() throws Exception {
|
||||||
|
|
||||||
int numberOfShards = 2;
|
int numberOfShards = 1;
|
||||||
int replicaLevel = 3;
|
int replicaLevel = 2;
|
||||||
|
|
||||||
// we need 3 nodes for replica level 3
|
|
||||||
startNode("2");
|
|
||||||
startNode("3");
|
|
||||||
|
|
||||||
int shardsAfterReplica;
|
int shardsAfterReplica;
|
||||||
|
|
||||||
|
@ -38,16 +29,16 @@ public class BulkNodeUpdateReplicaLevelTest extends NodeTestBase {
|
||||||
.put("index.number_of_replicas", 0)
|
.put("index.number_of_replicas", 0)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
final BulkNodeClient client = ClientBuilder.builder()
|
final NodeBulkClient client = ClientBuilder.builder()
|
||||||
.setMetric(new SimpleBulkMetric())
|
.setMetric(new SimpleBulkMetric())
|
||||||
.setControl(new SimpleBulkControl())
|
.setControl(new SimpleBulkControl())
|
||||||
.toBulkNodeClient(client("1"));
|
.getClient(client(), NodeBulkClient.class);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
client.newIndex("replicatest", settings, null);
|
client.newIndex("replicatest", settings, null);
|
||||||
client.waitForCluster("GREEN", TimeValue.timeValueSeconds(30));
|
client.waitForCluster("GREEN", TimeValue.timeValueSeconds(30));
|
||||||
for (int i = 0; i < 12345; i++) {
|
for (int i = 0; i < 12345; i++) {
|
||||||
client.index("replicatest", "replicatest", null, "{ \"name\" : \"" + randomString(32) + "\"}");
|
client.index("replicatest", "replicatest", null, false, "{ \"name\" : \"" + randomAlphaOfLength(32) + "\"}");
|
||||||
}
|
}
|
||||||
client.flushIngest();
|
client.flushIngest();
|
||||||
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
||||||
|
@ -63,5 +54,4 @@ public class BulkNodeUpdateReplicaLevelTest extends NodeTestBase {
|
||||||
assertFalse(client.hasThrowable());
|
assertFalse(client.hasThrowable());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
package org.xbib.elasticsearch.client.node;
|
||||||
|
|
||||||
|
import com.carrotsearch.randomizedtesting.ThreadFilter;
|
||||||
|
|
||||||
|
public class TestRunnerThreadsFilter implements ThreadFilter {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean reject(Thread thread) {
|
||||||
|
return thread.getName().startsWith("ObjectCleanerThread");
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
/**
|
||||||
|
* Classes for testing Elasticsearch node client extras.
|
||||||
|
*/
|
||||||
|
package org.xbib.elasticsearch.client.node;
|
13
node/src/test/resources/log4j2.xml
Normal file
13
node/src/test/resources/log4j2.xml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<configuration status="OFF">
|
||||||
|
<appenders>
|
||||||
|
<Console name="Console" target="SYSTEM_OUT">
|
||||||
|
<PatternLayout pattern="[%d{ABSOLUTE}][%-5p][%-25c][%t] %m%n"/>
|
||||||
|
</Console>
|
||||||
|
</appenders>
|
||||||
|
<Loggers>
|
||||||
|
<Root level="debug">
|
||||||
|
<AppenderRef ref="Console" />
|
||||||
|
</Root>
|
||||||
|
</Loggers>
|
||||||
|
</configuration>
|
|
@ -1 +1,6 @@
|
||||||
rootProject.name = name
|
|
||||||
|
include 'api'
|
||||||
|
include 'common'
|
||||||
|
include 'node'
|
||||||
|
include 'transport'
|
||||||
|
include 'http'
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
package org.elasticsearch.node;
|
|
||||||
|
|
||||||
import org.elasticsearch.common.settings.Settings;
|
|
||||||
import org.elasticsearch.plugins.Plugin;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Collection;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class MockNode extends Node {
|
|
||||||
|
|
||||||
public MockNode() {
|
|
||||||
super(Settings.EMPTY);
|
|
||||||
}
|
|
||||||
|
|
||||||
public MockNode(Settings settings) {
|
|
||||||
super(settings);
|
|
||||||
}
|
|
||||||
|
|
||||||
public MockNode(Settings settings, Class<? extends Plugin> classpathPlugin) {
|
|
||||||
this(settings, list(classpathPlugin));
|
|
||||||
}
|
|
||||||
|
|
||||||
public MockNode(Settings settings, Collection<Class<? extends Plugin>> classpathPlugins) {
|
|
||||||
super(InternalSettingsPreparer.prepareEnvironment(settings, null), classpathPlugins);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static Collection<Class<? extends Plugin>> list(Class<? extends Plugin> classpathPlugin) {
|
|
||||||
Collection<Class<? extends Plugin>> list = new ArrayList<>();
|
|
||||||
list.add(classpathPlugin);
|
|
||||||
return list;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
/**
|
|
||||||
* Classes to support Elasticsearch node creation.
|
|
||||||
*/
|
|
||||||
package org.elasticsearch.node;
|
|
|
@ -1,233 +0,0 @@
|
||||||
package org.xbib.elasticsearch;
|
|
||||||
|
|
||||||
import org.apache.logging.log4j.LogManager;
|
|
||||||
import org.apache.logging.log4j.Logger;
|
|
||||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthAction;
|
|
||||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthRequest;
|
|
||||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthResponse;
|
|
||||||
import org.elasticsearch.action.admin.cluster.node.info.NodesInfoRequest;
|
|
||||||
import org.elasticsearch.action.admin.cluster.node.info.NodesInfoResponse;
|
|
||||||
import org.elasticsearch.client.support.AbstractClient;
|
|
||||||
import org.elasticsearch.cluster.health.ClusterHealthStatus;
|
|
||||||
import org.elasticsearch.common.settings.Settings;
|
|
||||||
import org.elasticsearch.common.transport.InetSocketTransportAddress;
|
|
||||||
import org.elasticsearch.common.transport.LocalTransportAddress;
|
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
|
||||||
import org.elasticsearch.node.MockNode;
|
|
||||||
import org.elasticsearch.node.Node;
|
|
||||||
import org.elasticsearch.node.NodeValidationException;
|
|
||||||
import org.elasticsearch.transport.Netty4Plugin;
|
|
||||||
import org.junit.After;
|
|
||||||
import org.junit.Before;
|
|
||||||
import org.xbib.elasticsearch.extras.client.NetworkUtils;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.nio.file.FileVisitResult;
|
|
||||||
import java.nio.file.Files;
|
|
||||||
import java.nio.file.Path;
|
|
||||||
import java.nio.file.Paths;
|
|
||||||
import java.nio.file.SimpleFileVisitor;
|
|
||||||
import java.nio.file.attribute.BasicFileAttributes;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Random;
|
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class NodeTestBase {
|
|
||||||
|
|
||||||
private static final Logger logger = LogManager.getLogger("test");
|
|
||||||
|
|
||||||
private static final Random random = new Random();
|
|
||||||
|
|
||||||
private static final char[] numbersAndLetters = ("0123456789abcdefghijklmnopqrstuvwxyz").toCharArray();
|
|
||||||
|
|
||||||
private Map<String, Node> nodes = new HashMap<>();
|
|
||||||
|
|
||||||
private Map<String, AbstractClient> clients = new HashMap<>();
|
|
||||||
|
|
||||||
private AtomicInteger counter = new AtomicInteger();
|
|
||||||
|
|
||||||
private String clustername;
|
|
||||||
|
|
||||||
private String host;
|
|
||||||
|
|
||||||
private int port;
|
|
||||||
|
|
||||||
@Before
|
|
||||||
public void startNodes() {
|
|
||||||
try {
|
|
||||||
logger.info("settings cluster name");
|
|
||||||
setClusterName();
|
|
||||||
logger.info("starting nodes");
|
|
||||||
startNode("1");
|
|
||||||
findNodeAddress();
|
|
||||||
ClusterHealthResponse healthResponse = client("1").execute(ClusterHealthAction.INSTANCE,
|
|
||||||
new ClusterHealthRequest().waitForStatus(ClusterHealthStatus.GREEN)
|
|
||||||
.timeout(TimeValue.timeValueSeconds(30))).actionGet();
|
|
||||||
if (healthResponse != null && healthResponse.isTimedOut()) {
|
|
||||||
throw new IOException("cluster state is " + healthResponse.getStatus().name()
|
|
||||||
+ ", from here on, everything will fail!");
|
|
||||||
}
|
|
||||||
logger.info("nodes are started");
|
|
||||||
} catch (Throwable t) {
|
|
||||||
logger.error("start of nodes failed", t);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@After
|
|
||||||
public void stopNodes() {
|
|
||||||
try {
|
|
||||||
logger.info("stopping nodes");
|
|
||||||
closeNodes();
|
|
||||||
} catch (Throwable e) {
|
|
||||||
logger.error("can not close nodes", e);
|
|
||||||
} finally {
|
|
||||||
try {
|
|
||||||
deleteFiles();
|
|
||||||
logger.info("data files wiped");
|
|
||||||
Thread.sleep(2000L); // let OS commit changes
|
|
||||||
} catch (IOException e) {
|
|
||||||
logger.error(e.getMessage(), e);
|
|
||||||
} catch (InterruptedException e) {
|
|
||||||
// ignore
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void setClusterName() {
|
|
||||||
this.clustername = "test-helper-cluster-"
|
|
||||||
+ NetworkUtils.getLocalAddress().getHostName()
|
|
||||||
+ "-" + System.getProperty("user.name")
|
|
||||||
+ "-" + counter.incrementAndGet();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected String getClusterName() {
|
|
||||||
return clustername;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected Settings getNodeSettings() {
|
|
||||||
String hostname = NetworkUtils.getLocalAddress().getHostName();
|
|
||||||
return Settings.builder()
|
|
||||||
.put("cluster.name", clustername)
|
|
||||||
// required to build a cluster, replica tests will test this.
|
|
||||||
.put("discovery.zen.ping.unicast.hosts", hostname)
|
|
||||||
.put("transport.type", Netty4Plugin.NETTY_TRANSPORT_NAME)
|
|
||||||
.put("network.host", hostname)
|
|
||||||
.put("http.enabled", false)
|
|
||||||
.put("path.home", getHome())
|
|
||||||
// maximum five nodes on same host
|
|
||||||
.put("node.max_local_storage_nodes", 5)
|
|
||||||
.put("thread_pool.bulk.size", Runtime.getRuntime().availableProcessors())
|
|
||||||
// default is 50 which is too low
|
|
||||||
.put("thread_pool.bulk.queue_size", 16 * Runtime.getRuntime().availableProcessors())
|
|
||||||
.build();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
protected Settings getClientSettings() {
|
|
||||||
if (host == null) {
|
|
||||||
throw new IllegalStateException("host is null");
|
|
||||||
}
|
|
||||||
// the host to which transport client should connect to
|
|
||||||
return Settings.builder()
|
|
||||||
.put("cluster.name", clustername)
|
|
||||||
.put("host", host + ":" + port)
|
|
||||||
.build();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected String getHome() {
|
|
||||||
return System.getProperty("path.home");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void startNode(String id) throws IOException {
|
|
||||||
try {
|
|
||||||
buildNode(id).start();
|
|
||||||
} catch (NodeValidationException e) {
|
|
||||||
throw new IOException(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public AbstractClient client(String id) {
|
|
||||||
return clients.get(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void closeNodes() throws IOException {
|
|
||||||
logger.info("closing all clients");
|
|
||||||
for (AbstractClient client : clients.values()) {
|
|
||||||
client.close();
|
|
||||||
}
|
|
||||||
clients.clear();
|
|
||||||
logger.info("closing all nodes");
|
|
||||||
for (Node node : nodes.values()) {
|
|
||||||
if (node != null) {
|
|
||||||
node.close();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
nodes.clear();
|
|
||||||
logger.info("all nodes closed");
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void findNodeAddress() {
|
|
||||||
NodesInfoRequest nodesInfoRequest = new NodesInfoRequest().transport(true);
|
|
||||||
NodesInfoResponse response = client("1").admin().cluster().nodesInfo(nodesInfoRequest).actionGet();
|
|
||||||
Object obj = response.getNodes().iterator().next().getTransport().getAddress()
|
|
||||||
.publishAddress();
|
|
||||||
if (obj instanceof InetSocketTransportAddress) {
|
|
||||||
InetSocketTransportAddress address = (InetSocketTransportAddress) obj;
|
|
||||||
host = address.address().getHostName();
|
|
||||||
port = address.address().getPort();
|
|
||||||
} else if (obj instanceof LocalTransportAddress) {
|
|
||||||
LocalTransportAddress address = (LocalTransportAddress) obj;
|
|
||||||
host = address.getHost();
|
|
||||||
port = address.getPort();
|
|
||||||
} else {
|
|
||||||
logger.info("class=" + obj.getClass());
|
|
||||||
}
|
|
||||||
if (host == null) {
|
|
||||||
throw new IllegalArgumentException("host not found");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private Node buildNode(String id) throws IOException {
|
|
||||||
Settings nodeSettings = Settings.builder()
|
|
||||||
.put(getNodeSettings())
|
|
||||||
.build();
|
|
||||||
logger.info("settings={}", nodeSettings.getAsMap());
|
|
||||||
Node node = new MockNode(nodeSettings, Netty4Plugin.class);
|
|
||||||
AbstractClient client = (AbstractClient) node.client();
|
|
||||||
nodes.put(id, node);
|
|
||||||
clients.put(id, client);
|
|
||||||
logger.info("clients={}", clients);
|
|
||||||
return node;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected String randomString(int len) {
|
|
||||||
final char[] buf = new char[len];
|
|
||||||
final int n = numbersAndLetters.length - 1;
|
|
||||||
for (int i = 0; i < buf.length; i++) {
|
|
||||||
buf[i] = numbersAndLetters[random.nextInt(n)];
|
|
||||||
}
|
|
||||||
return new String(buf);
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void deleteFiles() throws IOException {
|
|
||||||
Path directory = Paths.get(System.getProperty("path.home") + "/data");
|
|
||||||
Files.walkFileTree(directory, new SimpleFileVisitor<Path>() {
|
|
||||||
@Override
|
|
||||||
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
|
|
||||||
Files.delete(file);
|
|
||||||
return FileVisitResult.CONTINUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOException {
|
|
||||||
Files.delete(dir);
|
|
||||||
return FileVisitResult.CONTINUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,55 +0,0 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
|
||||||
|
|
||||||
import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder;
|
|
||||||
|
|
||||||
import org.apache.logging.log4j.LogManager;
|
|
||||||
import org.apache.logging.log4j.Logger;
|
|
||||||
import org.elasticsearch.action.bulk.BulkRequestBuilder;
|
|
||||||
import org.elasticsearch.action.index.IndexRequestBuilder;
|
|
||||||
import org.elasticsearch.cluster.block.ClusterBlockException;
|
|
||||||
import org.elasticsearch.common.settings.Settings;
|
|
||||||
import org.elasticsearch.common.xcontent.XContentBuilder;
|
|
||||||
import org.elasticsearch.common.xcontent.XContentType;
|
|
||||||
import org.junit.Before;
|
|
||||||
import org.junit.Test;
|
|
||||||
import org.xbib.elasticsearch.NodeTestBase;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class ClusterBlockTest extends NodeTestBase {
|
|
||||||
|
|
||||||
private static final Logger logger = LogManager.getLogger(ClusterBlockTest.class.getName());
|
|
||||||
|
|
||||||
@Before
|
|
||||||
public void startNodes() {
|
|
||||||
try {
|
|
||||||
setClusterName();
|
|
||||||
startNode("1");
|
|
||||||
findNodeAddress();
|
|
||||||
// do not wait for green health state
|
|
||||||
logger.info("ready");
|
|
||||||
} catch (Throwable t) {
|
|
||||||
logger.error("startNodes failed", t);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected Settings getNodeSettings() {
|
|
||||||
return Settings.builder()
|
|
||||||
.put(super.getNodeSettings())
|
|
||||||
.put("discovery.zen.minimum_master_nodes", 2) // block until we have two nodes
|
|
||||||
.build();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test(expected = ClusterBlockException.class)
|
|
||||||
public void testClusterBlock() throws Exception {
|
|
||||||
BulkRequestBuilder brb = client("1").prepareBulk();
|
|
||||||
XContentBuilder builder = jsonBuilder().startObject().field("field1", "value1").endObject();
|
|
||||||
String jsonString = builder.string();
|
|
||||||
IndexRequestBuilder irb = client("1").prepareIndex("test", "test", "1")
|
|
||||||
.setSource(jsonString, XContentType.JSON);
|
|
||||||
brb.add(irb);
|
|
||||||
brb.execute().actionGet();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,59 +0,0 @@
|
||||||
package org.xbib.elasticsearch.extras.client;
|
|
||||||
|
|
||||||
import static org.elasticsearch.client.Requests.indexRequest;
|
|
||||||
import static org.elasticsearch.common.xcontent.XContentFactory.jsonBuilder;
|
|
||||||
import static org.elasticsearch.index.query.QueryBuilders.queryStringQuery;
|
|
||||||
|
|
||||||
import org.elasticsearch.action.support.WriteRequest;
|
|
||||||
import org.elasticsearch.client.Client;
|
|
||||||
import org.elasticsearch.index.query.QueryBuilder;
|
|
||||||
import org.junit.Test;
|
|
||||||
import org.xbib.elasticsearch.NodeTestBase;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class WildcardTest extends NodeTestBase {
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testWildcard() throws Exception {
|
|
||||||
Client client = client("1");
|
|
||||||
index(client, "1", "010");
|
|
||||||
index(client, "2", "0*0");
|
|
||||||
// exact
|
|
||||||
validateCount(client, queryStringQuery("010").defaultField("field"), 1);
|
|
||||||
validateCount(client, queryStringQuery("0\\*0").defaultField("field"), 1);
|
|
||||||
// pattern
|
|
||||||
validateCount(client, queryStringQuery("0*0").defaultField("field"), 1); // 2?
|
|
||||||
validateCount(client, queryStringQuery("0?0").defaultField("field"), 1); // 2?
|
|
||||||
validateCount(client, queryStringQuery("0**0").defaultField("field"), 1); // 2?
|
|
||||||
validateCount(client, queryStringQuery("0??0").defaultField("field"), 0);
|
|
||||||
validateCount(client, queryStringQuery("*10").defaultField("field"), 1);
|
|
||||||
validateCount(client, queryStringQuery("*1*").defaultField("field"), 1);
|
|
||||||
validateCount(client, queryStringQuery("*\\*0").defaultField("field"), 0); // 1?
|
|
||||||
validateCount(client, queryStringQuery("*\\**").defaultField("field"), 0); // 1?
|
|
||||||
}
|
|
||||||
|
|
||||||
private void index(Client client, String id, String fieldValue) throws IOException {
|
|
||||||
client.index(indexRequest()
|
|
||||||
.index("index").type("type").id(id)
|
|
||||||
.source(jsonBuilder().startObject().field("field", fieldValue).endObject())
|
|
||||||
.setRefreshPolicy(WriteRequest.RefreshPolicy.IMMEDIATE))
|
|
||||||
.actionGet();
|
|
||||||
}
|
|
||||||
|
|
||||||
private long count(Client client, QueryBuilder queryBuilder) {
|
|
||||||
return client.prepareSearch("index").setTypes("type")
|
|
||||||
.setQuery(queryBuilder)
|
|
||||||
.execute().actionGet().getHits().getTotalHits();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void validateCount(Client client, QueryBuilder queryBuilder, long expectedHits) {
|
|
||||||
final long actualHits = count(client, queryBuilder);
|
|
||||||
if (actualHits != expectedHits) {
|
|
||||||
throw new RuntimeException("actualHits=" + actualHits + ", expectedHits=" + expectedHits);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,71 +0,0 @@
|
||||||
package org.xbib.elasticsearch.extras.client.transport;
|
|
||||||
|
|
||||||
import static org.elasticsearch.index.query.QueryBuilders.matchAllQuery;
|
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertFalse;
|
|
||||||
import static org.junit.Assert.assertTrue;
|
|
||||||
|
|
||||||
import org.apache.logging.log4j.LogManager;
|
|
||||||
import org.apache.logging.log4j.Logger;
|
|
||||||
import org.elasticsearch.action.search.SearchAction;
|
|
||||||
import org.elasticsearch.action.search.SearchRequestBuilder;
|
|
||||||
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
|
||||||
import org.junit.Test;
|
|
||||||
import org.xbib.elasticsearch.NodeTestBase;
|
|
||||||
import org.xbib.elasticsearch.extras.client.ClientBuilder;
|
|
||||||
import org.xbib.elasticsearch.extras.client.SimpleBulkControl;
|
|
||||||
import org.xbib.elasticsearch.extras.client.SimpleBulkMetric;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class BulkTransportDuplicateIDTest extends NodeTestBase {
|
|
||||||
|
|
||||||
private static final Logger logger = LogManager.getLogger(BulkTransportDuplicateIDTest.class.getName());
|
|
||||||
|
|
||||||
private static final long MAX_ACTIONS = 100L;
|
|
||||||
|
|
||||||
private static final long NUM_ACTIONS = 12345L;
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testDuplicateDocIDs() throws Exception {
|
|
||||||
final BulkTransportClient client = ClientBuilder.builder()
|
|
||||||
.put(getClientSettings())
|
|
||||||
.put(ClientBuilder.MAX_CONCURRENT_REQUESTS, 2) // avoid EsRejectedExecutionException
|
|
||||||
.put(ClientBuilder.MAX_ACTIONS_PER_REQUEST, MAX_ACTIONS)
|
|
||||||
.setMetric(new SimpleBulkMetric())
|
|
||||||
.setControl(new SimpleBulkControl())
|
|
||||||
.toBulkTransportClient();
|
|
||||||
try {
|
|
||||||
client.newIndex("test");
|
|
||||||
for (int i = 0; i < NUM_ACTIONS; i++) {
|
|
||||||
client.index("test", "test", randomString(1), "{ \"name\" : \"" + randomString(32) + "\"}");
|
|
||||||
}
|
|
||||||
client.flushIngest();
|
|
||||||
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
|
||||||
client.refreshIndex("test");
|
|
||||||
SearchRequestBuilder searchRequestBuilder = new SearchRequestBuilder(client.client(), SearchAction.INSTANCE)
|
|
||||||
.setIndices("test")
|
|
||||||
.setTypes("test")
|
|
||||||
.setQuery(matchAllQuery());
|
|
||||||
long hits = searchRequestBuilder.execute().actionGet().getHits().getTotalHits();
|
|
||||||
logger.info("hits = {}", hits);
|
|
||||||
assertTrue(hits < NUM_ACTIONS);
|
|
||||||
} catch (NoNodeAvailableException e) {
|
|
||||||
logger.warn("skipping, no node available");
|
|
||||||
} finally {
|
|
||||||
client.shutdown();
|
|
||||||
if (client.hasThrowable()) {
|
|
||||||
logger.error("error", client.getThrowable());
|
|
||||||
}
|
|
||||||
assertFalse(client.hasThrowable());
|
|
||||||
logger.info("numactions = {}, submitted = {}, succeeded= {}, failed = {}", NUM_ACTIONS,
|
|
||||||
client.getMetric().getSubmitted().getCount(),
|
|
||||||
client.getMetric().getSucceeded().getCount(),
|
|
||||||
client.getMetric().getFailed().getCount());
|
|
||||||
assertEquals(NUM_ACTIONS, client.getMetric().getSubmitted().getCount());
|
|
||||||
assertEquals(NUM_ACTIONS, client.getMetric().getSucceeded().getCount());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,68 +0,0 @@
|
||||||
package org.xbib.elasticsearch.extras.client.transport;
|
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertFalse;
|
|
||||||
|
|
||||||
import org.apache.logging.log4j.LogManager;
|
|
||||||
import org.apache.logging.log4j.Logger;
|
|
||||||
import org.elasticsearch.client.transport.NoNodeAvailableException;
|
|
||||||
import org.elasticsearch.common.settings.Settings;
|
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
|
||||||
import org.junit.Test;
|
|
||||||
import org.xbib.elasticsearch.NodeTestBase;
|
|
||||||
import org.xbib.elasticsearch.extras.client.ClientBuilder;
|
|
||||||
import org.xbib.elasticsearch.extras.client.SimpleBulkControl;
|
|
||||||
import org.xbib.elasticsearch.extras.client.SimpleBulkMetric;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class BulkTransportUpdateReplicaLevelTest extends NodeTestBase {
|
|
||||||
|
|
||||||
private static final Logger logger = LogManager.getLogger(BulkTransportUpdateReplicaLevelTest.class.getName());
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testUpdateReplicaLevel() throws Exception {
|
|
||||||
|
|
||||||
int numberOfShards = 2;
|
|
||||||
int replicaLevel = 3;
|
|
||||||
|
|
||||||
// we need 3 nodes for replica level 3
|
|
||||||
startNode("2");
|
|
||||||
startNode("3");
|
|
||||||
|
|
||||||
int shardsAfterReplica;
|
|
||||||
|
|
||||||
Settings settings = Settings.builder()
|
|
||||||
.put("index.number_of_shards", numberOfShards)
|
|
||||||
.put("index.number_of_replicas", 0)
|
|
||||||
.build();
|
|
||||||
|
|
||||||
final BulkTransportClient client = ClientBuilder.builder()
|
|
||||||
.put(getClientSettings())
|
|
||||||
.setMetric(new SimpleBulkMetric())
|
|
||||||
.setControl(new SimpleBulkControl())
|
|
||||||
.toBulkTransportClient();
|
|
||||||
|
|
||||||
try {
|
|
||||||
client.newIndex("replicatest", settings, null);
|
|
||||||
client.waitForCluster("GREEN", TimeValue.timeValueSeconds(30));
|
|
||||||
for (int i = 0; i < 12345; i++) {
|
|
||||||
client.index("replicatest", "replicatest", null, "{ \"name\" : \"" + randomString(32) + "\"}");
|
|
||||||
}
|
|
||||||
client.flushIngest();
|
|
||||||
client.waitForResponses(TimeValue.timeValueSeconds(30));
|
|
||||||
shardsAfterReplica = client.updateReplicaLevel("replicatest", replicaLevel);
|
|
||||||
assertEquals(shardsAfterReplica, numberOfShards * (replicaLevel + 1));
|
|
||||||
} catch (NoNodeAvailableException e) {
|
|
||||||
logger.warn("skipping, no node available");
|
|
||||||
} finally {
|
|
||||||
client.shutdown();
|
|
||||||
if (client.hasThrowable()) {
|
|
||||||
logger.error("error", client.getThrowable());
|
|
||||||
}
|
|
||||||
assertFalse(client.hasThrowable());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
/**
|
|
||||||
* Classes for testing extras for transport client.
|
|
||||||
*/
|
|
||||||
package org.xbib.elasticsearch.extras.client.transport;
|
|
|
@ -1,4 +0,0 @@
|
||||||
/**
|
|
||||||
* Test classes for testing Elasticsearch.
|
|
||||||
*/
|
|
||||||
package org.xbib.elasticsearch;
|
|
|
@ -1,23 +0,0 @@
|
||||||
package suites;
|
|
||||||
|
|
||||||
import org.junit.runner.RunWith;
|
|
||||||
import org.junit.runners.Suite;
|
|
||||||
import org.xbib.elasticsearch.extras.client.node.BulkNodeClientTest;
|
|
||||||
import org.xbib.elasticsearch.extras.client.node.BulkNodeDuplicateIDTest;
|
|
||||||
import org.xbib.elasticsearch.extras.client.node.BulkNodeIndexAliasTest;
|
|
||||||
import org.xbib.elasticsearch.extras.client.node.BulkNodeReplicaTest;
|
|
||||||
import org.xbib.elasticsearch.extras.client.node.BulkNodeUpdateReplicaLevelTest;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@RunWith(ListenerSuite.class)
|
|
||||||
@Suite.SuiteClasses({
|
|
||||||
BulkNodeClientTest.class,
|
|
||||||
BulkNodeDuplicateIDTest.class,
|
|
||||||
BulkNodeReplicaTest.class,
|
|
||||||
BulkNodeUpdateReplicaLevelTest.class,
|
|
||||||
BulkNodeIndexAliasTest.class
|
|
||||||
})
|
|
||||||
public class BulkNodeTestSuite {
|
|
||||||
}
|
|
|
@ -1,22 +0,0 @@
|
||||||
package suites;
|
|
||||||
|
|
||||||
import org.junit.runner.RunWith;
|
|
||||||
import org.junit.runners.Suite;
|
|
||||||
import org.xbib.elasticsearch.extras.client.transport.BulkTransportClientTest;
|
|
||||||
import org.xbib.elasticsearch.extras.client.transport.BulkTransportDuplicateIDTest;
|
|
||||||
import org.xbib.elasticsearch.extras.client.transport.BulkTransportReplicaTest;
|
|
||||||
import org.xbib.elasticsearch.extras.client.transport.BulkTransportUpdateReplicaLevelTest;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@RunWith(ListenerSuite.class)
|
|
||||||
@Suite.SuiteClasses({
|
|
||||||
BulkTransportClientTest.class,
|
|
||||||
BulkTransportDuplicateIDTest.class,
|
|
||||||
BulkTransportReplicaTest.class,
|
|
||||||
BulkTransportUpdateReplicaLevelTest.class
|
|
||||||
})
|
|
||||||
public class BulkTransportTestSuite {
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,26 +0,0 @@
|
||||||
package suites;
|
|
||||||
|
|
||||||
import org.junit.runner.Runner;
|
|
||||||
import org.junit.runner.notification.RunNotifier;
|
|
||||||
import org.junit.runners.Suite;
|
|
||||||
import org.junit.runners.model.InitializationError;
|
|
||||||
import org.junit.runners.model.RunnerBuilder;
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class ListenerSuite extends Suite {
|
|
||||||
|
|
||||||
private final TestListener listener = new TestListener();
|
|
||||||
|
|
||||||
public ListenerSuite(Class<?> klass, RunnerBuilder builder) throws InitializationError {
|
|
||||||
super(klass, builder);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void runChild(Runner runner, RunNotifier notifier) {
|
|
||||||
notifier.addListener(listener);
|
|
||||||
runner.run(notifier);
|
|
||||||
notifier.removeListener(listener);
|
|
||||||
}
|
|
||||||
}
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue