mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Merge "ResearchLogging of segments: groups of LogUnits that are sampled together"
This commit is contained in:
commit
2ae580eaea
@ -708,12 +708,29 @@ public class ResearchLogger implements SharedPreferences.OnSharedPreferenceChang
|
||||
}
|
||||
}
|
||||
|
||||
private static final String[] EVENTKEYS_LOG_SEGMENT_START = {
|
||||
"logSegmentStart", "isIncludingPrivateData"
|
||||
};
|
||||
private static final String[] EVENTKEYS_LOG_SEGMENT_END = {
|
||||
"logSegmentEnd"
|
||||
};
|
||||
/* package for test */ void publishLogBuffer(final LogBuffer logBuffer,
|
||||
final ResearchLog researchLog, final boolean isIncludingPrivateData) {
|
||||
final LogUnit openingLogUnit = new LogUnit();
|
||||
final Object[] values = {
|
||||
isIncludingPrivateData
|
||||
};
|
||||
openingLogUnit.addLogStatement(EVENTKEYS_LOG_SEGMENT_START, values,
|
||||
false /* isPotentiallyPrivate */);
|
||||
researchLog.publish(openingLogUnit, true /* isIncludingPrivateData */);
|
||||
LogUnit logUnit;
|
||||
while ((logUnit = logBuffer.shiftOut()) != null) {
|
||||
researchLog.publish(logUnit, isIncludingPrivateData);
|
||||
}
|
||||
final LogUnit closingLogUnit = new LogUnit();
|
||||
closingLogUnit.addLogStatement(EVENTKEYS_LOG_SEGMENT_END, EVENTKEYS_NULLVALUES,
|
||||
false /* isPotentiallyPrivate */);
|
||||
researchLog.publish(closingLogUnit, true /* isIncludingPrivateData */);
|
||||
}
|
||||
|
||||
private boolean hasOnlyLetters(final String word) {
|
||||
|
Loading…
Reference in New Issue
Block a user