Documentation ¶
Overview ¶
Package engine contains the engine API.
Index ¶
- Constants
- Variables
- func AllExperiments() []string
- type Experiment
- func (e *Experiment) GetSummaryKeys(m *model.Measurement) (interface{}, error)
- func (e *Experiment) KibiBytesReceived() float64
- func (e *Experiment) KibiBytesSent() float64
- func (e *Experiment) Measure(input string) (*model.Measurement, error)deprecated
- func (e *Experiment) MeasureAsync(ctx context.Context, input string) (<-chan *model.Measurement, error)
- func (e *Experiment) MeasureWithContext(ctx context.Context, input string) (measurement *model.Measurement, err error)
- func (e *Experiment) Name() string
- func (e *Experiment) OpenReport() (err error)
- func (e *Experiment) OpenReportContext(ctx context.Context) error
- func (e *Experiment) ReportID() string
- func (e *Experiment) SaveMeasurement(measurement *model.Measurement, filePath string) error
- func (e *Experiment) SubmitAndUpdateMeasurement(measurement *model.Measurement) error
- func (e *Experiment) SubmitAndUpdateMeasurementContext(ctx context.Context, measurement *model.Measurement) error
- type ExperimentBuilder
- func (b *ExperimentBuilder) InputPolicy() InputPolicy
- func (b *ExperimentBuilder) Interruptible() bool
- func (b *ExperimentBuilder) NewExperiment() *Experiment
- func (b *ExperimentBuilder) Options() (map[string]OptionInfo, error)
- func (b *ExperimentBuilder) SetCallbacks(callbacks model.ExperimentCallbacks)
- func (b *ExperimentBuilder) SetOptionBool(key string, value bool) error
- func (b *ExperimentBuilder) SetOptionGuessType(key, value string) error
- func (b *ExperimentBuilder) SetOptionInt(key string, value int64) error
- func (b *ExperimentBuilder) SetOptionString(key, value string) error
- func (b *ExperimentBuilder) SetOptionsGuessType(opts map[string]string) error
- type InputLoader
- type InputLoaderLogger
- type InputLoaderSession
- type InputPolicy
- type InputProcessor
- type InputProcessorExperiment
- type InputProcessorExperimentWrapper
- type InputProcessorSaverWrapper
- type InputProcessorSubmitterWrapper
- type KVStore
- type OptionInfo
- type Saver
- type SaverConfig
- type SaverExperiment
- type Session
- func (s *Session) CheckIn(ctx context.Context, config *model.CheckInConfig) (*model.CheckInInfo, error)
- func (s *Session) Close() error
- func (s *Session) DefaultHTTPClient() *http.Client
- func (s *Session) FetchPsiphonConfig(ctx context.Context) ([]byte, error)
- func (s *Session) FetchTorTargets(ctx context.Context, cc string) (map[string]model.TorTarget, error)
- func (s *Session) FetchURLList(ctx context.Context, config model.URLListConfig) ([]model.URLInfo, error)
- func (s *Session) GetTestHelpersByName(name string) ([]model.Service, bool)
- func (s *Session) KeyValueStore() model.KeyValueStore
- func (s *Session) KibiBytesReceived() float64
- func (s *Session) KibiBytesSent() float64
- func (s *Session) Logger() model.Logger
- func (s *Session) LookupLocationContext(ctx context.Context) (*geolocate.Results, error)
- func (s *Session) MaybeLookupBackends() error
- func (s *Session) MaybeLookupBackendsContext(ctx context.Context) error
- func (s *Session) MaybeLookupLocation() error
- func (s *Session) MaybeLookupLocationContext(ctx context.Context) error
- func (s *Session) NewExperimentBuilder(name string) (*ExperimentBuilder, error)
- func (s *Session) NewOrchestraClient(ctx context.Context) (*probeservices.Client, error)
- func (s *Session) NewProbeServicesClient(ctx context.Context) (*probeservices.Client, error)
- func (s *Session) NewSubmitter(ctx context.Context) (Submitter, error)
- func (s *Session) Platform() string
- func (s *Session) ProbeASN() uint
- func (s *Session) ProbeASNString() string
- func (s *Session) ProbeCC() string
- func (s *Session) ProbeIP() string
- func (s *Session) ProbeNetworkName() string
- func (s *Session) ProxyURL() *url.URL
- func (s *Session) ResolverASN() uint
- func (s *Session) ResolverASNString() string
- func (s *Session) ResolverIP() string
- func (s *Session) ResolverNetworkName() string
- func (s *Session) SoftwareName() string
- func (s *Session) SoftwareVersion() string
- func (s *Session) TempDir() string
- func (s *Session) TorArgs() []string
- func (s *Session) TorBinary() string
- func (s *Session) UserAgent() (useragent string)
- type SessionConfig
- type Submitter
- type SubmitterConfig
- type SubmitterSession
Constants ¶
const ( // InputOrQueryBackend indicates that the experiment requires // external input to run and that this kind of input is URLs // from the citizenlab/test-lists repository. If this input // not provided to the experiment, then the code that runs the // experiment is supposed to fetch from URLs from OONI's backends. InputOrQueryBackend = InputPolicy("or_query_backend") // InputStrictlyRequired indicates that the experiment // requires input and we currently don't have an API for // fetching such input. Therefore, either the user specifies // input or the experiment will fail for the lack of input. InputStrictlyRequired = InputPolicy("strictly_required") // InputOptional indicates that the experiment handles input, // if any; otherwise it fetchs input/uses a default. InputOptional = InputPolicy("optional") // InputNone indicates that the experiment does not want any // input and ignores the input if provided with it. InputNone = InputPolicy("none") )
Variables ¶
var ( ErrNoURLsReturned = errors.New("no URLs returned") ErrDetectedEmptyFile = errors.New("file did not contain any input") ErrInputRequired = errors.New("no input provided") ErrNoInputExpected = errors.New("we did not expect any input") )
These errors are returned by the InputLoader.
var ErrAllProbeServicesFailed = errors.New("all available probe services failed")
ErrAllProbeServicesFailed indicates all probe services failed.
var ErrAlreadyUsingProxy = errors.New(
"session: cannot create a new tunnel of this kind: we are already using a proxy",
)
ErrAlreadyUsingProxy indicates that we cannot create a tunnel with a specific name because we already configured a proxy.
Functions ¶
func AllExperiments ¶
func AllExperiments() []string
AllExperiments returns the name of all experiments
Types ¶
type Experiment ¶
type Experiment struct {
// contains filtered or unexported fields
}
Experiment is an experiment instance.
func NewExperiment ¶
func NewExperiment(sess *Session, measurer model.ExperimentMeasurer) *Experiment
NewExperiment creates a new experiment given a measurer. The preferred way to create an experiment is the ExperimentBuilder. Though this function allows the programmer to create a custom, external experiment.
func (*Experiment) GetSummaryKeys ¶
func (e *Experiment) GetSummaryKeys(m *model.Measurement) (interface{}, error)
GetSummaryKeys returns a data structure containing a summary of the test keys for probe-cli.
func (*Experiment) KibiBytesReceived ¶
func (e *Experiment) KibiBytesReceived() float64
KibiBytesReceived accounts for the KibiBytes received by the HTTP clients managed by this session so far, including experiments.
func (*Experiment) KibiBytesSent ¶
func (e *Experiment) KibiBytesSent() float64
KibiBytesSent is like KibiBytesReceived but for the bytes sent.
func (*Experiment) Measure
deprecated
func (e *Experiment) Measure(input string) (*model.Measurement, error)
Measure performs a measurement with input. We assume that you have configured the available test helpers, either manually or by calling the session's MaybeLookupBackends() method.
Return value: strictly either a non-nil measurement and a nil error or a nil measurement and a non-nil error.
CAVEAT: while this API is perfectly fine for experiments that return a single measurement, it will only return the first measurement when used with an asynchronous experiment. We plan on eventually migrating all experiments to run in asynchronous fashion.
Deprecated: use MeasureWithContext instead, please.
func (*Experiment) MeasureAsync ¶ added in v3.14.0
func (e *Experiment) MeasureAsync( ctx context.Context, input string) (<-chan *model.Measurement, error)
MeasureAsync runs an async measurement. This operation could post one or more measurements onto the returned channel. We'll close the channel when we've emitted all the measurements.
Arguments:
- ctx is the context for deadline/cancellation/timeout;
- input is the input (typically a URL but it could also be just an endpoint or an empty string for input-less experiments such as, e.g., ndt7 and dash).
Return value:
- on success, channel where to post measurements (the channel will be closed when done) and nil error;
- on failure, nil channel and non-nil error.
func (*Experiment) MeasureWithContext ¶
func (e *Experiment) MeasureWithContext( ctx context.Context, input string, ) (measurement *model.Measurement, err error)
MeasureWithContext is like Measure but with context.
Return value: strictly either a non-nil measurement and a nil error or a nil measurement and a non-nil error.
CAVEAT: while this API is perfectly fine for experiments that return a single measurement, it will only return the first measurement when used with an asynchronous experiment. We plan on eventually migrating all experiments to run in asynchronous fashion.
func (*Experiment) OpenReport ¶
func (e *Experiment) OpenReport() (err error)
OpenReport is an idempotent method to open a report. We assume that you have configured the available probe services, either manually or through using the session's MaybeLookupBackends method.
func (*Experiment) OpenReportContext ¶
func (e *Experiment) OpenReportContext(ctx context.Context) error
OpenReportContext will open a report using the given context to possibly limit the lifetime of this operation.
func (*Experiment) ReportID ¶
func (e *Experiment) ReportID() string
ReportID returns the open reportID, if we have opened a report successfully before, or an empty string, otherwise.
func (*Experiment) SaveMeasurement ¶
func (e *Experiment) SaveMeasurement(measurement *model.Measurement, filePath string) error
SaveMeasurement saves a measurement on the specified file path.
func (*Experiment) SubmitAndUpdateMeasurement ¶
func (e *Experiment) SubmitAndUpdateMeasurement(measurement *model.Measurement) error
SubmitAndUpdateMeasurement submits a measurement and updates the fields whose value has changed as part of the submission.
func (*Experiment) SubmitAndUpdateMeasurementContext ¶
func (e *Experiment) SubmitAndUpdateMeasurementContext( ctx context.Context, measurement *model.Measurement) error
SubmitAndUpdateMeasurementContext submits a measurement and updates the fields whose value has changed as part of the submission.
type ExperimentBuilder ¶
type ExperimentBuilder struct {
// contains filtered or unexported fields
}
ExperimentBuilder is an experiment builder.
func (*ExperimentBuilder) InputPolicy ¶
func (b *ExperimentBuilder) InputPolicy() InputPolicy
InputPolicy returns the experiment input policy
func (*ExperimentBuilder) Interruptible ¶
func (b *ExperimentBuilder) Interruptible() bool
Interruptible tells you whether this is an interruptible experiment. This kind of experiments (e.g. ndt7) may be interrupted mid way.
func (*ExperimentBuilder) NewExperiment ¶
func (b *ExperimentBuilder) NewExperiment() *Experiment
NewExperiment creates the experiment
func (*ExperimentBuilder) Options ¶
func (b *ExperimentBuilder) Options() (map[string]OptionInfo, error)
Options returns info about all options
func (*ExperimentBuilder) SetCallbacks ¶
func (b *ExperimentBuilder) SetCallbacks(callbacks model.ExperimentCallbacks)
SetCallbacks sets the interactive callbacks
func (*ExperimentBuilder) SetOptionBool ¶
func (b *ExperimentBuilder) SetOptionBool(key string, value bool) error
SetOptionBool sets a bool option
func (*ExperimentBuilder) SetOptionGuessType ¶
func (b *ExperimentBuilder) SetOptionGuessType(key, value string) error
SetOptionGuessType sets an option whose type depends on the option value. If the value is `"true"` or `"false"` we assume the option is boolean. If the value is numeric, then we set an integer option. Otherwise we set a string option.
func (*ExperimentBuilder) SetOptionInt ¶
func (b *ExperimentBuilder) SetOptionInt(key string, value int64) error
SetOptionInt sets an int option
func (*ExperimentBuilder) SetOptionString ¶
func (b *ExperimentBuilder) SetOptionString(key, value string) error
SetOptionString sets a string option
func (*ExperimentBuilder) SetOptionsGuessType ¶
func (b *ExperimentBuilder) SetOptionsGuessType(opts map[string]string) error
SetOptionsGuessType calls the SetOptionGuessType method for every key, value pair contained by the opts input map.
type InputLoader ¶
type InputLoader struct { // CheckInConfig contains options for the CheckIn API. If // not set, then we'll create a default config. If set but // there are fields inside it that are not set, then we // will set them to a default value. CheckInConfig *model.CheckInConfig // InputPolicy specifies the input policy for the // current experiment. We will not load any input if // the policy says we should not. You MUST fill in // this field. InputPolicy InputPolicy // Logger is the optional logger that the InputLoader // should be using. If not set, we will use the default // logger of github.com/apex/log. Logger InputLoaderLogger // Session is the current measurement session. You // MUST fill in this field. Session InputLoaderSession // StaticInputs contains optional input to be added // to the resulting input list if possible. StaticInputs []string // SourceFiles contains optional files to read input // from. Each file should contain a single input string // per line. We will fail if any file is unreadable // as well as if any file is empty. SourceFiles []string }
InputLoader loads input according to the specified policy either from command line and input files or from OONI services. The behaviour depends on the input policy as described below.
You MUST NOT change any public field of this structure when in use, because that MAY lead to data races.
InputNone ¶
We fail if there is any StaticInput or any SourceFiles. If there's no input, we return a single, empty entry that causes experiments that don't require input to run once.
InputOptional ¶
We gather input from StaticInput and SourceFiles. If there is input, we return it. Otherwise we return a single, empty entry that causes experiments that don't require input to run once.
InputOrQueryBackend ¶
We gather input from StaticInput and SourceFiles. If there is input, we return it. Otherwise, we use OONI's probe services to gather input using the best API for the task.
InputStrictlyRequired ¶
We gather input from StaticInput and SourceFiles. If there is input, we return it. Otherwise, we return an error.
type InputLoaderLogger ¶ added in v3.9.2
type InputLoaderLogger interface { // Warnf formats and emits a warning message. Warnf(format string, v ...interface{}) }
InputLoaderLogger is the logger according to an InputLoader.
type InputLoaderSession ¶
type InputLoaderSession interface { CheckIn(ctx context.Context, config *model.CheckInConfig) (*model.CheckInInfo, error) }
InputLoaderSession is the session according to an InputLoader. We introduce this abstraction because it helps us with testing.
type InputPolicy ¶
type InputPolicy string
InputPolicy describes the experiment policy with respect to input. That is whether it requires input, optionally accepts input, does not want input.
type InputProcessor ¶
type InputProcessor struct { // Annotations contains the measurement annotations Annotations map[string]string // Experiment is the code that will run the experiment. Experiment InputProcessorExperimentWrapper // Inputs is the list of inputs to measure. Inputs []model.URLInfo // MaxRuntime is the optional maximum runtime // when looping over a list of inputs (e.g. when // running Web Connectivity). Zero means that // there will be no MaxRuntime limit. MaxRuntime time.Duration // Options contains command line options for this experiment. Options []string // Saver is the code that will save measurement results // on persistent storage (e.g. the file system). Saver InputProcessorSaverWrapper // Submitter is the code that will submit measurements // to the OONI collector. Submitter InputProcessorSubmitterWrapper }
InputProcessor processes inputs. We perform a Measurement for each input using the given Experiment.
func (*InputProcessor) Run ¶
func (ip *InputProcessor) Run(ctx context.Context) error
Run processes all the input subject to the duration of the context. The code will perform measurements using the given experiment; submit measurements using the given submitter; save measurements using the given saver.
Annotations and Options will be saved in the measurement.
The default behaviour of this code is that an error while measuring, while submitting, or while saving a measurement is always causing us to break out of the loop. The user though is free to choose different policies by configuring the Experiment, Submitter, and Saver fields properly.
type InputProcessorExperiment ¶
type InputProcessorExperiment interface { MeasureAsync( ctx context.Context, input string) (<-chan *model.Measurement, error) }
InputProcessorExperiment is the Experiment according to InputProcessor.
type InputProcessorExperimentWrapper ¶
type InputProcessorExperimentWrapper interface { MeasureAsync( ctx context.Context, input string, idx int) (<-chan *model.Measurement, error) }
InputProcessorExperimentWrapper is a wrapper for an Experiment that also allow to pass around the input index.
func NewInputProcessorExperimentWrapper ¶
func NewInputProcessorExperimentWrapper( exp InputProcessorExperiment) InputProcessorExperimentWrapper
NewInputProcessorExperimentWrapper creates a new instance of InputProcessorExperimentWrapper.
type InputProcessorSaverWrapper ¶
type InputProcessorSaverWrapper interface {
SaveMeasurement(idx int, m *model.Measurement) error
}
InputProcessorSaverWrapper is InputProcessor's wrapper for a Saver implementation.
func NewInputProcessorSaverWrapper ¶
func NewInputProcessorSaverWrapper(saver Saver) InputProcessorSaverWrapper
NewInputProcessorSaverWrapper wraps a Saver for InputProcessor.
type InputProcessorSubmitterWrapper ¶
type InputProcessorSubmitterWrapper interface {
Submit(ctx context.Context, idx int, m *model.Measurement) error
}
InputProcessorSubmitterWrapper is InputProcessor's wrapper for a Submitter implementation.
func NewInputProcessorSubmitterWrapper ¶
func NewInputProcessorSubmitterWrapper(submitter Submitter) InputProcessorSubmitterWrapper
NewInputProcessorSubmitterWrapper wraps a Submitter for the InputProcessor.
type KVStore ¶
type KVStore interface { Get(key string) (value []byte, err error) Set(key string, value []byte) (err error) }
KVStore is a simple, atomic key-value store. The user of probe-engine should supply an implementation of this interface, which will be used by probe-engine to store specific data.
type OptionInfo ¶
OptionInfo contains info about an option
type Saver ¶
type Saver interface {
SaveMeasurement(m *model.Measurement) error
}
Saver saves a measurement on some persistent storage.
func NewSaver ¶
func NewSaver(config SaverConfig) (Saver, error)
NewSaver creates a new instance of Saver.
type SaverConfig ¶
type SaverConfig struct { // Enabled is true if saving is enabled. Enabled bool // Experiment is the experiment we're currently running. Experiment SaverExperiment // FilePath is the filepath where to append the measurement as a // serialized JSON followed by a newline character. FilePath string // Logger is the logger used by the saver. Logger model.Logger }
SaverConfig is the configuration for creating a new Saver.
type SaverExperiment ¶
type SaverExperiment interface {
SaveMeasurement(m *model.Measurement, filepath string) error
}
SaverExperiment is an experiment according to the Saver.
type Session ¶
type Session struct {
// contains filtered or unexported fields
}
Session is a measurement session. It contains shared information required to run a measurement session, and it controls the lifecycle of such resources. It is not possible to reuse a Session. You MUST NOT attempt to use a Session again after Session.Close.
func NewSession ¶
func NewSession(ctx context.Context, config SessionConfig) (*Session, error)
NewSession creates a new session. This factory function will execute the following steps:
1. Make sure the config is sane, apply reasonable defaults where possible, otherwise return an error.
2. Create a temporary directory.
3. Create an instance of the session.
4. If the user requested for a proxy that entails a tunnel (at the moment of writing this note, either psiphon or tor), then start the requested tunnel and configure it as our proxy.
5. Create a compound resolver for the session that will attempt to use a bunch of DoT/DoH servers before falling back to the system resolver if nothing else works (see the sessionresolver pkg). This sessionresolver will be using the configured proxy, if any.
6. Create the default HTTP transport that we should be using when we communicate with the OONI backends. This transport will be using the configured proxy, if any.
If any of these steps fails, then we cannot create a measurement session and we return an error.
func (*Session) CheckIn ¶ added in v3.9.0
func (s *Session) CheckIn( ctx context.Context, config *model.CheckInConfig) (*model.CheckInInfo, error)
CheckIn calls the check-in API. The input arguments MUST NOT be nil. Before querying the API, this function will ensure that the config structure does not contain any field that SHOULD be initialized and is not initialized. Whenever there is a field that is not initialized, we will attempt to set a reasonable default value for such a field. This list describes the current defaults we'll choose:
- Platform: if empty, set to Session.Platform();
- ProbeASN: if empty, set to Session.ProbeASNString();
- ProbeCC: if empty, set to Session.ProbeCC();
- RunType: if empty, set to "timed";
- SoftwareName: if empty, set to Session.SoftwareName();
- SoftwareVersion: if empty, set to Session.SoftwareVersion();
- WebConnectivity.CategoryCodes: if nil, we will allocate an empty array (the API does not like nil).
Because we MAY need to know the current ASN and CC, this function MAY call MaybeLookupLocationContext.
The return value is either the check-in response or an error.
func (*Session) Close ¶
Close ensures that we close all the idle connections that the HTTP clients we are currently using may have created. It will also remove the temp dir that contains data from this session. Not calling this function may likely cause memory leaks in your application because of open idle connections, as well as excessive usage of disk space.
func (*Session) DefaultHTTPClient ¶
DefaultHTTPClient returns the session's default HTTP client.
func (*Session) FetchPsiphonConfig ¶ added in v3.10.0
FetchPsiphonConfig fetches psiphon config from the API.
func (*Session) FetchTorTargets ¶ added in v3.10.0
func (s *Session) FetchTorTargets( ctx context.Context, cc string) (map[string]model.TorTarget, error)
FetchTorTargets fetches tor targets from the API.
func (*Session) FetchURLList ¶ added in v3.10.0
func (s *Session) FetchURLList( ctx context.Context, config model.URLListConfig) ([]model.URLInfo, error)
FetchURLList fetches the URL list from the API.
func (*Session) GetTestHelpersByName ¶
GetTestHelpersByName returns the available test helpers that use the specified name, or false if there's none.
func (*Session) KeyValueStore ¶
func (s *Session) KeyValueStore() model.KeyValueStore
KeyValueStore returns the configured key-value store.
func (*Session) KibiBytesReceived ¶
KibiBytesReceived accounts for the KibiBytes received by the HTTP clients managed by this session so far, including experiments.
func (*Session) KibiBytesSent ¶
KibiBytesSent is like KibiBytesReceived but for the bytes sent.
func (*Session) LookupLocationContext ¶
LookupLocationContext performs a location lookup. If you want memoisation of the results, you should use MaybeLookupLocationContext.
func (*Session) MaybeLookupBackends ¶
MaybeLookupBackends is a caching OONI backends lookup call.
func (*Session) MaybeLookupBackendsContext ¶
MaybeLookupBackendsContext is like MaybeLookupBackends but with context.
func (*Session) MaybeLookupLocation ¶
MaybeLookupLocation is a caching location lookup call.
func (*Session) MaybeLookupLocationContext ¶
MaybeLookupLocationContext is like MaybeLookupLocation but with a context that can be used to interrupt this long running operation. This function will fail IMMEDIATELY if given a cancelled context.
func (*Session) NewExperimentBuilder ¶
func (s *Session) NewExperimentBuilder(name string) (*ExperimentBuilder, error)
NewExperimentBuilder returns a new experiment builder for the experiment with the given name, or an error if there's no such experiment with the given name
func (*Session) NewOrchestraClient ¶
NewOrchestraClient creates a new orchestra client. This client is registered and logged in with the OONI orchestra. An error is returned on failure.
This function is DEPRECATED. New code SHOULD NOT use it. It will eventually be made private or entirely removed from the codebase.
func (*Session) NewProbeServicesClient ¶
NewProbeServicesClient creates a new client for talking with the OONI probe services. This function will benchmark the available probe services, and select the fastest. In case all probe services seem to be down, we try again applying circumvention tactics. This function will fail IMMEDIATELY if given a cancelled context.
func (*Session) NewSubmitter ¶
NewSubmitter creates a new submitter instance.
func (*Session) Platform ¶
Platform returns the current platform. The platform is one of:
- android - ios - linux - macos - windows - unknown
When running on the iOS simulator, the returned platform is macos rather than ios if CGO is disabled. This is a known issue, that however should have a very limited impact.
func (*Session) ProbeASNString ¶
ProbeASNString returns the probe ASN as a string.
func (*Session) ProbeNetworkName ¶
ProbeNetworkName returns the probe network name.
func (*Session) ResolverASN ¶
ResolverASN returns the resolver ASN
func (*Session) ResolverASNString ¶
ResolverASNString returns the resolver ASN as a string
func (*Session) ResolverIP ¶
ResolverIP returns the resolver IP
func (*Session) ResolverNetworkName ¶
ResolverNetworkName returns the resolver network name.
func (*Session) SoftwareName ¶
SoftwareName returns the application name.
func (*Session) SoftwareVersion ¶
SoftwareVersion returns the application version.
func (*Session) TorArgs ¶
TorArgs returns the configured extra args for the tor binary. If not set we will not pass in any extra arg. Applies to `-OTunnel=tor` mainly.
type SessionConfig ¶
type SessionConfig struct { AvailableProbeServices []model.Service KVStore KVStore Logger model.Logger ProxyURL *url.URL SoftwareName string SoftwareVersion string TempDir string TorArgs []string TorBinary string // TunnelDir is the directory where we should store // the state of persistent tunnels. This field is // optional _unless_ you want to use tunnels. In such // case, starting a tunnel will fail because there // is no directory where to store state. TunnelDir string }
SessionConfig contains the Session config
type Submitter ¶
type Submitter interface { // Submit submits the measurement and updates its // report ID field in case of success. Submit(ctx context.Context, m *model.Measurement) error }
Submitter submits a measurement to the OONI collector.
func NewSubmitter ¶
func NewSubmitter(ctx context.Context, config SubmitterConfig) (Submitter, error)
NewSubmitter creates a new submitter instance. Depending on whether submission is enabled or not, the returned submitter instance migh just be a stub implementation.
type SubmitterConfig ¶
type SubmitterConfig struct { // Enabled is true if measurement submission is enabled. Enabled bool // Session is the current session. Session SubmitterSession // Logger is the logger to be used. Logger model.Logger }
SubmitterConfig contains settings for NewSubmitter.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
experiment
|
|
dash
Package dash implements the DASH network experiment.
|
Package dash implements the DASH network experiment. |
dnscheck
Package dnscheck contains the DNS check experiment.
|
Package dnscheck contains the DNS check experiment. |
example
Package example contains a simple example experiment.
|
Package example contains a simple example experiment. |
fbmessenger
Package fbmessenger contains the Facebook Messenger network experiment.
|
Package fbmessenger contains the Facebook Messenger network experiment. |
hhfm
Package hhfm contains the HTTP Header Field Manipulation network experiment.
|
Package hhfm contains the HTTP Header Field Manipulation network experiment. |
hirl
Package hirl contains the HTTP Invalid Request Line network experiment.
|
Package hirl contains the HTTP Invalid Request Line network experiment. |
httphostheader
Package httphostheader contains the HTTP host header network experiment.
|
Package httphostheader contains the HTTP host header network experiment. |
ndt7
Package ndt7 contains the ndt7 network experiment.
|
Package ndt7 contains the ndt7 network experiment. |
psiphon
Package psiphon implements the psiphon network experiment.
|
Package psiphon implements the psiphon network experiment. |
riseupvpn
Package riseupvpn contains the RiseupVPN network experiment.
|
Package riseupvpn contains the RiseupVPN network experiment. |
run
Package run contains code to run other experiments.
|
Package run contains code to run other experiments. |
signal
Package signal contains the Signal network experiment.
|
Package signal contains the Signal network experiment. |
sniblocking
Package sniblocking contains the SNI blocking network experiment.
|
Package sniblocking contains the SNI blocking network experiment. |
stunreachability
Package stunreachability contains the STUN reachability experiment.
|
Package stunreachability contains the STUN reachability experiment. |
telegram
Package telegram contains the Telegram network experiment.
|
Package telegram contains the Telegram network experiment. |
tlstool
Package tlstool contains a TLS tool that we are currently using for running quick and dirty experiments.
|
Package tlstool contains a TLS tool that we are currently using for running quick and dirty experiments. |
tlstool/internal
Package internal contains the implementation of tlstool.
|
Package internal contains the implementation of tlstool. |
tor
Package tor contains the tor experiment.
|
Package tor contains the tor experiment. |
torsf
Package torsf contains the torsf experiment.
|
Package torsf contains the torsf experiment. |
urlgetter
Package urlgetter implements a nettest that fetches a URL.
|
Package urlgetter implements a nettest that fetches a URL. |
webconnectivity
Package webconnectivity implements OONI's Web Connectivity experiment.
|
Package webconnectivity implements OONI's Web Connectivity experiment. |
webconnectivity/internal
Package internal contains internal code.
|
Package internal contains internal code. |
websteps
Package websteps implements the websteps experiment.
|
Package websteps implements the websteps experiment. |
webstepsx
Package webstepsx contains a websteps implementation based on the internal/measurex package.
|
Package webstepsx contains a websteps implementation based on the internal/measurex package. |
whatsapp
Package whatsapp contains the WhatsApp network experiment.
|
Package whatsapp contains the WhatsApp network experiment. |
Package geolocate implements IP lookup, resolver lookup, and geolocation.
|
Package geolocate implements IP lookup, resolver lookup, and geolocation. |
Package httpheader contains code to set common HTTP headers.
|
Package httpheader contains code to set common HTTP headers. |
Package httpx contains http extensions.
|
Package httpx contains http extensions. |
internal
|
|
httpfailure
Package httpfailure groups a bunch of extra HTTP failures.
|
Package httpfailure groups a bunch of extra HTTP failures. |
sessionresolver
Package sessionresolver contains the resolver used by the session.
|
Package sessionresolver contains the resolver used by the session. |
legacy
|
|
assetsdir
Package assetsdir contains code to cleanup the assets dir.
|
Package assetsdir contains code to cleanup the assets dir. |
errorsx
Package errorsx contains error extensions.
|
Package errorsx contains error extensions. |
netx
Package netx contains OONI's net extensions.
|
Package netx contains OONI's net extensions. |
netx/handlers
Package handlers contains default modelx.Handler handlers.
|
Package handlers contains default modelx.Handler handlers. |
netx/modelx
Package modelx contains the data modelx.
|
Package modelx contains the data modelx. |
netx/oldhttptransport
Package oldhttptransport contains HTTP transport extensions.
|
Package oldhttptransport contains HTTP transport extensions. |
netxlogger
Package netxlogger is a logger for netx events.
|
Package netxlogger is a logger for netx events. |
oonidatamodel
Package oonidatamodel contains the OONI data model.
|
Package oonidatamodel contains the OONI data model. |
oonitemplates
Package oonitemplates contains templates for experiments.
|
Package oonitemplates contains templates for experiments. |
Package mockable contains mockable objects
|
Package mockable contains mockable objects |
Package model defines shared data structures and interfaces.
|
Package model defines shared data structures and interfaces. |
Package netx contains code to perform network measurements.
|
Package netx contains code to perform network measurements. |
archival
Package archival contains data formats used for archival.
|
Package archival contains data formats used for archival. |
dialer
Package dialer allows you to create a net.Dialer-compatible DialContext-enabled dialer with error wrapping, optional logging, optional network-events saving, and optional proxying.
|
Package dialer allows you to create a net.Dialer-compatible DialContext-enabled dialer with error wrapping, optional logging, optional network-events saving, and optional proxying. |
httptransport
Package httptransport contains HTTP transport extensions.
|
Package httptransport contains HTTP transport extensions. |
tlsdialer
Package tlsdialer contains code to establish TLS connections.
|
Package tlsdialer contains code to establish TLS connections. |
Package probeservices contains code to contact OONI probe services.
|
Package probeservices contains code to contact OONI probe services. |
testorchestra
Package testorchestra helps with testing the OONI orchestra API.
|
Package testorchestra helps with testing the OONI orchestra API. |