-
Notifications
You must be signed in to change notification settings - Fork 16
/
apdx-helpers.lyx
2625 lines (1855 loc) · 41.2 KB
/
apdx-helpers.lyx
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#LyX 1.6.10 created this file. For more info see http://www.lyx.org/
\lyxformat 345
\begin_document
\begin_header
\textclass book
\use_default_options false
\language english
\inputencoding auto
\font_roman default
\font_sans default
\font_typewriter default
\font_default_family default
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100
\graphics default
\paperfontsize default
\spacing single
\use_hyperref false
\papersize default
\use_geometry false
\use_amsmath 1
\use_esint 1
\cite_engine basic
\use_bibtopic false
\paperorientation portrait
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\defskip medskip
\quotes_language english
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\author ""
\author ""
\end_header
\begin_body
\begin_layout Chapter
Lift Helpers
\begin_inset CommandInset label
LatexCommand label
name "cha:Lift-Helpers"
\end_inset
\end_layout
\begin_layout Section
Introduction
\begin_inset CommandInset label
LatexCommand label
name "sec:Introduction"
\end_inset
\end_layout
\begin_layout Standard
Lift provides a fairly useful collection of helper artifacts.
The helpers are essentially utility functions that minimize the need for
boilerplate code.
This appendix is intended to introduce some of the more common utility
classes and objects to you so that you’re familiar with them.
If you would like more details, you can look at the API documentation for
the
\family typewriter
net.liftweb.util package
\family default
.
\end_layout
\begin_layout Section
Box (or Scala's Option class on steroids)
\begin_inset CommandInset label
LatexCommand label
name "sec:Box-(or-Scala's"
\end_inset
\end_layout
\begin_layout Standard
\family typewriter
net.liftweb.util.Box
\family default
(or Scala’s
\family typewriter
scala.Option
\family default
class on steroids) is a utility class that mimics Scala’s
\family typewriter
Option
\family default
type (also heavily used inside Lift).
To understand some of the underlying concepts and assumptions, let’s take
a quick look at
\family typewriter
Option
\family default
class first.
The
\family typewriter
Option
\family default
class allows a type-safe way of dealing with a situation where you may
or may not have a result.
\family typewriter
Option
\family default
has two values, either
\family typewriter
Some(value)
\family default
, where
\family typewriter
value
\family default
is actually the value, and
\family typewriter
None
\family default
, which is used to represent nothing.
A typical example for
\family typewriter
Option
\family default
is outlined using Scala’s Map type.
Listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:Option-and-Map"
\end_inset
shows a definition of a
\family typewriter
Map
\family default
, a successful attempt to get the value of key
\family typewriter
a
\family default
, and an attempt to get the value of key
\family typewriter
i
\family default
.
Notice that when we retrieved the existing key-value pair for
\family typewriter
a
\family default
, the value returned was
\family typewriter
Some(A)
\family default
and when we asked for the value of key
\family typewriter
i
\family default
, we received None.
\end_layout
\begin_layout Standard
\begin_inset listings
inline false
status open
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
Option and Map example
\begin_inset CommandInset label
LatexCommand label
name "lst:Option-and-Map"
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
scala> val cap = Map("a" -> "A", "b" -> "B")
\end_layout
\begin_layout Plain Layout
cap: scala.collection.immutable.Map[java.lang.String,java.lang.String] =
\end_layout
\begin_layout Plain Layout
Map(a -> A, b -> B)
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
scala> cap.get("a")
\end_layout
\begin_layout Plain Layout
res1: Option[java.lang.String] = Some(A)
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
scala> cap.get("i")
\end_layout
\begin_layout Plain Layout
res2: Option[java.lang.String] = None
\end_layout
\end_inset
\end_layout
\begin_layout Standard
Getting the value out of an
\family typewriter
Option
\family default
is usually handled via Scala’s matching mechanism or via the
\family typewriter
getOrElse
\family default
function, as shown in Listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:Fetch-value-from"
\end_inset
:
\end_layout
\begin_layout Standard
\begin_inset listings
inline false
status open
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
Fetch value from an Option
\begin_inset CommandInset label
LatexCommand label
name "lst:Fetch-value-from"
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
def prettyPrint(foo: Option[String]): String = foo match {
\end_layout
\begin_layout Plain Layout
case Some(x) => x
\end_layout
\begin_layout Plain Layout
case None => "Nothing found."
\end_layout
\begin_layout Plain Layout
}
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
// Which would be used in conjunction with the previous code:
\end_layout
\begin_layout Plain Layout
scala> prettyPrint(cap.get("a"))
\end_layout
\begin_layout Plain Layout
res7: String = A
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
scala> prettyPrint(cap.get("i"))
\end_layout
\begin_layout Plain Layout
res8: String = Nothing found.
\end_layout
\end_inset
\end_layout
\begin_layout Standard
\family typewriter
Box
\family default
in Lift covers the same base functionality as
\family typewriter
Option
\family default
but expands the semantics for missing values.
If we have an
\family typewriter
Option
\family default
that is
\family typewriter
None
\family default
at some point, we can’t really tell why that
\family typewriter
Option
\family default
is
\family typewriter
None
\family default
, although in many situations, knowing why would be quite helpful.
With
\family typewriter
Box
\family default
, on the other hand, you have either have a
\family typewriter
Full
\family default
instance (corresponding to
\family typewriter
Some
\family default
with
\family typewriter
Option
\family default
) or an instance that subclasses
\family typewriter
EmptyBox
\family default
(corresponding to
\family typewriter
None
\family default
).
\family typewriter
EmptyBox
\family default
can either be an
\family typewriter
Empty
\family default
instance or a
\family typewriter
Failure
\family default
instance incorporating the cause for the failure.
So you can think of
\family typewriter
Box
\family default
as a container with three states: full, empty, or empty for a particular
reason.
The
\family typewriter
Failure
\family default
case class takes three arguments: a
\family typewriter
String
\family default
message to describe the failure, a
\family typewriter
Box[Throwable]
\family default
for an optional exception related to the failure, and a
\family typewriter
Box[Failure]
\family default
for chaining based on earlier
\family typewriter
Failure
\family default
s.
\end_layout
\begin_layout Standard
As an example of how we can use
\family typewriter
Box
\family default
instances in real code, consider the case where we have to do a bunch of
null checks, perform an operation, and then perform more null checks, other
operations, and so on.
Listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:Pseudocode-nested-operations"
\end_inset
shows an example of this sort of structure.
\end_layout
\begin_layout Standard
\begin_inset listings
inline false
status open
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
Pseudocode nested operations example
\begin_inset CommandInset label
LatexCommand label
name "lst:Pseudocode-nested-operations"
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
x = getSomeValue();
\end_layout
\begin_layout Plain Layout
if (x != null) {
\end_layout
\begin_layout Plain Layout
y = getSomeOtherValue();
\end_layout
\begin_layout Plain Layout
if (y != null) {
\end_layout
\begin_layout Plain Layout
compute(x, y);
\end_layout
\begin_layout Plain Layout
}
\end_layout
\begin_layout Plain Layout
}
\end_layout
\begin_layout Plain Layout
\end_layout
\end_inset
\end_layout
\begin_layout Standard
This is tedious and error-prone in practice.
Now let’s see if we can do better by combining Lift’s
\family typewriter
Box
\family default
with Scala’s for comprehensions as shown in Listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:Scala-nested-operations"
\end_inset
.
\end_layout
\begin_layout Standard
\begin_inset listings
inline false
status open
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
Box nested operations example
\begin_inset CommandInset label
LatexCommand label
name "lst:Scala-nested-operations"
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
def getSomeValue(): Box[Int] = Full(12)
\end_layout
\begin_layout Plain Layout
def getSomeOtherValue(): Box[Int] = Full(2)
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
def compute(x: Int, y: Int) = x * y
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
val res = for ( x <- getSomeValue();
\end_layout
\begin_layout Plain Layout
y <- getSomeOtherValue() if x > 10) yield compute(x,
y)
\end_layout
\begin_layout Plain Layout
println(res)
\end_layout
\end_inset
\end_layout
\begin_layout Standard
In Listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:Scala-nested-operations"
\end_inset
, we have two values,
\family typewriter
x
\family default
and
\family typewriter
y
\family default
, and we want to do some computation with these values.
But we must ensure that computation is done on the correct data.
For instance, the computation cannot be done if
\family typewriter
getSomeValue
\family default
returns no value.
In this context, the two functions return a
\family typewriter
Box[Int]
\family default
.
The interesting part is that if either or both of the two functions return
an
\family typewriter
Empty
\family default
Box instead of
\family typewriter
Full
\family default
(
\family typewriter
Empty
\family default
impersonating the nonexistence of the value), the
\family typewriter
res
\family default
value will also be
\family typewriter
Empty
\family default
.
However, if both functions return a
\family typewriter
Full
\family default
(like in Listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:Scala-nested-operations"
\end_inset
), the computation is called.
In our example the two functions return
\family typewriter
Full(12)
\family default
and
\family typewriter
Full(2)
\family default
, so
\family typewriter
res
\family default
will be a
\family typewriter
Full(24)
\family default
.
\end_layout
\begin_layout Standard
But we have something else interesting here: the
\family typewriter
if x > 10
\family default
statement (this is called a “guard” in Scala).
If the call to
\family typewriter
getSomeValue
\family default
returns a value less than or equal to 10, the
\family typewriter
y
\family default
variable won’t be initialized, and the res value will be
\family typewriter
Empty
\family default
.
This is just a taste of some of the power of using
\family typewriter
Box
\family default
for comprehensions; for more details on for comprehensions, see
\emph on
The Scala Language Specification
\emph default
, section 6.19, or one of the many Scala books available.
\end_layout
\begin_layout Standard
Lift’s
\family typewriter
Box
\family default
extends
\family typewriter
Option
\family default
with a few ideas, mainly the fact that you can add a message about why
a
\family typewriter
Box
\family default
is
\family typewriter
Empty
\family default
.
\family typewriter
Empty
\family default
corresponds to
\family typewriter
Option
\family default
’s
\family typewriter
None
\family default
and
\family typewriter
Full
\family default
to
\family typewriter
Option
\family default
’s Some.
So you can pattern match against a
\family typewriter
Box
\family default
as shown in Listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:Box-example"
\end_inset
.
\end_layout
\begin_layout Standard
\begin_inset listings
inline false
status open
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
Box example
\begin_inset CommandInset label
LatexCommand label
name "lst:Box-example"
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
a match {
\end_layout
\begin_layout Plain Layout
Full(author) => Text("I found the author " + author.niceName)
\end_layout
\begin_layout Plain Layout
Empty => Text("No author by that name.")
\end_layout
\begin_layout Plain Layout
// message may be something like "Database disconnected."
\end_layout
\begin_layout Plain Layout
Failure(message, _, _) => Text("Nothing found due to " + message)
\end_layout
\begin_layout Plain Layout
}
\end_layout
\begin_layout Plain Layout
def confirmDelete {
\end_layout
\begin_layout Plain Layout
(for (val id <- param("id"); // get the ID
\end_layout
\begin_layout Plain Layout
val user <- User.find(id)) // find the user
\end_layout
\begin_layout Plain Layout
yield {
\end_layout
\begin_layout Plain Layout
user.delete_!
\end_layout
\begin_layout Plain Layout
notice("User deleted")
\end_layout
\begin_layout Plain Layout
redirectTo("/simple/index.html")
\end_layout
\begin_layout Plain Layout
}) getOrElse {error("User not found"); redirectTo("/simple/index.html")}
\end_layout
\begin_layout Plain Layout
}
\end_layout
\begin_layout Plain Layout
\end_layout
\end_inset
\end_layout
\begin_layout Standard
In conjunction with Listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:Box-example"
\end_inset
, we can use other
\family typewriter
Box
\family default
functions, such as the
\family typewriter
openOr
\family default
function shown in Listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:openOr-example"
\end_inset
.
\end_layout
\begin_layout Standard
\begin_inset listings
inline false
status open
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
openOr example
\begin_inset CommandInset label
LatexCommand label
name "lst:openOr-example"
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
lazy val UserBio = UserBio.find(By(UserBio.id, id)) openOr (new UserBio)
\end_layout
\begin_layout Plain Layout
def view (xhtml: NodeSeq): NodeSeq = passedAuthor.map({ author =>
\end_layout
\begin_layout Plain Layout
// do bind, etc here and return a NodeSeq
\end_layout
\begin_layout Plain Layout
}) openOr Text("Invalid author")
\end_layout
\end_inset
\end_layout
\begin_layout Standard
We won't be detailing all of the Box functions here, but a few words on
the most common function might be benficial.
\end_layout
\begin_layout Standard
\align center
\begin_inset Tabular
<lyxtabular version="3" rows="10" columns="3">
<features>
<column alignment="left" valignment="top" width="1in">
<column alignment="left" valignment="top" width="2.75in">
<column alignment="left" valignment="top" width="2in">
<row>
<cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
\begin_inset Text
\begin_layout Plain Layout
Function name
\end_layout
\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
\begin_inset Text