org.http4s.TransferCoding.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4s-core_3 Show documentation
Show all versions of http4s-core_3 Show documentation
Core http4s library for servers and clients
/*
* Copyright 2013 http4s.org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Copyright 2013-2020 http4s.org
*
* SPDX-License-Identifier: Apache-2.0
*
* Based on https://github.com/spray/spray/blob/v1.1-M7/spray-http/src/main/scala/spray/http/HttpEncoding.scala
* Copyright (C) 2011-2012 spray.io
* Based on code copyright (C) 2010-2011 by the BlueEyes Web Framework Team
*/
package org.http4s
import cats.Order
import cats.Show
import cats.data.NonEmptyList
import cats.parse.Parser
import org.http4s.internal.hashLower
import org.http4s.internal.parsing.CommonRules
import org.http4s.util._
class TransferCoding private (val coding: String) extends Ordered[TransferCoding] with Renderable {
override def equals(o: Any): Boolean =
o match {
case that: TransferCoding => this.coding.equalsIgnoreCase(that.coding)
case _ => false
}
private[this] var hash = 0
override def hashCode(): Int = {
if (hash == 0)
hash = hashLower(coding)
hash
}
override def toString: String = s"TransferCoding($coding)"
override def compare(other: TransferCoding): Int =
coding.compareToIgnoreCase(other.coding)
override def render(writer: Writer): writer.type = writer.append(coding.toString)
}
object TransferCoding {
private class TransferCodingImpl(coding: String) extends TransferCoding(coding)
// https://www.iana.org/assignments/http-parameters/http-parameters.xml#transfer-coding
val chunked: TransferCoding = new TransferCodingImpl("chunked")
val compress: TransferCoding = new TransferCodingImpl("compress")
val deflate: TransferCoding = new TransferCodingImpl("deflate")
val gzip: TransferCoding = new TransferCodingImpl("gzip")
val identity: TransferCoding = new TransferCodingImpl("identity")
def parse(s: String): ParseResult[TransferCoding] =
ParseResult.fromParser(parser, "Invalid transfer coding")(s)
def parseList(s: String): ParseResult[NonEmptyList[TransferCoding]] =
ParseResult.fromParser(CommonRules.headerRep1(parser), "Invalid transfer coding list")(s)
private[http4s] val parser: Parser[TransferCoding] = {
import cats.parse.Parser.{ignoreCase, oneOf}
oneOf(
List(
ignoreCase("chunked").as(chunked),
ignoreCase("compress").as(compress),
ignoreCase("deflate").as(deflate),
ignoreCase("gzip").as(gzip),
ignoreCase("identity").as(identity),
)
)
}
implicit val http4sOrderForTransferCoding: Order[TransferCoding] =
Order.fromComparable
implicit val http4sShowForTransferCoding: Show[TransferCoding] =
Show.show(_.coding)
implicit val http4sInstancesForTransferCoding: HttpCodec[TransferCoding] =
new HttpCodec[TransferCoding] {
override def parse(s: String): ParseResult[TransferCoding] =
ParseResult.fromParser(TransferCoding.parser, "Invalid TransferCoding")(s)
override def render(writer: Writer, coding: TransferCoding): writer.type =
writer << coding.coding
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy