2017 © Pedro Peláez
 

library paggern

Pattern interpreter for generating random strings.

image

gajus/paggern

Pattern interpreter for generating random strings.

  • Wednesday, July 4, 2018
  • by gajus
  • Repository
  • 1 Watchers
  • 18 Stars
  • 72 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 3 Forks
  • 1 Open issues
  • 2 Versions
  • 555 % Grown

The README.md

Paggern

Build Status Coverage Status Latest Stable Version License, (*1)

Pattern interpreter for generating random strings., (*2)

Generator

$generator = new \Gajus\Paggern\Generator();

/**
 * Generate a set of random codes based on Paggern pattern.
 * Codes are guaranteed to be unique within the set.
 *
 * @param string $pattern Paggern pattern.
 * @param int $amount Number of codes to generate.
 * @param int $safeguard Number of additional codes generated in case there are duplicates that need to be replaced.
 * @return array
 */
$codes = $generator->generateFromPattern('FOO[A-Z]{10}[0-9]{2}', 100);

The above example will generate an array containing 100 codes, each prefixed with "FOO", followed by 10 characters from "ABCDEFGHKMNOPRSTUVWXYZ23456789" haystack and 2 numbers from "0123456789" haystack., (*3)

Paggern utilises RandomLib to generate the pattern matching random character pool., (*4)

Lexer

Lexer exposes a method to tokenise the string. Lexer is independant of the Generator. You can choose to interpret Lexer tokens using your own implementation of the Generator., (*5)

$lexer = new \Gajus\Paggern\Lexer();

/**
 * Tokeniser explodes input into components describing the properties expressed in the pattern.
 *
 * @param string $pattern
 * @param boolean $expand Augment token definition with the haystack of possible values.
 * @return array
 */
$lexer->tokenise('[a-c]{3}[1-3]{3}', true);
[
    [
        'type' => 'range',
        'token' => 'a-c',
        'repetition' => 3,
        'haystack' => 'abc'
    ],
    [
        'type' => 'range',
        'token' => '1-3',
        'repetition' => 3,
        'haystack' => 123
    ]
]

Supported Tokens

Literal

Pattern can consist of literal characters, e.g. prefix of suffix of the code., (*6)

$lexer->tokenise('abc');
[
    [
        'type' => 'literal',
        'string' => 'abc'
    ]
]

The above pattern commands that the string is literally "abc"., (*7)

Range

Range can be either numeric or ASCII., (*8)

$lexer->tokenise('[a-z]');

In the [a-z] example, string must be a character from "abcdefghijklmnopqrstuvwxyz" haystack., (*9)

[
    [
        'type' => 'range',
        'token' => 'a-z',
        'repetition' => 1
    ]
]

Range with Repetition

If the character must occur more than once, use repetition., (*10)

$lexer->tokenise('[a-c]{3}');

In the [a-z]{3} example, string must consist of 3 characters from the "abc" haystack., (*11)

[
    [
        'type' => 'range',
        'token' => 'a-c',
        'repetition' => 3
    ]
]

Character Classes

Predefined character classes can be used instead of ranges., (*12)

Character Class Range
\U "ABCDEFGHKMNOPRSTUVWXYZ23456789" (or A-Z0-9 excluding IJLQ01) describes characters that are unambiguously recognised regardless of the font or case-sensitivity. The designated use case is voucher codes.

Character Classes with Repetition

Similar to the Range with Repetition, Character Classes can be used with repetition, e.g., (*13)

$lexer->tokenise('\U{3}');

Limitations

  • Pattern cannot include []{} characters.
  • Pattern cannot include characters outside of the ASCII.

The Versions

04/07 2018

dev-master

9999999-dev https://github.com/gajus/paggern

Pattern interpreter for generating random strings.

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by Gajus Kuizinas

parser code generator voucher

17/04 2014

0.1.1

0.1.1.0 https://github.com/gajus/parsley

Pattern interpreter for generating random strings.

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by Gajus Kuizinas

parser code generator voucher