summaryrefslogtreecommitdiff
path: root/src/vte/vteregex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vte/vteregex.h')
-rw-r--r--src/vte/vteregex.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/src/vte/vteregex.h b/src/vte/vteregex.h
new file mode 100644
index 00000000..a248e9e3
--- /dev/null
+++ b/src/vte/vteregex.h
@@ -0,0 +1,77 @@
+/*
+ * Copyright © 2015 Christian Persch
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef __VTE_VTE_REGEX_H__
+#define __VTE_VTE_REGEX_H__
+
+#if !defined (__VTE_VTE_H_INSIDE__) && !defined (VTE_COMPILATION)
+#error "Only <vte/vte.h> can be included directly."
+#endif
+
+#include <glib.h>
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+#if !defined(_PCRE2_H) && !defined(__GI_SCANNER__)
+typedef struct pcre2_real_code_8 pcre2_code_8;
+#endif /* !_PCRE2_H */
+
+typedef struct _VteRegex VteRegex;
+
+#define VTE_TYPE_REGEX (vte_regex_get_type())
+GType vte_regex_get_type (void);
+
+#define VTE_REGEX_ERROR (vte_regex_error_quark())
+GQuark vte_regex_error_quark (void);
+
+/* This is PCRE2_NO_UTF_CHECK | PCRE2_UTF */
+#define VTE_REGEX_FLAGS_DEFAULT (0x00080000u | 0x40000000u)
+
+typedef enum {
+ /* Negative values are PCRE2 errors */
+
+ /* VTE specific values */
+ VTE_REGEX_ERROR_INCOMPATIBLE = G_MAXINT-1,
+ VTE_REGEX_ERROR_NOT_SUPPORTED = G_MAXINT
+} VteRegexError;
+
+VteRegex *vte_regex_ref (VteRegex *regex) _VTE_GNUC_NONNULL(1);
+
+VteRegex *vte_regex_unref (VteRegex *regex) _VTE_GNUC_NONNULL(1);
+
+VteRegex *vte_regex_new (const char *pattern,
+ gssize pattern_length,
+ guint32 flags,
+ GError **error) _VTE_GNUC_NONNULL(1);
+
+gboolean vte_regex_jit (VteRegex *regex,
+ guint32 flags,
+ GError **error) _VTE_GNUC_NONNULL(1);
+
+#ifndef __GI_SCANNER__
+
+VteRegex *vte_regex_new_pcre (pcre2_code_8 *code,
+ GError **error) _VTE_GNUC_NONNULL(1);
+
+const pcre2_code_8 *vte_regex_get_pcre (VteRegex *regex) _VTE_GNUC_NONNULL(1);
+
+#endif
+
+G_END_DECLS
+
+#endif /* __VTE_VTE_REGEX_H__ */