Giter VIP home page Giter VIP logo

dentaku's Introduction

Dentaku

Gem Version Build Status Code Climate

DESCRIPTION

Dentaku is a parser and evaluator for a mathematical and logical formula language that allows run-time binding of values to variables referenced in the formulas.

EXAMPLE

This is probably simplest to illustrate in code:

calculator = Dentaku::Calculator.new
calculator.evaluate('10 * 2')
=> 20

Okay, not terribly exciting. But what if you want to have a reference to a variable, and evaluate it at run-time? Here's how that would look:

calculator.evaluate('kiwi + 5', kiwi: 2)
=> 7

You can also store the variable values in the calculator's memory and then evaluate expressions against those stored values:

calculator.store(peaches: 15)
calculator.evaluate('peaches - 5')
=> 10
calculator.evaluate('peaches >= 15')
=> true

For maximum CS geekery, bind is an alias of store.

Dentaku understands precedence order and using parentheses to group expressions to ensure proper evaluation:

calculator.evaluate('5 + 3 * 2')
=> 11
calculator.evaluate('(5 + 3) * 2')
=> 16

A number of functions are also supported. Okay, the number is currently five, but more will be added soon. The current functions are if, not, round, rounddown, and roundup, and they work like their counterparts in Excel:

calculator.evaluate('if (pears < 10, 10, 20)', pears: 5)
=> 10
calculator.evaluate('if (pears < 10, 10, 20)', pears: 15)
=> 20

round, rounddown, and roundup can be called with or without the number of decimal places:

calculator.evaluate('round(8.2)')
=> 8
calculator.evaluate('round(8.2759, 2)')
=> 8.28

round and rounddown round down, while roundup rounds up.

If you're too lazy to be building calculator objects, there's a shortcut just for you:

Dentaku('plums * 1.5', plums: 2)
=> 3.0

BUILT-IN OPERATORS AND FUNCTIONS

Math: + - * / %

Logic: < > <= >= <> != = AND OR

Functions: IF NOT ROUND ROUNDDOWN ROUNDUP

EXTERNAL FUNCTIONS

I don't know everything, so I might not have implemented all the functions you need. Please implement your favorites and send a pull request! Okay, so maybe that's not feasible because:

  1. You can't be bothered to share
  2. You can't wait for me to respond to a pull request, you need it NOW()
  3. The formula is the secret sauce for your startup

Whatever your reasons, Dentaku supports adding functions at runtime. To add a function, you'll need to specify:

  • Name
  • Return type
  • Signature
  • Body

Naming can be the hardest part, so you're on your own for that.

:type specifies the type of value that will be returned, most likely :numeric, :string, or :logical.

:signature specifies the types and order of the parameters for your function.

:body is a lambda that implements your function. It is passed the arguments and should return the calculated value.

As an example, the exponentiation function takes two parameters, the mantissa and the exponent, so the token list could be defined as: [:numeric, :numeric]. Other functions might be variadic -- consider max, a function that takes any number of numeric inputs and returns the largest one. Its token list could be defined as: [:non_close_plus] (one or more tokens that are not closing parentheses). See the rules definitions for the names of token patterns you can use.

Functions can be added individually using Calculator#add_function, or en masse using Calculator#add_functions.

Here's an example of adding the exp function:

> c = Dentaku::Calculator.new
> c.add_function(
    name: :exp,
    type: :numeric,
    signature: [:numeric, :numeric],
    body: ->(mantissa, exponent) { mantissa ** exponent }
  )
> c.evaluate('EXP(3,2)')
=> 9
> c.evaluate('EXP(2,3)')
=> 8

Here's an example of adding the max function:

> c = Dentaku::Calculator.new
> c.add_function(
    name: :max,
    type: :numeric,
    signature: [:non_close_plus],
    body: ->(*args) { args.max }
  )
> c.evaluate 'MAX(5,3,9,6,2)'
=> 9

THANKS

Big thanks to ElkStone Basements for allowing me to extract and open source this code.

LICENSE

(The MIT License)

Copyright © 2012 Solomon White

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

dentaku's People

Contributors

antonversal avatar mockaroo avatar rubysolo avatar

Watchers

 avatar  avatar  avatar

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.