Sha256: 68b0517dbed9cd60b32b98acfe102e60c91284432e1e70cd075b824bb28e8e47

Contents?: true

Size: 1.77 KB

Versions: 28

Compression:

Stored size: 1.77 KB

Contents

#!/usr/bin/env python
#
# Autogenerated by Thrift
#
# DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
#

import sys
import pprint
from urlparse import urlparse
from thrift.transport import TTransport
from thrift.transport import TSocket
from thrift.transport import THttpClient
from thrift.protocol import TBinaryProtocol

import CommandInterface
from ttypes import *

if len(sys.argv) <= 1 or sys.argv[1] == '--help':
  print ''
  print 'Usage: ' + sys.argv[0] + ' [-h host:port] [-u url] [-f[ramed]] function [arg1 [arg2...]]'
  print ''
  print 'Functions:'
  print '  CloudResponse run_command(CloudQuery cld, string command,  arglist)'
  print ''
  sys.exit(0)

pp = pprint.PrettyPrinter(indent = 2)
host = 'localhost'
port = 9090
uri = ''
framed = False
http = False
argi = 1

if sys.argv[argi] == '-h':
  parts = sys.argv[argi+1].split(':') 
  host = parts[0]
  port = int(parts[1])
  argi += 2

if sys.argv[argi] == '-u':
  url = urlparse(sys.argv[argi+1])
  parts = url[1].split(':') 
  host = parts[0]
  if len(parts) > 1:
    port = int(parts[1])
  else:
    port = 80
  uri = url[2]
  http = True
  argi += 2

if sys.argv[argi] == '-f' or sys.argv[argi] == '-framed':
  framed = True
  argi += 1

cmd = sys.argv[argi]
args = sys.argv[argi+1:]

if http:
  transport = THttpClient.THttpClient(host, port, uri)
else:
  socket = TSocket.TSocket(host, port)
  if framed:
    transport = TTransport.TFramedTransport(socket)
  else:
    transport = TTransport.TBufferedTransport(socket)
protocol = TBinaryProtocol.TBinaryProtocol(transport)
client = CommandInterface.Client(protocol)
transport.open()

if cmd == 'run_command':
  if len(args) != 3:
    print 'run_command requires 3 args'
    sys.exit(1)
  pp.pprint(client.run_command(eval(args[0]),args[1],eval(args[2]),))

transport.close()

Version data entries

28 entries across 28 versions & 3 rubygems

Version Path
auser-poolparty-1.3.0 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.1 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.10 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.11 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.12 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.13 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.14 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.15 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.16 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.17 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.2 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.3 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.4 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.5 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.6 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.7 lib/proto/gen-py/cloudthrift/CommandInterface-remote
auser-poolparty-1.3.8 lib/proto/gen-py/cloudthrift/CommandInterface-remote
fairchild-poolparty-1.3.17 lib/proto/gen-py/cloudthrift/CommandInterface-remote
fairchild-poolparty-1.3.5 lib/proto/gen-py/cloudthrift/CommandInterface-remote
poolparty-1.3.15 lib/proto/gen-py/cloudthrift/CommandInterface-remote