python - P4Python p4.temp_client 坏了?

标签 python c++ perforce

我似乎无法将临时客户端与 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 dict 的字符串表示形式作为“-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>

第二个参数只是模板客户端的名称(作为字符串),而不是整个规范(作为字典)。这就是将作为 -t template 传递的内容在实际的 p4 命令中。

尝试:

with p4.temp_client('temp', 'example') as t:
    p4.run_sync()

关于python - P4Python p4.temp_client 坏了?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52418722/

相关文章:

python - 使用 Beautiful Soup 将 CSS 属性转换为单个 HTML 属性?

perforce - 如何在 perforce 中将本地修改的文件与服务器修订同步

java - Python `itertools.chain` 等同于 Java?

c++ - C++ 中引用成员默认初始值设定项的生命周期是多少?

c++ - 模板参数比较为假时调用的 if 语句

c++ - VC++ : KB971090 and selecting Visual C Runtime DLL dependencies

perforce - Helix 与 Perforce 有什么区别?

jenkins - 检查 Jenkins 中的差异

javascript - Flask: request.method = ='POST' 跳过 return 语句

python - 可以设置Python对象的任何属性