Skip to content
Snippets Groups Projects
Commit 351da169 authored by Ashwin's avatar Ashwin
Browse files

Formatting to limit line length to 100

parent 4659b147
No related branches found
No related tags found
No related merge requests found
......@@ -52,9 +52,9 @@ type state struct {
numInstances uint64
}
func Init(rs, rws *store.Store) {
uidStore = rs
dataStore = rws
func Init(uidstore, datastore *store.Store) {
uidStore = uidstore
dataStore = datastore
}
func (s *state) printCounters(ticker *time.Ticker) {
......@@ -239,7 +239,8 @@ func HandleRdfReader(reader io.Reader, instanceIdx uint64, numInstances uint64)
}
// Blocking function.
func HandleRdfReaderWhileAssign(reader io.Reader, instanceIdx uint64, numInstances uint64) (uint64, error) {
func HandleRdfReaderWhileAssign(reader io.Reader, instanceIdx uint64,
numInstances uint64) (uint64, error) {
s := new(state)
s.ctr = new(counters)
ticker := time.NewTicker(time.Second)
......
......@@ -37,14 +37,16 @@ type NQuad struct {
Language string
}
func GetUid(s string, instanceIdx uint64, numInstances uint64, rStore *store.Store) (uint64, error) {
func GetUid(s string, instanceIdx uint64, numInstances uint64,
rStore *store.Store) (uint64, error) {
if strings.HasPrefix(s, "_uid_:") {
return strconv.ParseUint(s[6:], 0, 64)
}
return uid.GetOrAssign(s, instanceIdx, numInstances)
}
func (nq NQuad) ToEdge(instanceIdx, numInstances uint64, rStore *store.Store) (result x.DirectedEdge, rerr error) {
func (nq NQuad) ToEdge(instanceIdx, numInstances uint64,
rStore *store.Store) (result x.DirectedEdge, rerr error) {
sid, err := GetUid(nq.Subject, instanceIdx, numInstances, rStore)
if err != nil {
return result, err
......@@ -104,7 +106,8 @@ func Parse(line string) (rnq NQuad, rerr error) {
// TODO: Strictly parse common types like integers, floats etc.
if len(oval) == 0 {
glog.Fatalf(
"itemObject should be emitted before itemObjectType. Input: %q", line)
"itemObject should be emitted before itemObjectType. Input: %q",
line)
}
oval += "@@" + stripBracketsIfPresent(item.Val)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment