/usr/share/pyshared/lsm/na.py is in python-libstoragemgmt 0.0.20-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 | # Copyright (C) 2012 Red Hat, Inc.
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
# Author: tasleson
import urllib2
import socket
from xml.etree import ElementTree
import time
from binascii import hexlify
from M2Crypto import RC4
from external.xmltodict import ConvertXmlToDict
#Set to an appropriate directory and file to dump the raw response.
from lsm.common import ErrorNumber
xml_debug = None
def netapp_filer_parse_response(resp):
if xml_debug:
out = open(xml_debug, "wb")
out.write(resp)
out.close()
return ConvertXmlToDict(ElementTree.fromstring(resp))
def param_value(val):
"""
Given a parameter to pass to filer, convert to XML
"""
rc = ""
if type(val) is dict or isinstance(val, dict):
for k, v in val.items():
rc += "<%s>%s</%s>" % (k, param_value(v), k)
elif type(val) is list or isinstance(val, list):
for i in val:
rc += param_value(i)
else:
rc = val
return rc
def netapp_filer(host, username, password, timeout, command, parameters=None,
ssl=False):
"""
Issue a command to the NetApp filer.
Note: Change to default ssl on before we ship a release version.
"""
proto = 'http'
if ssl:
proto = 'https'
url = "%s://%s/servlets/netapp.servlets.admin.XMLrequest_filer" % \
(proto, host)
req = urllib2.Request(url)
req.add_header('Content-Type', 'text/xml')
password_manager = urllib2.HTTPPasswordMgrWithDefaultRealm()
password_manager.add_password(None, url, username, password)
auth_manager = urllib2.HTTPBasicAuthHandler(password_manager)
opener = urllib2.build_opener(auth_manager)
urllib2.install_opener(opener)
#build the command and the arguments for it
p = ""
if parameters:
for k, v in parameters.items():
p += "<%s>%s</%s>" % (k, param_value(v), k)
payload = "<%s>\n%s\n</%s>" % (command, p, command)
data = """<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE netapp SYSTEM "file:/etc/netapp_filer.dtd">
<netapp xmlns="http://www.netapp.com/filer/admin" version="1.1">
%s
</netapp>
""" % payload
handler = None
rc = None
try:
handler = urllib2.urlopen(req, data, float(timeout))
if handler.getcode() == 200:
rc = netapp_filer_parse_response(handler.read())
except urllib2.HTTPError, he:
raise he
except urllib2.URLError, e:
if isinstance(e.reason, socket.timeout):
raise FilerError(60, "Connection timeout")
else:
raise e
finally:
if handler:
handler.close()
return rc
class FilerError(Exception):
"""
Class represents a NetApp bad return code
"""
def __init__(self, errno, reason, *args, **kwargs):
Exception.__init__(self, *args, **kwargs)
self.errno = int(errno)
self.reason = reason
def to_list(v):
"""
The return values in hash form can either be a single hash item or a list
of hash items, this code handles both to make callers always get a list.
"""
rc = []
if v is not None:
if isinstance(v, list):
rc = v
else:
rc.append(v)
return rc
class Filer(object):
"""
Class to handle NetApp API calls.
Note: These are using lsm terminology.
"""
ENOSPC = 28 # Out of space
ETIMEOUT = 60 # Time-out
EINVALID_ISCSI_NAME = 9006 # Invalid ISCSI IQN
ENO_SUCH_VOLUME = 9017 # lun not found
ESIZE_TOO_LARGE = 9034 # Specified too large a size
ENO_SUCH_FS = 9036 # FS not found
EVOLUME_TOO_SMALL = 9041 # Specified too small a size
EAPILICENSE = 13008 # Unlicensed API
EFSDOESNOTEXIST = 13040 # FS does not exist
EFSOFFLINE = 13042 # FS is offline.
EFSNAMEINVALID = 13044 # FS Name invalid
ESERVICENOTLICENSED = 13902 # Not licensed
ECLONE_LICENSE_EXPIRED = 14955 # Not licensed
ECLONE_NOT_LICENSED = 14956 # Not licensed
def _invoke(self, command, parameters=None):
rc = netapp_filer(self.host, self.username, self.password, self.timeout,
command, parameters, self.ssl)
t = rc['netapp']['results']['attrib']
if t['status'] != 'passed':
raise FilerError(t['errno'], t['reason'])
return rc['netapp']['results']
def __init__(self, host, username, password, timeout, ssl=True):
self.host = host
self.username = username
self.password = password
self.timeout = timeout
self.ssl = ssl
def system_info(self):
rc = self._invoke('system-get-info')
return rc['system-info']
def validate(self):
#TODO: Validate that everything we need to function is available?
self._invoke('system-api-list')
return None
def aggregates(self):
"""
Return a list of aggregates
"""
pools = self._invoke('aggr-list-info')
tmp = pools['aggregates']['aggr-info']
return [p for p in to_list(tmp) if p['mount-state'] == 'online']
def aggregate_volume_names(self, aggr_name):
"""
Return a list of volume names that are on an aggregate
"""
vol_names = []
rc = self._invoke('aggr-list-info', {'aggregate': aggr_name})
aggr = rc['aggregates']['aggr-info']
if aggr is not None and aggr['volumes'] is not None:
vols = aggr['volumes']['contained-volume-info']
vol_names = [e['name'] for e in to_list(vols)]
return vol_names
def lun_build_name(self, volume_name, file_name):
"""
Given a volume name and file return full path"
"""
return '/vol/%s/%s' % (volume_name, file_name)
def luns_get_specific(self, aggr, na_lun_name=None, na_volume_name=None):
"""
Return all logical units, or information about one or for all those
on a volume name.
"""
rc = []
if na_lun_name is not None:
luns = self._invoke('lun-list-info', {'path': na_lun_name})
elif na_volume_name is not None:
luns = self._invoke('lun-list-info',
{'volume-name': na_volume_name})
else:
luns = self._invoke('lun-list-info')
tmp = luns['luns']
if tmp is not None:
rc = to_list(tmp['lun-info'])
if len(rc):
#Add a key/value for aggr to hash so upper layers have it.
for i in range(len(rc)):
rc[i]['aggr'] = aggr
return rc
def _get_aggr_info(self):
aggrs = self._invoke('aggr-list-info')
tmp = to_list(aggrs['aggregates']['aggr-info'])
return [x for x in tmp if x['volumes'] is not None]
def luns_get_all(self):
"""
More efficient approach to retrieving all the luns
"""
rc = []
lookup = {}
aggr_list = self._get_aggr_info()
#Build volume name to uuid lookup
for p in aggr_list:
volumes = to_list(p['volumes']['contained-volume-info'])
for v in volumes:
lookup[v['name']] = p['uuid']
luns = self._invoke('lun-list-info')['luns']
if luns is not None:
rc = to_list(luns['lun-info'])
if len(rc):
for i in range(len(rc)):
aggr_name = rc[i]['path'].split('/')[2]
rc[i]['aggr'] = lookup[aggr_name]
return rc
def lun_create(self, full_path_name, size_bytes):
"""
Creates a lun
"""
params = {'path': full_path_name,
'size': size_bytes}
self._invoke('lun-create-by-size', params)
def lun_delete(self, lun_path):
"""
Deletes a lun given a lun path
"""
self._invoke('lun-destroy', {'path': lun_path})
def lun_resize(self, lun_path, size_bytes):
"""
Re-sizes a lun
"""
self._invoke('lun-resize', {'path': lun_path, 'size': size_bytes,
'force': 'true'})
def volume_resize(self, na_vol_name, size_diff_kb):
"""
Given a NetApp volume name and a size change in kb, re-size the
NetApp volume.
"""
params = {'volume': na_vol_name}
if size_diff_kb > 0:
params['new-size'] = '+' + str(size_diff_kb) + 'k'
else:
params['new-size'] = str(size_diff_kb) + 'k'
self._invoke('volume-size', params)
return None
def volumes(self, volume_name=None):
"""
Return a list of NetApp volumes
"""
if not volume_name:
v = self._invoke('volume-list-info')
else:
v = self._invoke('volume-list-info', {'volume': volume_name})
t = v['volumes']['volume-info']
rc = to_list(t)
return rc
def volume_create(self, aggr_name, vol_name, size_in_bytes):
"""
Creates a volume given an aggr_name, volume name and size in bytes.
"""
params = {'containing-aggr-name': aggr_name,
'size': int(size_in_bytes * 1.30),
#There must be a better way to account for this
'volume': vol_name}
self._invoke('volume-create', params)
#Turn off scheduled snapshots
self._invoke('volume-set-option', {'volume': vol_name,
'option-name': 'nosnap',
'option-value': 'on', })
#Turn off auto export!
self.nfs_export_remove(['/vol/' + vol_name])
def volume_clone(self, src_volume, dest_volume, snapshot=None):
"""
Clones a volume given a source volume name, destination volume name
and optional backing snapshot.
"""
params = {'parent-volume': src_volume, 'volume': dest_volume}
if snapshot:
params['parent-snapshot'] = snapshot.name
self._invoke('volume-clone-create', params)
def volume_delete(self, vol_name):
"""
Deletes a volume and everything on it.
"""
online = False
try:
self._invoke('volume-offline', {'name': vol_name})
online = True
except FilerError as fe:
if fe.errno != Filer.EFSDOESNOTEXIST:
raise fe
try:
self._invoke('volume-destroy', {'name': vol_name})
except FilerError as fe:
#If the volume was online, we will return it to same status
if online:
try:
self._invoke('volume-online', {'name': vol_name})
except FilerError:
pass
raise fe
def volume_names(self):
"""
Return a list of volume names
"""
vols = self.volumes()
return [v['name'] for v in vols]
def clear_all_clone_errors(self):
"""
Clears all the clone errors.
"""
errors = self._invoke('clone-list-status')['status']
if errors is not None:
errors = to_list(errors['ops-info'])
for e in errors:
self._invoke('clone-clear', {'clone-id': e['clone-id']})
return None
def clone(self, source_path, dest_path, backing_snapshot=None, ranges=None):
"""
Creates a file clone
"""
params = {'source-path': source_path}
#You can have source == dest, but if you do you can only specify source
if source_path != dest_path:
params['destination-path'] = dest_path
if backing_snapshot:
raise FilerError(ErrorNumber.NOT_IMPLEMENTED,
"Support for backing luns not implemented "
"for this API version")
#params['snapshot-name']= backing_snapshot
if ranges:
block_ranges = []
for r in ranges:
values = {'block-count': r.block_count,
'destination-block-number': r.dest_block,
'source-block-number': r.src_block}
block_ranges.append({'block-range': values})
params['block-ranges'] = block_ranges
rc = self._invoke('clone-start', params)
c_id = rc['clone-id']
while True:
progress = self._invoke('clone-list-status',
{'clone-id': c_id})['status']['ops-info']
if progress['clone-state'] == 'failed':
self._invoke('clone-clear', {'clone-id': c_id})
raise FilerError(progress['error'], progress['reason'])
elif progress['clone-state'] == 'running' \
or progress['clone-state'] == 'fail exit':
# State needs to transition to failed before we can clear it!
time.sleep(0.2) # Don't hog cpu
elif progress['clone-state'] == 'completed':
return progress['destination-file']
else:
raise FilerError(ErrorNumber.NOT_IMPLEMENTED,
'Unexpected state=' + progress['clone-state'])
def lun_online(self, lun_path):
self._invoke('lun-online', {'path': lun_path})
def lun_offline(self, lun_path):
self._invoke('lun-offline', {'path': lun_path})
def igroups(self, group_name=None):
rc = []
if group_name:
g = self._invoke('igroup-list-info',
{'initiator-group-name': group_name})
else:
g = self._invoke('igroup-list-info')
if g['initiator-groups']:
rc = to_list(g['initiator-groups']['initiator-group-info'])
return rc
def igroup_exists(self, name):
g = self.igroups()
for ig in g:
if ig['initiator-group-name'] == name:
return True
return False
def igroup_create(self, name, igroup_type):
params = {'initiator-group-name': name,
'initiator-group-type': igroup_type}
self._invoke('igroup-create', params)
def igroup_delete(self, name):
self._invoke('igroup-destroy', {'initiator-group-name': name})
@staticmethod
def encode(password):
rc4 = RC4.RC4()
rc4.set_key("#u82fyi8S5\017pPemw")
return hexlify(rc4.update(password))
def iscsi_initiator_add_auth(self, initiator, user_name, password,
out_user, out_password):
pw = self.encode(password)
args = {'initiator': initiator}
if user_name and len(user_name) and password and len(password):
args.update({'user-name': user_name,
'password': pw, 'auth-type': "CHAP"})
if out_user and len(out_user) and \
out_password and len(out_password):
args.update({'outbound-user-name': out_user,
'outbound-password': out_password})
else:
args.update({'initiator': initiator, 'auth-type': "none"})
self._invoke('iscsi-initiator-add-auth', args)
def igroup_add_initiator(self, ig, initiator):
self._invoke('igroup-add',
{'initiator-group-name': ig, 'initiator': initiator})
def igroup_del_initiator(self, ig, initiator):
self._invoke('igroup-remove',
{'initiator-group-name': ig, 'initiator': initiator})
def lun_map(self, igroup, lun_path):
self._invoke('lun-map', {'initiator-group': igroup, 'path': lun_path})
def lun_unmap(self, igroup, lun_path):
self._invoke('lun-unmap', {'initiator-group': igroup, 'path': lun_path})
def lun_map_list_info(self, lun_path):
initiator_groups = []
rc = self._invoke('lun-map-list-info', {'path': lun_path})
if rc['initiator-groups'] is not None:
igi = to_list(rc['initiator-groups'])
for i in igi:
group_name = i['initiator-group-info']['initiator-group-name']
initiator_groups.append(self.igroups(group_name)[0])
return initiator_groups
def lun_initiator_list_map_info(self, initiator_id, initiator_group_name):
"""
Given an initiator_id and initiator group name, return a list of
lun-info
"""
luns = []
rc = self._invoke('lun-initiator-list-map-info',
{'initiator': initiator_id})
if rc['lun-maps']:
lun_name_list = to_list(rc['lun-maps']['lun-map-info'])
#Get all the lun with information about aggr
all_luns = self.luns_get_all()
for l in lun_name_list:
if l['initiator-group'] == initiator_group_name:
for al in all_luns:
if al['path'] == l['path']:
luns.append(al)
return luns
def snapshots(self, volume_name):
rc = []
args = {'target-type': 'volume', 'target-name': volume_name}
ss = self._invoke('snapshot-list-info', args)
if ss['snapshots']:
rc = to_list(ss['snapshots']['snapshot-info'])
return rc
def snapshot_create(self, volume_name, snapshot_name):
self._invoke('snapshot-create', {'volume': volume_name,
'snapshot': snapshot_name})
return [v for v in self.snapshots(volume_name)
if v['name'] == snapshot_name][0]
def snapshot_file_restore_num(self):
"""
Returns the number of executing file restore snapshots.
"""
rc = self._invoke('snapshot-restore-file-info')
if 'sfsr-in-progress' in rc:
return int(rc['sfsr-in-progress'])
return 0
def snapshot_restore_volume(self, fs_name, snapshot_name):
"""
Restores all files on a volume
"""
params = {'snapshot': snapshot_name, 'volume': fs_name}
self._invoke('snapshot-restore-volume', params)
def snapshot_restore_file(self, snapshot_name, restore_path, restore_file):
"""
Restore a list of files
"""
params = {'snapshot': snapshot_name, 'path': restore_path}
if restore_file:
params['restore-path'] = restore_file
self._invoke('snapshot-restore-file', params)
def snapshot_delete(self, volume_name, snapshot_name):
self._invoke('snapshot-delete',
{'volume': volume_name, 'snapshot': snapshot_name})
def export_auth_types(self):
rc = self._invoke('nfs-get-supported-sec-flavors')
return [e['flavor'] for e in
to_list(rc['sec-flavor']['sec-flavor-info'])]
@staticmethod
def _build_list(pylist, list_name, elem_name):
"""
Given a python list, build the appropriate dict that contains the
list items so that it can be converted to xml to be sent on the wire.
"""
return [{list_name: {elem_name: l}} for l in pylist]
@staticmethod
def _build_export_fs_all():
return Filer._build_list(['true'], 'exports-hostname-info', 'all-hosts')
@staticmethod
def _build_export_fs_list(hosts):
if hosts[0] == '*':
return Filer._build_export_fs_all()
else:
return Filer._build_list(hosts, 'exports-hostname-info', 'name')
def nfs_export_fs(self, volume_path, export_path, ro_list, rw_list,
root_list, anonuid=None, sec_flavor=None):
"""
Export a fs, deprecated (Will remove soon)
"""
rule = {'pathname': volume_path}
if volume_path != export_path:
#Try creating the directory needed
rule['actual-pathname'] = volume_path
rule['pathname'] = export_path
if len(ro_list):
rule['read-only'] = Filer._build_export_fs_list(ro_list)
if len(rw_list):
rule['read-write'] = Filer._build_export_fs_list(rw_list)
if len(root_list):
rule['root'] = Filer._build_export_fs_list(root_list)
if anonuid:
rule['anon'] = anonuid
if sec_flavor:
rule['sec-flavor'] = Filer._build_list([sec_flavor],
'sec-flavor-info', 'flavor')
params = {'persistent': 'true', 'rules': {'exports-rule-info': [rule]},
'verbose': 'true'}
self._invoke('nfs-exportfs-append-rules', params)
def _build_export_rules(self, volume_path, export_path, ro_list, rw_list,
root_list, anonuid=None, sec_flavor=None):
"""
Common logic to build up the rules for nfs
"""
#One of the more complicated data structures to push down to the
#controller
rule = {'pathname': volume_path}
if volume_path != export_path:
rule['actual-pathname'] = volume_path
rule['pathname'] = export_path
rule['security-rules'] = {}
rule['security-rules']['security-rule-info'] = {}
r = rule['security-rules']['security-rule-info']
if len(ro_list):
r['read-only'] = Filer._build_export_fs_list(ro_list)
if len(rw_list):
r['read-write'] = Filer._build_export_fs_list(rw_list)
if len(root_list):
r['root'] = Filer._build_export_fs_list(root_list)
if anonuid:
r['anon'] = anonuid
if sec_flavor:
r['sec-flavor'] = Filer._build_list([sec_flavor], 'sec-flavor-info',
'flavor')
return rule
def nfs_export_fs2(self, volume_path, export_path, ro_list, rw_list,
root_list, anonuid=None, sec_flavor=None):
"""
NFS export a volume.
"""
rule = self._build_export_rules(volume_path, export_path, ro_list,
rw_list, root_list, anonuid, sec_flavor)
params = {'persistent': 'true',
'rules': {'exports-rule-info-2': [rule]}, 'verbose': 'true'}
self._invoke('nfs-exportfs-append-rules-2', params)
def nfs_export_fs_modify2(self, volume_path, export_path, ro_list, rw_list,
root_list, anonuid=None, sec_flavor=None):
"""
Modifies an existing rule.
"""
rule = self._build_export_rules(volume_path, export_path, ro_list,
rw_list, root_list, anonuid, sec_flavor)
params = {'persistent': 'true', 'rule': {'exports-rule-info-2': [rule]}}
self._invoke('nfs-exportfs-modify-rule-2', params)
def nfs_export_remove(self, export_paths):
"""
Removes an existing export
"""
assert (type(export_paths) is list)
paths = Filer._build_list(export_paths, 'pathname-info', 'name')
self._invoke('nfs-exportfs-delete-rules',
{'pathnames': paths, 'persistent': 'true'})
def nfs_exports(self):
"""
Returns a list of exports (in hash form)
"""
rc = []
exports = self._invoke('nfs-exportfs-list-rules')
if 'rules' in exports and exports['rules']:
rc = to_list(exports['rules']['exports-rule-info'])
return rc
def volume_children(self, volume):
params = {'volume': volume}
rc = self._invoke('volume-list-info', params)
if 'clone-children' in rc['volumes']['volume-info']:
tmp = rc['volumes']['volume-info']['clone-children'][
'clone-child-info']
rc = [c['clone-child-name'] for c in to_list(tmp)]
else:
rc = None
return rc
def volume_split_clone(self, volume):
self._invoke('volume-clone-split-start', {'volume': volume})
def volume_split_status(self):
result = []
rc = self._invoke('volume-clone-split-status')
if 'clone-split-details' in rc:
tmp = rc['clone-split-details']['clone-split-detail-info']
result = [r['name'] for r in to_list(tmp)]
return result
if __name__ == '__main__':
try:
#TODO: Need some unit test code
pass
except FilerError as fe:
print 'Errno=', fe.errno, 'reason=', fe.reason
|