| /** |
| * Copyright 2011 The Apache Software Foundation |
| * |
| * 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. |
| */ |
| package org.apache.hadoop.hbase.thrift2; |
| |
| import java.nio.ByteBuffer; |
| import java.util.ArrayList; |
| import java.util.List; |
| |
| import org.apache.hadoop.hbase.thrift2.generated.TColumnValue; |
| import org.apache.hadoop.hbase.thrift2.generated.TGet; |
| import org.apache.hadoop.hbase.thrift2.generated.THBaseService; |
| import org.apache.hadoop.hbase.thrift2.generated.TIOError; |
| import org.apache.hadoop.hbase.thrift2.generated.TPut; |
| import org.apache.hadoop.hbase.thrift2.generated.TResult; |
| import org.apache.thrift.TException; |
| import org.apache.thrift.protocol.TBinaryProtocol; |
| import org.apache.thrift.protocol.TProtocol; |
| import org.apache.thrift.transport.TFramedTransport; |
| import org.apache.thrift.transport.TSocket; |
| import org.apache.thrift.transport.TTransport; |
| |
| public class DemoClient { |
| public static void main(String[] args) throws TIOError, TException { |
| System.out.println("Thrift2 Demo"); |
| System.out.println("This demo assumes you have a table called \"example\" with a column family called \"family1\""); |
| |
| String host = "localhost"; |
| int port = 9090; |
| int timeout = 10000; |
| boolean framed = false; |
| |
| TTransport transport = new TSocket(host, port, timeout); |
| if (framed) { |
| transport = new TFramedTransport(transport); |
| } |
| TProtocol protocol = new TBinaryProtocol(transport); |
| // This is our thrift client. |
| THBaseService.Iface client = new THBaseService.Client(protocol); |
| |
| // open the transport |
| transport.open(); |
| |
| ByteBuffer table = ByteBuffer.wrap("example".getBytes()); |
| |
| TPut put = new TPut(); |
| put.setRow("row1".getBytes()); |
| |
| TColumnValue columnValue = new TColumnValue(); |
| columnValue.setFamily("family1".getBytes()); |
| columnValue.setQualifier("qualifier1".getBytes()); |
| columnValue.setValue("value1".getBytes()); |
| List<TColumnValue> columnValues = new ArrayList<TColumnValue>(); |
| columnValues.add(columnValue); |
| put.setColumnValues(columnValues); |
| |
| client.put(table, put); |
| |
| TGet get = new TGet(); |
| get.setRow("row1".getBytes()); |
| |
| TResult result = client.get(table, get); |
| |
| System.out.print("row = " + new String(result.getRow())); |
| for (TColumnValue resultColumnValue : result.getColumnValues()) { |
| System.out.print("family = " + new String(resultColumnValue.getFamily())); |
| System.out.print("qualifier = " + new String(resultColumnValue.getFamily())); |
| System.out.print("value = " + new String(resultColumnValue.getValue())); |
| System.out.print("timestamp = " + resultColumnValue.getTimestamp()); |
| } |
| |
| transport.close(); |
| } |
| } |