1

アプリケーション内で rpyc を使用していますが、小さな問題が発生しました。

リモート プロパティを更新できるかどうか知りたいのですが。

テストサーバーがあります:

import rpyc
from rpyc.utils.server import ThreadedServer

class Test:
    def __init__(self):
        self._v = 0

    @property
    def V(self):
        return self._v

    @V.setter
    def V(self, value):
        self._v = value


class TestService(rpyc.Service):

    def exposed_Test(self):
        return Test()

if __name__ == '__main__':

    t = ThreadedServer(TestService, port = 2942,
                    protocol_config={"allow_all_attrs":True})
    t.start()

そしてipythonコンソール内:

In [1]: import rpyc

In [2]: conn = rpyc.connect('localhost', 2942, config={'allow_all_attrs':True})

In [3]: test = conn.root.Test()

In [4]: test.V
Out[4]: 0

In [5]: test.V = 2
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-5-d3ae0dcd1075> in <module>()
----> 1 test.V = 2
<blah blah traceback>
AttributeError: cannot access 'V'

リモート プロパティを更新することはできますか?

4

1 に答える 1

1

はい、リモート属性の設定はデフォルトでブロックされていますが、設定すると許可されますallow_setattr=True

(とにかくallow_delattr=True設定している場合、設定も意味があります)allow_setattr=True

t = ThreadedServer(TestService, port = 2942,
                protocol_config={"allow_all_attrs":True,
                                 "allow_setattr": True,
                                 "allow_delattr": True,})

ドキュメントを参照してください。


リモートオブジェクトの に直接アクセスすることで、 setattr-protection をハックにバイパスすることもでき__dict__ます (もちろん、最初のソリューションの方がはるかに優れています)。

test.__dict__['V'] = 2
于 2016-01-18T20:35:49.903 に答える