• Stars
    star
    775
  • Rank 56,506 (Top 2 %)
  • Language
    C
  • License
    Apache License 2.0
  • Created over 11 years ago
  • Updated 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Bare libuv bindings for lua

luv

Linux Build Status Windows Build status

libuv bindings for luajit and lua 5.1/ 5.2/ 5.3/ 5.4.

This library makes libuv available to lua scripts. It was made for the luvit project but should usable from nearly any lua project.

The library can be used by multiple threads at once. Each thread is assumed to load the library from a different lua_State. Luv will create a unique uv_loop_t for each state. You can't share uv handles between states/loops.

local uv = require('luv')

-- Create a handle to a uv_timer_t
local timer = uv.new_timer()

-- This will wait 1000ms and then continue inside the callback
timer:start(1000, 0, function ()
  -- timer here is the value we passed in before from new_timer.

  print("Awake!")

  -- You must always close your uv handles or you'll leak memory
  -- We can't depend on the GC since it doesn't know enough about libuv.
  timer:close()
end)

print("Sleeping")

-- uv.run will block and wait for all events to run.
-- When there are no longer any active handles, it will return
uv.run()

Here is an example of an TCP echo server

local uv = require('luv')

local function create_server(host, port, on_connection)

  local server = uv.new_tcp()
  server:bind(host, port)

  server:listen(128, function(err)
    -- Make sure there was no problem setting up listen
    assert(not err, err)

    -- Accept the client
    local client = uv.new_tcp()
    server:accept(client)

    on_connection(client)
  end)

  return server
end

local server = create_server("0.0.0.0", 0, function (client)

  client:read_start(function (err, chunk)

    -- Crash on errors
    assert(not err, err)

    if chunk then
      -- Echo anything heard
      client:write(chunk)
    else
      -- When the stream ends, close the socket
      client:close()
    end
  end)
end)

print("TCP Echo server listening on port " .. server:getsockname().port)

uv.run()

More examples can be found in the examples and tests folders.

Luarocks

Luv is available on Luarocks here. It can be installed via:

luarocks install luv

Note: To require luv using require 'uv' (to maintain compatibility with how luv is required in luvi) create a uv.lua with the contents:

return require 'luv'

Building From Source

To build, first install your compiler tools.

Get a Compiler

On linux this probably means gcc and make. On Ubuntu, the build-essential package is good for this.

On OSX, you probably want XCode which comes with clang and make and friends.

For windows the free Visual Studio Express works. If you get the 2013 edition, make sure to get the Windows Deskop edition. The Windows version doesn't include a working C compiler. Make sure to run all of setup including getting a free license.

Install CMake

Now install Cmake. The version in brew on OSX or most Linux package managers is good. The version on Travis CI is too old and so I use a PPA there. On windows use the installer and make sure to add cmake to your command prompt path.

Install Git

If you haven't already, install git and make sure it's in your path. This comes with XCode on OSX. On Linux it's in your package manager. For windows, use the installer at http://git-scm.com. Make sure it's available to your windows command prompt.

Clone the Code

Now open a terminal and clone the code. For windows I recommend the special developer command prompt that came with Visual Studio.

git clone https://github.com/luvit/luv.git --recursive
cd luv

Build the Code and Test

On windows I wrote a small batch file that runs the correct cmake commands and copies the output files for easy access.

C:\Code\luv> msvcbuild.bat
C:\Code\luv> luajit tests\run.lua

On unix systems, use the Makefile.

~/Code/luv> make test

This will build luv as a module library. Module libraries are plugins that are not linked into other targets.

Build with PUC Lua 5.4

By default luv is linked with LuaJIT 2.1.0-beta3. If you rather like to link luv with PUC Lua 5.4 you can run make with:

~/Code/luv> WITH_LUA_ENGINE=Lua make

Build as static library

If you want to build luv as a static library run make with:

~/Code/luv> BUILD_MODULE=OFF BUILD_STATIC_LIBS=ON make

This will create a static library libluv_a.a.

Build as shared library

If you want to build luv as a shared library run make with:

~/Code/luv> BUILD_MODULE=OFF BUILD_SHARED_LIBS=ON make

This will create a shared library libluv.so.

Build with shared libraries

By default the build system will build luv with the supplied dependencies. These are:

  • libuv
  • LuaJIT or Lua

However, if your target system has already one or more of these dependencies installed you can link luv against them.

Linking with shared libuv

The default shared library name for libuv is libuv. To link against it use:

~/Code/luv> WITH_SHARED_LIBUV=ON make
Linking with shared LuaJIT

The default shared library name for LuaJIT is libluajit-5.1. To link against it use:

~/Code/luv> LUA_BUILD_TYPE=System make
Linking with shared Lua 5.x

The default shared library name for Lua 5.x is liblua5.x. To link against it use:

~/Code/luv> LUA_BUILD_TYPE=System WITH_LUA_ENGINE=Lua make

More Repositories

1

luvit

Lua + libUV + jIT = pure awesomesauce
Lua
3,763
star
2

luvi

A project in-between luv and luvit.
C
293
star
3

lit

Toolkit for developing, sharing, and running luvit/lua programs and libraries.
Lua
239
star
4

luvit.io

Source to luvit.io
JavaScript
87
star
5

openssl

gyp version of openssl to embed in projects.
Assembly
31
star
6

awesome-luvit

A curated list of awesome Luvit frameworks, libraries and software
21
star
7

zlib

A git mirror of zlib releases
C
17
star
8

luajit-2.0

MIRROR: http://luajit.org/git/luajit-2.0.git
C
15
star
9

pcre2

Github mirror of official PCRE2 tarball
C
14
star
10

uv-ffi

Pure luajit-ffi bindings to libuv just for fun!
Lua
13
star
11

pcre

Github mirror of official PCRE tarball
C
9
star
12

luvit-releases

Prebuilt binaries for various platforms.
Perl
9
star
13

old.luvit.io

This repo is the server behind the luvit.io website.
HTML
8
star
14

lpeg

Mirror of http://www.inf.puc-rio.br/~roberto/lpeg/#download
C
8
star
15

zip-reader

A pure-lua luvit module for reading zip files.
Lua
6
star
16

gyp

mirror of http://git.chromium.org/external/gyp.git
Python
5
star
17

kernel

A simple async template language similair to dustjs and mustache (ported from c9/kernel)
Lua
5
star
18

continuable

A continuable based interface to luvit's internal APIs.
Lua
4
star
19

luvi-docker-builder

Docker scripts to build RPMs and DEBs
Makefile
3
star
20

bitop

git mirror of luajit's bitop library for normal lua
Lua
3
star
21

web-static

A static file serving middleware for the luvit web system.
Lua
3
star
22

try.luvit.io

The node server that powers the luvit repl in the browser.
JavaScript
3
star
23

ltin

LTIN encoder and decoder for luvit
Lua
3
star
24

web-router

A router middleware for the luvit web library.
Lua
1
star
25

logo

Vector and rendered version of logo for Luvit
1
star
26

luvi-binaries

1
star
27

lit-backup

Backup of the lit.luvit.io packages
1
star
28

web

An alternative http library for luvit based around continuables.
Lua
1
star
29

web-log

A logging middleware for web.
Lua
1
star
30

web-autoheaders

A middleware that helps support bits of the HTTP spec properly in web apps.
Lua
1
star