-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathmain.dart
104 lines (88 loc) · 3.69 KB
/
main.dart
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// Copyright 2019 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import 'dart:async' show Future;
import 'dart:io';
import 'package:args/args.dart';
import 'package:shelf/shelf.dart';
import 'package:shelf/shelf_io.dart' as shelf_io;
import 'package:shelf_router/shelf_router.dart';
// Generated code will be written to 'main.g.dart'
part 'main.g.dart';
class Service {
// A handler is annotated with @Route.<verb>('<route>'), the '<route>' may
// embed URL-parameters, and these may be taken as parameters by the handler.
// But either all URL-parameters or none of the URL parameters must be taken
// as parameters by the handler.
@Route.get('/say-hi/<name>')
Response _hi(Request request, String name) => Response.ok('hi $name');
// Embedded URL parameters may also be associated with a regular-expression
// that the pattern must match.
@Route.get('/user/<userId|[0-9]+>')
Response _user(Request request, String userId) =>
Response.ok('User has the user-number: $userId');
// Handlers can be asynchronous (returning `FutureOr` is also allowed).
@Route.get('/wave')
Future<Response> _wave(Request request) async {
await Future<void>.delayed(const Duration(milliseconds: 100));
return Response.ok('_o/');
}
// Other routers can be mounted...
@Route.mount('/api')
Router get _api => Api().router;
// You can catch all verbs and use a URL-parameter with a regular expression
// that matches everything to catch app.
@Route.all('/<ignored|.*>')
Response _notFound(Request request) => Response.notFound('Page not found');
// The generated function _$ServiceRouter can be used to get a [Handler]
// for this object. This can be used with [shelf_io.serve].
Handler get handler => _$ServiceRouter(this).call;
}
class Api {
// A handler can have more that one route :)
@Route.get('/messages')
@Route.get('/messages/')
Future<Response> _messages(Request request) async => Response.ok('[]');
// This nested catch-all, will only catch /api/.* when mounted above.
// Notice that ordering if annotated handlers and mounts is significant.
@Route.all('/<ignored|.*>')
Response _notFound(Request request) => Response.notFound('null');
// The generated function _$ApiRouter can be used to expose a [Router] for
// this object.
Router get router => _$ApiRouter(this);
}
// Run shelf server and host a [Service] instance on port 8080.
void main(List<String> args) async {
final parser = _getParser();
String address;
int port;
try {
final result = parser.parse(args);
address = result['address'] as String;
port = int.parse(result['port'] as String);
} on FormatException catch (e) {
stderr
..writeln(e.message)
..writeln(parser.usage);
// http://linux.die.net/include/sysexits.h
// #define EX_USAGE 64 /* command line usage error */
exit(64);
}
final service = Service();
final server = await shelf_io.serve(service.handler, address, port);
print('Server running on localhost:${server.port}');
}
ArgParser _getParser() => ArgParser()
..addOption('port', abbr: 'p', defaultsTo: '8080', help: 'Port to listen on')
..addOption('address',
abbr: 'a', defaultsTo: 'localhost', help: 'Address to listen on');