This is an automated email from the ASF dual-hosted git repository.
kenhuuu pushed a change to branch v4-io-test
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
discard dac5741375 add initial python model
discard 7adc9d296f added back some enums
discard 5d9b671a42 generators
discard 14bc366f81 Update tests to reflect v4 serialization types
add c342ddee9c Add support for HTTP chunked transfer in gremlin-python
(#2686)
add a74f0b0a31 cleanup for ResponseMessageV4 (#2698)
add b974c9bd01 Added Set handling to GremlinLang (#2705)
add 9281b2ce16 Bytecode removal in gremlin-python (#2702)
add 5e691b67e8 Remove v4 suffix CTR
new edbaed17c7 Update tests to reflect v4 serialization types
new dc947b1f17 generators
new c5e284c496 added back some enums
new 42070aea2a add initial python model
new 17525d6685 test updates
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (dac5741375)
\
N -- N -- N refs/heads/v4-io-test (17525d6685)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
CHANGELOG.asciidoc | 3 +
docs/src/reference/gremlin-applications.asciidoc | 2 +-
.../translator/GroovyTranslateVisitor.java | 13 +
.../gremlin/process/traversal/GremlinLang.java | 17 +-
.../language/translator/GremlinTranslatorTest.java | 2 +-
.../gremlin/process/traversal/GremlinLangTest.java | 2 +-
.../src/main/java/examples/Connections.java | 5 +-
.../tinkerpop/gremlin/driver/Channelizer.java | 6 +-
.../apache/tinkerpop/gremlin/driver/Client.java | 26 +-
.../apache/tinkerpop/gremlin/driver/Cluster.java | 38 +-
.../tinkerpop/gremlin/driver/Connection.java | 4 +-
.../tinkerpop/gremlin/driver/ConnectionPool.java | 4 +-
.../gremlin/driver/LoadBalancingStrategy.java | 10 +-
.../tinkerpop/gremlin/driver/RequestOptions.java | 14 +-
.../apache/tinkerpop/gremlin/driver/Result.java | 4 +-
.../tinkerpop/gremlin/driver/ResultQueue.java | 20 +-
.../apache/tinkerpop/gremlin/driver/ResultSet.java | 27 +-
.../apache/tinkerpop/gremlin/driver/Settings.java | 8 +-
.../driver/handler/GremlinResponseHandler.java | 10 +-
.../driver/handler/HttpGremlinRequestEncoder.java | 15 +-
.../handler/HttpGremlinResponseStreamDecoder.java | 19 +-
.../gremlin/driver/simple/AbstractClient.java | 19 +-
.../gremlin/driver/simple/SimpleClient.java | 22 +-
.../gremlin/driver/simple/SimpleHttpClient.java | 18 +-
.../gremlin/driver/util/ProfilingApplication.java | 7 +-
.../gremlin/driver/AbstractResultQueueTest.java | 2 +-
.../tinkerpop/gremlin/driver/ResultQueueTest.java | 10 +-
.../tinkerpop/gremlin/driver/ResultSetTest.java | 44 +-
.../tinkerpop/gremlin/driver/TokensTest.java | 6 +-
.../driver/remote/DriverRemoteConnectionTest.java | 12 +-
.../gremlin_python/driver/aiohttp/transport.py | 165 +--
.../main/python/gremlin_python/driver/client.py | 76 +-
.../python/gremlin_python/driver/connection.py | 10 +-
.../driver/driver_remote_connection.py | 116 +-
.../main/python/gremlin_python/driver/protocol.py | 216 +---
.../gremlin_python/driver/remote_connection.py | 12 +-
.../main/python/gremlin_python/driver/request.py | 3 +
.../python/gremlin_python/driver/serializer.py | 283 +----
.../gremlin_python/process/graph_traversal.py | 755 ++++++-------
.../python/gremlin_python/process/translator.py | 1 +
.../python/gremlin_python/process/traversal.py | 446 +++++++-
.../main/python/gremlin_python/structure/graph.py | 4 -
.../gremlin_python/structure/io/graphbinaryV1.py | 1161 --------------------
.../gremlin_python/structure/io/graphsonV2d0.py | 664 -----------
.../gremlin_python/structure/io/graphsonV3d0.py | 784 -------------
gremlin-python/src/main/python/tests/conftest.py | 297 +----
.../src/main/python/tests/driver/test_client.py | 325 +++---
.../tests/driver/test_driver_remote_connection.py | 188 ++--
.../driver/test_driver_remote_connection_http.py | 229 ----
.../test_driver_remote_connection_threaded.py | 16 +-
.../main/python/tests/driver/test_serializer.py | 2 -
.../{test_translator.py => test_gremlin_lang.py} | 975 ++++++++--------
.../main/python/tests/process/test_translator.py | 1 +
.../main/python/tests/process/test_traversal.py | 93 +-
.../tests/structure/io/test_functionalityio.py | 60 +-
.../tests/structure/io/test_graphbinaryV1.py | 235 ----
.../python/tests/structure/io/test_graphsonV2d0.py | 538 ---------
.../python/tests/structure/io/test_graphsonV3d0.py | 556 ----------
.../gremlin/server/AbstractChannelizer.java | 24 +-
.../apache/tinkerpop/gremlin/server/Context.java | 32 +-
.../tinkerpop/gremlin/server/GraphManager.java | 1 -
.../apache/tinkerpop/gremlin/server/Settings.java | 12 +-
.../gremlin/server/auth/Authenticator.java | 8 +-
.../tinkerpop/gremlin/server/authz/Authorizer.java | 8 +-
.../handler/HttpBasicAuthorizationHandler.java | 12 +-
.../server/handler/HttpGremlinEndpointHandler.java | 63 +-
.../gremlin/server/handler/HttpHandlerUtil.java | 21 +-
.../server/handler/HttpRequestMessageDecoder.java | 52 +-
.../tinkerpop/gremlin/server/handler/StateKey.java | 4 +-
.../gremlin/server/util/GremlinError.java | 14 +-
...izerV4.java => TextPlainMessageSerializer.java} | 25 +-
.../driver/ClientConnectionIntegrateTest.java | 7 +-
.../driver/remote/AbstractRemoteGraphProvider.java | 4 +-
.../GraphBinaryGroovyRemoteGraphProvider.java | 4 +-
.../remote/GraphBinaryLangRemoteGraphProvider.java | 4 +-
.../GraphBinaryRemoteGraphComputerProvider.java | 4 +-
.../gremlin/driver/remote/RemoteWorld.java | 10 +-
.../tinkerpop/gremlin/server/ContextTest.java | 10 +-
.../gremlin/server/GremlinDriverIntegrateTest.java | 8 +-
.../server/GremlinResultSetIntegrateTest.java | 16 +-
.../server/GremlinServerHttpIntegrateTest.java | 62 +-
.../gremlin/server/GremlinServerIntegrateTest.java | 50 +-
.../GremlinServerSerializationIntegrateTest.java | 7 +-
.../server/GremlinServerSslIntegrateTest.java | 5 +-
.../gremlin/server/authz/AllowListAuthorizer.java | 8 +-
.../gremlin/server/authz/AuthorizerTest.java | 6 +-
.../handler/HttpRequestMessageDecoderTest.java | 80 +-
...st.java => TextPlainMessageSerializerTest.java} | 8 +-
.../gremlin/driver/SerializationBenchmark.java | 20 +-
...ageSerializerV4.java => MessageSerializer.java} | 38 +-
.../gremlin/util/{TokensV4.java => Tokens.java} | 4 +-
.../{RequestMessageV4.java => RequestMessage.java} | 46 +-
...ResponseMessageV4.java => ResponseMessage.java} | 52 +-
.../{ResponseResultV4.java => ResponseResult.java} | 14 +-
.../{ResponseStatusV4.java => ResponseStatus.java} | 24 +-
.../ser/AbstractGraphSONMessageSerializerV4.java | 180 +--
...lizerV4.java => AbstractMessageSerializer.java} | 6 +-
.../util/ser/GraphBinaryMessageSerializerV4.java | 52 +-
.../util/ser/GraphSONMessageSerializerV4.java | 4 +-
.../ser/GraphSONUntypedMessageSerializerV4.java | 4 +-
.../util/ser/{SerTokensV4.java => SerTokens.java} | 4 +-
.../ser/{SerializersV4.java => Serializers.java} | 24 +-
...alizerV4.java => RequestMessageSerializer.java} | 38 +-
.../ser/binary/ResponseMessageSerializerV4.java | 86 --
.../structure/io/AbstractCompatibilityTest.java | 34 +-
.../io/AbstractTypedCompatibilityTest.java | 64 +-
.../io/AbstractUntypedCompatibilityTest.java | 28 +-
.../tinkerpop/gremlin/structure/io/Model.java | 18 +-
...tMessageV4Test.java => RequestMessageTest.java} | 62 +-
.../GraphSONMessageSerializerV4RoundTripTest.java | 4 +-
.../util/ser/GraphSONMessageSerializerV4Test.java | 38 +-
.../GraphSONUntypedMessageSerializerV4Test.java | 24 +-
.../binary/GraphBinaryMessageSerializerV4Test.java | 42 +-
...lizerV4Test.java => MessageSerializerTest.java} | 48 +-
.../types/sample/SamplePersonSerializerTest.java | 8 +-
115 files changed, 2712 insertions(+), 7423 deletions(-)
delete mode 100644
gremlin-python/src/main/python/gremlin_python/structure/io/graphbinaryV1.py
delete mode 100644
gremlin-python/src/main/python/gremlin_python/structure/io/graphsonV2d0.py
delete mode 100644
gremlin-python/src/main/python/gremlin_python/structure/io/graphsonV3d0.py
delete mode 100644
gremlin-python/src/main/python/tests/driver/test_driver_remote_connection_http.py
copy gremlin-python/src/main/python/tests/process/{test_translator.py =>
test_gremlin_lang.py} (79%)
delete mode 100644
gremlin-python/src/main/python/tests/structure/io/test_graphbinaryV1.py
delete mode 100644
gremlin-python/src/main/python/tests/structure/io/test_graphsonV2d0.py
delete mode 100644
gremlin-python/src/main/python/tests/structure/io/test_graphsonV3d0.py
rename
gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/util/{TextPlainMessageSerializerV4.java
=> TextPlainMessageSerializer.java} (82%)
rename
gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/util/{TextPlainMessageSerializerV4Test.java
=> TextPlainMessageSerializerTest.java} (89%)
rename
gremlin-util/src/main/java/org/apache/tinkerpop/gremlin/util/{MessageSerializerV4.java
=> MessageSerializer.java} (75%)
rename
gremlin-util/src/main/java/org/apache/tinkerpop/gremlin/util/{TokensV4.java =>
Tokens.java} (98%)
rename
gremlin-util/src/main/java/org/apache/tinkerpop/gremlin/util/message/{RequestMessageV4.java
=> RequestMessage.java} (76%)
rename
gremlin-util/src/main/java/org/apache/tinkerpop/gremlin/util/message/{ResponseMessageV4.java
=> ResponseMessage.java} (65%)
rename
gremlin-util/src/main/java/org/apache/tinkerpop/gremlin/util/message/{ResponseResultV4.java
=> ResponseResult.java} (78%)
rename
gremlin-util/src/main/java/org/apache/tinkerpop/gremlin/util/message/{ResponseStatusV4.java
=> ResponseStatus.java} (68%)
rename
gremlin-util/src/main/java/org/apache/tinkerpop/gremlin/util/ser/{AbstractMessageSerializerV4.java
=> AbstractMessageSerializer.java} (93%)
rename
gremlin-util/src/main/java/org/apache/tinkerpop/gremlin/util/ser/{SerTokensV4.java
=> SerTokens.java} (96%)
rename
gremlin-util/src/main/java/org/apache/tinkerpop/gremlin/util/ser/{SerializersV4.java
=> Serializers.java} (74%)
rename
gremlin-util/src/main/java/org/apache/tinkerpop/gremlin/util/ser/binary/{RequestMessageSerializerV4.java
=> RequestMessageSerializer.java} (68%)
delete mode 100644
gremlin-util/src/main/java/org/apache/tinkerpop/gremlin/util/ser/binary/ResponseMessageSerializerV4.java
rename
gremlin-util/src/test/java/org/apache/tinkerpop/gremlin/util/message/{RequestMessageV4Test.java
=> RequestMessageTest.java} (56%)
rename
gremlin-util/src/test/java/org/apache/tinkerpop/gremlin/util/ser/binary/{MessageSerializerV4Test.java
=> MessageSerializerTest.java} (75%)