You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ja...@apache.org on 2013/04/25 23:53:20 UTC

git commit: THRIFT-1785 add TMemoryBuffer; patch by carl yeksigian reviewed by tjake

Updated Branches:
  refs/heads/master f509df9c9 -> 938e64070


THRIFT-1785 add TMemoryBuffer; patch by carl yeksigian reviewed by tjake


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/938e6407
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/938e6407
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/938e6407

Branch: refs/heads/master
Commit: 938e640702a49a34463bed63bb07fa9256d52584
Parents: f509df9
Author: Jake Luciani <ja...@apache.org>
Authored: Thu Apr 25 17:53:08 2013 -0400
Committer: Jake Luciani <ja...@apache.org>
Committed: Thu Apr 25 17:53:08 2013 -0400

----------------------------------------------------------------------
 lib/csharp/Makefile.am                    |    1 +
 lib/csharp/src/Thrift.csproj              |    1 +
 lib/csharp/src/Transport/TMemoryBuffer.cs |   92 ++++++++++++++++++++++++
 3 files changed, 94 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/938e6407/lib/csharp/Makefile.am
----------------------------------------------------------------------
diff --git a/lib/csharp/Makefile.am b/lib/csharp/Makefile.am
index c7c9d7f..9b07f4f 100644
--- a/lib/csharp/Makefile.am
+++ b/lib/csharp/Makefile.am
@@ -53,6 +53,7 @@ THRIFTCODE= \
             src/Transport/TTransportFactory.cs \
             src/Transport/THttpClient.cs \
             src/Transport/THttpHandler.cs \
+            src/Transport/TMemoryBuffer.cs \
             src/TProcessor.cs \
             src/TApplicationException.cs
 

http://git-wip-us.apache.org/repos/asf/thrift/blob/938e6407/lib/csharp/src/Thrift.csproj
----------------------------------------------------------------------
diff --git a/lib/csharp/src/Thrift.csproj b/lib/csharp/src/Thrift.csproj
index e34f250..0263d72 100644
--- a/lib/csharp/src/Thrift.csproj
+++ b/lib/csharp/src/Thrift.csproj
@@ -114,6 +114,7 @@
     <Compile Include="Transport\TTransport.cs" />
     <Compile Include="Transport\TTransportException.cs" />
     <Compile Include="Transport\TTransportFactory.cs" />
+    <Compile Include="Transport\TMemoryBuffer.cs" />
   </ItemGroup>
   <ItemGroup>
     <BootstrapperPackage Include="Microsoft.Net.Client.3.5">

http://git-wip-us.apache.org/repos/asf/thrift/blob/938e6407/lib/csharp/src/Transport/TMemoryBuffer.cs
----------------------------------------------------------------------
diff --git a/lib/csharp/src/Transport/TMemoryBuffer.cs b/lib/csharp/src/Transport/TMemoryBuffer.cs
new file mode 100644
index 0000000..c6e72f1
--- /dev/null
+++ b/lib/csharp/src/Transport/TMemoryBuffer.cs
@@ -0,0 +1,92 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+using System.IO;
+using System.Reflection;
+using Thrift.Protocol;
+
+namespace Thrift.Transport {
+	public class TMemoryBuffer : TTransport {
+
+		private readonly MemoryStream byteStream;
+
+		public TMemoryBuffer() {
+			byteStream = new MemoryStream();
+		}
+
+		public TMemoryBuffer(byte[] buf) {
+			byteStream = new MemoryStream(buf);
+		}
+
+		public override void Open() {
+			/** do nothing **/
+		}
+
+		public override void Close() {
+			/** do nothing **/
+		}
+
+		public override int Read(byte[] buf, int off, int len) {
+			return byteStream.Read(buf, off, len);
+		}
+
+		public override void Write(byte[] buf, int off, int len) {
+			byteStream.Write(buf, off, len);
+		}
+
+		public byte[] GetBuffer() {
+			return byteStream.ToArray();
+		}
+
+
+		public override bool IsOpen {
+			get { return true; }
+		}
+
+		public static byte[] Serialize(TBase s) {
+			var t = new TMemoryBuffer();
+			var p = new TBinaryProtocol(t);
+
+			s.Write(p);
+
+			return t.GetBuffer();
+		}
+
+		public static T DeSerialize<T>(byte[] buf) where T : TBase, new() {
+		       var t = new T();
+		       var trans = new TMemoryBuffer(buf);
+		       var p = new TBinaryProtocol(trans);
+		       t.Read(p);
+		       return t;
+		}
+
+		private bool _IsDisposed;
+
+		// IDisposable
+		protected override void Dispose(bool disposing) {
+			if (!_IsDisposed) {
+				if (disposing) {
+					if (byteStream != null)
+						byteStream.Dispose();
+				}
+			}
+			_IsDisposed = true;
+		}
+	}
+}
\ No newline at end of file