nit.git
8 years agonitcc: simplify the code of trans generation into two steps
Jean Privat [Fri, 4 Dec 2015 18:47:29 +0000 (13:47 -0500)]
nitcc: simplify the code of trans generation into two steps

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agolib/json: update files generated by nitcc
Jean Privat [Fri, 4 Dec 2015 14:13:26 +0000 (09:13 -0500)]
lib/json: update files generated by nitcc

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agonitcc: move the responsibility of making the substring to the automatom
Jean Privat [Fri, 4 Dec 2015 14:03:39 +0000 (09:03 -0500)]
nitcc: move the responsibility of making the substring to the automatom

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agonitcc: move up `text` of token earlier to improve generated code
Jean Privat [Fri, 4 Dec 2015 13:59:13 +0000 (08:59 -0500)]
nitcc: move up `text` of token earlier to improve generated code

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agonitcc_rt: do not create ignored tokens
Jean Privat [Fri, 4 Dec 2015 13:58:07 +0000 (08:58 -0500)]
nitcc_rt: do not create ignored tokens

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agonitcc_rt: make the depth visitor lazy
Jean Privat [Fri, 4 Dec 2015 13:54:09 +0000 (08:54 -0500)]
nitcc_rt: make the depth visitor lazy

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agonitcc_rt: use CircularArray
Jean Privat [Fri, 4 Dec 2015 13:52:12 +0000 (08:52 -0500)]
nitcc_rt: use CircularArray

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agoMerge: Intro of nitrestful a RESTful API generator
Jean Privat [Fri, 4 Dec 2015 00:01:47 +0000 (19:01 -0500)]
Merge: Intro of nitrestful a RESTful API generator

This tool generate a Nit module which implements `Action::answer` to redirect request to a static Nit method. It checks the presence of args, their types, deserialize objects as needed and calls the target method.

Missing arguments or arguments with errors (wrong type, failed deserialization, etc.) are replaced by `null` when the corresponding parameter is `nullable`. If the parameter is non-nullable, or if there is any other error, the generated code calls `super` from `answer` for the user code to handle exceptions and errors.

With the `restful` annotation we can write a normal method with static types such as: (from the example)
~~~
# User code
class MyAction
super RestfulAction

# Method answering requests like `foo?s=some_string&i=42&b=true`
fun foo(s: String, i: Int, b: Bool): HttpResponse is restful do
var resp = new HttpResponse(200)
resp.body = "foo {s} {i} {b}"
return resp
end
...
~~~

And nitrestful will generate for use the wrapper extracting the args from the request and call the method `foo`:
~~~
# Generated code by `nitrestful`
redef class MyAction
redef fun answer(request, truncated_uri)
do
var verbs = truncated_uri.split("/")
if verbs.not_empty and verbs.first.is_empty then verbs.shift
if verbs.length != 1 then return super
var verb = verbs.first

if verb == "foo" then
var in_s = request.string_arg("s")
var out_s = in_s

var in_i = request.string_arg("i")
var out_i = deserialize_arg(in_i)

var in_b = request.string_arg("b")
var out_b = deserialize_arg(in_b)

if not out_s isa String or not out_i isa Int or not out_b isa Bool then
return super
end
return foo(out_s, out_i, out_b)
end
return super
end
end
~~~

This is an early version of this tool. More work is needed to test different types, different usages, error management, and improve the docs and examples.

close #1852

Pull-Request: #1863
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Romain Chanoir <romain.chanoir@viacesi.fr>
Reviewed-by: Jean-Philippe Caissy <jpcaissy@piji.ca>

8 years agoMerge: Stringify Bytes
Jean Privat [Thu, 3 Dec 2015 20:59:29 +0000 (15:59 -0500)]
Merge: Stringify Bytes

This PR adds some String-like functions to Bytes, along with an abstraction for Byte-based patterns.

Also, a bug was found within `Bytes::is_empty` and `FlatText` is now public since there was no real rationale to keep it private

Pull-Request: #1860
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agoMerge: new core datastructure: CircularArray
Jean Privat [Thu, 3 Dec 2015 20:59:26 +0000 (15:59 -0500)]
Merge: new core datastructure: CircularArray

`lib/core` is extended with CircularArray for an array with efficient push/pop/shift/unshift

Some number with bench_seq. I used valgrind with n=1000

push (Ir/call)
* list: 383
* unrolled list: 188
* circular array: 135
* array: 85

pop
* unroll: 180
* list: 79
* array: 66
* circ: 47

unshift
* array: 31,755 (because memmove)
* list: 385
* unroll: 322
* circ: 127

shift
* array: 36,168 (because memmove)
* unroll: 180
* list: 79
* circ: 50

insert:
* circ: 179,811 (because manual copy item by item)
* array: 27,282
* unroll: 12,235
* list: 11,500

Pull-Request: #1875
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>
Reviewed-by: Jean-Philippe Caissy <jpcaissy@piji.ca>

8 years agoMerge: Nitiwiki: fix isues with relative paths and the root href
Jean Privat [Thu, 3 Dec 2015 20:59:23 +0000 (15:59 -0500)]
Merge: Nitiwiki: fix isues with relative paths and the root href

close #1872

Can you try it @Morriar ?

Pull-Request: #1874
Reviewed-by: Alexandre Terrasa <alexandre@moz-code.org>
Reviewed-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agosrc/astvalidation: use a CircularArray instead of an Array
Jean Privat [Thu, 3 Dec 2015 19:57:09 +0000 (14:57 -0500)]
src/astvalidation: use a CircularArray instead of an Array

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agotests: extends test_seq and bench_seq with CircularArray
Jean Privat [Thu, 3 Dec 2015 19:29:21 +0000 (14:29 -0500)]
tests: extends test_seq and bench_seq with CircularArray

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agocore: add circular_array
Jean Privat [Thu, 3 Dec 2015 19:27:06 +0000 (14:27 -0500)]
core: add circular_array

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agonitiwiki/examples: update templates
Jean Privat [Thu, 3 Dec 2015 02:10:20 +0000 (21:10 -0500)]
nitiwiki/examples: update templates

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agonitiwiki: add root_href if the wiki need it
Jean Privat [Thu, 3 Dec 2015 02:09:44 +0000 (21:09 -0500)]
nitiwiki: add root_href if the wiki need it

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agonitiwiki: add a dhref helper function
Jean Privat [Thu, 3 Dec 2015 02:08:24 +0000 (21:08 -0500)]
nitiwiki: add a dhref helper function

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agoMerge: Small perf improvments of array
Jean Privat [Thu, 3 Dec 2015 19:20:48 +0000 (14:20 -0500)]
Merge: Small perf improvments of array

Factorize and improve some code related to the Array (and fix a bug)

A NativeArray::memmove method is also added, but without an intern implementation for boostrap reason.

The improvement should mainly concern client of `shift`, `unshift` and `insert` (not that many in fact).
Using the new test bench_seq (with only the array and an argument of 5000)
Before: 0m1.828s
After:  0m0.292s (-84%)

Pull-Request: #1871
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>
Reviewed-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agotests: update sav/test_new_native_alt1.res because line change in array
Jean Privat [Wed, 2 Dec 2015 20:30:02 +0000 (15:30 -0500)]
tests: update sav/test_new_native_alt1.res because line change in array

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agotests: add bench_seq
Jean Privat [Wed, 2 Dec 2015 19:09:15 +0000 (14:09 -0500)]
tests: add bench_seq

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agocore/array: provide a better implementation of `copy_to` (not native yet)
Jean Privat [Tue, 1 Dec 2015 20:36:38 +0000 (15:36 -0500)]
core/array: provide a better implementation of `copy_to` (not native yet)

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agoMerge: core/list: add length as attribute
Jean Privat [Wed, 2 Dec 2015 19:25:12 +0000 (14:25 -0500)]
Merge: core/list: add length as attribute

this should have been done a long time ago

Pull-Request: #1870
Reviewed-by: Alexis Laferrière <alexis.laf@xymus.net>
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agocore/array: fix implementation of naive copy_to to avoid overwriting
Jean Privat [Wed, 2 Dec 2015 18:22:42 +0000 (13:22 -0500)]
core/array: fix implementation of naive copy_to to avoid overwriting

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agocore/list: add length as attribute
Jean Privat [Wed, 2 Dec 2015 00:53:30 +0000 (19:53 -0500)]
core/list: add length as attribute

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agocore/array: use `copy_to` to factorize some code
Jean Privat [Tue, 1 Dec 2015 20:15:01 +0000 (15:15 -0500)]
core/array: use `copy_to` to factorize some code

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agoMerge: Adds a module for logging requests
Jean Privat [Tue, 1 Dec 2015 14:07:35 +0000 (09:07 -0500)]
Merge: Adds a module for logging requests

Title pretty much says it all

Pull-Request: #1869
Reviewed-by: Alexis Laferrière <alexis.laf@xymus.net>
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agoMerge: Modelize check visibility
Jean Privat [Mon, 30 Nov 2015 18:39:36 +0000 (13:39 -0500)]
Merge: Modelize check visibility

Forces modelize to check that the return types of methods are legal with regard to visibility.

Also fixes some code where such issues occur.

Pull-Request: #1862
Reviewed-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agoandroid: make native audio_manager access private
Jean Privat [Mon, 30 Nov 2015 16:42:16 +0000 (11:42 -0500)]
android: make native audio_manager access private

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agotests: update sav because changes in visibility
Jean Privat [Sun, 29 Nov 2015 01:24:52 +0000 (20:24 -0500)]
tests: update sav because changes in visibility

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agotests: improve base_prot_sig
Jean Privat [Sun, 29 Nov 2015 01:17:20 +0000 (20:17 -0500)]
tests: improve base_prot_sig

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agomodelize: always check visibility of return types
Jean Privat [Sun, 29 Nov 2015 00:49:54 +0000 (19:49 -0500)]
modelize: always check visibility of return types

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agosrc/rta: import csv publicly.
Jean Privat [Sun, 29 Nov 2015 01:14:08 +0000 (20:14 -0500)]
src/rta: import csv publicly.

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agonitc/ffi: make private some top-level methods
Jean Privat [Sun, 29 Nov 2015 01:13:35 +0000 (20:13 -0500)]
nitc/ffi: make private some top-level methods

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agocore/text: Text::substrings is private
Jean Privat [Sun, 29 Nov 2015 01:12:56 +0000 (20:12 -0500)]
core/text: Text::substrings is private

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agocore: remove useless return types
Jean Privat [Sun, 29 Nov 2015 01:12:30 +0000 (20:12 -0500)]
core: remove useless return types

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agoMerge: mongodb: allow client to set `skip` and `limit` when calling `find`
Jean Privat [Mon, 30 Nov 2015 15:12:00 +0000 (10:12 -0500)]
Merge: mongodb: allow client to set `skip` and `limit` when calling `find`

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

Pull-Request: #1868
Reviewed-by: Romain Chanoir <romain.chanoir@viacesi.fr>
Reviewed-by: Jean Privat <jean@pryen.org>

8 years agoMerge: github: save Github events ids.
Jean Privat [Mon, 30 Nov 2015 15:09:24 +0000 (10:09 -0500)]
Merge: github: save Github events ids.

Save event IDs so the future loader will know it will not have to process it again.

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

Pull-Request: #1867
Reviewed-by: Romain Chanoir <romain.chanoir@viacesi.fr>
Reviewed-by: Jean Privat <jean@pryen.org>

8 years agoMerge: mongo: fixes more crashes from mongodb api
Jean Privat [Mon, 30 Nov 2015 15:09:20 +0000 (10:09 -0500)]
Merge: mongo: fixes more crashes from mongodb api

This PR add two more fixes since #1855 :
* use `FinalizableOnce` instead of `Finalizable`
* copy bson structs returned by `mongoc_cursor_item`

Pull-Request: #1866
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Romain Chanoir <romain.chanoir@viacesi.fr>

8 years agoMerge: Benitlux: fix separator between beers name and description
Jean Privat [Mon, 30 Nov 2015 15:09:14 +0000 (10:09 -0500)]
Merge: Benitlux: fix separator between beers name and description

Pull-Request: #1861
Reviewed-by: Jean Privat <jean@pryen.org>

8 years agoMerge: console: add simple progress bar that refreshes itself
Jean Privat [Mon, 30 Nov 2015 15:09:08 +0000 (10:09 -0500)]
Merge: console: add simple progress bar that refreshes itself

Example:

~~~nit
import console

var pb = new TermProgress(10, 0)

for i in [1..10] do
pb.update(i)
end
~~~

Will display something like:
~~~sh
20% [==========================>                                       ]
~~~

See documentation for more info about the progress bar.

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

Pull-Request: #1859
Reviewed-by: Jean Privat <jean@pryen.org>

8 years agoMerge: Add error instead of segfault on gethostbyname fail
Jean Privat [Mon, 30 Nov 2015 15:09:05 +0000 (10:09 -0500)]
Merge: Add error instead of segfault on gethostbyname fail

Signed-off-by: Philippe Pepos Petitclerc <ppeposp@gmail.com>

Pull-Request: #1857
Reviewed-by: Jean-Philippe Caissy <jpcaissy@piji.ca>
Reviewed-by: Jean Privat <jean@pryen.org>

8 years agoAdds a module for logging requests
BlackMinou [Sun, 29 Nov 2015 23:06:34 +0000 (18:06 -0500)]
Adds a module for logging requests

Signed-off-by: BlackMinou <romain.chanoir@viacesi.fr>

8 years agomongodb: fix iterator crashes
Alexandre Terrasa [Sun, 29 Nov 2015 22:42:30 +0000 (17:42 -0500)]
mongodb: fix iterator crashes

Before this PR, the iterator `is_ok` status relied on `mongoc_cursor_more` that can return
true even if the iterator is terminated.
This PR fixes the problem by using the result of `mongoc_cursor_next` instead.

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agomongodb: allow client to set `skip` and `limit` when calling `find`
Alexandre Terrasa [Sun, 29 Nov 2015 20:44:14 +0000 (15:44 -0500)]
mongodb: allow client to set `skip` and `limit` when calling `find`

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agomongodb: fixes crash when the return of `mongoc_cursor_current` was freed
Alexandre Terrasa [Sun, 29 Nov 2015 20:35:14 +0000 (15:35 -0500)]
mongodb: fixes crash when the return of `mongoc_cursor_current` was freed

As explained by the documentation (that I should have read more thoroughly...),
`bson_t` structures allocated by the `mongoc_cursor_current` function should not be freed by the user.

Before this commit, the `bson_t` returned by `mongoc_cursor_current` where left as this then freed
by the nit GC.

This commit makes the `current` method to return a copy of the `bson_t` struct so
it can be freed safely by the GC later.

And... this is why I fear and hate the C programming language... :)

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agogithub: save Github events ids.
Alexandre Terrasa [Sun, 29 Nov 2015 09:00:18 +0000 (04:00 -0500)]
github: save Github events ids.

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agoshare: add man for nitrestful
Alexis Laferrière [Sun, 29 Nov 2015 13:47:59 +0000 (08:47 -0500)]
share: add man for nitrestful

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agotests: skip nitrestful in niti and nitvm
Alexis Laferrière [Sun, 29 Nov 2015 12:38:17 +0000 (07:38 -0500)]
tests: skip nitrestful in niti and nitvm

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agocontrib/jwrapper: use of nitserial does not need the package scope
Alexis Laferrière [Sun, 29 Nov 2015 12:37:54 +0000 (07:37 -0500)]
contrib/jwrapper: use of nitserial does not need the package scope

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agocontrib/jwrapper: rename NitModule to NitModuleRef
Alexis Laferrière [Sun, 29 Nov 2015 12:37:30 +0000 (07:37 -0500)]
contrib/jwrapper: rename NitModule to NitModuleRef

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agotests: add sav for nitrestful
Alexis Laferrière [Sun, 29 Nov 2015 05:06:52 +0000 (00:06 -0500)]
tests: add sav for nitrestful

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agolib/nitcorn: add example and test for the restful annotation
Alexis Laferrière [Sun, 29 Nov 2015 01:10:15 +0000 (20:10 -0500)]
lib/nitcorn: add example and test for the restful annotation

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agosrc: intro the nitrestful tool
Alexis Laferrière [Sun, 29 Nov 2015 01:09:17 +0000 (20:09 -0500)]
src: intro the nitrestful tool

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agolib/nitcorn: intro the restful annotation an support module
Alexis Laferrière [Sun, 29 Nov 2015 00:56:07 +0000 (19:56 -0500)]
lib/nitcorn: intro the restful annotation an support module

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agolib/gen_nit: move NitModule from nitserial to gen_nit
Alexis Laferrière [Sun, 29 Nov 2015 00:58:10 +0000 (19:58 -0500)]
lib/gen_nit: move NitModule from nitserial to gen_nit

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agosrc/serialization: remove already resolved TODO
Alexis Laferrière [Sun, 29 Nov 2015 00:58:29 +0000 (19:58 -0500)]
src/serialization: remove already resolved TODO

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agomongodb: use FinalizableOnce instead of Finalizable
Alexandre Terrasa [Sun, 29 Nov 2015 03:32:57 +0000 (22:32 -0500)]
mongodb: use FinalizableOnce instead of Finalizable

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agolib/core: Added `join_bytes` top-level function to join an array of `Bytes`
Lucas Bajolet [Sun, 29 Nov 2015 02:09:27 +0000 (21:09 -0500)]
lib/core: Added `join_bytes` top-level function to join an array of `Bytes`

Signed-off-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agolib/core: Make FlatText public
Lucas Bajolet [Sun, 29 Nov 2015 00:46:56 +0000 (19:46 -0500)]
lib/core: Make FlatText public

Signed-off-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agolib/core: Stringify lib/bytes
Lucas Bajolet [Sat, 28 Nov 2015 23:57:31 +0000 (18:57 -0500)]
lib/core: Stringify lib/bytes

Signed-off-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agoconsole: add simple progress bar that refresh itself
Alexandre Terrasa [Sun, 29 Nov 2015 00:08:04 +0000 (19:08 -0500)]
console: add simple progress bar that refresh itself

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agoMerge: github/api: avoid crashes with unparsable responses
Jean Privat [Sat, 28 Nov 2015 23:04:11 +0000 (18:04 -0500)]
Merge: github/api: avoid crashes with unparsable responses

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

Pull-Request: #1856
Reviewed-by: Jean Privat <jean@pryen.org>

8 years agoMerge: mongodb: pin non-native instances to avoid GC crashes
Jean Privat [Sat, 28 Nov 2015 23:04:09 +0000 (18:04 -0500)]
Merge: mongodb: pin non-native instances to avoid GC crashes

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

Pull-Request: #1855
Reviewed-by: Jean Privat <jean@pryen.org>

8 years agoMerge: nitiwiki: fix multiple trails
Jean Privat [Sat, 28 Nov 2015 23:04:07 +0000 (18:04 -0500)]
Merge: nitiwiki: fix multiple trails

Fix a bug where independent trails could have been merged into a big one.

Pull-Request: #1854
Reviewed-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agoAdd error instead of segfault on gethostbyname fail
Philippe Pepos Petitclerc [Sat, 28 Nov 2015 22:58:32 +0000 (17:58 -0500)]
Add error instead of segfault on gethostbyname fail

Signed-off-by: Philippe Pepos Petitclerc <ppeposp@gmail.com>

8 years agogithub/api: avoid crashes with unparsable responses
Alexandre Terrasa [Sat, 28 Nov 2015 21:50:46 +0000 (16:50 -0500)]
github/api: avoid crashes with unparsable responses

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agomongodb: pin non-native instances to avoid GC crashes
Alexandre Terrasa [Sat, 28 Nov 2015 21:50:18 +0000 (16:50 -0500)]
mongodb: pin non-native instances to avoid GC crashes

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agonitiwiki: extends example with a second independent trail
Jean Privat [Sat, 28 Nov 2015 21:11:24 +0000 (16:11 -0500)]
nitiwiki: extends example with a second independent trail

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agonitiwiki: fix a bug where multiple independent trails could have been merged
Jean Privat [Sat, 28 Nov 2015 21:10:35 +0000 (16:10 -0500)]
nitiwiki: fix a bug where multiple independent trails could have been merged

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agoMerge: nitrpg: misc fixes
Jean Privat [Sat, 28 Nov 2015 20:08:25 +0000 (15:08 -0500)]
Merge: nitrpg: misc fixes

Many fixes for NitRPG in prepatation for the next PR wich introduces the use of MongoDB.

Pull-Request: #1761
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agonitrpg: fix PlayerXCommits achievement trigger
Alexandre Terrasa [Mon, 10 Aug 2015 22:24:18 +0000 (18:24 -0400)]
nitrpg: fix PlayerXCommits achievement trigger

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agonitrpg: events and achievements have owners
Alexandre Terrasa [Thu, 25 Jun 2015 02:39:46 +0000 (22:39 -0400)]
nitrpg: events and achievements have owners

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agonitrpg: better organization for stats objects
Alexandre Terrasa [Thu, 25 Jun 2015 02:38:24 +0000 (22:38 -0400)]
nitrpg: better organization for stats objects

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agonitrpg: use names as keys
Alexandre Terrasa [Thu, 25 Jun 2015 02:37:22 +0000 (22:37 -0400)]
nitrpg: use names as keys

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agoMerge: Simple threadpool implementation
Jean Privat [Sat, 28 Nov 2015 17:14:51 +0000 (12:14 -0500)]
Merge: Simple threadpool implementation

A really basic implementation of a threadpool, using an array as queue for now.

Pull-Request: #1848
Reviewed-by: Alexis Laferrière <alexis.laf@xymus.net>
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agolib/core/bytes: Fixed broken `is_empty`
Lucas Bajolet [Sat, 28 Nov 2015 16:58:08 +0000 (11:58 -0500)]
lib/core/bytes: Fixed broken `is_empty`

Signed-off-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agoSkipping threadpool_example
BlackMinou [Fri, 27 Nov 2015 20:57:45 +0000 (15:57 -0500)]
Skipping threadpool_example

Signed-off-by: BlackMinou <romain.chanoir@viacesi.fr>

8 years agosimple threadpool implementation
BlackMinou [Tue, 24 Nov 2015 16:01:15 +0000 (11:01 -0500)]
simple threadpool implementation

Signed-off-by: BlackMinou <romain.chanoir@viacesi.fr>

8 years agoMerge: Bytes update
Jean Privat [Sat, 28 Nov 2015 14:13:02 +0000 (09:13 -0500)]
Merge: Bytes update

Various updates to `Bytes`, added a new escaping method taking into account \u and \x escape sequences

Also added a add_char method to `Bytes` for convenience.

`to_bytes` in Text now has an optional length parameter for those who wish not to rely on `cstring_length` (or did not want to pay the cost) for the length in bytes.

Pull-Request: #1850
Reviewed-by: Jean Privat <jean@pryen.org>

8 years agocontrib/benitlux_daily: use only "- " to separate the name from the description
Alexis Laferrière [Fri, 27 Nov 2015 13:47:25 +0000 (08:47 -0500)]
contrib/benitlux_daily: use only "- " to separate the name from the description

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agocontrib/benitlux_daily: add verbose option for debug
Alexis Laferrière [Fri, 27 Nov 2015 13:46:14 +0000 (08:46 -0500)]
contrib/benitlux_daily: add verbose option for debug

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agolib/core: Added escaping method to Bytes for use in compiler
Lucas Bajolet [Fri, 27 Nov 2015 16:10:49 +0000 (11:10 -0500)]
lib/core: Added escaping method to Bytes for use in compiler

Signed-off-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agoMerge: Prefix grammar
Jean Privat [Fri, 27 Nov 2015 21:00:31 +0000 (16:00 -0500)]
Merge: Prefix grammar

Update of the grammar to support the enhancement of literal strings and chars via prefixes (see issue #1734)

Pull-Request: #1851
Reviewed-by: Jean Privat <jean@pryen.org>

8 years agolib/core: Added copy method `to_bytes_with_copy` in Text
Lucas Bajolet [Fri, 27 Nov 2015 16:07:10 +0000 (11:07 -0500)]
lib/core: Added copy method `to_bytes_with_copy` in Text

Signed-off-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agolib/core: Added `add_char` method to `Bytes`
Lucas Bajolet [Fri, 27 Nov 2015 16:06:29 +0000 (11:06 -0500)]
lib/core: Added `add_char` method to `Bytes`

Signed-off-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agolib/markdown: Fixed spacing issue in which a `then` was mistaken for a suffix
Lucas Bajolet [Fri, 27 Nov 2015 16:54:14 +0000 (11:54 -0500)]
lib/markdown: Fixed spacing issue in which a `then` was mistaken for a suffix

Signed-off-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agoparser: Regenerated tables for previous commit
Lucas Bajolet [Fri, 27 Nov 2015 16:15:58 +0000 (11:15 -0500)]
parser: Regenerated tables for previous commit

Signed-off-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agoparser: Updated grammar to support prefixed and suffixed `String` and `Char`
Lucas Bajolet [Fri, 27 Nov 2015 16:15:39 +0000 (11:15 -0500)]
parser: Updated grammar to support prefixed and suffixed `String` and `Char`

Signed-off-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agoMerge: nitrpg: update the userscript to the new github layout and fix todos
Jean Privat [Thu, 26 Nov 2015 18:52:33 +0000 (13:52 -0500)]
Merge: nitrpg: update the userscript to the new github layout and fix todos

Basically a rewrite, but it works on my computer

Pull-Request: #1849
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agoMerge: svg_to_icons: add an option to generate icons with different names
Jean Privat [Thu, 26 Nov 2015 18:52:31 +0000 (13:52 -0500)]
Merge: svg_to_icons: add an option to generate icons with different names

Pull-Request: #1847
Reviewed-by: Jean Privat <jean@pryen.org>

8 years agoMerge: Improve the doc of `CurlHTTPRequest`
Jean Privat [Thu, 26 Nov 2015 18:52:29 +0000 (13:52 -0500)]
Merge: Improve the doc of `CurlHTTPRequest`

This is still far from an ideal doc but its better than nothing.

This doc will be useful for #1845.

Pull-Request: #1846
Reviewed-by: Jean Privat <jean@pryen.org>

8 years agolib/neo4j: fix conflict on `data` in custom implementations of post requests
Alexis Laferrière [Wed, 25 Nov 2015 20:22:25 +0000 (15:22 -0500)]
lib/neo4j: fix conflict on `data` in custom implementations of post requests

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agonitrpg: update the userscript to the new github layout and fix todos
Jean Privat [Wed, 25 Nov 2015 19:48:31 +0000 (14:48 -0500)]
nitrpg: update the userscript to the new github layout and fix todos

Signed-off-by: Jean Privat <jean@pryen.org>

8 years agoMerge: model: fix `try_get_primitive_method`
Jean Privat [Wed, 25 Nov 2015 19:22:51 +0000 (14:22 -0500)]
Merge: model: fix `try_get_primitive_method`

The implementation was an old code that did not use modern facilities,
moreover it was broken anyway.

Reported-by: Lucas Bajolet <r4pass@hotmail.com>

Pull-Request: #1844
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>
Reviewed-by: Romain Chanoir <romain.chanoir@viacesi.fr>

8 years agolib/curl: better doc for `CurlHTTPRequest`
Alexis Laferrière [Wed, 25 Nov 2015 18:58:50 +0000 (13:58 -0500)]
lib/curl: better doc for `CurlHTTPRequest`

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agolib/curl: `CurlHTTPRequest::datas` to `data`
Alexis Laferrière [Wed, 25 Nov 2015 18:29:30 +0000 (13:29 -0500)]
lib/curl: `CurlHTTPRequest::datas` to `data`

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agomodel: fix `try_get_primitive_method`
Jean Privat [Wed, 25 Nov 2015 16:50:04 +0000 (11:50 -0500)]
model: fix `try_get_primitive_method`

The implementation was an old code that did not use modern facilities,
moreover it was broken anyway.

Reported-by: Lucas Bajolet <r4pass@hotmail.com>
Signed-off-by: Jean Privat <jean@pryen.org>

8 years agocontrib/inkscape_tools: add option to generate icons with different names
Alexis Laferrière [Sun, 22 Nov 2015 22:52:25 +0000 (17:52 -0500)]
contrib/inkscape_tools: add option to generate icons with different names

Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

8 years agoMerge: Tests: cleanup old_style_init in some tests
Jean Privat [Mon, 23 Nov 2015 20:57:53 +0000 (15:57 -0500)]
Merge: Tests: cleanup old_style_init in some tests

In preparation of a future PR on constructors (cf. #1800), this is a simple cleanup (and bugfix) of some tests.

Pull-Request: #1842
Reviewed-by: Alexis Laferrière <alexis.laf@xymus.net>
Reviewed-by: Romain Chanoir <romain.chanoir@viacesi.fr>

8 years agotests: update init in (de)serialization
Jean Privat [Mon, 23 Nov 2015 18:37:43 +0000 (13:37 -0500)]
tests: update init in (de)serialization

also fix bug where `n` was not correctly set (new constructors powa!)

Signed-off-by: Jean Privat <jean@pryen.org>