~certify-web-dev/twisted/certify-trunk

« back to all changes in this revision

Viewing changes to twisted/conch/ssh/sexpy.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2004-06-21 22:01:11 UTC
  • mto: (2.2.3 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20040621220111-vkf909euqnyrp3nr
Tags: upstream-1.3.0
ImportĀ upstreamĀ versionĀ 1.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Twisted, the Framework of Your Internet
 
2
# Copyright (C) 2001-2002 Matthew W. Lefkowitz
 
3
#
 
4
# This library is free software; you can redistribute it and/or
 
5
# modify it under the terms of version 2.1 of the GNU Lesser General Public
 
6
# License as published by the Free Software Foundation.
 
7
#
 
8
# This library is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
# Lesser General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU Lesser General Public
 
14
# License along with this library; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
#
 
17
 
 
18
def parse(s):
 
19
    s = s.strip()
 
20
    expr = []
 
21
    while s:
 
22
        if s[0] == '(':
 
23
            newSexp = []
 
24
            if expr:
 
25
                expr[-1].append(newSexp)
 
26
            expr.append(newSexp)
 
27
            s = s[1:]
 
28
            continue
 
29
        if s[0] == ')':
 
30
            aList = expr.pop()
 
31
            s=s[1:]
 
32
            if not expr:
 
33
                assert not s
 
34
                return aList
 
35
            continue
 
36
        i = 0
 
37
        while s[i].isdigit(): i+=1
 
38
        assert i
 
39
        length = int(s[:i])
 
40
        data = s[i+1:i+1+length]
 
41
        expr[-1].append(data)
 
42
        s=s[i+1+length:]
 
43
    assert 0, "this should not happen"
 
44
 
 
45
def pack(sexp):
 
46
    s = ""
 
47
    for o in sexp:
 
48
        if type(o) in (type(()), type([])):
 
49
            s+='('
 
50
            s+=pack(o)
 
51
            s+=')'
 
52
        else:
 
53
            s+='%i:%s' % (len(o), o)
 
54
    return s