forked from jamiejennings/rosie-pattern-language
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST
47 lines (34 loc) · 1.63 KB
/
MANIFEST
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
-- -*- Mode: rpl; -*-
--
-- MANIFEST This is the default list of rpl files, in order, that Rosie will
-- compile and load. These should be considered SAMPLE patterns.
--
-- © Copyright IBM Corporation 2015, 2016.
-- LICENSE: MIT License (https://opensource.org/licenses/mit-license.html)
-- AUTHOR: Jamie A. Jennings
-- ---------------------------------------------------------------------------------------------------
-- Valid file name prefixes:
--
-- $sys = the Rosie install directory
-- $lib = the directory of the manifest file
-- $(VAR) = the value of the environment variable $VAR
--
-- Otherwise, the filename is simply opened, whether it is relative to the current directory or an
-- absolute path name.
-- ---------------------------------------------------------------------------------------------------
-- Of general utility:
$sys/rpl/common.rpl -- commonly used patterns like float, word
$sys/rpl/datetime.rpl -- various dates, times
$sys/rpl/network.rpl -- ip address, hostname, http commands, email
$sys/rpl/basic.rpl -- for matching full lines of input against a
-- variety of "basic" patterns of semantic interest
$sys/rpl/csv.rpl -- CSV file formats
$sys/rpl/json.rpl -- JSON data format
-- Some definitions that are familiar to grep users:
$sys/rpl/grep.rpl
-- Sample patterns for processing log files:
$sys/rpl/spark.rpl -- spark logs with python and java entries
-- Parsing comments of various kinds out of source code:
$sys/rpl/language-comments.rpl
-- Esoteric, perhaps:
$sys/rpl/rosie.rpl