Code Monkey home page Code Monkey logo

delphigrpc's People

Contributors

amussche avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

delphigrpc's Issues

Dependency Injection into HandleGRPC function

I started with the SimpleDemo and am now running into issues, because I require outside dependencies while handling an grpc request. For example a logger or file writer, which I cannot create during the class function call.

Is there any way to solve this problem?

Memory Leak due to ThreadSafeBuffer not cleared?

I ran across a phenomenon, where my delphi client application runs out of memory, after a certain amount of requests done by the gRPC client (in my case after around 2000 requests). You can reproduce the error by simply running a lot of requests in your DEMOs, after a few requests you can already see, that the memory usage is going up in Taskmanager.

eurekaLogs says the error is produced at "TThreadSafeBuffer"-"Create" when it sets the length of the buffer, SetLength(...), in Grijjy.HTTP (not http2)

TThreadSafeBuffer

I found two bugs in the TThreadSaveBuf class and the write and read method. The Write method write(const ABytes: TBytes) fails when ABytes = nil. I solved the problem by the following code change: if ABytes<>nil then
Write(@abytes[0], Length(ABytes))
else
FSize := 0;
The second bug is in the overloaded Read(const ABuffer: Pointer; var ALength: NativeInt) function. Error clearing read data in buffer.
I solved the problem by replacing line Move(FBuffer[Size], FBuffer[0], FSize - ALength);
with line Move(FBuffer[ALength], FBuffer[0], FSize - ALength);.

Sourcecode or updated executable for ProtoBufGenerator availabe?

The available ProtoBufGenerator executable does not produce the correct code for the latest version of the library (and not the same code as the one included in the examples). Could you make an updated version of the ProtoBufGenerator executeable available? Or the source code for it?

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.