Copyright 2015 The Prometheus Authors 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.

package expfmt

import (
	
	
	

	
	
	

	dto 
)
Encoder types encode metric families into an underlying wire protocol.
type Encoder interface {
	Encode(*dto.MetricFamily) error
}

type encoder func(*dto.MetricFamily) error

func ( encoder) ( *dto.MetricFamily) error {
	return ()
}
Negotiate returns the Content-Type based on the given Accept header. If no appropriate accepted type is found, FmtText is returned.
Check for protocol buffer
		if .Type+"/"+.SubType == ProtoType && .Params["proto"] == ProtoProtocol {
			switch .Params["encoding"] {
			case "delimited":
				return FmtProtoDelim
			case "text":
				return FmtProtoText
			case "compact-text":
				return FmtProtoCompact
			}
Check for text format.
		 := .Params["version"]
		if .Type == "text" && .SubType == "plain" && ( == TextVersion ||  == "") {
			return FmtText
		}
	}
	return FmtText
}
NewEncoder returns a new encoder based on content type negotiation.
func ( io.Writer,  Format) Encoder {
	switch  {
	case FmtProtoDelim:
		return encoder(func( *dto.MetricFamily) error {
			,  := pbutil.WriteDelimited(, )
			return 
		})
	case FmtProtoCompact:
		return encoder(func( *dto.MetricFamily) error {
			,  := fmt.Fprintln(, .String())
			return 
		})
	case FmtProtoText:
		return encoder(func( *dto.MetricFamily) error {
			,  := fmt.Fprintln(, proto.MarshalTextString())
			return 
		})
	case FmtText:
		return encoder(func( *dto.MetricFamily) error {
			,  := MetricFamilyToText(, )
			return 
		})
	}
	panic("expfmt.NewEncoder: unknown format")