/** @file Parser: @b int parser class. Copyright (c) 2001-2012 Art. Lebedev Studio (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) */ #include "classes.h" #include "pa_vmethod_frame.h" #include "pa_request.h" #include "pa_vint.h" #include "pa_vregex.h" volatile const char * IDENT_REGEX_C="$Id: regex.C,v 1.7 2012/03/16 09:24:08 moko Exp $"; // class class MRegex: public Methoded { public: // VStateless_class Value* create_new_value(Pool&) { return new VRegex(); } public: MRegex(); }; // global variable DECLARE_CLASS_VAR(regex, new MRegex, 0); // methods static void _create(Request& r, MethodParams& params) { const String& pattern=params.as_string(0, "regexp must not be code"); VRegex& vregex=GET_SELF(r, VRegex); vregex.set(r.charsets.source(), &pattern, params.count()>1?¶ms.as_string(1, OPTIONS_MUST_NOT_BE_CODE):0); vregex.compile(); vregex.study(); } static void _size(Request& r, MethodParams&) { VRegex& vregex=GET_SELF(r, VRegex); r.write_no_lang(*new VInt(vregex.get_info_size())); } static void _study_size(Request& r, MethodParams&) { VRegex& vregex=GET_SELF(r, VRegex); r.write_no_lang(*new VInt(vregex.get_study_size())); } // constructor MRegex::MRegex(): Methoded("regex") { // ^regex::create[string[;options]] add_native_method("create", Method::CT_DYNAMIC, _create, 1, 2); // ^regex.info_size[] add_native_method("size", Method::CT_DYNAMIC, _size, 0, 0); // ^regex.study_size[] add_native_method("study_size", Method::CT_DYNAMIC, _study_size, 0, 0); }