ac2e0d718f
This diff forward ports 018b5de8ce10040b553f0923f70543c1071b954c, whose original commit message follows: - - - The underlying issue causing https://github.com/ooni/probe/issues/2037 is that the final measurement of a web_connectivity run is not submitted because the context expires while we're submitting it in most cases. In turn, this happens because a web_connectivity measurement is not interrupted midway, since it's not interruptible. This choice is sound in that we want to finish an in progress measurement. And this is also why the max_runtime is never 100% accurate. Yet, once the context is expired, the subsequent submission fails. Fix the issue by using three contexts. The root context is the one that the user controls. The measurement context is the one tied to the max runtime. The submit context is tied to the max runtime plus extra slack time to ensure we submit the measurement. With this diff applied, I run the mobile app a couple of times and did not notice any unsubmitted measurements. Still, more testing is also probably required to further ensure we've properly fixed. I'm committing this diff in the release/3.14 branch but we WILL also need to forward port it into the master branch. While there, since pkg/oonimkall is a large package, let us create a doc.go file for keeping the docs. Conflicts: pkg/oonimkall/task.go |
||
---|---|---|
.. | ||
.gitignore | ||
doc.go | ||
experiment_test.go | ||
experiment.go | ||
README.md | ||
session_integration_test.go | ||
session_test.go | ||
session.go | ||
sessioncontext_test.go | ||
sessioncontext.go | ||
sessionlogger_test.go | ||
sessionlogger.go | ||
task_test.go | ||
task.go | ||
taskemitter_test.go | ||
taskemitter.go | ||
tasklogger_test.go | ||
tasklogger.go | ||
taskmocks_test.go | ||
taskmodel.go | ||
taskrunner_test.go | ||
taskrunner.go | ||
tasksession_test.go | ||
tasksession.go | ||
uuid_test.go | ||
uuid.go | ||
webconnectivity_integration_test.go | ||
webconnectivity_test.go | ||
webconnectivity.go |
Package github.com/ooni/probe-cli/pkg/oonimkall
Package oonimkall implements APIs used by OONI mobile apps. We expose these APIs to mobile apps using gomobile.
We expose two APIs: the task API, which is derived from the
API originally exposed by Measurement Kit, and the session API,
which is a Go API that mobile apps can use via gomobile
.
This package is named oonimkall because it contains a partial reimplementation of the mkall API implemented by Measurement Kit in, e.g., mkall-ios.
The basic tenet of the task API is that you define an experiment task you wanna run using a JSON, then you start a task for it, and you receive events as serialized JSONs. In addition to this functionality, we also include extra APIs used by OONI mobile.
The basic tenet of the session API is that you create an instance
of Session
and use it to perform the operations you need.