All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nawforce.pkgforce.stream.FlowGenerator.scala Maven / Gradle / Ivy

/*
 Copyright (c) 2020 Kevin Jones, All rights reserved.
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. The name of the author may not be used to endorse or promote products
    derived from this software without specific prior written permission.
 */

package com.nawforce.pkgforce.stream

import com.nawforce.pkgforce.documents._
import com.nawforce.pkgforce.path.{Location, PathLocation}
import com.nawforce.runtime.platform.Path

final case class FlowEvent(sourceInfo: SourceInfo) extends PackageEvent

object FlowGenerator {
  def iterator(index: DocumentIndex): Iterator[PackageEvent] = {
    index
      .get(FlowNature)
      .flatMap(doc => {
        MetadataDocument(Path(doc._2.head)).flatMap(md => {
          val source = md.source
          source.value
            .map(source => {
              Iterator(FlowEvent(SourceInfo(PathLocation(md.path, Location.all), source)))
            })
        })
      })
      .flatten
      .iterator
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy