jmespath.lua icon indicating copy to clipboard operation
jmespath.lua copied to clipboard

A pure Lua implementation of JMESPath

============ jmespath.lua

A pure Lua implementation of JMESPath <http://jmespath.readthedocs.org/en/latest/>_.

.. code-block:: lua

local jmespath = require "jmespath"
local expression = "foo.baz"
local data = { foo = { baz = "bar" } }
local result = jmespath.search(expression, data)

jmespath.lua can be installed using LuaRocks <http://luarocks.org/>_:

::

luarocks install jmespath

Runtimes

jmespath.lua allows you to create a customized runtime using a hash of configuration options to control how jmespath.lua parses and evaluates expressions. Use the jmespath.runtime() function to create a new runtime.

.. code-block:: lua

local jmespath = require 'jmespath'
local runtime = jmespath.runtime()
runtime('foo', {foo=10}) -- outputs 10

The runtime function accepts a hash of the following configuration options:

cache Set to false to disable caching of parsing expressions into ASTs.

.. code-block:: lua

  local jmespath = require 'jmespath'
  local runtime = jmespath.runtime{cache = false}
  -- The runtime is function that accepts expression, data
  runtime('[2]', {1, 2, 3}) -- outputs 3

fn_dispatcher A function that accepts a function name as the first argument and a sequence of arguments as the second argument. This can be useful for registering new functions with the JMESPath interpreter. For example, let's say you wanted to add a custom add function that accepts a variadic number of arguments. This can be acheived by wrapping the existing default function dispatcher and adding a new function:

.. code-block:: lua

    local jmespath = require 'jmespath'

    -- Create a default dispatcher function.
    local default_dispatcher = jmespath.Functions.new()

    -- Create a new dispatcher function that wraps the default dispatcher.
    local dispatcher = function (name, args)
      if name == 'add' then
        jmespath.Functions.reduce(args, function (carry, item, index)
          if index > 1 then return carry + item end
          return item
        end)
      end
      return default_dispatcher(name, args)
    end

    local runtime = jmespath.runtime{fn_dispatcher = dispatcher}
    runtime('add(foo, `10`, `1`)', {foo=10}) -- outputs 21

Testing

jmespath.lua is tested using busted <http://olivinelabs.com/busted>_. You'll need to install busted and luafilesystem to run the tests::

make test-setup

After installing jmespath.lua, you can run the tests with the following command::

make test