我似乎无法将temp客户端与p4python一起使用...
保存客户端后,我就可以同步了。
例如
from P4 import P4,P4Exception
p4 = P4()
p4.client = "example"
p4.port = "1666"
p4.user = "fooser"
client_root = '/foo/bar'
p4.connect()
client = p4.fetch_client()
client._root = client_root
p4.save_client(p4)
p4.run_sync('-f')
工作正常。我在仓库中得到了文件。
但是,如果我将最后一行调整为临时客户端,则...
with p4.temp_client('temp',client) as t:
p4.run_sync()
我收到以下错误...
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/Cellar/python/3.7.0/Frameworks/Python.framework/Versions/3.7/lib/python3.7/contextlib.py", line 112, in __enter__
return next(self.gen)
File "/Users/fooser/repos/foo/foo-env/lib/python3.7/site-packages/P4.py", line 868, in temp_client
ws = self.fetch_client('-t', template, name)
File "/Users/fooser/repos/foo/foo-env/lib/python3.7/site-packages/P4.py", line 503, in <lambda>
return lambda *args, **kargs: self.__fetch(cmd, *args, **kargs)
File "/Users/fooser/repos/foo/foo-env/lib/python3.7/site-packages/P4.py", line 538, in __fetch
result = self.run(cmd, "-o", *args, **kargs)
File "/Users/fooser/repos/foo/foo-env/lib/python3.7/site-packages/P4.py", line 611, in run
raise e
File "/Users/fooser/repos/foo/foo-env/lib/python3.7/site-packages/P4.py", line 605, in run
result = P4API.P4Adapter.run(self, *flatArgs)
P4.P4Exception: [P4#run] Errors during command execution( "p4 client -o -t {'Client': 'ansible', 'Update': '2018/09/20 05:58:44', 'Access': '2018/09/20 05:58:44', 'Owner': 'stobias', 'Host': 'toby-imac.local', 'Description': 'ignore', 'Root': '/Users/stobias/p4test', 'Options': 'noallwrite noclobber nocompress unlocked nomodtime normdir', 'SubmitOptions': 'submitunchanged', 'LineEnd': 'local', 'Type': 'writeable', 'Backup': 'enable', 'View': ['//depot/... //ansible/...']} temp_9c5db5fa-bc9a-11e8-a517-10ddb1a3f3f1" )
[Error]: "Wildcards (*, %%x, ...) not allowed in '{'Client':_'ansible',_'Update':_'2018/09/20_05:58:44',_'Access':_'2018/09/20_05:58:44',_'Owner':_'stobias',_'Host':_'toby-imac.local',_'Description':_'ignore',_'Root':_'/Users/stobias/p4test',_'Options':_'noallwrite_noclobber_nocompress_unlocked_nomodtime_normdir',_'SubmitOptions':_'submitunchanged',_'LineEnd':_'local',_'Type':_'writeable',_'Backup':_'enable',_'View':_['//depot/... //ansible/...']}'."
[P4#run] Errors during command execution( "p4 client -o -t {'Client': 'ansible', 'Update': '2018/09/20 05:58:44', 'Access': '2018/09/20 05:58:44', 'Owner': 'stobias', 'Host': 'toby-imac.local', 'Description': 'ignore', 'Root': '/Users/stobias/p4test', 'Options': 'noallwrite noclobber nocompress unlocked nomodtime normdir', 'SubmitOptions': 'submitunchanged', 'LineEnd': 'local', 'Type': 'writeable', 'Backup': 'enable', 'View': ['//depot/... //ansible/...']} temp_9c5db5fa-bc9a-11e8-a517-10ddb1a3f3f1" )
[Error]: "Wildcards (*, %%x, ...) not allowed in '{'Client':_'ansible',_'Update':_'2018/09/20_05:58:44',_'Access':_'2018/09/20_05:58:44',_'Owner':_'stobias',_'Host':_'toby-imac.local',_'Description':_'ignore',_'Root':_'/Users/stobias/p4test',_'Options':_'noallwrite_noclobber_nocompress_unlocked_nomodtime_normdir',_'SubmitOptions':_'submitunchanged',_'LineEnd':_'local',_'Type':_'writeable',_'Backup':_'enable',_'View':_['//depot/... //ansible/...']}'."
我试图稍微深入研究一下源代码,但是这个库似乎依赖于c++模块,因此我走不远了。
P4Python源码和示例-https://swarm.workshop.perforce.com/view/guest/robert_cowham/perforce/API/python/index.html?v=9#downloads
最佳答案
查看错误,我可以看到它正在尝试将Python字典的字符串表示形式作为“-t”标志传递给p4命令,这显然是错误的。 :)
从temp_client上的文档中:p4.temp_client( "<prefix>", "<template>" )Creates a temporary client, using the prefix <prefix> and based upon a client template named <template>
第二个arg只是模板客户端的名称(作为字符串),而不是整个规范(作为dict)。那就是在实际的p4命令中作为-t template
传递的东西。
尝试:
with p4.temp_client('temp', 'example') as t:
p4.run_sync()
关于python - P4Python p4.temp_client损坏了?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52418722/