File: ceres-node-create

package info (click to toggle)
python-ceres 0.10.0~git20130913-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 200 kB
  • ctags: 232
  • sloc: python: 1,156; makefile: 126
file content (37 lines) | stat: -rwxr-xr-x 791 bytes parent folder | download
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
#!/usr/bin/env python

import sys
import time
from optparse import OptionParser
from ceres import CeresTree, getTree


parser = OptionParser(usage='''%prog [options] <path>
  If --tree is specified, <path> is taken as a node path
  Otherwise <path> is taken as a filesystem path
''')
parser.add_option('--tree', default=None)
parser.add_option('--step', default=60, type='int', help="Default time step")

options, args = parser.parse_args()

if not args:
  parser.print_usage()
  sys.exit(1)


if options.tree:
  nodePath = args[0]
  tree = CeresTree(options.tree)

else:
  fsPath = args[0]
  tree = getTree(fsPath)

  if not tree:
    print "error: %s is not in a ceres tree" % fsPath
    sys.exit(1)

  nodePath = tree.getNodePath(fsPath)

tree.createNode(nodePath, timeStep=options.step)