unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* [PATCH] In string-split, add support for character sets and predicates.
@ 2012-10-08 11:23 Daniel Hartwig
  2012-10-08 15:40 ` Mark H Weaver
  0 siblings, 1 reply; 14+ messages in thread
From: Daniel Hartwig @ 2012-10-08 11:23 UTC (permalink / raw)
  To: guile-devel

[-- Attachment #1: Type: text/plain, Size: 454 bytes --]

Following up on the thread from last time regexp-split was discussed.

On 8 January 2012 07:05, Andy Wingo <wingo@pobox.com> wrote:
> On Sat 31 Dec 2011 06:54, Daniel Hartwig <mandyke@gmail.com> writes:
>> * [Vanilla `string-split' expanded to support the CHAR_PRED
>>   semantics of `string-index' et al.]
>
> Makes sense to me.
>

Attached, with perhaps too many test cases as well.  Commit message
contains the details on why it's done the way it is.

[-- Attachment #2: 0001-In-string-split-add-support-for-character-sets-and-p.patch --]
[-- Type: application/octet-stream, Size: 7459 bytes --]

From 0aeed16baa70eca143fec05e864f98d95d7267e8 Mon Sep 17 00:00:00 2001
From: Daniel Hartwig <mandyke@gmail.com>
Date: Mon, 8 Oct 2012 18:35:00 +0800
Subject: [PATCH] In string-split, add support for character sets and
 predicates.

* libguile/srfi-13.c (string-split): Add support for splitting on
  character sets and predicates, like string-index and others.  Keep the
  original (fast) path when splitting by character and refactor using
  string-index-right for other types; the later involves handling SCM
  values so there is less chance to optimize anyway.
* test-suite/tests/strings.test (string-split): Add tests covering
  the new argument types.
---
 libguile/srfi-13.c            |   53 ++++++++++++++++++++++++++++++----
 libguile/srfi-13.h            |    2 +-
 test-suite/tests/strings.test |   62 ++++++++++++++++++++++++++++++++++++++++-
 3 files changed, 108 insertions(+), 9 deletions(-)

diff --git a/libguile/srfi-13.c b/libguile/srfi-13.c
index 2834553..1874754 100644
--- a/libguile/srfi-13.c
+++ b/libguile/srfi-13.c
@@ -2993,11 +2993,22 @@ SCM_DEFINE (scm_string_tokenize, "string-tokenize", 1, 3, 0,
 #undef FUNC_NAME
 
 SCM_DEFINE (scm_string_split, "string-split", 2, 0, 0,
-	    (SCM str, SCM chr),
+	    (SCM str, SCM char_pred),
 	    "Split the string @var{str} into a list of the substrings delimited\n"
-	    "by appearances of the character @var{chr}.  Note that an empty substring\n"
-	    "between separator characters will result in an empty string in the\n"
-	    "result list.\n"
+	    "by appearances characters which\n"
+            "\n"
+            "@itemize @bullet\n"
+            "@item\n"
+            "equals @var{char_pred}, if it is a character,\n"
+            "\n"
+            "@item\n"
+            "satisfies the predicate @var{char_pred}, if it is a procedure,\n"
+            "\n"
+            "@item\n"
+            "is in the set @var{char_pred}, if it is a character set.\n"
+            "@end itemize\n\n"
+            "Note that an empty substring between separator characters\n"
+            "will result in an empty string in the result list.\n"
 	    "\n"
 	    "@lisp\n"
 	    "(string-split \"root:x:0:0:root:/root:/bin/bash\" #\\:)\n"
@@ -3014,13 +3025,39 @@ SCM_DEFINE (scm_string_split, "string-split", 2, 0, 0,
 	    "@end lisp")
 #define FUNC_NAME s_scm_string_split
 {
+  SCM sidx, slast_idx;
   long idx, last_idx;
   int narrow;
   SCM res = SCM_EOL;
 
   SCM_VALIDATE_STRING (1, str);
-  SCM_VALIDATE_CHAR (2, chr);
   
+  if (SCM_CHARP (char_pred))
+    {
+      goto split_char;
+    }
+  else if (!SCM_CHARSETP (char_pred))
+    {
+      SCM_ASSERT (scm_is_true (scm_procedure_p (char_pred)),
+                  char_pred, SCM_ARG2, FUNC_NAME);
+    }
+
+  sidx = scm_string_length (str);
+  slast_idx = SCM_BOOL_F;
+  while (scm_is_true (sidx))
+    {
+      slast_idx = sidx;
+      sidx = scm_string_index_right (str, char_pred, SCM_INUM0, slast_idx);
+      if (scm_is_true (sidx))
+        {
+          SCM substr = scm_substring (str, scm_oneplus (sidx), slast_idx);
+          res = scm_cons (substr, res);
+        }
+    }
+  res = scm_cons (scm_substring (str, SCM_INUM0, slast_idx), res);
+  goto done;
+
+ split_char:
   /* This is explicit wide/narrow logic (instead of using
      scm_i_string_ref) is a speed optimization.  */
   idx = scm_i_string_length (str);
@@ -3031,7 +3068,7 @@ SCM_DEFINE (scm_string_split, "string-split", 2, 0, 0,
       while (idx >= 0)
         {
           last_idx = idx;
-          while (idx > 0 && buf[idx-1] != (char) SCM_CHAR(chr))
+          while (idx > 0 && buf[idx-1] != (char) SCM_CHAR(char_pred))
             idx--;
           if (idx >= 0)
             {
@@ -3046,7 +3083,7 @@ SCM_DEFINE (scm_string_split, "string-split", 2, 0, 0,
       while (idx >= 0)
         {
           last_idx = idx;
-          while (idx > 0 && buf[idx-1] != SCM_CHAR(chr))
+          while (idx > 0 && buf[idx-1] != SCM_CHAR(char_pred))
             idx--;
           if (idx >= 0)
             {
@@ -3055,6 +3092,8 @@ SCM_DEFINE (scm_string_split, "string-split", 2, 0, 0,
             }
         }
     }
+
+ done:
   scm_remember_upto_here_1 (str);
   return res;
 }
diff --git a/libguile/srfi-13.h b/libguile/srfi-13.h
index f63239a..325e222 100644
--- a/libguile/srfi-13.h
+++ b/libguile/srfi-13.h
@@ -110,7 +110,7 @@ SCM_API SCM scm_xsubstring (SCM s, SCM from, SCM to, SCM start, SCM end);
 SCM_API SCM scm_string_xcopy_x (SCM target, SCM tstart, SCM s, SCM sfrom, SCM sto, SCM start, SCM end);
 SCM_API SCM scm_string_replace (SCM s1, SCM s2, SCM start1, SCM end1, SCM start2, SCM end2);
 SCM_API SCM scm_string_tokenize (SCM s, SCM token_char, SCM start, SCM end);
-SCM_API SCM scm_string_split (SCM s, SCM chr);
+SCM_API SCM scm_string_split (SCM s, SCM char_pred);
 SCM_API SCM scm_string_filter (SCM char_pred, SCM s, SCM start, SCM end);
 SCM_API SCM scm_string_delete (SCM char_pred, SCM s, SCM start, SCM end);
 
diff --git a/test-suite/tests/strings.test b/test-suite/tests/strings.test
index d892b70..679e173 100644
--- a/test-suite/tests/strings.test
+++ b/test-suite/tests/strings.test
@@ -557,7 +557,67 @@
   (pass-if "char 255"
     (equal? '("a" "b")
 	    (string-split (string #\a (integer->char 255) #\b)
-			  (integer->char 255)))))
+			  (integer->char 255))))
+
+  (pass-if "empty string - char"
+    (equal? '("")
+            (string-split "" #\:)))
+
+  (pass-if "non-empty - char - no delimiters"
+    (equal? '("foobarfrob")
+            (string-split "foobarfrob" #\:)))
+
+  (pass-if "non-empty - char - delimiters"
+    (equal? '("foo" "bar" "frob")
+            (string-split "foo:bar:frob" #\:)))
+
+  (pass-if "non-empty - char - leading delimiters"
+    (equal? '("" "" "foo" "bar" "frob")
+            (string-split "::foo:bar:frob" #\:)))
+
+  (pass-if "non-empty - char - trailing delimiters"
+    (equal? '("foo" "bar" "frob" "" "")
+            (string-split "foo:bar:frob::" #\:)))
+
+  (pass-if "empty string - charset"
+    (equal? '("")
+            (string-split "" (char-set #\:))))
+
+  (pass-if "non-empty - charset - no delimiters"
+    (equal? '("foobarfrob")
+            (string-split "foobarfrob" (char-set #\:))))
+
+  (pass-if "non-empty - charset - delimiters"
+    (equal? '("foo" "bar" "frob")
+            (string-split "foo:bar:frob" (char-set #\:))))
+
+  (pass-if "non-empty - charset - leading delimiters"
+    (equal? '("" "" "foo" "bar" "frob")
+            (string-split "::foo:bar:frob" (char-set #\:))))
+
+  (pass-if "non-empty - charset - trailing delimiters"
+    (equal? '("foo" "bar" "frob" "" "")
+            (string-split "foo:bar:frob::" (char-set #\:))))
+
+  (pass-if "empty string - pred"
+    (equal? '("")
+            (string-split "" (negate char-alphabetic?))))
+
+  (pass-if "non-empty - pred - no delimiters"
+    (equal? '("foobarfrob")
+            (string-split "foobarfrob" (negate char-alphabetic?))))
+
+  (pass-if "non-empty - pred - delimiters"
+    (equal? '("foo" "bar" "frob")
+            (string-split "foo:bar:frob" (negate char-alphabetic?))))
+
+  (pass-if "non-empty - pred - leading delimiters"
+    (equal? '("" "" "foo" "bar" "frob")
+            (string-split "::foo:bar:frob" (negate char-alphabetic?))))
+
+  (pass-if "non-empty - pred - trailing delimiters"
+    (equal? '("foo" "bar" "frob" "" "")
+            (string-split "foo:bar:frob::" (negate char-alphabetic?)))))
 
 (with-test-prefix "substring-move!"
 
-- 
1.7.9


^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2012-10-12 12:23 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-08 11:23 [PATCH] In string-split, add support for character sets and predicates Daniel Hartwig
2012-10-08 15:40 ` Mark H Weaver
2012-10-09  3:34   ` Daniel Hartwig
2012-10-09 17:48     ` Mark H Weaver
2012-10-10  1:37       ` Daniel Hartwig
2012-10-10  2:14         ` Mark H Weaver
2012-10-10  3:15           ` Daniel Hartwig
2012-10-10  3:25             ` Mark H Weaver
2012-10-10  3:28               ` Daniel Hartwig
2012-10-10  7:59                 ` Mark H Weaver
2012-10-10 20:44                   ` Ludovic Courtès
2012-10-12  6:38                   ` Daniel Hartwig
2012-10-12 12:23                     ` Mark H Weaver
2012-10-10 20:42               ` Ludovic Courtès

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).