File: seg-validate.pl

package info (click to toggle)
postgresql-15 15.13-0%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 166,512 kB
  • sloc: ansic: 899,752; sql: 109,423; perl: 42,533; yacc: 36,866; xml: 31,046; lex: 8,906; makefile: 6,175; sh: 4,842; cpp: 1,105; python: 151; asm: 65; sed: 16
file content (56 lines) | stat: -rwxr-xr-x 846 bytes parent folder | download | duplicates (2)
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
48
49
50
51
52
53
54
55
56
#!/usr/bin/perl

# Copyright (c) 2021-2022, PostgreSQL Global Development Group

use strict;
use warnings;

my $integer = '[+-]?[0-9]+';
my $real    = '[+-]?[0-9]+\.[0-9]+';

my $RANGE     = '(\.\.)(\.)?';
my $PLUMIN    = q(\'\+\-\');
my $FLOAT     = "(($integer)|($real))([eE]($integer))?";
my $EXTENSION = '<|>|~';

my $boundary  = "($EXTENSION)?$FLOAT";
my $deviation = $FLOAT;

my $rule_1 = $boundary . $PLUMIN . $deviation;
my $rule_2 = $boundary . $RANGE . $boundary;
my $rule_3 = $boundary . $RANGE;
my $rule_4 = $RANGE . $boundary;
my $rule_5 = $boundary;


print "$rule_5\n";
while (<>)
{

	#  s/ +//g;
	if (/^($rule_1)$/)
	{
		print;
	}
	elsif (/^($rule_2)$/)
	{
		print;
	}
	elsif (/^($rule_3)$/)
	{
		print;
	}
	elsif (/^($rule_4)$/)
	{
		print;
	}
	elsif (/^($rule_5)$/)
	{
		print;
	}
	else
	{
		print STDERR "error in $_\n";
	}

}