1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# filename: totalopenstation-cli-connector.py
# Copyright 2008,2011 Stefano Costa <steko@iosa.it>
# This file is part of Total Open Station.
# Total Open Station is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
# Total Open Station is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with Total Open Station. If not, see
# <http://www.gnu.org/licenses/>.
import sys
import os
from optparse import OptionParser
from totalopenstation.models import BUILTIN_MODELS
usage = "usage: %prog [option] arg1 [option] arg2 ..."
parser = OptionParser(usage=usage)
parser.add_option("-m",
"--model",
action="store",
type="string",
dest="model",
help="select input MODEL",
metavar="MODEL")
parser.add_option("-p",
"--port",
action="store",
type="string",
dest="port",
help="select input SERIAL PORT",
metavar="PORT")
parser.add_option("-o",
"--outfile",
action="store",
type="string",
dest="outfile",
help="select output FILE (do not specify for stdout)",
metavar="FILE")
(options, args) = parser.parse_args()
modelclass = BUILTIN_INPUT_FORMATS[options.model]
# import input format parser
if isinstance(modelclass, tuple):
try:
# builtin format parser
mod, cls, name = modelclass
modelclass = getattr(
__import__('totalopenstation.models.' + mod, None, None, [cls]), cls)
except ImportError, msg:
sys.exit(_('Error loading the required model module: %s' % msg))
station = modelclass(options.port)
station.open()
print "Now you can start download from %s device" % options.model
station.start()
station.dl_started.wait()
print "Download started..."
station.dl_finished.wait()
print "Download finished..."
result = station.result
if options.outfile:
if not os.path.exists(options.outfile):
e = open(options.outfile, 'w')
e.write(result)
e.close()
print "Downloaded data saved to out file %s" % options.outfile
else:
sys.exit("Specified output file already exists\n")
else:
sys.stdout.write(result)
|