Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Top level code in examples #30

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ jobs:
# Run tests on all OS's and HHVM versions, even if one fails
fail-fast: false
matrix:
os: [ ubuntu ]
os: [ ubuntu-20.04 ]
hhvm:
- '4.128'
- latest
- nightly
runs-on: ${{matrix.os}}-latest
- '4.153'
- '4.168'
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Create branch for version alias
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ final class BaseRouterExample extends BaseRouter<TResponder> {
```

Simplified for conciseness - see
[`examples/BaseRouterExample.php`](examples/BaseRouterExample.php) for
[`examples/RunBaseRouterExample.php`](examples/RunBaseRouterExample.php) for
full executable example.

UriPatterns
Expand Down Expand Up @@ -87,7 +87,7 @@ $link = UserPageController::getUriBuilder()
```

These examples are simplified for conciseness - see
[`examples/UriPatternsExample.php`](examples/UriPatternsExample.php) for
[`examples/RunUriPatternsExample.php`](examples/RunUriPatternsExample.php) for
full executable example.

Codegen
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"keywords": ["hack", "router", "routing", "hhvm"],
"homepage": "https://github.com/hhvm/hack-router",
"require": {
"hhvm": "^4.128",
"hhvm": "^4.153",
"facebook/hack-http-request-response-interfaces": "^0.2|^0.3"
},
"extra": {
Expand Down
30 changes: 30 additions & 0 deletions examples/RunBaseRouterExample.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?hh // strict
/*
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/

/***********
* IF YOU EDIT THIS FILE also update the snippet in README.md
***********/

namespace Facebook\HackRouter\Examples\BaseRouterExample;

<<__EntryPoint>>
function main(): noreturn {
require_once __DIR__.'/../vendor/autoload.hack';
\Facebook\AutoloadMap\initialize();

$router = new BaseRouterExample();
foreach (get_example_inputs() as $input) {
list($method, $path) = $input;

list($responder, $params) = $router->routeMethodAndPath($method, $path);
\printf("%s %s\n\t%s\n", $method, $path, $responder(dict($params)));
}
exit(0);
}
30 changes: 30 additions & 0 deletions examples/RunUriPatternsExample.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?hh // strict
/*
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/

/***********
* IF YOU EDIT THIS FILE also update the snippet in README.md
***********/

namespace Facebook\HackRouter\Examples\UrlPatternsExample;

use type Facebook\HackRouter\HttpMethod;

<<__EntryPoint>>
function main(): void {
require_once __DIR__.'/../vendor/autoload.hack';
\Facebook\AutoloadMap\initialize();

$router = new UriPatternsExample();
foreach (get_example_paths() as $path) {
list($controller, $params) =
$router->routeMethodAndPath(HttpMethod::GET, $path);
\printf("GET %s\n\t%s\n", $path, (new $controller($params))->getResponse());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,22 @@

namespace Facebook\HackRouter\Examples\BaseRouterExample;

require_once(__DIR__.'/../vendor/hh_autoload.php');

use type Facebook\HackRouter\{BaseRouter, HttpMethod};

/** This can be whatever you want; in this case, it's a
* callable, but classname<MyWebControllerBase> is also a
* common choice.
*/
type TResponder = (function(dict<string, string>):string);
type TResponder = (function(dict<string, string>): string);

final class BaseRouterExample extends BaseRouter<TResponder> {
<<__Override>>
protected function getRoutes(
): ImmMap<HttpMethod, ImmMap<string, TResponder>> {
return ImmMap {
HttpMethod::GET => ImmMap {
'/' =>
($_params) ==> 'Hello, world',
'/user/{user_name}' =>
($params) ==> 'Hello, '.$params['user_name'],
'/' => ($_params) ==> 'Hello, world',
'/user/{user_name}' => ($params) ==> 'Hello, '.$params['user_name'],
},
HttpMethod::POST => ImmMap {
'/' => ($_params) ==> 'Hello, POST world',
Expand All @@ -50,20 +46,3 @@ function get_example_inputs(): ImmVector<(HttpMethod, string)> {
tuple(HttpMethod::POST, '/'),
};
}

<<__EntryPoint>>
function main(): noreturn {
$router = new BaseRouterExample();
foreach (get_example_inputs() as $input) {
list($method, $path) = $input;

list($responder, $params) = $router->routeMethodAndPath($method, $path);
\printf(
"%s %s\n\t%s\n",
$method,
$path,
$responder(dict($params)),
);
}
exit(0);
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,14 @@

namespace Facebook\HackRouter\Examples\UrlPatternsExample;

require_once(__DIR__.'/../vendor/hh_autoload.php');

use type Facebook\HackRouter\{
use type Facebook\HackRouter\{
BaseRouter,
GetFastRoutePatternFromUriPattern,
GetUriBuilderFromUriPattern,
HasUriPattern,
HttpMethod,
RequestParameters,
UriPattern
UriPattern,
};

<<__ConsistentConstruct>>
Expand All @@ -38,12 +36,10 @@ final protected function getRequestParameters(): RequestParameters {
return $this->uriParameters;
}

public function __construct(
ImmMap<string, string> $uri_parameter_values,
) {
public function __construct(ImmMap<string, string> $uri_parameter_values) {
$this->uriParameters = new RequestParameters(
static::getUriPattern()->getParameters(),
ImmVector { },
ImmVector {},
$uri_parameter_values,
);
}
Expand Down Expand Up @@ -86,8 +82,7 @@ public static function getControllers(): ImmVector<TResponder> {
}

<<__Override>>
public function getRoutes(
): ImmMap<HttpMethod, ImmMap<string, TResponder>> {
public function getRoutes(): ImmMap<HttpMethod, ImmMap<string, TResponder>> {
$urls_to_controllers = dict[];
foreach (self::getControllers() as $controller) {
$pattern = $controller::getFastRoutePattern();
Expand All @@ -107,21 +102,3 @@ function get_example_paths(): ImmVector<string> {
->getPath(),
};
}

function main(): void {
$router = new UriPatternsExample();
foreach (get_example_paths() as $path) {
list($controller, $params) = $router->routeMethodAndPath(
HttpMethod::GET,
$path,
);
\printf(
"GET %s\n\t%s\n",
$path,
(new $controller($params))->getResponse(),
);
}
}

/* HH_IGNORE_ERROR[1002] top-level statement in strict file */
main();
4 changes: 2 additions & 2 deletions src/http-exceptions/InternalServerErrorException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@

namespace Facebook\HackRouter;

class InternalServerErrorException extends HttpException {
}
// HHAST_IGNORE_ERROR[FinalOrAbstractClass] @see UnknownRouterException.
class InternalServerErrorException extends HttpException {}
1 change: 1 addition & 0 deletions src/http-exceptions/MethodNotAllowedException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

namespace Facebook\HackRouter;

// HHAST_IGNORE_ERROR[FinalOrAbstractClass] maybe extended outside this library.
class MethodNotAllowedException extends HttpException {
public function __construct(
protected keyset<HttpMethod> $allowed,
Expand Down
4 changes: 2 additions & 2 deletions src/http-exceptions/NotFoundException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@

namespace Facebook\HackRouter;

class NotFoundException extends HttpException {
}
// HHAST_IGNORE_ERROR[FinalOrAbstractClass] maybe extended outside this library.
class NotFoundException extends HttpException {}
14 changes: 9 additions & 5 deletions src/request-parameters/EnumRequestParameter.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,21 @@

use namespace HH\Lib\{Str, Vec};

/**
* WARNING: hh_client will not infer a correct enum type when given `SomeEnum::class`.
* @see RequestParametersTest::testInvalidEnumParamToUri() (grep for @ref)
* `EnumRequestParameterExplicit` is typesafe, so you can use that instead.
*/
// HHAST_IGNORE_ERROR[FinalOrAbstractClass] comment above.
class EnumRequestParameter<T> extends TypedUriParameter<T> {
public function __construct(
/* HH_FIXME[2053] */
private classname<\HH\BuiltinEnum<T>> $enumClass,
private \HH\enumname<T> $enumClass,
string $name,
) {
parent::__construct($name);
}

/* HH_FIXME[2053] */
final public function getEnumName(): classname<\HH\BuiltinEnum<T>> {
final public function getEnumName(): \HH\enumname<T> {
return $this->enumClass;
}

Expand All @@ -42,7 +46,7 @@ public function assert(string $input): T {
public function getRegExpFragment(): ?string {
$class = $this->enumClass;
$values = $class::getValues();
$sub_fragments = Vec\map($values, $value ==> \preg_quote((string) $value));
$sub_fragments = Vec\map($values, $value ==> \preg_quote((string)$value));
return '(?:'.Str\join($sub_fragments, '|').')';
}
}
14 changes: 14 additions & 0 deletions src/request-parameters/EnumRequestParameterExplicit.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?hh // strict
/*
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/

namespace Facebook\HackRouter;

final class EnumRequestParameterExplicit<<<__Explicit>> T>
extends EnumRequestParameter<T> {}
9 changes: 3 additions & 6 deletions src/request-parameters/RequestParameterGetters.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ final public function getOptionalInt(string $name): ?int {
}

final public function getEnum<TValue>(
/* HH_FIXME[2053] */
classname<\HH\BuiltinEnum<TValue>> $class,
\HH\enumname<TValue> $class,
string $name,
): TValue {
$value = $this->getEnumImpl(
Expand All @@ -45,8 +44,7 @@ classname<\HH\BuiltinEnum<TValue>> $class,
}

final public function getOptionalEnum<TValue>(
/* HH_FIXME[2053] */
classname<\HH\BuiltinEnum<TValue>> $class,
\HH\enumname<TValue> $class,
string $name,
): ?TValue {
return $this->getEnumImpl(
Expand All @@ -58,8 +56,7 @@ classname<\HH\BuiltinEnum<TValue>> $class,

final private function getEnumImpl<TValue>(
EnumRequestParameter<TValue> $spec,
/* HH_FIXME[2053] */
classname<\HH\BuiltinEnum<TValue>> $class,
\HH\enumname<TValue> $class,
string $name,
): ?TValue {
invariant(
Expand Down
8 changes: 3 additions & 5 deletions src/request-parameters/RequestParametersBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@ public function __construct(
KeyedTraversable<string, string> $values,
) {
$this->values = new ImmMap($values);
$spec_vector_to_map = (
Traversable<RequestParameter> $specs
) ==> Dict\pull($specs, $it ==> $it, $it ==> $it->getName());
$spec_vector_to_map = (Traversable<RequestParameter> $specs) ==>
Dict\pull($specs, $it ==> $it, $it ==> $it->getName());

$this->requiredSpecs = $spec_vector_to_map($required_specs);
$this->optionalSpecs = $spec_vector_to_map($optional_specs);
Expand Down Expand Up @@ -63,14 +62,13 @@ classname<T> $class,
): T {
$spec = $specs[$name];
invariant(
/* HH_FIXME[4162] need reified generics */
\is_a($spec, $class),
'Expected %s to be a %s, got %s',
$name,
$class,
\get_class($spec),
);
return /* HH_FIXME[4110] */ $spec;
return \HH\FIXME\UNSAFE_CAST<RequestParameter, T>($spec, 'is_a($spec, $class) ~= $spec is T');
}

final protected function getSimpleTyped<T>(
Expand Down
1 change: 1 addition & 0 deletions src/router/UnknownRouterException.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

namespace Facebook\HackRouter;

// HHAST_IGNORE_ERROR[FinalOrAbstractClass] maybe extended outside this library.
class UnknownRouterException extends InternalServerErrorException {
public function __construct(private vec<mixed> $fastRouteData) {
parent::__construct(
Expand Down
5 changes: 4 additions & 1 deletion src/uri-patterns/UriBuilderBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,15 @@ classname<TypedUriParameter<T>> $parameter_type,
$parameter_type,
\get_class($part),
);
$part = \HH\FIXME\UNSAFE_CAST<RequestParameter, TypedUriParameter<T>>(
$part,
'is_a($part, $parameter_type) ~= $part is TypedUriParameter<T>',
);
invariant(
!$this->values->containsKey($name),
'trying to set %s twice',
$name,
);
/* HH_FIXME[4053] need reified generics */
$this->values[$name] = $part->getUriFragment($value);
return $this;
}
Expand Down
2 changes: 1 addition & 1 deletion src/uri-patterns/UriBuilderSetters.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ final public function setInt(string $name, int $value): this {
}

final public function setEnum<T>(
/* HH_FIXME[2053] */ classname<\HH\BuiltinEnum<T>> $class,
\HH\enumname<T> $class,
string $name,
T $value,
): this {
Expand Down
Loading