nit.git
8 years agonitiwiki: add WikiEntry::href to have things independent from the root_url
Jean Privat [Fri, 12 Jun 2015 15:08:45 +0000 (11:08 -0400)]
nitiwiki: add WikiEntry::href to have things independent from the root_url

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

8 years agonitiwiki: add `WikiEntry::load_template` for local macros
Jean Privat [Fri, 12 Jun 2015 14:36:58 +0000 (10:36 -0400)]
nitiwiki: add `WikiEntry::load_template` for local macros

This way, new macro relative to an entry can exist (article name, dates, whatever)

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

8 years agoMerge: Kill big vararg in parser
Jean Privat [Fri, 12 Jun 2015 02:36:55 +0000 (22:36 -0400)]
Merge: Kill big vararg in parser

In `parser::Parser::build_reduce_table` an array is allocated with `.with_items` that takes a vararg.

The vararg used is quite large (1116 elements) and this cause that the generated C code takes 30m to compile with clang-3.6 if -O2 is used; it is likely a regression in llvm since the same code takes appreciatively 1s with clang-3.5 (and with gcc).

Unfortunately, clang-3.6 is currently provided by Apple to MacOS X users.

The proposed solution is to allocate the array then use a sequence of `add`. The generated C code is more complex but clang-3.6 can compile it.

Close #1498 (once c_src is regenerated)

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

8 years agoMerge: compiler: NativeString is a char* to please C library.
Jean Privat [Fri, 12 Jun 2015 02:36:48 +0000 (22:36 -0400)]
Merge: compiler: NativeString is a char* to please C library.

Commit 6b52ea3d5ca77dbcc6edbbf71c1aa9419a019bac  on chars and string changed the ctype of NativeString to `unsigned char*`. This was the cause of C warnings `-Wpointer-sign` because `unsigned char*` is not a subtype of the universally used `char*` that is activated by default on clang.

So the change is reverted and NativeString become again `char*` (note that Byte and Char ctypes are not reverted)

close #1499

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

8 years agoMerge: example: add boolean usage example from rosetta code
Jean Privat [Fri, 12 Jun 2015 02:36:42 +0000 (22:36 -0400)]
Merge: example: add boolean usage example from rosetta code

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

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

8 years agoMerge: nitunit: use the Markdown parser from `lib/markdown`
Jean Privat [Fri, 12 Jun 2015 02:36:11 +0000 (22:36 -0400)]
Merge: nitunit: use the Markdown parser from `lib/markdown`

Since the introduction of `nitmd`, `nitunit` was still using the old `docdown` parser.
This PR do the migration.

There will be a lot of unrecognized tests since the old paerser allowed between four and five spaces before a nitunit, the new one enforce the rule of 5 (couting the space after the `#` comment token).

Before:
~~~nit
#    assert true
~~~
Was recognized as nitunit, but if you ignore the `# ` string as prefix of each comment, there is only 3 spaces before the nitunit.

After:
~~~nit
#     assert true
~~~
We need 4 spaces before the nitunit plus the `# ` prefix, this gives us 5 spaces.

Note, this is already the behavior followed by Nitdoc.

Should fix #1331

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

8 years agoMerge: nitrpg: remove points if a PR is closed without merge
Jean Privat [Thu, 11 Jun 2015 21:44:52 +0000 (17:44 -0400)]
Merge: nitrpg: remove points if a PR is closed without merge

So @ventilooo won't cheat again!

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

Pull-Request: #1477
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: ArthurDelamare <arthur.delamare@viacesi.fr>

8 years agoMerge: rosetta_code: sha1
Jean Privat [Thu, 11 Jun 2015 21:44:47 +0000 (17:44 -0400)]
Merge: rosetta_code: sha1

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

Pull-Request: #1456
Reviewed-by: Alexandre Terrasa <alexandre@moz-code.org>
Reviewed-by: ArthurDelamare <arthur.delamare@viacesi.fr>

8 years agoMerge: Nitiwiki next
Jean Privat [Thu, 11 Jun 2015 20:24:10 +0000 (16:24 -0400)]
Merge: Nitiwiki next

Some fixes for nitiwiki in prevision for the nitlanguage.org site migration and the resolution of #824.

Do not consider b481cea since it belongs to #1368 (and break the loader)

Feature summary:
* ini accept array notation
* customizable sidebar content
* customizable sidebar position
* wikilinks support external links
* better search by title
* better search by path
* make breadcrumbs and summaries optionnal
* add link to github for last_changes and edit mode

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

8 years agoparser: regen parser.nit without the big vararg
Jean Privat [Thu, 11 Jun 2015 19:44:18 +0000 (15:44 -0400)]
parser: regen parser.nit without the big vararg

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

8 years agoparser: `build_reduce_table` uses a sequence of add instead of a `.with_items`
Jean Privat [Thu, 11 Jun 2015 19:43:33 +0000 (15:43 -0400)]
parser: `build_reduce_table` uses a sequence of add instead of a `.with_items`

The big vararg generated produce C code that takes 30m to compile with
clang-3.6 because of a regression (the same code takes less than 1s with
clang-3.5).

Unfortunately, clang-3.6 is currently provided by Apple to MacOS X users.

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

8 years agocompiler: NativeString is a char* to please C library.
Jean Privat [Thu, 11 Jun 2015 17:15:07 +0000 (13:15 -0400)]
compiler: NativeString is a char* to please C library.

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

8 years agobenchmarks: add benches for nitunit
Alexandre Terrasa [Wed, 10 Jun 2015 05:43:56 +0000 (01:43 -0400)]
benchmarks: add benches for nitunit

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

8 years agolib: fix whitespaces in misc files
Alexandre Terrasa [Wed, 13 May 2015 23:48:56 +0000 (19:48 -0400)]
lib: fix whitespaces in misc files

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

8 years agolib: fix nitunits indentation
Alexandre Terrasa [Wed, 13 May 2015 23:48:10 +0000 (19:48 -0400)]
lib: fix nitunits indentation

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

8 years agolib: fix nitish in nitunits
Alexandre Terrasa [Wed, 13 May 2015 23:45:16 +0000 (19:45 -0400)]
lib: fix nitish in nitunits

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

8 years agosrc: remove unused docdown parser and test
Alexandre Terrasa [Mon, 11 May 2015 16:37:42 +0000 (12:37 -0400)]
src: remove unused docdown parser and test

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

8 years agonitunit: update tests
Alexandre Terrasa [Mon, 11 May 2015 17:42:58 +0000 (13:42 -0400)]
nitunit: update tests

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

8 years agonitunit: use the Markdown parser from `lib/markdown` instead of `src/docdown`
Alexandre Terrasa [Mon, 25 May 2015 16:54:23 +0000 (12:54 -0400)]
nitunit: use the Markdown parser from `lib/markdown` instead of `src/docdown`

Fixes #1331

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

8 years agolib/markdown: fix multiple fence in the same comment
Alexandre Terrasa [Mon, 11 May 2015 17:31:26 +0000 (13:31 -0400)]
lib/markdown: fix multiple fence in the same comment

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

8 years agoexample: add boolean usage example from rosetta code
Alexandre Terrasa [Wed, 10 Jun 2015 19:37:22 +0000 (15:37 -0400)]
example: add boolean usage example from rosetta code

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

8 years agonitrpg: remove points if a PR is closed without merge
Alexandre Terrasa [Wed, 10 Jun 2015 17:52:17 +0000 (13:52 -0400)]
nitrpg: remove points if a PR is closed without merge

So @ventilooo won't cheat again!

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

8 years agorosetta_code: sha1
Jean Privat [Wed, 10 Jun 2015 14:29:07 +0000 (10:29 -0400)]
rosetta_code: sha1

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

8 years agoMerge: Activate C warnings in FFI code and revert `NativeString` to `char *`
Jean Privat [Wed, 10 Jun 2015 01:47:19 +0000 (21:47 -0400)]
Merge: Activate C warnings in FFI code and revert `NativeString` to `char *`

The revert commit is partial, it affects only NativeString and does not touch Char.

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

8 years agoMerge: Work on the Curl module
Jean Privat [Wed, 10 Jun 2015 01:47:05 +0000 (21:47 -0400)]
Merge: Work on the Curl module

Changes:
* Simplify callbacks so they do not break light FFI only engines.
* Remove about 8 classes and 3 C structures.
* Remove the custom implementation of NativeFile.
* Update style to the latest best practices. Note that it was one of the first large module based on the FFI, a lot has changed since then.
* Revamp and rename CurlMail, its API is now nicer to use:
~~~
import curl

var mail = new CurlMail("sender@example.org", ["to@example.org"], cc=["bob@example.org"])

mail.subject = "Hello From My Nit Program"
mail.body = "<h1>Here you can write HTML stuff.</h1>"

mail.headers_body["Content-Type:"] = """text/html; charset="UTF-8""""
mail.headers_body["Content-Transfer-Encoding:"] = "quoted-printable"

# Set mail server
var error = mail.set_outgoing_server("smtps://smtp.example.org:465", "user@example.org", "mypassword")
assert error == null

# Send
error = mail.execute
assert error == null
~~~

Thoughts on what's to do next:

* Extract the request API so Curl is only an implementation. The abstract API could also be implemented on Android where we can use Java services instead.
* Clean up `CurlHTTPRequest`.
* Use `Error` and differentiate between internal Curl errors and normal transfert failures.
* Replace the C structure linked to reading data and add tests for its usage.
* Add dead simple services: `Text::download: nullable String`, `Text::download_to_file(filepath: Text)`, `Text::download_to_stream(stream: Writer)` or something like that.
* Make more classes of native_curl private as we cannot make the module private because it defines the user-customizable callbacks. Some modules (neo4j) use what would be private, so it requires updating them also.

---

Should fix #936 and other problems when importing but not using Curl.
Also helps #1443 correctly report unsupported programs.

Pull-Request: #1445
Reviewed-by: Alexandre Terrasa <alexandre@moz-code.org>
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>
Reviewed-by: Jean Privat <jean@pryen.org>

8 years agoMerge: Add some collections for java/collections.nit
Jean Privat [Wed, 10 Jun 2015 01:46:52 +0000 (21:46 -0400)]
Merge: Add some collections for java/collections.nit

This PR complete the java collections : ``` int[], short[], long[], boolean[], byte[], char[] ```

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

8 years agoMerge: Attribute and autoinit annotations
Jean Privat [Wed, 10 Jun 2015 01:46:42 +0000 (21:46 -0400)]
Merge: Attribute and autoinit annotations

A big set of loosely coupled but related changed on the annotations on attributes and methods.
Here is a summary of the changes on the user-side:

* No more special case for the kind of classes, so you can use `autoinit` in interfaces.
* Explicit annotation `autoinit` is understood on attributes and is the default on value-less concrete attribute.
* Abstract attributes are `noautoinit` by default, if `autoinit` is given, it is applied on the setter. This way abstract attributes are basically just a couple of getter-setter. close #1311

This way there is less special cases and behaviors. Still more work is required to finish #1322.

Pull-Request: #1433
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>
Reviewed-by: Romain Chanoir <chanoir.romain@courrier.uqam.ca>
Reviewed-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agoMerge: nitvm: Basic blocks generation and SSA-algorithm
Jean Privat [Wed, 10 Jun 2015 01:46:34 +0000 (21:46 -0400)]
Merge: nitvm: Basic blocks generation and SSA-algorithm

This PR introduces a SSA-algorithm implementation in the nitvm.

First, basic blocks are generated. A basic block is a sequence of instructions without a jump inside.
In this version, basic blocks are generated from the AST and so they contain only the first instruction and the last one.

Then, SSA-algorithm (Single-Static Assignment) is implemented. In SSA algorithm, variables are renamed to have only one assignment per variable.
Each time an assignment is made, a new version of a variable is made.

Some variables (phi-functions) have several assignment and so, several dependances.

The basic block generation and SSA are computed for each method in a lazy way in the nitvm.
The main objective of SSA is to give the dependances for each variable (this will be used in further PR).
This module also collect all object-mechanisms sites during the visit of methods.

Pull-Request: #1425
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agoMerge: example: add 24 game task of Rosetta code
Jean Privat [Wed, 10 Jun 2015 01:46:20 +0000 (21:46 -0400)]
Merge: example: add 24 game task of Rosetta code

Rosetta code example of 24 game
<http://rosettacode.org/wiki/24_game>

Pull-Request: #1372
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Ait younes Mehdi Adel <overpex@gmail.com>
Reviewed-by: Alexis Laferrière <alexis.laf@xymus.net>
Reviewed-by: Alexandre Terrasa <alexandre@moz-code.org>
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agoMerge: file: fix `simplify_path` behavior for path starting with `.`.
Jean Privat [Wed, 10 Jun 2015 01:46:14 +0000 (21:46 -0400)]
Merge: file: fix `simplify_path` behavior for path starting with `.`.

Before this PR `./` was simplified in `/` which was wrong.

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

Pull-Request: #1368
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Romain Chanoir <chanoir.romain@courrier.uqam.ca>
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>

8 years agoMerge: Date Lib
Jean Privat [Wed, 10 Jun 2015 01:46:08 +0000 (21:46 -0400)]
Merge: Date Lib

les fonctions ce trouve dans le module date_f.nit.

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

8 years agolib/markdown: fix missing space after wikilinks token
Alexandre Terrasa [Sat, 6 Jun 2015 20:47:01 +0000 (16:47 -0400)]
lib/markdown: fix missing space after wikilinks token

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

8 years agonitiwiki: add github url for last changes and edit mode
Alexandre Terrasa [Sat, 6 Jun 2015 20:09:31 +0000 (16:09 -0400)]
nitiwiki: add github url for last changes and edit mode

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

8 years agonitiwiki: also search relative patch in current section
Alexandre Terrasa [Sat, 6 Jun 2015 20:09:05 +0000 (16:09 -0400)]
nitiwiki: also search relative patch in current section

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

8 years agonitiwiki: search titles in lower case
Alexandre Terrasa [Sat, 6 Jun 2015 20:08:19 +0000 (16:08 -0400)]
nitiwiki: search titles in lower case

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

8 years agonitiwiki: make breadcrumbs optional
Alexandre Terrasa [Sat, 6 Jun 2015 19:10:06 +0000 (15:10 -0400)]
nitiwiki: make breadcrumbs optional

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

8 years agonitiwiki: make summary optional
Alexandre Terrasa [Sat, 6 Jun 2015 19:09:45 +0000 (15:09 -0400)]
nitiwiki: make summary optional

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

8 years agonitiwiki: allow absolute url in wikilinks
Alexandre Terrasa [Sat, 6 Jun 2015 18:55:54 +0000 (14:55 -0400)]
nitiwiki: allow absolute url in wikilinks

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

8 years agonitiwiki: introduce customizable sidebar
Alexandre Terrasa [Tue, 2 Jun 2015 04:47:02 +0000 (00:47 -0400)]
nitiwiki: introduce customizable sidebar

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

8 years agonitiwiki: make all wiki entries able to parse markdown
Alexandre Terrasa [Tue, 2 Jun 2015 04:46:42 +0000 (00:46 -0400)]
nitiwiki: make all wiki entries able to parse markdown

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

8 years agonitiwiki: fix link lookup on root
Alexandre Terrasa [Tue, 2 Jun 2015 04:45:25 +0000 (00:45 -0400)]
nitiwiki: fix link lookup on root

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

8 years agoini: accept array notation
Alexandre Terrasa [Tue, 2 Jun 2015 03:26:12 +0000 (23:26 -0400)]
ini: accept array notation

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

8 years agoini: show error instead crashing on bad formatting
Alexandre Terrasa [Tue, 2 Jun 2015 03:05:09 +0000 (23:05 -0400)]
ini: show error instead crashing on bad formatting

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

8 years agonitiwiki: change position of sidebar from config
Alexandre Terrasa [Tue, 2 Jun 2015 02:50:59 +0000 (22:50 -0400)]
nitiwiki: change position of sidebar from config

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

8 years agonitvm: Using SSA module in the nitvm
Julien Pagès [Wed, 3 Jun 2015 18:35:06 +0000 (20:35 +0200)]
nitvm: Using SSA module in the nitvm

Signed-off-by: Julien Pagès <julien.projet@gmail.com>

8 years agonitvm: A method compile offers a unique entry point for compilation-like mechanisms
Julien Pagès [Fri, 29 May 2015 13:57:53 +0000 (15:57 +0200)]
nitvm: A method compile offers a unique entry point for compilation-like mechanisms

Signed-off-by: Julien Pagès <julien.projet@gmail.com>

8 years agofile: fix `simplify_path` behavior for path starting with `.`.
Alexandre Terrasa [Tue, 9 Jun 2015 17:20:34 +0000 (13:20 -0400)]
file: fix `simplify_path` behavior for path starting with `.`.

Before this PR `./` was simplified as `/` which is wrong.

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

8 years agolib: fix C compiler warnings in sha1, socket and sdl
Alexis Laferrière [Tue, 9 Jun 2015 15:24:32 +0000 (11:24 -0400)]
lib: fix C compiler warnings in sha1, socket and sdl

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

8 years agolib: fix C compiler warnings in standard library
Alexis Laferrière [Tue, 9 Jun 2015 15:24:20 +0000 (11:24 -0400)]
lib: fix C compiler warnings in standard library

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

8 years agoPartial Revert "compiler: Changed types of Char to uint32_t and NativeString to unsig...
Alexis Laferrière [Tue, 9 Jun 2015 14:57:00 +0000 (10:57 -0400)]
Partial Revert "compiler: Changed types of Char to uint32_t and NativeString to unsigned char*"

This reverts commit 6b52ea3d5ca77dbcc6edbbf71c1aa9419a019bac.

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

8 years agosrc: compile user C code with -Wall
Alexis Laferrière [Tue, 9 Jun 2015 14:55:59 +0000 (10:55 -0400)]
src: compile user C code with -Wall

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

8 years agotests: add base_attr_annot.nit
Jean Privat [Wed, 3 Jun 2015 15:23:39 +0000 (11:23 -0400)]
tests: add base_attr_annot.nit

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

8 years agotests: add base_attr_abstract[34].nit
Jean Privat [Wed, 3 Jun 2015 14:24:41 +0000 (10:24 -0400)]
tests: add base_attr_abstract[34].nit

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

8 years agotests: update other tests related to init with setters
Jean Privat [Wed, 27 May 2015 15:21:49 +0000 (11:21 -0400)]
tests: update other tests related to init with setters

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

8 years agotests: add base_init_setter.nit
Jean Privat [Wed, 27 May 2015 15:31:45 +0000 (11:31 -0400)]
tests: add base_init_setter.nit

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

8 years agotests: update base_attr_abstract[12].nit
Jean Privat [Wed, 27 May 2015 15:21:01 +0000 (11:21 -0400)]
tests: update base_attr_abstract[12].nit

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

8 years agomodelize: remove restriction on concrete class in intializer collect
Jean Privat [Wed, 3 Jun 2015 15:24:55 +0000 (11:24 -0400)]
modelize: remove restriction on concrete class in intializer collect

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

8 years agomodelize: error/warning if explicit autoinit on attributes
Jean Privat [Wed, 3 Jun 2015 14:04:55 +0000 (10:04 -0400)]
modelize: error/warning if explicit autoinit on attributes

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

8 years agomodelize: error in `autoinit` is used in class refinement
Jean Privat [Fri, 29 May 2015 16:05:42 +0000 (12:05 -0400)]
modelize: error in `autoinit` is used in class refinement

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

8 years agomodelize: move `autoinit` management on method into AMethPropdef
Jean Privat [Fri, 29 May 2015 16:05:17 +0000 (12:05 -0400)]
modelize: move `autoinit` management on method into AMethPropdef

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

8 years agomodelize: rely on `AAttrPropdef::mreadpropdef` to be the main property
Jean Privat [Wed, 27 May 2015 13:28:06 +0000 (09:28 -0400)]
modelize: rely on `AAttrPropdef::mreadpropdef` to be the main property

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

8 years agomodelize: add `AAttrPropdef::mtype` to factorize the type access
Jean Privat [Wed, 27 May 2015 13:27:12 +0000 (09:27 -0400)]
modelize: add `AAttrPropdef::mtype` to factorize the type access

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

8 years agoMerge: FFI clean up
Jean Privat [Mon, 8 Jun 2015 15:03:10 +0000 (11:03 -0400)]
Merge: FFI clean up

Pull-Request: #1442
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Romain Chanoir <chanoir.romain@courrier.uqam.ca>
Reviewed-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agosrc/nitni: fix doc of `is_cprimitive`
Alexis Laferrière [Mon, 8 Jun 2015 14:40:35 +0000 (10:40 -0400)]
src/nitni: fix doc of `is_cprimitive`

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

8 years agolib/curl: nullable attributes of CurlHTTPRequest are optionnal
Alexis Laferrière [Mon, 8 Jun 2015 13:48:42 +0000 (09:48 -0400)]
lib/curl: nullable attributes of CurlHTTPRequest are optionnal

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

8 years agolib/curl: make `supporter_outgoing_protocols` public
Alexis Laferrière [Mon, 8 Jun 2015 13:48:12 +0000 (09:48 -0400)]
lib/curl: make `supporter_outgoing_protocols` public

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

8 years agoMerge: Fix support for Byte in the FFI
Jean Privat [Mon, 8 Jun 2015 10:05:21 +0000 (06:05 -0400)]
Merge: Fix support for Byte in the FFI

Pull-Request: #1441
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Romain Chanoir <chanoir.romain@courrier.uqam.ca>

8 years agoMerge: More keep going
Jean Privat [Mon, 8 Jun 2015 10:05:14 +0000 (06:05 -0400)]
Merge: More keep going

This improve the robustness of tools when given --keep-going.
Tools like nitpick, that have --keep-going by default, are more robust and collect more errors.

Moreover, the compiler can now compile simple programs with instructions that fail during the typing phase (most errors like unknown method or bad type).

These instructions are compiled with a run time error instead so the program is still expected to behave in an reliable way.

~~~nit
print 1
fail now
print 2
~~~

~~~sh
$ nitc kg.nit --keep-going
kg.nit:2,1--4: Error: method or variable `fail` unknown in `Sys`.
$ ./kg
1
Runtime error: FATAL: bad statement executed. (kg.nit:1)
~~~

One usage would be to force `c_src` to compile things even if it lags behind.

Pull-Request: #1440
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>
Reviewed-by: Alexis Laferrière <alexis.laf@xymus.net>
Reviewed-by: Romain Chanoir <chanoir.romain@courrier.uqam.ca>

8 years agoMerge: Warn useless do block
Jean Privat [Mon, 8 Jun 2015 10:05:05 +0000 (06:05 -0400)]
Merge: Warn useless do block

Warn useless do block, like

~~~nit
loop do
  print 1
end
~~~

Close #1437

Pull-Request: #1438
Reviewed-by: Romain Chanoir <chanoir.romain@courrier.uqam.ca>
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>
Reviewed-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agoMerge: Love contrib
Jean Privat [Mon, 8 Jun 2015 10:05:00 +0000 (06:05 -0400)]
Merge: Love contrib

One day, a package manager will simplify the installation and the maintenance of third-party projects, libraries and programs in Nit, so that `import foo` will import the project `foo` if installed.

Noways, `contrib` is used as a placeholder for some independent projects that are not mainly a library (or borderline). However, the nature of the Nit language, especially the refinement of class blurry the difference between libraries and programs and make it conceivable to extends an existing program by refining it (or just reuse its base libraries).
However, `import foo` will not work if foo is in contrib, this issue has two current workarounds:

* the user use `-I` with some relative path location in the Makefile, that is not practical because it should be used on each tools thus broke basic manual commands (like nitc on the command line) and automatic commands (like vim+nitpick).
* the project just move itself to lib/ so that client can easily import it, but this is hard to conceptualize for some project like `nitiwiki`

The easy solution to solve this issue is to add `contrib` to the libpath.

Note: the loader still has to be rewritten to be less buggy, more simple and saner. cf #1250

Pull-Request: #1436
Reviewed-by: Romain Chanoir <chanoir.romain@courrier.uqam.ca>
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>
Reviewed-by: Alexandre Terrasa <alexandre@moz-code.org>

8 years agolib/github: update use of Curl
Alexis Laferrière [Sun, 7 Jun 2015 18:43:11 +0000 (14:43 -0400)]
lib/github: update use of Curl

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

8 years agocontrib: update users of Curl
Alexis Laferrière [Sun, 7 Jun 2015 18:42:51 +0000 (14:42 -0400)]
contrib: update users of Curl

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

8 years agotests: update test_curl to latest API
Alexis Laferrière [Sun, 7 Jun 2015 16:19:28 +0000 (12:19 -0400)]
tests: update test_curl to latest API

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

8 years agolib/neo4j: fix and update usage of Curl
Alexis Laferrière [Sun, 7 Jun 2015 14:02:21 +0000 (10:02 -0400)]
lib/neo4j: fix and update usage of Curl

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

8 years agolib/curl: revamp the curl_http example
Alexis Laferrière [Sun, 7 Jun 2015 01:13:46 +0000 (21:13 -0400)]
lib/curl: revamp the curl_http example

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

8 years agolib/curl: update users of the custom class and fix wrong types
Alexis Laferrière [Sun, 7 Jun 2015 14:57:01 +0000 (10:57 -0400)]
lib/curl: update users of the custom class and fix wrong types

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

8 years agolib/curl: replace custom classes by containers
Alexis Laferrière [Sun, 7 Jun 2015 14:52:51 +0000 (10:52 -0400)]
lib/curl: replace custom classes by containers

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

8 years agolib/curl: fix implementation of `user_agent`
Alexis Laferrière [Sun, 7 Jun 2015 14:02:54 +0000 (10:02 -0400)]
lib/curl: fix implementation of `user_agent`

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

8 years agolib/curl: revamp and move the curl_mail example to a nitunit
Alexis Laferrière [Sun, 7 Jun 2015 13:29:06 +0000 (09:29 -0400)]
lib/curl: revamp and move the curl_mail example to a nitunit

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

8 years agolib/curl: implement `CurlResponseFailed::to_s`
Alexis Laferrière [Sun, 7 Jun 2015 13:26:17 +0000 (09:26 -0400)]
lib/curl: implement `CurlResponseFailed::to_s`

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

8 years agolib/curl: `CurlMail::execute` may return null
Alexis Laferrière [Sun, 7 Jun 2015 13:24:59 +0000 (09:24 -0400)]
lib/curl: `CurlMail::execute` may return null

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

8 years agolib/curl: use a cached instance of `Curl` in `Sys`
Alexis Laferrière [Sun, 7 Jun 2015 12:24:33 +0000 (08:24 -0400)]
lib/curl: use a cached instance of `Curl` in `Sys`

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

8 years agolib/curl: update module doc
Alexis Laferrière [Sun, 7 Jun 2015 12:24:05 +0000 (08:24 -0400)]
lib/curl: update module doc

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

8 years agolib/curl: make `Curl` a `Finalizable`
Alexis Laferrière [Sun, 7 Jun 2015 01:18:17 +0000 (21:18 -0400)]
lib/curl: make `Curl` a `Finalizable`

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

8 years agolib/curl: revamp CurlMailRequest and rename it CurlMail
Alexis Laferrière [Sun, 7 Jun 2015 01:17:52 +0000 (21:17 -0400)]
lib/curl: revamp CurlMailRequest and rename it CurlMail

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

8 years agolib/curl: remove `CurlMailRequest::add_conventional_space`
Alexis Laferrière [Sun, 7 Jun 2015 01:17:16 +0000 (21:17 -0400)]
lib/curl: remove `CurlMailRequest::add_conventional_space`

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

8 years agolib/curl: use local variable when attribute is nullable
Alexis Laferrière [Sun, 7 Jun 2015 01:16:37 +0000 (21:16 -0400)]
lib/curl: use local variable when attribute is nullable

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

8 years agolib/curl: update more classes to the new inits
Alexis Laferrière [Sun, 7 Jun 2015 01:15:34 +0000 (21:15 -0400)]
lib/curl: update more classes to the new inits

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

8 years agolib/curl: revamp style, doc and implementation of HeaderMap
Alexis Laferrière [Sun, 7 Jun 2015 01:15:00 +0000 (21:15 -0400)]
lib/curl: revamp style, doc and implementation of HeaderMap

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

8 years agolib/curl: make private and update init of HeaderMapIterator
Alexis Laferrière [Sun, 7 Jun 2015 01:14:25 +0000 (21:14 -0400)]
lib/curl: make private and update init of HeaderMapIterator

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

8 years agolib/curl: rename `i_file` to `file`
Alexis Laferrière [Sun, 7 Jun 2015 00:26:32 +0000 (20:26 -0400)]
lib/curl: rename `i_file` to `file`

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

8 years agolib/curl: remove the CurlCallbaksRegisterIntern class
Alexis Laferrière [Sun, 7 Jun 2015 00:24:16 +0000 (20:24 -0400)]
lib/curl: remove the CurlCallbaksRegisterIntern class

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

8 years agolib/curl: replace the `C` prefix by `Native`
Alexis Laferrière [Sun, 7 Jun 2015 00:23:28 +0000 (20:23 -0400)]
lib/curl: replace the `C` prefix by `Native`

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

8 years agolib/curl: rename `prim_curl` to `native` per the nity/native pattern
Alexis Laferrière [Sun, 7 Jun 2015 00:20:11 +0000 (20:20 -0400)]
lib/curl: rename `prim_curl` to `native` per the nity/native pattern

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

8 years agolib/curl: use the prefix `native_` following the nity/native pattern
Alexis Laferrière [Sat, 6 Jun 2015 21:01:02 +0000 (17:01 -0400)]
lib/curl: use the prefix `native_` following the nity/native pattern

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

8 years agolib/curl: use File and NativeFile instead of the local OFile
Alexis Laferrière [Sat, 6 Jun 2015 20:55:43 +0000 (16:55 -0400)]
lib/curl: use File and NativeFile instead of the local OFile

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

8 years agolib/curl: update and clean up the callback system
Alexis Laferrière [Sat, 6 Jun 2015 20:28:05 +0000 (16:28 -0400)]
lib/curl: update and clean up the callback system

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

8 years agolib/curl: update style and add more space between properties
Alexis Laferrière [Sat, 6 Jun 2015 18:08:40 +0000 (14:08 -0400)]
lib/curl: update style and add more space between properties

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

8 years agosrc: prepare `MType::cname_blind` to be more customizable
Alexis Laferrière [Fri, 5 Jun 2015 20:58:05 +0000 (16:58 -0400)]
src: prepare `MType::cname_blind` to be more customizable

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

8 years agosrc/c_tools: don't declare the functions in the header
Alexis Laferrière [Fri, 5 Jun 2015 20:58:31 +0000 (16:58 -0400)]
src/c_tools: don't declare the functions in the header

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