appengine

package
v0.0.0-...-456eabd Latest Latest
Warning

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

Go to latest
Published: Nov 5, 2011 License: BSD-3-Clause Imports: 2 Imported by: 0

Documentation

Overview

Package appengine provides functionality that is common across App Engine APIs.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AppID

func AppID(c Context) string

AppID returns the application ID for the current application. The string will be a plain application ID (e.g. "appid"), with a domain prefix for custom domain deployments (e.g. "example.com:appid").

func DefaultVersionHostname

func DefaultVersionHostname(c Context) string

DefaultVersionHostname returns the standard hostname of the default version of the current application (e.g. "my-app.appspot.com"). This is suitable for use in constructing URLs.

func IsDevAppServer

func IsDevAppServer() bool

IsDevAppServer reports whether the App Engine app is running in the development App Server.

func VersionID

func VersionID(c Context) string

VersionID returns the version ID for the current application. It will be of the form "X.Y", where X is specified in app.yaml, and Y is a generated number when each version of the app is uploaded.

Types

type BlobKey

type BlobKey string

BlobKey is a key for a blobstore blob.

Conceptually, this type belongs in the blobstore package, but it lives in the appengine package to avoid a circular dependency: blobstore depends on datastore, and datastore needs to refer to the BlobKey type.

type Context

type Context interface {
	// Debugf formats its arguments according to the format, analogous to fmt.Printf,
	// and records the text as a log message at Debug level.
	Debugf(format string, args ...interface{})

	// Infof is like Debugf, but at Info level.
	Infof(format string, args ...interface{})

	// Warningf is like Debugf, but at Warning level.
	Warningf(format string, args ...interface{})

	// Errorf is like Debugf, but at Error level.
	Errorf(format string, args ...interface{})

	// Criticalf is like Debugf, but at Critical level.
	Criticalf(format string, args ...interface{})

	// AppID is deprecated. Use the AppID function instead.
	AppID() string

	Call(service, method string, in, out interface{}, opts *appengine_internal.CallOptions) error
	FullyQualifiedAppID() string
	Request() interface{}
}

Context represents the context of an in-flight HTTP request.

func NewContext

func NewContext(req *http.Request) Context

NewContext returns a new context for an in-flight HTTP request.

Directories

Path Synopsis
Package blobstore provides a client for App Engine's persistent blob storage service.
Package blobstore provides a client for App Engine's persistent blob storage service.
Package capability exposes information about outages and scheduled downtime for specific API capabilities.
Package capability exposes information about outages and scheduled downtime for specific API capabilities.
The channel package implements the server side of App Engine's Channel API.
The channel package implements the server side of App Engine's Channel API.
Package datastore provides a client for App Engine's datastore service.
Package datastore provides a client for App Engine's datastore service.
Package delay provides a way to execute code outside the scope of a user request by using the taskqueue API.
Package delay provides a way to execute code outside the scope of a user request by using the taskqueue API.
Package log provides the means of querying an application's logs from within an App Engine application.
Package log provides the means of querying an application's logs from within an App Engine application.
Package mail provides the means of sending email from an App Engine application.
Package mail provides the means of sending email from an App Engine application.
Package memcache provides a client for App Engine's distributed in-memory key-value store for small chunks of arbitrary data.
Package memcache provides a client for App Engine's distributed in-memory key-value store for small chunks of arbitrary data.
Package taskqueue provides a client for App Engine's taskqueue service.
Package taskqueue provides a client for App Engine's taskqueue service.
Package urlfetch provides an http.RoundTripper implementation for fetching URLs via App Engine's urlfetch service.
Package urlfetch provides an http.RoundTripper implementation for fetching URLs via App Engine's urlfetch service.
Package user provides a client for App Engine's user authentication service.
Package user provides a client for App Engine's user authentication service.

Jump to

Keyboard shortcuts

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