使用命名管道连接到 LibreOffice
Posted
技术标签:
【中文标题】使用命名管道连接到 LibreOffice【英文标题】:Connecting to LibreOffice with named pipes 【发布时间】:2012-03-19 16:57:03 【问题描述】:我可以用套接字连接就好了,但是我听说当一切都在本地时使用管道更快,所以我想尝试一下,但我无法连接。
我从 Libre 开始
> soffice --headless --invisible --norestore --nodefault --nolockcheck --nofirstwizard --accept='pipe,name=ooo_pipe;urp;'
应该工作但不能工作的最简单的python脚本是
import uno
from com.sun.star.connection import NoConnectException
pipe = 'ooo_pipe'
localContext = uno.getComponentContext()
resolver = localContext.ServiceManager.createInstanceWithContext("com.sun.star.bridge.UnoUrlResolver", localContext)
context = resolver.resolve("uno:pipe,name=%s;urp;StarOffice.ComponentContext" % pipe)
【问题讨论】:
你是什么意思不起作用?你希望这个脚本做什么?你看到了什么? 【参考方案1】:到目前为止,我使用的是套接字模式。刚刚通过 cmd 在我的机器上测试了管道:
/usr/lib/openoffice/program/soffice.bin -accept='pipe,name=foo;urp;StarOffice.ServiceManager' -nologo -headless -nofirststartwizard -invisible
$ lsof -c soffice|egrep "pipe|foo"
soffice.b 6698 user 3r FIFO 0,8 0t0 15766935 pipe
soffice.b 6698 user 4w FIFO 0,8 0t0 15766935 pipe
soffice.b 6698 user 15u unix 0xffff88009773ed00 0t0 15767001 /tmp/OSL_PIPE_1000_foo
lsof 显示有一个命名的套接字 foo 并且可以在 Python 中获取连接。在实验开始时,有时没有生成 foo,因此引发了 com.sun.star.connection.NoConnectException。但是之后我不能再重复这个错误了。
我们已经在生产环境中使用套接字模式的 headless soffice 几年了,它非常稳定且足够快。看来这里的管道模式还是依赖unix socket,所以我建议使用socket模式。
【讨论】:
以上是关于使用命名管道连接到 LibreOffice的主要内容,如果未能解决你的问题,请参考以下文章