Giter Club home page Giter Club logo

Comments (4)

Allard-Chris avatar Allard-Chris commented on July 25, 2024

Erratum, my fix is not good.
It's more something like that :

iteration = 0
with SMCSocketProtocol(self, **self.sockopt) as protocol:
    for result in protocol.receive():
        if 'records' in result:
            if result['records']['added'] != []:
                yield result['records']['added']
                iteration += 1
        else:
            yield from ()
            iteration += 1
        if iteration == max_recv:
            protocol.abort()

from fp-ngfw-smc-python.

Allard-Chris avatar Allard-Chris commented on July 25, 2024

Ok, the problem was how i used the function.
When we call "query.fetch_as_element()" for BlacklistQuery, we must send the argument "max_recv=1" for example.
With that, we don't hang endlessly.

from fp-ngfw-smc-python.

thomasdevulder avatar thomasdevulder commented on July 25, 2024

You can use parameters to customize websocket results:
1 - max_recv : the number of record you want to retrieve, fetch_as_element will return after
2 - query_timeout: the inactivity period in second after the method will return

In this example, the method will return after 10 seconds of inactivity during record reception (or if blacklist entries is empty)

    print("Retrieve all BlacklistEntry elements using smc_monitoring")
    query = BlacklistQuery(ENGINENAME)
    for element in query.fetch_as_element(max_recv=5, query_timeout=10):
        print("{} {} {} {} {} {}".format(element.engine,
                                         element.href,
                                         element.source,
                                         element.destination,
                                         element.protocol,
                                         element.duration))

Tell me if that could solve your problem.
I am going to try your fix suggestion

Thomas

from fp-ngfw-smc-python.

Allard-Chris avatar Allard-Chris commented on July 25, 2024

Hello Thomas,
Thanks for your reply.
Yes, it's solve my problem. I'm pretty noob about functions and websocket using yields statement. So i was not prepared about the blacklist function that hang if we received nothing.

Thank you for your help.

Regards, Chris.

from fp-ngfw-smc-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.