您好,我想知道如何在课程之间传递对象。我将使用我的脚本首先登录到我们的服务器,在客户端服务器旁边,而不是路由器和交换机。 这是脚本: 文件名是connect.py:
import expect
class domain_connect:
def __init__(self,usr='user',pwd='password',d1='192.168.1.3',dclient='192.168.2.3'):
self._usr =us
self._pwd =pwd
self._d1 =d1
self._dclient =dclient
def djump(self):
child=pexpect.spawn('ssh -o StrictHostKeyChecking=no -l ' +self._usr+" "+self._d1)
child.expect('assword:')
child.sendline(self._pwd)
child.expect(':~>')
##Connect to client server
child.sendline(self._dclient)
child.expect('assword:')
child.sendline(self._pwd)
child.expect('accept:')
child.sendline(' ')
child.expect(':~>')
return child
class ce_connect:
def __init__(self, child, ip, usr, pwd, enpwd):
self._child = child
self._ip = ip
self._usr = usr
self._pwd = pwd
self._enpwd = pwd
def cjump(self):
##Connecting to router
child.sendline('ssh -o StrictHostKeyChecking=no -l '+self._usr+' '+self._ip)
return self._child
以下是使用的脚本:
import connect
child = connect.domain_connect()
child = child.djump() ## At this point I'm good toward the client server
我试图执行以下操作将子对象传递给ce_connect类
child2 = connect.ce_connect(child, '192.78.1.20', 'username', 'password', 'password2')
child2 = child2.cjump()
我收到错误:
AttributeError: 'spawn' object has no attribute 'djump'
答案 0 :(得分:5)
您已经 成功将child
对象传递给ce_connect
构造函数。
执行此操作时:
child2 = connect.ce_connect(child, '192.78.1.20', 'username', 'password', 'password2')
...将child
传递给ce_connect
构造函数,因此child2._child
最终与child
成为同一个对象。因此,当您致电child2.cjump()
并致电self._child.dump()
时,它会在您的djump
对象上调用child
。就像它应该的那样。
问题是child
不是domain_connect
对象,而是pexpect.spawn
对象。这就是为什么你得到AttributeError: 'spawn' object has no attribute 'djump'
,这正是它所说的。
原因很简单:
child = child.djump()
这会将child
设置为djump
返回的内容。 djump
返回的是pexpect.spawn
个对象。在该行之前,child
是domain_connect
,但现在,它是spawn
,您不再拥有domain_connect
的任何可访问引用。
答案很简单:不要那样做。保留对domain_connect
的引用,并使用它。像这样:
child = connect.domain_connect()
child_jump = child.djump()
child2 = connect.ce_connect(child, '192.78.1.20', 'username', 'password', 'password2')
child2_jump = child2.cjump()
作为旁注,我认为在方法实现和调用代码中重用名称child
会使您感到困惑。如果你能提出不同的名字,那就更容易保持正确。
与此同时,一旦解决了这个问题,你就会遇到另一个问题。您的代码似乎希望child
的{{1}}同时属于ce_connect
和 a domain_connect
。特别是在pexpect.spawn
内,你有这个:
ce_connect.cjump
child.sendline('ssh -o StrictHostKeyChecking=no -l '+self._usr+' '+self._ip)
对象没有sendline
方法。
很难确定这里有什么正确的解决方案。你需要直截了当地了解这些对象应该是什么。他们为什么都叫domain_connect
?什么是孩子应该是什么意思?
一种可能性是child
对象应该是child
子进程,而不是pexpect
对象,所以你真正想要的是这样的:
*_connect
或者,您可能根本没有使用这些domain = connect.domain_connect()
child = domain.djump()
ce = connect.ce_connect(child, '192.78.1.20', 'username', 'password', 'password2')
child2 = ce.cjump()
个对象,只考虑其connect
/ djump
方法的结果。在这种情况下,您可以将其写为:
cjump
但是在这种情况下,你可能最好将公共接口变成一对模块级函数,并在这些函数的实现下隐藏类。
或者,也许你想让child = connect.domain_connect().djump()
child2 = connect.ce_connect(child, '192.78.1.20', 'username', 'password', 'password2').cjump()
个对象作为子进程在它们代表的任何其他东西之上,通过保持domain_connect
作为djump
成员的结果,然后将_child
和其他方法委托给真正的sendline
对象,如下所示:
pexpect
或者......好吧,正如我所说,有很多可能性,并且不知道你的设计应该如何工作以及你的类和变量应该代表什么,真的没有办法说出如何让你的代码适合你的设计。