xref: /OpenGrok/opengrok-indexer/src/main/jflex/analysis/CommonPath.lexh (revision d219b4cea555a12b602d2d5518daa22134ad4879)
1*d219b4ceSAdam Hornacek/*
2*d219b4ceSAdam Hornacek * CDDL HEADER START
3*d219b4ceSAdam Hornacek *
4*d219b4ceSAdam Hornacek * The contents of this file are subject to the terms of the
5*d219b4ceSAdam Hornacek * Common Development and Distribution License (the "License").
6*d219b4ceSAdam Hornacek * You may not use this file except in compliance with the License.
7*d219b4ceSAdam Hornacek *
8*d219b4ceSAdam Hornacek * See LICENSE.txt included in this distribution for the specific
9*d219b4ceSAdam Hornacek * language governing permissions and limitations under the License.
10*d219b4ceSAdam Hornacek *
11*d219b4ceSAdam Hornacek * When distributing Covered Code, include this CDDL HEADER in each
12*d219b4ceSAdam Hornacek * file and include the License file at LICENSE.txt.
13*d219b4ceSAdam Hornacek * If applicable, add the following below this CDDL HEADER, with the
14*d219b4ceSAdam Hornacek * fields enclosed by brackets "[]" replaced with your own identifying
15*d219b4ceSAdam Hornacek * information: Portions Copyright [yyyy] [name of copyright owner]
16*d219b4ceSAdam Hornacek *
17*d219b4ceSAdam Hornacek * CDDL HEADER END
18*d219b4ceSAdam Hornacek */
19*d219b4ceSAdam Hornacek
20*d219b4ceSAdam Hornacek/*
21*d219b4ceSAdam Hornacek * Copyright (c) 2017, Chris Fraire <cfraire@me.com>.
22*d219b4ceSAdam Hornacek */
23*d219b4ceSAdam Hornacek
24*d219b4ceSAdam Hornacek/*
25*d219b4ceSAdam Hornacek * See org.opengrok.indexer.util.StringUtils FNAME_CHARS_PAT where the
26*d219b4ceSAdam Hornacek * following regex is mirrored.
27*d219b4ceSAdam Hornacek */
28*d219b4ceSAdam HornacekFNameChar = [a-zA-Z0-9_\-\.]
29*d219b4ceSAdam Hornacek
30*d219b4ceSAdam Hornacek/*
31*d219b4ceSAdam Hornacek * Path-like, absolute or relative, where the path components each start with
32*d219b4ceSAdam Hornacek * {ASCII_ALPHA}, where all but the first path component end in {ASCII_ALPHA}
33*d219b4ceSAdam Hornacek * or {DIGIT}, and are otherwise {FNameChar}.
34*d219b4ceSAdam Hornacek */
35*d219b4ceSAdam HornacekFPath = "/"? [a-zA-Z]{FNameChar}* ("/" [a-zA-Z]{FNameChar}*[a-zA-Z0-9])+
36