aboutsummaryrefslogtreecommitdiffstats
path: root/scalding/src/main/scala/sandcrawler/ScoreJob.scala
blob: 0dbe64da67ad902df88d6b4ccbdbc109fa684620 (plain)
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
package sandcrawler

import cascading.flow.FlowDef
import cascading.tuple.Fields
import com.twitter.scalding._
import com.twitter.scalding.typed.TDsl._
import parallelai.spyglass.base.JobBase
import parallelai.spyglass.hbase.HBasePipeConversions
import parallelai.spyglass.hbase.HBaseSource

//case class MapFeatures(slug : String, json : String)

class ScoreJob(args: Args) extends JobBase(args) { //with HBasePipeConversions {

  val grobidSource = HBaseCrossrefScore.getHBaseSource(
    args("hbase-table"),
    args("zookeeper-hosts"))

  val source0 : Source = TextLine("foo")
  val pipe0 : cascading.pipe.Pipe = source0.read
  // This compiles:
  val pipe00 : TypedPipe[String] = getFeaturesPipe0(pipe0)

  // Calling a method within ScoreJob compiles fine.
  def getFeaturesPipe0(pipe : cascading.pipe.Pipe) : TypedPipe[String] = {
    pipe
    // This compiles:
      .toTypedPipe[String](new Fields("line"))
  }

  // Calling a function in a ScoreJob object leads to a compiler error.
  val source1 : Source = TextLine("foo")
  val pipe1 : cascading.pipe.Pipe = source1.read
  // This leads to a compile error:
  val pipe11 : TypedPipe[String] = ScoreJob.getFeaturesPipe1(pipe0)

  /*
  val pipe : cascading.pipe.Pipe = grobidSource
    .read
  val grobidPipe : TypedPipe[(String, String)] = pipe
    .fromBytesWritable(new Fields("key", "tei_json"))
  // Here I CAN call Pipe.toTypedPipe()
    .toTypedPipe[(String, String)]('key, 'tei_json)
    .write(TypedTsv[(String, String)](args("output")))

  // Let's try making a method call.
//  ScoreJob.etFeaturesPipe(pipe)

  // TODO: Instantiate any subclass of Scorable specified in args.
  Scorable sc1 = new GrobidScorable()
  Scorable sc2 = new CrossrefScorable()
  val pipe1 : TypedPipe[(String, ReduceFeatures)] = sc1.getInputPipe(sc1.getSource().read)
  val pipe2 : TypedPipe[(String, ReduceFeatures)] = sc2.getInputPipe(sc2.getSource().read)


  pipe1.join(pipe2).map { entry =>
    val (slug : String, (features1 : ReduceFeatures, features2 : ReduceFeatures)) = entry
    new ReduceOutput(
      slug,
      Scorable.computeSimilarity(features1, features2),
      features1.json,
      features2.json)
  }
    .write(TypedTsv[ReduceOutput](args("output")))
   */

}

// Ugly hack to get non-String information into ScoreJob above.
object ScoreJob {
  var scorable1 : Option[Scorable] = None
  var scorable2 : Option[Scorable] = None

  def setScorable1(s : Scorable) {
    scorable1 = Some(s)
  }

  def getScorable1() : Scorable = {
    scorable1  match {
      case Some(s) => s
      case None => null
    }
  }

  def setScorable2(s: Scorable) {
    scorable2 = Some(s)
  }

  def getScorable2() : Scorable = {
    scorable2 match {
      case Some(s) => s
      case None => null
    }
  }

  def getFeaturesPipe1(pipe : cascading.pipe.Pipe) : TypedPipe[String] = {
    pipe
    // The next line gives an error: value toTypedPipe is not a member of cascading.pipe.Pipe
      .toTypedPipe[String](new Fields("line"))
  }
/*
  def getFeaturesPipe(pipe : cascading.pipe.Pipe) : TypedPipe[MapFeatures] = {
    pipe
      .fromBytesWritable(new Fields("key", "tei_json"))
    // I needed to change symbols to strings when I pulled this out of ScoreJob.
      .toTypedPipe[(String, String)](new Fields("key", "tei_json"))
      .map { entry =>
        val (key : String, json : String) = (entry._1, entry._2)
        GrobidScorable.grobidToSlug(json) match {
          case Some(slug) => new MapFeatures(slug, json)
          case None => new MapFeatures(Scorable.NoSlug, json)
        }
      }
  }
 */
}