44 Commits

Author SHA1 Message Date
Andrew Gallant
0d0023e412
rure-0.2.2 2022-10-05 10:56:19 -04:00
Andrew Gallant
3bac5c8075
capi: add 'rlib' crate type
I didn't realize this was a useful build output for a C library, but I
guess it is. Namely, it permits it to be built with other rlibs into one
giant single shared library.

Fixes #909
2022-10-05 10:53:46 -04:00
Linda_pp
54660765af
capi: fix 'unused return value' warnings
Somewhat recently, 'CString::from_raw' got a '#[must_use]' slapped
on it. Arguably, writing 'drop' around its return value is indeed much
clearer. So we do that here.

We also do that for 'Box::from_raw' even though it doesn't have a
'#[must_use]' on it. But the same principle applies.

PR #882
2022-07-14 09:36:58 -04:00
Alex Touchet
b92ffd5471
cargo: use SPDX license format
We were previously using '/' to indicate the dual licensing
scheme, but I guess we're now supposed to use 'OR'.

PR #843
2022-03-03 07:31:45 -05:00
Andrew Gallant
e2860fe037 edition: manual fixups to code
This commit does a number of manual fixups to the code after the
previous two commits were done via 'cargo fix' automatically.

Actually, this contains more 'cargo fix' annotations, since I had
forgotten to add 'edition = "2018"' to all sub-crates.
2021-04-30 20:02:56 -04:00
Andrew Gallant
cb108b77e7 edition: initial migration to Rust 2018 2021-04-30 20:02:56 -04:00
Felix Yan
26f7318e28
capi: fix typo test message
PR #695
2020-07-22 15:22:57 -04:00
Andrew Gallant
410d931b2a ci: switch to GitHub Actions 2020-02-02 11:05:08 -05:00
Andrew Gallant
fc3e6aa19a
license: remove license headers from files
The Rust project determined these were unnecessary a while back[1,2,3]
and we follow suite.

[1] - 0565653eec
[2] - https://github.com/rust-lang/rust/pull/43498
[3] - https://github.com/rust-lang/rust/pull/57108
2019-08-03 14:47:45 -04:00
Andrew Gallant
0e96af4166
style: start using rustfmt 2019-08-03 14:20:22 -04:00
Andrew Gallant
89074f87d0
1.1.3 2019-03-30 10:53:01 -04:00
marmeladema
67fca6cbff capi: add rure_escape_must function
This commit exposes two new functions in regex's C API: rure_escape_must
and rure_cstring_free. These permit escaping a pattern such that it
contains no special regex meta characters.

Currently, we only expose a routine that will abort the process if it
fails, but we document the precise error conditions. A more flexible but
less convenient routine should ideally be exposed in the future, but
that needs a bit more API design than what's here.

Closes #537
2019-03-30 10:47:45 -04:00
Andrew Gallant
d107c80dae
regex 1.0.1 2018-06-19 19:28:32 -04:00
Andrew Gallant
b5ef0ec281
regex 1.0 2018-05-01 16:52:05 -04:00
Andrew Gallant
4ae3ae9d92 regex: move to regex-syntax-2
This commit moves the entire regex crate over to the regex-syntax-2
rewrite. Most of this is just rewriting types.

The compiler got the most interesting set of changes. It got simpler
in some respects, but not significantly so.
2018-03-07 19:01:24 -05:00
Wim
9aec6ecad2 license: include license files in sub-crates
Fixes #342
2018-01-17 16:09:35 -05:00
Andrew Gallant
65c4f8ee1f docs: link to docs.rs 2017-12-30 15:37:41 -05:00
Andrew Gallant
2f1e5b0e10 deps: setup workspace
There are a few sub-crates in this repository, so sharing a target
directory makes sense.
2017-12-30 15:37:41 -05:00
Will Speak
4ed2fed6a8 Fix Bug in rure_captures_len
It looks like at some point in the past the captures were refactored
from being a vector of start and end positions into a list of location
structures. The C API still had a conversion of the length which
corrected for the captures being twice the length of the number of
captures.

This updates the length calculation in `rure.rs` to return the
correct length, and adds an assertion to the test case.
2017-05-14 13:02:18 +01:00
Andrew Gallant
75ae79b125 Bump dep versions and release 0.2.1.
Specifically, we bump the dep on aho-corasick to 0.6.0, which includes a
dep on memchr 1.0.0. This avoids compiling two distinct versions of
memchr into every regex build.

Fixes #324
2017-01-02 18:39:02 -05:00
Andrew Gallant
ac3ab6d21b Bump versions everywhere and update CHANGELOG.
Fixes #296, Fixes #307
2016-12-31 17:01:54 -05:00
Andrew Gallant
f094d15678 Update github links. 2016-12-31 16:49:30 -05:00
Andrew Gallant
0c59d416cd Add RegexSetBuilder.
This API mirrors RegexBuilder, but for multiple patterns.

Also, modify regex-capi to use RegexSetBuilder internally.
2016-12-31 15:09:17 -05:00
Andrew Gallant
403b27aa99 Switch to more idiomatic builder definition.
Specifically, use mutable references instead of passing ownership.
2016-12-30 01:06:16 -05:00
Andrew Gallant
fab4069788 Remove the submatch iterators.
All use cases can be replaced with Regex::capture_names.
2016-12-30 01:05:50 -05:00
Andrew Gallant
a6722a32ec Reorganize capture slot handling, but don't make any public API changes. 2016-12-30 01:05:50 -05:00
Steve Klabnik
66a44ab6c1 dylib -> cdylib
The newer cdylib crate type is specifically for the "expose to other languages" case.
2016-12-02 11:28:57 -05:00
tiehuis
f54bd2428a Update rure_set documentation for new fields 2016-10-24 15:04:01 +13:00
tiehuis
d464edf3d6 Add two more tests for options and match start sanity 2016-10-24 15:01:57 +13:00
tiehuis
8beff765a5 Adjust rure to use internal regex methods where needed 2016-10-24 14:46:19 +13:00
tiehuis
01644e0f25 Update prototypes with mock values 2016-10-24 14:04:44 +13:00
tiehuis
1a71cfc03e Update documentation + add rure_set_len function 2016-10-20 20:06:04 +13:00
tiehuis
143ff2f531 Add RegexSet functionality to C API
These functions implement a C interface to the RegexSet api.

Some notes:
 * These do not include start offsets as the standard regex functions
   do. The reason being is down to how these are implemented in the core
   regex crate. The RegexSet api does not expose a public is_match_at
   whilst the Regex api does.

 * This only tests a complete compile/match mainly for sanity. One or
   two more tests targetting the specific areas would be preferred.

 * Set matches take a mutuable array to fill with results. This is more
   C-like and allows the caller to manage the memory on the stack if
   they want.
2016-10-19 18:32:12 +13:00
David Blewett
7f3d36402f Expose the CaptureNames iterator to the C API:
* Add new `rure_iter_capture_names` struct
  - Opaque pointer encapsulates access to:
  - Underyling Rust iterator
  - Each capture group name CString
* Add functions for instantiating the iterator and processing:
  - `rure_iter_capture_names_new`
  - `rure_iter_capture_names_next`
  - `rure_iter_capture_names_free`
* Track CString objects handed out, and free them when called.
* Add unit test for new functions
2016-09-25 23:25:29 -04:00
Brose Johnstone
d91728d2c2 add module files 2016-06-16 13:38:47 -07:00
Brose Johnstone
43c72ab73e split C api into modules 2016-06-16 13:36:58 -07:00
Andrew Gallant
998e945467 Fix nits from so_you_like_donuts on reddit. 2016-05-04 07:17:11 -04:00
Andrew Gallant
9a966ee108 better title 2016-05-02 14:10:44 -04:00
Andrew Gallant
29529523d2 Merge pull request #220 from baby-bell/master
fix mismatched/redundant integer types in c interface
2016-04-30 22:49:25 -04:00
baby-bell
41bf1085d9 remove redundant casts to/from size_t for c interface 2016-04-30 19:15:37 -07:00
Brose Johnstone
7ff53feef9 fix mismatched/redundant integer types 2016-04-29 23:29:32 -07:00
Andrew Gallant
fc90897c86 update doc link 2016-04-29 17:01:51 -04:00
Andrew Gallant
d8773c6aef regex-capi 0.1.0 2016-04-29 16:59:44 -04:00
Andrew Gallant
97d374b680 Add rure, a C API.
This commit contains a new sub-crate called `regex-capi` which provides
a C library called `rure`.

A new `RegexBuilder` type was also added to the Rust API proper, which
permits both users of C and Rust to tweak various knobs on a `Regex`.
This fixes issue #166.

Since it's likely that this API will be used to provide bindings to
other languages, I've created bindings to Go as a proof of concept:
https://github.com/BurntSushi/rure-go --- to my knowledge, the wrapper
has as little overhead as it can. It was in particular important for the
C library to not store any pointers provided by the caller, as this can
be problematic in languages with managed runtimes and a moving GC.

The C API doesn't expose `RegexSet` and a few other convenience functions
such as splitting or replacing. That can be future work.

Note that the regex-capi crate requires Rust 1.9, since it uses
`panic::catch_unwind`.

This also includes tests of basic API functionality and a commented
example. Both should now run as part of CI.
2016-04-29 10:42:11 -04:00