Skip to content

Commit

Permalink
KTOR-7548 Introduce Flow API for multi-part
Browse files Browse the repository at this point in the history
  • Loading branch information
bjhham committed Oct 8, 2024
1 parent 2b67b7b commit 4d5ca8c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
1 change: 1 addition & 0 deletions ktor-http/api/ktor-http.api
Original file line number Diff line number Diff line change
Expand Up @@ -1240,6 +1240,7 @@ public final class io/ktor/http/content/MultipartJvmKt {
}

public final class io/ktor/http/content/MultipartKt {
public static final fun asFlow (Lio/ktor/http/content/MultiPartData;)Lkotlinx/coroutines/flow/Flow;
public static final fun forEachPart (Lio/ktor/http/content/MultiPartData;Lkotlin/jvm/functions/Function2;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
public static final fun readAllParts (Lio/ktor/http/content/MultiPartData;Lkotlin/coroutines/Continuation;)Ljava/lang/Object;
}
Expand Down
1 change: 1 addition & 0 deletions ktor-http/api/ktor-http.klib.api
Original file line number Diff line number Diff line change
Expand Up @@ -1620,6 +1620,7 @@ final var io.ktor.http/encodedPath // io.ktor.http/encodedPath|@io.ktor.http.URL
final fun (io.ktor.http/URLBuilder).<get-encodedPath>(): kotlin/String // io.ktor.http/encodedPath.<get-encodedPath>|<get-encodedPath>@io.ktor.http.URLBuilder(){}[0]
final fun (io.ktor.http/URLBuilder).<set-encodedPath>(kotlin/String) // io.ktor.http/encodedPath.<set-encodedPath>|<set-encodedPath>@io.ktor.http.URLBuilder(kotlin.String){}[0]

final fun (io.ktor.http.content/MultiPartData).io.ktor.http.content/asFlow(): kotlinx.coroutines.flow/Flow<io.ktor.http.content/PartData> // io.ktor.http.content/asFlow|[email protected](){}[0]
final fun (io.ktor.http.content/OutgoingContent).io.ktor.http.content/compressed(io.ktor.util/ContentEncoder, kotlin.coroutines/CoroutineContext = ...): io.ktor.http.content/OutgoingContent? // io.ktor.http.content/compressed|[email protected](io.ktor.util.ContentEncoder;kotlin.coroutines.CoroutineContext){}[0]
final fun (io.ktor.http.content/OutgoingContent).io.ktor.http.content/isEmpty(): kotlin/Boolean // io.ktor.http.content/isEmpty|[email protected](){}[0]
final fun (io.ktor.http/ContentType).io.ktor.http/fileExtensions(): kotlin.collections/List<kotlin/String> // io.ktor.http/fileExtensions|[email protected](){}[0]
Expand Down
17 changes: 13 additions & 4 deletions ktor-http/common/src/io/ktor/http/content/Multipart.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import io.ktor.http.*
import io.ktor.http.content.PartData.*
import io.ktor.utils.io.*
import io.ktor.utils.io.core.*
import kotlinx.coroutines.flow.*

/**
* Represents a multipart/form-data entry. Could be a [FormItem] or [FileItem].
Expand Down Expand Up @@ -102,16 +103,24 @@ public interface MultiPartData {
}

/**
* Parse multipart data stream and invoke [partHandler] for each [PartData] encountered.
* @param partHandler to be invoked for every part item
* Transforms the multipart data stream into a [Flow] of [PartData].
*
* @return a [Flow] emitting each part of the multipart data until the end of the stream.
*/
public suspend fun MultiPartData.forEachPart(partHandler: suspend (PartData) -> Unit) {
public fun MultiPartData.asFlow(): Flow<PartData> = flow {
while (true) {
val part = readPart() ?: break
partHandler(part)
emit(part)
}
}

/**
* Parse multipart data stream and invoke [partHandler] for each [PartData] encountered.
* @param partHandler to be invoked for every part item
*/
public suspend fun MultiPartData.forEachPart(partHandler: suspend (PartData) -> Unit): Unit =
asFlow().collect(partHandler)

/**
* Parse multipart data stream and put all parts into a list.
* @return a list of [PartData]
Expand Down

0 comments on commit 4d5ca8c

Please sign in to comment.