/src/jvm/jcascalog/example/Examples.java

http://github.com/nathanmarz/cascalog · Java · 122 lines · 107 code · 14 blank · 1 comment · 0 complexity · 041e61cf8fe7a87c6babe795ba3632c1 MD5 · raw file

  1. package jcascalog.example;
  2. import com.twitter.maple.tap.StdoutTap;
  3. import jcascalog.Api;
  4. import jcascalog.Option;
  5. import jcascalog.Playground;
  6. import jcascalog.Subquery;
  7. import jcascalog.op.Count;
  8. import jcascalog.op.GT;
  9. import jcascalog.op.LT;
  10. import jcascalog.op.Multiply;
  11. public class Examples {
  12. public static void twentyFiveYearOlds() {
  13. Api.execute(
  14. new StdoutTap(),
  15. new Subquery("?person")
  16. .predicate(Playground.AGE, "?person", 25));
  17. }
  18. public static void lessThanThirtyYearsOld() {
  19. Api.execute(
  20. new StdoutTap(),
  21. new Subquery("?person")
  22. .predicate(Playground.AGE, "?person", "?age")
  23. .predicate(new LT(), "?age", 30));
  24. }
  25. public static void lessThanThirtyYearsOldWithAge() {
  26. Api.execute(
  27. new StdoutTap(),
  28. new Subquery("?person", "?age")
  29. .predicate(Playground.AGE, "?person", "?age")
  30. .predicate(new LT(), "?age", 30));
  31. }
  32. public static void doubleAges() {
  33. Api.execute(
  34. new StdoutTap(),
  35. new Subquery("?person", "?double-age")
  36. .predicate(Playground.AGE, "?person", "?age")
  37. .predicate(new Multiply(), "?age", 2).out("?double-age"));
  38. }
  39. public static void distinctPeopleFromFollows() {
  40. Api.execute(
  41. new StdoutTap(),
  42. new Subquery("?person")
  43. .predicate(Playground.FOLLOWS, "?person", "_")
  44. .predicate(Option.DISTINCT, true));
  45. }
  46. public static void nonDistinctPeopleFromFollows() {
  47. Api.execute(
  48. new StdoutTap(),
  49. new Subquery("?person")
  50. .predicate(Playground.FOLLOWS, "?person", "_"));
  51. }
  52. public static void malePeopleEmilyFollows() {
  53. Api.execute(
  54. new StdoutTap(),
  55. new Subquery("?person")
  56. .predicate(Playground.FOLLOWS, "emily", "?person")
  57. .predicate(Playground.GENDER, "?person", "m"));
  58. }
  59. public static void followsManyFollows() {
  60. Subquery manyFollows =
  61. new Subquery("?person")
  62. .predicate(Playground.FOLLOWS, "?person", "_")
  63. .predicate(new Count(), "?count")
  64. .predicate(new GT(), "?count", 2);
  65. Api.execute(
  66. new StdoutTap(),
  67. new Subquery("?person1", "?person2")
  68. .predicate(manyFollows, "?person1")
  69. .predicate(manyFollows, "?person2")
  70. .predicate(Playground.FOLLOWS, "?person1", "?person2"));
  71. }
  72. public static void followsManyFollowsConcise() {
  73. // this implementation uses Api.each to shorten the implementation
  74. Subquery manyFollows =
  75. new Subquery("?person")
  76. .predicate(Playground.FOLLOWS, "?person", "_")
  77. .predicate(new Count(), "?count")
  78. .predicate(new GT(), "?count", 2);
  79. Api.execute(
  80. new StdoutTap(),
  81. new Subquery("?person1", "?person2")
  82. .predicate(Api.each(manyFollows), "?person1", "?person2")
  83. .predicate(Playground.FOLLOWS, "?person1", "?person2"));
  84. }
  85. public static void sentenceUniqueWords() {
  86. Api.execute(
  87. new StdoutTap(),
  88. new Subquery("?word")
  89. .predicate(Playground.SENTENCE, "?sentence")
  90. .predicate(new Split(), "?sentence").out("?word")
  91. .predicate(Option.DISTINCT, true));
  92. }
  93. public static void wordCount() {
  94. Api.execute(
  95. new StdoutTap(),
  96. new Subquery("?word", "?count")
  97. .predicate(Playground.SENTENCE, "?sentence")
  98. .predicate(new Split(), "?sentence").out("?word")
  99. .predicate(new Count(), "?count"));
  100. }
  101. public static void lineCountWithFiles() {
  102. Api.execute(
  103. Api.hfsTextline("/tmp/myresults"),
  104. new Subquery("?count")
  105. .predicate(Api.hfsTextline("src/jvm/jcascalog/example"), "_")
  106. .predicate(new Count(), "?count"));
  107. }
  108. }