summaryrefslogtreecommitdiffstats
path: root/static/talks/ox_yapc_na_2011/slides.vroom
blob: c013537a0f520ff53ea923ae0130850b990bc640 (plain) (blame)
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
---- config
title: OX - The hardest working two letters in Perl
indent: 4
height: 28
width: 80
skip: 0
vimrc: colorscheme zellner

---- center

OX
The hardest working two letters in Perl

Jesse Luehrs, Infinity Interactive

http://github.com/stevan/OX/

----

== history

+* custom app-specific stuff
+* CGI::Application
+* Catalyst
+* Plack

---- center

OX - the web anti-framework

---- center

== Stevan

----

== what is OX?

+* Bread::Board
+* Path::Router
+* Plack
+* EXPERIMENTAL

---- perl,i4

---- include app.psgi

----

Bread::Board
+control your object's construction

----

Bread::Board has containers, containers contain services
+an OX application is a Bread::Board container
+all application objects are services in the container

----

services can depend on other services
+dependencies are resolved first
+passed as constructor parameters to the requested service

----

at minimum, the router and the app coderef itself are services

---- perl,i4

package App;
use OX;

has model => (is => 'ro', isa => 'Model');
has view  => (is => 'ro', isa => 'View');
has controller => (
    is           => 'ro',
    isa          => 'Controller',
    dependencies => ['model', 'view'],
);

router as {
    route '/'         => 'root.index';
    route '/inc'      => 'root.inc';
    route '/dec'      => 'root.dec';
    route '/reset'    => 'root.reset';
    route '/set/:num' => 'root.set', (
        num => { isa => 'Int' },
    );
}, (root => 'controller');

__PACKAGE__->meta->make_immutable;
1;

---- perl,i4

package Controller;
use Moose;

has view  => (is => 'ro', isa => 'View',  required => 1);
has model => (is => 'ro', isa => 'Model', required => 1);

sub index { }
sub inc   { my $self = shift; $self->model->inc }
sub dec   { my $self = shift; $self->model->dec }
sub reset { my $self = shift; $self->model->reset }
sub set   { my $self = shift; $self->model->set($_[1]) }

around [qw(index inc dec set reset)] => sub {
    my $orig = shift;
    my $self = shift;
    $self->$orig(@_);
    return $self->view->render($self->model->count);
};

__PACKAGE__->meta->make_immutable;
1;

----

Path::Router
+translate incoming urls into structured data
+also translate structured data into urls

---- perl,i4

route '/set/:num' => 'root.set', (
    num => { isa => 'Int' },
);

----

/set/23 -> { num => 23 }
+not just the hashref, but also the code to call for this path

----

bidirectional

---- perl,i4

$router->uri_for({num => 23}); # '/set/23'

----

this translation is controlled by OX, and is pluggable
+already seen examples
+route '/' => sub { ... }
route '/' => 'root.index'

---- perl,i4

has root => (is => 'ro', isa => 'Controller');

router ['HTTPMethod'] => as {
    route '/' => 'root';
}, (root => 'root');

----

GET request for '/' will call Controller::get
+POST request for '/' will call Controller::post

----

this is just the sugar layer

---- perl,i4

package App;
use OX;

sub configure_router { ... }

----

or, you can replace the router entirely

---- perl,i4

router 'My::Custom::Router::Class';

----

Plack

----

OX applications provide the Plack::Component api
+->prepare_app
->call
->to_app

----

two types of middleware
+deployment (Stacktrace, ReverseProxy)
+app-specific (Session)

----

your application class should be able to declare app-specific middleware

---- perl,i4

router as {
    wrap 'Plack::Middleware::Session';
    route '/' => ...;
};

---- perl,i4

has session_store => (
    is    => 'ro',
    isa   => 'Str',
    value => 'File',
);

router as {
    wrap 'Plack::Middleware::Session' => (
        store => 'session_store',
    );
    route '/' => ...;
};

----

again, this is just the sugar layer

---- perl,i4

package App;
use Moose;
extends 'OX::Application';

sub configure_router {
    ...
}

sub app_from_router {
    ...
}

---- perl,i4

package App;
use Moose;
use Bread::Board;
extends 'OX::Application';

sub BUILD {
    my $self = shift;
    container $self => as {
        ...
    };
}

sub configure_router {
    ...
}

sub app_from_router {
    ...
}

----

benefits of OX

----

reuse
+no wrapper classes required

---- perl,i4

package App;
use OX;

has model => (is => 'ro', isa => 'KiokuX::Model');
has view  => (is => 'ro', isa => 'Template');

...

---- perl,i4

package App;
use OX;

has dsn   => (is => 'ro', isa => 'Str', default => 'dbi:sqlite:app.sqlite');
has root  => (is => 'ro', isa => 'Str', default => 'root/templates');

has model => (
    is           => 'ro',
    isa          => 'KiokuX::Model',
    dependencies => ['dsn'],
);
has view => (
    is           => 'ro',
    isa          => 'Template',
    dependencies => { INCLUDE_PATH => 'root' },
);

...

----

application classes are decoupled, and can be used independently

---- perl,i4

App->new->model

----

get the model object exactly as it would be initialized within the app
+except without initializing the app
+very useful for standalone scripts

----

App->new(dsn => 'dbi:SQLite::memory:')->to_app

----

override specific bits of the application at initialization time
+makes testing very easy
+simple way to fit in mock objects, or adjust configuration for tests

----

the entire structure is just building on existing technology
+applications can use roles and inheritance
+middleware just works
+components are just normal classes, can be built however you want

----

TODO

----

nested applications need work
+in particular, how can services be shared?

----

bread::board subcontainers
+need a syntax for this

----

more extensible routebuilders
+want a way to let the controller object control the dispatching

----

cleaner underlying foundation
+more ways to customize the router
+more ways to customize the container

---- center

Any questions?

http://github.com/stevan/OX/