Giter Club home page Giter Club logo

Comments (4)

vovach777 avatar vovach777 commented on July 23, 2024

I checked only examples on Delphi 10.2 trial. Worked fine with the *.so binaries. Then compatibility could be lost due to the fact that there is no free Linux compiler. It is necessary to recompile and check the size of the structures:

program checkLib;

{$APPTYPE CONSOLE}

{$R *.res}

uses
  System.SysUtils,
  np.libuv,
  np.Core;

  procedure gen_size;
  begin
     WriteLn( 'sizeof_loop_t = ',uv_loop_size);
     WriteLn( 'sizeof_async_t = ', uv_handle_size(UV_ASYNC));
     WriteLn( 'sizeof_check_t = ', uv_handle_size(UV_CHECK));
     WriteLn( 'sizeof_fs_event_t = ', uv_handle_size(UV_FS_EVENT_));
     WriteLn( 'sizeof_fs_poll_t = ', uv_handle_size(UV_FS_POLL));
     WriteLn( 'sizeof_handle_t = ', uv_handle_size(UV_HANDLE));
     WriteLn( 'sizeof_idle_t = ',uv_handle_size(UV_IDLE));
     WriteLn( 'sizeof_pipe_t = ', uv_handle_size(UV_NAMED_PIPE));
     WriteLn( 'sizeof_poll_t = ', uv_handle_size(UV_POLL));
     WriteLn( 'sizeof_prepare_t = ', uv_handle_size(UV_PREPARE));
     WriteLn( 'sizeof_process_t = ', uv_handle_size(UV_PROCESS));
     WriteLn( 'sizeof_stream_t = ', uv_handle_size(UV_STREAM));
     WriteLn( 'sizeof_tcp_t = ', uv_handle_size(UV_TCP));
     WriteLn( 'sizeof_timer_t = ', uv_handle_size(UV_TIMER));
     WriteLn( 'sizeof_tty_t = ', uv_handle_size(UV_TTY));
     WriteLn( 'sizeof_udp_t = ', uv_handle_size(UV_UDP));
     WriteLn( 'sizeof_signal_t = ', uv_handle_size(UV_SIGNAL));

      WriteLn('sizeof_req_t = ',      uv_req_size(UV_REQ));
      WriteLn('sizeof_connect_t = ',  uv_req_size(UV_CONNECT));
      WriteLn('sizeof_write_t = ',    uv_req_size(UV_WRITE_));
      WriteLn('sizeof_shutdown_t = ', uv_req_size(UV_SHUTDOWN_));
      WriteLn('sizeof_udp_send_t = ', uv_req_size(UV_UDP_SEND_));
      WriteLn('sizeof_fs_t = ',       uv_req_size(UV_FS));
      WriteLn('sizeof_work_t = ',     uv_req_size(UV_WORK));
      WriteLn('sizeof_addrinfo_t = ', uv_req_size(UV_GETADDRINFO_));
      WriteLn('sizeof_nameinfo_t = ', uv_req_size(UV_GETNAMEINFO_));

      WriteLn('sizeof_rwlock_t = ', uv_rwlock_size );
      WriteLn('sizeof_cond_t = ',   uv_cond_size );
      WriteLn('sizeof_barrier_t = ', uv_barrier_size );
      WriteLn('sizeof_mutex_t = ',   uv_mutex_size );

  end;

begin
  try
//    assert( uv_handle_size(UV_HANDLE) = uv_handle_size(UV_HANDLE), 'handle failed');
    assert( sizeof(uv_loop_t) = uv_loop_size, 'loop failed');
    assert( uv_handle_size(UV_ASYNC) = sizeof(uv_async_t), 'async failed');
    assert( uv_handle_size(UV_CHECK) = sizeof(uv_check_t), 'check failed');
    assert( uv_handle_size(UV_FS_EVENT_) = sizeof(uv_fs_event_t), 'fs_event failed');
    assert( uv_handle_size(UV_FS_POLL) = sizeof(uv_fs_poll_t), 'fs_poll failed');
    assert( uv_handle_size(UV_IDLE) = uv_handle_size(UV_IDLE), 'idle failed');
    assert( uv_handle_size(UV_NAMED_PIPE) = sizeof(uv_pipe_t), 'named_pipe failed');
    assert( uv_handle_size(UV_POLL) = sizeof(uv_poll_t), 'poll failed');
    assert( uv_handle_size(UV_PREPARE) = sizeof(uv_prepare_t), 'prepare failed');
    assert( uv_handle_size(UV_PROCESS) = sizeof(uv_process_t), 'process failed');
    assert( uv_handle_size(UV_STREAM) = sizeof(uv_stream_t), 'stream failed');
    assert( uv_handle_size(UV_TCP) = sizeof(uv_tcp_t), 'tcp failed');
    assert( uv_handle_size(UV_TIMER) = sizeof(uv_timer_t), 'timer failed');
    assert( uv_handle_size(UV_TTY) = sizeof(uv_tty_t), 'tty failed');
    assert( uv_handle_size(UV_UDP) = sizeof(uv_udp_t), 'udp failed');
    assert( uv_handle_size(UV_SIGNAL) = sizeof(uv_signal_t), 'signal failed');

    // WriteLn('file:', integer(uv_handle_size(UV_FILE_)),' ', integer(uv_handle_size(UV_FILE_)) - sizeof(uv_file_s) );
//    WriteLn('--req--');
    {
      #define UV_REQ_TYPE_MAP(XX)                                                   \
      XX(REQ, req)                                                                \
      XX(CONNECT, connect)                                                        \
      XX(WRITE, write)                                                            \
      XX(SHUTDOWN, shutdown)                                                      \
      XX(UDP_SEND, udp_send)                                                      \
      XX(FS, fs)                                                                  \
      XX(WORK, work)                                                              \
      XX(GETADDRINFO, getaddrinfo)                                                \
      XX(GETNAMEINFO, getnameinfo)                                                \
    }
    {
      uv_req_type = (UV_UNKNOWN_REQ = 0, UV_REQ, UV_CONNECT, UV_WRITE_, UV_SHUTDOWN_, UV_UDP_SEND_, UV_FS, UV_WORK,
      UV_GETADDRINFO_, UV_GETNAMEINFO_, UV_ACCEPT_, UV_FS_EVENT_REQ, UV_POLL_REQ,
      UV_PROCESS_EXIT, UV_READ, UV_UDP_RECV, UV_WAKEUP, UV_SIGNAL_REQ, UV_REQ_TYPE_MAX);
    }

    assert( uv_req_size(UV_REQ) = sizeof(uv_req_t), 'all requests failed');
    assert( uv_req_size(UV_CONNECT) = sizeof(uv_connect_t), 'connect request failed');
    assert( uv_req_size(UV_WRITE_) = sizeof(uv_write_t), 'write request failed');
    assert( uv_req_size(UV_SHUTDOWN_) = sizeof(uv_shutdown_t), 'shutdown request failed');
    assert( uv_req_size(UV_UDP_SEND_) = sizeof(uv_udp_send_t), 'udp_send request faield');
    assert( uv_req_size(UV_FS) = sizeof(uv_fs_t), 'fs request failed');
    assert( uv_req_size(UV_WORK) = sizeof(uv_work_t), 'work request failed');
    assert( uv_req_size(UV_GETADDRINFO_) = sizeof(uv_getaddrinfo_t), 'addrinfo request failed');
    assert( uv_req_size(UV_GETNAMEINFO_) = sizeof(uv_getnameinfo_t), 'nameinfo request failed');
    // WriteLn('accept: ', uv_req_size(UV_ACCEPT_),' ',integer( uv_req_size(UV_ACCEPT_) ) - sizeof(uv_accept_s) );

//    WriteLn('--other--');

    assert( uv_rwlock_size = sizeof(uv_rwlock_t), 'rwlock failed');
    assert( uv_cond_size = sizeof(uv_cond_t), 'cond. failed');
    assert( uv_barrier_size = sizeof(uv_barrier_t), 'barrier failed');
    assert( uv_sem_size = sizeof(uv_sem_t), 'sem. failed');
    assert( uv_mutex_size = sizeof(uv_mutex_t), 'mutex failed');
    assert( uv_os_sock_size = sizeof(uv_os_sock_t), 'os sock failed');
    assert( uv_os_fd_size = sizeof(uv_os_fd_t), 'os fd failed');
//    WriteLn('buf:', uv_buf_size, ' ', sizeof(uv_buf_t));
    // WriteLn('tcp_accept: ', uv_tcp_accept_size, ' ', integer(uv_tcp_accept_size) - sizeof(uv_tcp_accept_t));
    // WriteLn('pipe_accept: ', uv_pipe_accept_size, ' ', integer(uv_pipe_accept_size) - sizeof(uv_pipe_accept_t));
     WriteLn('PASSED');

  except
    on E: Exception do
    begin
      Writeln('FAIL: '+E.Message);
      gen_size();
    end;
  end;
    readln;
end.

from node.pas.

pony5551 avatar pony5551 commented on July 23, 2024

You can use lazarus, or the cracked 10.3 architect version!

In b4all have cracked the device to download!

https://www.board4all.biz/threads/rad-studio-keygen-index-latest-delphi-10-3-rio.719992/

from node.pas.

pony5551 avatar pony5551 commented on July 23, 2024

//modfy code

UV_HANDLE_PRIVATE_FIELDS = record
next_closing: puv_handle_t;
flags: UInt;
end;

uv_handle_s = record
data: Pointer;
loop: puv_loop_t;
&type: uv_handle_type;
close_cb: uv_close_cb;
handle_queue: array [0 .. 1] of Pointer;

u: record
  case Integer of
    0:
      (fd: Integer;);
    1:
      (reserved: array [0 .. 3] of Pointer;);
end;

&private_fields: UV_HANDLE_PRIVATE_FIELDS;

end;

uv_handle_t = uv_handle_s;

bug fix

from node.pas.

vovach777 avatar vovach777 commented on July 23, 2024

You can use lazarus, or the cracked 10.3 architect version!

In b4all have cracked the device to download!

https://www.board4all.biz/threads/rad-studio-keygen-index-latest-delphi-10-3-rio.719992/

I know that embracodero sends reports to their servers. Then people from embracodero send letters about how to stop using the pirated version ... I do not need these problems.
This project does not support Lazarus.
Usually the problem is with the size of the structures. It is solved as standard. by CheckLib utility

from node.pas.

Related Issues (8)

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.