aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
diff options
context:
space:
mode:
authorduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-04 02:00:19 +0000
committerduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-05-04 02:00:19 +0000
commit8c00c6d5b3284c4684d8667149dd1fe12b2bf89b (patch)
treeb7f3e95078e32396249d6225899446e5bca1bda7 /string.c
parent5d79a9fc30ca5d0c6a93ddd15580acb4685d875c (diff)
downloadruby-8c00c6d5b3284c4684d8667149dd1fe12b2bf89b.tar.gz
move definition of String#unicode_normalized? to C to make sure it is documented
* lib/unicode_normalize.rb: Remove definition of String#unicode_normalized? (including documentation). Leave a comment explaining that the file is now empty. * string.c: Define String#unicode_normalized? in rb_str_unicode_normalized_p in C, (including documentation) * lib/unicode_normalize/normalize.rb: Remove (re)definition of String#unicode_normalized? to avoid warnings (when $VERBOSE==true) and problems when String is frozen git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58555 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c37
1 files changed, 36 insertions, 1 deletions
diff --git a/string.c b/string.c
index 0d8b62780b..e4229d2656 100644
--- a/string.c
+++ b/string.c
@@ -9583,6 +9583,7 @@ str_scrub_bang(int argc, VALUE *argv, VALUE str)
}
static VALUE id_normalize;
+static VALUE id_normalized_p;
static VALUE mUnicodeNormalize;
static int UnicodeNormalizeRequired = 0;
@@ -9645,6 +9646,38 @@ rb_str_unicode_normalize_bang(int argc, VALUE *argv, VALUE str)
rb_raise(rb_eArgError, "too many arguments to unicode_normalize!");
}
+/* call-seq:
+ * str.unicode_normalized?(form=:nfc)
+ *
+ * Checks whether +str+ is in Unicode normalization form +form+,
+ * which can be any of the four values +:nfc+, +:nfd+, +:nfkc+, or +:nfkd+.
+ * The default is +:nfc+.
+ *
+ * If the string is not in a Unicode Encoding, then an Exception is raised.
+ * For details, see String#unicode_normalize.
+ *
+ * "a\u0300".unicode_normalized? #=> false
+ * "a\u0300".unicode_normalized?(:nfd) #=> true
+ * "\u00E0".unicode_normalized? #=> true
+ * "\u00E0".unicode_normalized?(:nfd) #=> false
+ * "\xE0".force_encoding('ISO-8859-1').unicode_normalized?
+ * #=> Encoding::CompatibilityError raised
+ */
+static VALUE
+rb_str_unicode_normalized_p(int argc, VALUE *argv, VALUE str)
+{
+ if (!UnicodeNormalizeRequired) {
+ rb_require("unicode_normalize/normalize.rb");
+ UnicodeNormalizeRequired = 1;
+ }
+ if (argc==0)
+ return rb_funcall(mUnicodeNormalize, id_normalized_p, 1, str);
+ else if (argc==1)
+ return rb_funcall(mUnicodeNormalize, id_normalized_p, 2, str, argv[0]);
+ else
+ rb_raise(rb_eArgError, "too many arguments to unicode_normalized?");
+}
+
/**********************************************************************
* Document-class: Symbol
*
@@ -10293,12 +10326,14 @@ Init_String(void)
rb_define_method(rb_cString, "valid_encoding?", rb_str_valid_encoding_p, 0);
rb_define_method(rb_cString, "ascii_only?", rb_str_is_ascii_only_p, 0);
- /* define module here so that we don't have to look it up */
+ /* define UnicodeNormalize module here so that we don't have to look it up */
mUnicodeNormalize = rb_define_module("UnicodeNormalize");
id_normalize = rb_intern("normalize");
+ id_normalized_p = rb_intern("normalized?");
rb_define_method(rb_cString, "unicode_normalize", rb_str_unicode_normalize, -1);
rb_define_method(rb_cString, "unicode_normalize!", rb_str_unicode_normalize_bang, -1);
+ rb_define_method(rb_cString, "unicode_normalized?", rb_str_unicode_normalized_p, -1);
rb_fs = Qnil;
rb_define_hooked_variable("$;", &rb_fs, 0, rb_fs_setter);