2003-10-22 11:30:52 +04:00
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
2003-11-15 03:11:16 +03:00
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2003-10-22 11:30:52 +04:00
|
|
|
*
|
2003-11-15 03:11:16 +03:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
2003-10-22 11:30:52 +04:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code, released
|
|
|
|
* March 31, 1998.
|
|
|
|
*
|
2003-11-15 03:11:16 +03:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2003-10-22 11:30:52 +04:00
|
|
|
|
|
|
|
#ifndef jsregexp_h___
|
|
|
|
#define jsregexp_h___
|
|
|
|
/*
|
|
|
|
* JS regular expression interface.
|
|
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "jspubtd.h"
|
|
|
|
#include "jsstr.h"
|
|
|
|
|
|
|
|
#ifdef JS_THREADSAFE
|
|
|
|
#include "jsdhash.h"
|
|
|
|
#endif
|
|
|
|
|
2007-07-06 00:37:47 +04:00
|
|
|
JS_BEGIN_EXTERN_C
|
|
|
|
|
2003-10-22 11:30:52 +04:00
|
|
|
struct JSRegExpStatics {
|
|
|
|
JSString *input; /* input string to match (perl $_, GC root) */
|
|
|
|
JSBool multiline; /* whether input contains newlines (perl $*) */
|
2004-04-13 05:25:17 +04:00
|
|
|
uint16 parenCount; /* number of valid elements in parens[] */
|
|
|
|
uint16 moreLength; /* number of allocated elements in moreParens */
|
2003-10-22 11:30:52 +04:00
|
|
|
JSSubString parens[9]; /* last set of parens matched (perl $1, $2) */
|
|
|
|
JSSubString *moreParens; /* null or realloc'd vector for $10, etc. */
|
|
|
|
JSSubString lastMatch; /* last string matched (perl $&) */
|
|
|
|
JSSubString lastParen; /* last paren matched (perl $+) */
|
|
|
|
JSSubString leftContext; /* input to left of last match (perl $`) */
|
|
|
|
JSSubString rightContext; /* input to right of last match (perl $') */
|
|
|
|
};
|
|
|
|
|
2009-04-15 06:32:17 +04:00
|
|
|
extern JS_FRIEND_API(void)
|
|
|
|
js_SaveRegExpStatics(JSContext *cx, JSRegExpStatics *statics,
|
|
|
|
JSTempValueRooter *tvr);
|
|
|
|
|
|
|
|
extern JS_FRIEND_API(void)
|
|
|
|
js_RestoreRegExpStatics(JSContext *cx, JSRegExpStatics *statics,
|
|
|
|
JSTempValueRooter *tvr);
|
|
|
|
|
2003-10-22 11:30:52 +04:00
|
|
|
/*
|
|
|
|
* This struct holds a bitmap representation of a class from a regexp.
|
2004-10-05 14:19:07 +04:00
|
|
|
* There's a list of these referenced by the classList field in the JSRegExp
|
2003-10-22 11:30:52 +04:00
|
|
|
* struct below. The initial state has startIndex set to the offset in the
|
2004-10-05 14:19:07 +04:00
|
|
|
* original regexp source of the beginning of the class contents. The first
|
2003-10-22 11:30:52 +04:00
|
|
|
* use of the class converts the source representation into a bitmap.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
typedef struct RECharSet {
|
2004-04-13 05:25:17 +04:00
|
|
|
JSPackedBool converted;
|
|
|
|
JSPackedBool sense;
|
|
|
|
uint16 length;
|
2003-10-22 11:30:52 +04:00
|
|
|
union {
|
2004-04-13 05:25:17 +04:00
|
|
|
uint8 *bits;
|
2003-10-22 11:30:52 +04:00
|
|
|
struct {
|
2005-09-30 04:46:42 +04:00
|
|
|
size_t startIndex;
|
|
|
|
size_t length;
|
2003-10-22 11:30:52 +04:00
|
|
|
} src;
|
|
|
|
} u;
|
|
|
|
} RECharSet;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This macro is safe because moreParens is guaranteed to be allocated and big
|
|
|
|
* enough to hold parenCount, or else be null when parenCount is 0.
|
|
|
|
*/
|
|
|
|
#define REGEXP_PAREN_SUBSTRING(res, num) \
|
|
|
|
(((jsuint)(num) < (jsuint)(res)->parenCount) \
|
|
|
|
? ((jsuint)(num) < 9) \
|
|
|
|
? &(res)->parens[num] \
|
|
|
|
: &(res)->moreParens[(num) - 9] \
|
|
|
|
: &js_EmptySubString)
|
|
|
|
|
|
|
|
typedef struct RENode RENode;
|
|
|
|
|
|
|
|
struct JSRegExp {
|
|
|
|
jsrefcount nrefs; /* reference count */
|
2004-04-13 05:25:17 +04:00
|
|
|
uint16 flags; /* flags, see jsapi.h's JSREG_* defines */
|
2005-09-30 04:46:42 +04:00
|
|
|
size_t parenCount; /* number of parenthesized submatches */
|
|
|
|
size_t classCount; /* count [...] bitmaps */
|
2003-10-22 11:30:52 +04:00
|
|
|
RECharSet *classList; /* list of [...] bitmaps */
|
|
|
|
JSString *source; /* locked source string, sans // */
|
2008-11-10 23:49:56 +03:00
|
|
|
jsbytecode program[1]; /* regular expression bytecode */
|
2003-10-22 11:30:52 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
extern JSRegExp *
|
|
|
|
js_NewRegExp(JSContext *cx, JSTokenStream *ts,
|
|
|
|
JSString *str, uintN flags, JSBool flat);
|
|
|
|
|
|
|
|
extern JSRegExp *
|
2007-11-14 01:18:17 +03:00
|
|
|
js_NewRegExpOpt(JSContext *cx, JSString *str, JSString *opt, JSBool flat);
|
2003-10-22 11:30:52 +04:00
|
|
|
|
2006-02-15 04:24:32 +03:00
|
|
|
#define HOLD_REGEXP(cx, re) JS_ATOMIC_INCREMENT(&(re)->nrefs)
|
|
|
|
#define DROP_REGEXP(cx, re) js_DestroyRegExp(cx, re)
|
|
|
|
|
2003-10-22 11:30:52 +04:00
|
|
|
extern void
|
|
|
|
js_DestroyRegExp(JSContext *cx, JSRegExp *re);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Execute re on input str at *indexp, returning null in *rval on mismatch.
|
|
|
|
* On match, return true if test is true, otherwise return an array object.
|
|
|
|
* Update *indexp and cx->regExpStatics always on match.
|
|
|
|
*/
|
|
|
|
extern JSBool
|
|
|
|
js_ExecuteRegExp(JSContext *cx, JSRegExp *re, JSString *str, size_t *indexp,
|
2004-12-09 04:32:19 +03:00
|
|
|
JSBool test, jsval *rval);
|
2003-10-22 11:30:52 +04:00
|
|
|
|
2008-12-18 23:06:45 +03:00
|
|
|
extern void
|
|
|
|
js_InitRegExpStatics(JSContext *cx);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
js_TraceRegExpStatics(JSTracer *trc, JSContext *acx);
|
2003-10-22 11:30:52 +04:00
|
|
|
|
|
|
|
extern void
|
2008-12-18 23:06:45 +03:00
|
|
|
js_FreeRegExpStatics(JSContext *cx);
|
2003-10-22 11:30:52 +04:00
|
|
|
|
2008-08-13 05:52:28 +04:00
|
|
|
#define VALUE_IS_REGEXP(cx, v) \
|
2003-10-22 11:30:52 +04:00
|
|
|
(JSVAL_IS_OBJECT(v) && JSVAL_TO_OBJECT(v) && \
|
|
|
|
OBJ_GET_CLASS(cx, JSVAL_TO_OBJECT(v)) == &js_RegExpClass)
|
|
|
|
|
|
|
|
extern JSClass js_RegExpClass;
|
|
|
|
|
2008-08-13 05:52:28 +04:00
|
|
|
enum regexp_tinyid {
|
|
|
|
REGEXP_SOURCE = -1,
|
|
|
|
REGEXP_GLOBAL = -2,
|
|
|
|
REGEXP_IGNORE_CASE = -3,
|
|
|
|
REGEXP_LAST_INDEX = -4,
|
|
|
|
REGEXP_MULTILINE = -5,
|
|
|
|
REGEXP_STICKY = -6
|
|
|
|
};
|
|
|
|
|
2003-10-22 11:30:52 +04:00
|
|
|
extern JSObject *
|
|
|
|
js_InitRegExpClass(JSContext *cx, JSObject *obj);
|
|
|
|
|
|
|
|
/*
|
2004-04-13 05:25:17 +04:00
|
|
|
* Export js_regexp_toString to the decompiler.
|
|
|
|
*/
|
|
|
|
extern JSBool
|
2007-08-02 08:33:52 +04:00
|
|
|
js_regexp_toString(JSContext *cx, JSObject *obj, jsval *vp);
|
2004-04-13 05:25:17 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Create, serialize/deserialize, or clone a RegExp object.
|
2003-10-22 11:30:52 +04:00
|
|
|
*/
|
|
|
|
extern JSObject *
|
|
|
|
js_NewRegExpObject(JSContext *cx, JSTokenStream *ts,
|
|
|
|
jschar *chars, size_t length, uintN flags);
|
|
|
|
|
|
|
|
extern JSBool
|
2009-05-05 02:07:53 +04:00
|
|
|
js_XDRRegExp(JSXDRState *xdr, JSObject **objp);
|
2003-10-22 11:30:52 +04:00
|
|
|
|
|
|
|
extern JSObject *
|
|
|
|
js_CloneRegExpObject(JSContext *cx, JSObject *obj, JSObject *parent);
|
|
|
|
|
2004-04-13 05:25:17 +04:00
|
|
|
/*
|
|
|
|
* Get and set the per-object (clone or clone-parent) lastIndex slot.
|
|
|
|
*/
|
2003-10-22 11:30:52 +04:00
|
|
|
extern JSBool
|
|
|
|
js_GetLastIndex(JSContext *cx, JSObject *obj, jsdouble *lastIndex);
|
|
|
|
|
|
|
|
extern JSBool
|
|
|
|
js_SetLastIndex(JSContext *cx, JSObject *obj, jsdouble lastIndex);
|
|
|
|
|
2007-07-06 00:37:47 +04:00
|
|
|
JS_END_EXTERN_C
|
|
|
|
|
2003-10-22 11:30:52 +04:00
|
|
|
#endif /* jsregexp_h___ */
|