Giter VIP home page Giter VIP logo

Comments (4)

mdb256 avatar mdb256 commented on May 30, 2024

The short answer is that most users won't use libhs_runtime.

The runtime lib is the subset of the Hyperscan library required for scanning data, without the functionality for compiling patterns. That is, it doesn't contain hs_compile()/hs_compile_multi() or any of the support functions listed in hs_compile.h.

This means that to use the runtime lib, a pattern database would need to be compiled by a program linked to the full libhs, the pattern DB serialized, the DB moved/stored, and then deserialized by the program linked to libhs_runtime. For example, you might have a central service that compiles pattern databases which then sends the serialized DB out to a set of machines that use the HS runtime to scan network traffic.

As for the why: the runtime lib is obviously smaller than the complete library, but the main reason for its existence is that the runtime shared lib doesn't require libstdc++.so (or equivalent C++ runtime) - the HS runtime is entirely written in C, whereas the HS compiler is C++. So in the above example, Hyperscan doesn't require that the set of machines scanning network traffic have an installed C++ runtime.

from hyperscan.

crazy-william avatar crazy-william commented on May 30, 2024

thank you for your so detail answer.
Then Would you please tell me how to export compiled pattern DB? I don't find API to do this work.

from hyperscan.

mdb256 avatar mdb256 commented on May 30, 2024

We have API calls for serializing and deserializing the compiled pattern DB.

Serializing flattens the database into a sequence of bytes (with a length) that can be written to a file, or sent over a network connection, and then deserializing takes those bytes and turns them back into a database. Handling files and network connections is outside of the scope of the Hyperscan library.

from hyperscan.

crazy-william avatar crazy-william commented on May 30, 2024

Thank you so much. I have no other question. You can close it.

from hyperscan.

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.