Skip to content

Commit

Permalink
Json Protocol support (#156)
Browse files Browse the repository at this point in the history
Add Json Protocol support
  • Loading branch information
reisub authored and benjamin-bader committed Nov 18, 2017
1 parent 6817551 commit 4c5e96b
Show file tree
Hide file tree
Showing 6 changed files with 1,227 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
* Thrifty
*
* Copyright (c) Microsoft Corporation
*
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
* WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE,
* FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT.
*
* See the Apache Version 2.0 License for specific language governing permissions and limitations under the License.
*/
package com.microsoft.thrifty.integration.conformance;

import com.microsoft.thrifty.protocol.JsonProtocol;
import com.microsoft.thrifty.protocol.Protocol;
import com.microsoft.thrifty.testing.ServerProtocol;
import com.microsoft.thrifty.testing.ServerTransport;
import com.microsoft.thrifty.transport.Transport;

public class JsonProtocolConformance extends ConformanceBase {
@Override
protected ServerTransport getServerTransport() {
return ServerTransport.BLOCKING;
}

@Override
protected ServerProtocol getServerProtocol() {
return ServerProtocol.JSON;
}

@Override
protected Protocol createProtocol(Transport transport) {
return new JsonProtocol(transport);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/*
* Thrifty
*
* Copyright (c) Microsoft Corporation
*
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
* WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE,
* FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT.
*
* See the Apache Version 2.0 License for specific language governing permissions and limitations under the License.
*/
package com.microsoft.thrifty.integration.conformance;

import com.microsoft.thrifty.protocol.JsonProtocol;
import com.microsoft.thrifty.protocol.Protocol;
import com.microsoft.thrifty.testing.ServerProtocol;
import com.microsoft.thrifty.testing.ServerTransport;
import com.microsoft.thrifty.transport.FramedTransport;
import com.microsoft.thrifty.transport.Transport;

public class NonblockingJsonProtocolConformance extends ConformanceBase {
@Override
protected ServerTransport getServerTransport() {
return ServerTransport.NON_BLOCKING;
}

@Override
protected ServerProtocol getServerProtocol() {
return ServerProtocol.JSON;
}

@Override
protected Transport decorateTransport(Transport transport) {
// non-blocking servers require framing
return new FramedTransport(transport);
}

@Override
protected Protocol createProtocol(Transport transport) {
return new JsonProtocol(transport);
}
}
Loading

0 comments on commit 4c5e96b

Please sign in to comment.