[PATCH 2 of 4 foldmap-in-C] parsers: make _asciilower a generic _asciitransform function

Siddharth Agarwal sid0 at fb.com
Wed Apr 1 12:28:05 CDT 2015


# HG changeset patch
# User Siddharth Agarwal <sid0 at fb.com>
# Date 1427822897 25200
#      Tue Mar 31 10:28:17 2015 -0700
# Node ID c9e4902b765594734dee25a4070baa646051ed59
# Parent  719010b9a74187eb3139b4e57562ecefde288cc4
parsers: make _asciilower a generic _asciitransform function

We can now pass in whatever table we like. For example, an upcoming patch will
introduce asciiupper.

diff --git a/mercurial/parsers.c b/mercurial/parsers.c
--- a/mercurial/parsers.c
+++ b/mercurial/parsers.c
@@ -93,7 +93,8 @@
 	return ret;
 }
 
-static inline PyObject *_asciilower(PyObject *str_obj)
+static inline PyObject *_asciitransform(PyObject *str_obj,
+					const char table[128])
 {
 	char *str, *newstr;
 	Py_ssize_t i, len;
@@ -119,7 +120,7 @@
 			Py_XDECREF(err);
 			goto quit;
 		}
-		newstr[i] = lowertable[(unsigned char)c];
+		newstr[i] = table[(unsigned char)c];
 	}
 
 	ret = newobj;
@@ -134,7 +135,7 @@
 	PyObject *str_obj;
 	if (!PyArg_ParseTuple(args, "O!:asciilower", &PyBytes_Type, &str_obj))
 		return NULL;
-	return _asciilower(str_obj);
+	return _asciitransform(str_obj, lowertable);
 }
 
 /*


More information about the Mercurial-devel mailing list