server

package
v1.9.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 22, 2020 License: Apache-2.0 Imports: 26 Imported by: 0

Documentation

Overview

Package api Provides a container compatible interface. (Experimental)

This documentation describes the HTTP Libpod interface. It is to be considered only as experimental as this point. The endpoints, parameters, inputs, and return values can all change.

Terms Of Service:

Schemes: http, https
Host: podman.io
BasePath: /
Version: 0.0.1
License: Apache-2.0 https://opensource.org/licenses/Apache-2.0
Contact: Podman <podman@lists.podman.io> https://podman.io/community/

InfoExtensions:
x-logo:
  - url: https://raw.githubusercontent.com/containers/libpod/master/logo/podman-logo.png
  - altText: "Podman logo"

Produces:
- application/json
- text/plain
- text/html

Consumes:
- application/json
- application/x-tar

swagger:meta

Index

Constants

View Source
const (
	DefaultServiceDuration   = 300 * time.Second
	UnlimitedServiceDuration = 0 * time.Second
)

Number of seconds to wait for next request, if exceeded shutdown server

Variables

This section is empty.

Functions

func ListenUnix

func ListenUnix(network string, path string) (net.Listener, error)

ListenUnix follows stdlib net.Listen() API, providing a unix listener for given path

ListenUnix will delete and create files/directories as needed

func VersionedPath

func VersionedPath(p string) string

VersionedPath prepends the version parsing code any handler may override this default when registering URL(s)

Types

type APIServer

type APIServer struct {
	http.Server        // The  HTTP work happens here
	*schema.Decoder    // Decoder for Query parameters to structs
	context.Context    // Context to carry objects to handlers
	*libpod.Runtime    // Where the real work happens
	net.Listener       // mux for routing HTTP API calls to libpod routines
	context.CancelFunc // Stop APIServer
	// contains filtered or unexported fields
}

func NewServer

func NewServer(runtime *libpod.Runtime) (*APIServer, error)

NewServer will create and configure a new API server with all defaults

func NewServerWithSettings

func NewServerWithSettings(runtime *libpod.Runtime, duration time.Duration, listener *net.Listener) (*APIServer, error)

NewServerWithSettings will create and configure a new API server using provided settings

func (*APIServer) APIHandler added in v1.8.1

func (s *APIServer) APIHandler(h http.HandlerFunc) http.HandlerFunc

APIHandler is a wrapper to enhance HandlerFunc's and remove redundant code

func (*APIServer) Close

func (s *APIServer) Close() error

Close immediately stops responding to clients and exits

func (*APIServer) RegisterSwaggerHandlers added in v1.8.1

func (s *APIServer) RegisterSwaggerHandlers(r *mux.Router) error

RegisterSwaggerHandlers maps the swagger endpoint for the server

func (*APIServer) Serve

func (s *APIServer) Serve() error

Serve starts responding to HTTP requests

func (*APIServer) Shutdown

func (s *APIServer) Shutdown() error

Shutdown is a clean shutdown waiting on existing clients

type IdleTracker added in v1.9.0

type IdleTracker struct {
	Duration time.Duration
	// contains filtered or unexported fields
}

func NewIdleTracker added in v1.9.0

func NewIdleTracker(idle time.Duration) *IdleTracker

func (*IdleTracker) ActiveConnections added in v1.9.0

func (t *IdleTracker) ActiveConnections() int

func (*IdleTracker) ConnState added in v1.9.0

func (t *IdleTracker) ConnState(conn net.Conn, state http.ConnState)

func (*IdleTracker) Done added in v1.9.0

func (t *IdleTracker) Done() <-chan time.Time

func (*IdleTracker) TotalConnections added in v1.9.0

func (t *IdleTracker) TotalConnections() int

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL