doc-comment Fields for Activity and Result types
The ones we were able to figure out, at least.
Change-Id: I697f4f3942e35a7adf1b2a6cc28b3168d1de111c
This commit is contained in:
parent
91d8d0e58e
commit
5623e759ec
|
@ -14,23 +14,71 @@ typedef enum {
|
||||||
actRealise = 102,
|
actRealise = 102,
|
||||||
actCopyPaths = 103,
|
actCopyPaths = 103,
|
||||||
actBuilds = 104,
|
actBuilds = 104,
|
||||||
|
|
||||||
|
/** Fields:
|
||||||
|
* 0: string: path to store derivation being built.
|
||||||
|
* 1: string: representing the machine this is being built on. Empty string if local machine.
|
||||||
|
* 2: int: curRound, not used anymore, always 1?
|
||||||
|
* 3: int: nrRounds, not used anymore always 1?
|
||||||
|
*/
|
||||||
actBuild = 105,
|
actBuild = 105,
|
||||||
actOptimiseStore = 106,
|
actOptimiseStore = 106,
|
||||||
actVerifyPaths = 107,
|
actVerifyPaths = 107,
|
||||||
|
|
||||||
|
/** Fields:
|
||||||
|
* 0: string: store path
|
||||||
|
* 1: string: substituter
|
||||||
|
*/
|
||||||
actSubstitute = 108,
|
actSubstitute = 108,
|
||||||
|
|
||||||
|
/** Fields:
|
||||||
|
* 0: string: store path
|
||||||
|
* 1: string: substituter
|
||||||
|
*/
|
||||||
actQueryPathInfo = 109,
|
actQueryPathInfo = 109,
|
||||||
|
|
||||||
|
/** Fields:
|
||||||
|
* 0: string: store path
|
||||||
|
*/
|
||||||
actPostBuildHook = 110,
|
actPostBuildHook = 110,
|
||||||
actBuildWaiting = 111,
|
actBuildWaiting = 111,
|
||||||
} ActivityType;
|
} ActivityType;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
/** Fields:
|
||||||
|
* 0: int: bytes linked
|
||||||
|
*/
|
||||||
resFileLinked = 100,
|
resFileLinked = 100,
|
||||||
|
|
||||||
|
/** Fields:
|
||||||
|
* 0: string: last line
|
||||||
|
*/
|
||||||
resBuildLogLine = 101,
|
resBuildLogLine = 101,
|
||||||
resUntrustedPath = 102,
|
resUntrustedPath = 102,
|
||||||
resCorruptedPath = 103,
|
resCorruptedPath = 103,
|
||||||
|
|
||||||
|
/** Fields:
|
||||||
|
* 0: string: phase name
|
||||||
|
*/
|
||||||
resSetPhase = 104,
|
resSetPhase = 104,
|
||||||
|
|
||||||
|
/** Fields:
|
||||||
|
* 0: int: done
|
||||||
|
* 1: int: expected
|
||||||
|
* 2: int: running
|
||||||
|
* 3: int: failed
|
||||||
|
*/
|
||||||
resProgress = 105,
|
resProgress = 105,
|
||||||
|
|
||||||
|
/** Fields:
|
||||||
|
* 0: int: ActivityType
|
||||||
|
* 1: int: expected
|
||||||
|
*/
|
||||||
resSetExpected = 106,
|
resSetExpected = 106,
|
||||||
|
|
||||||
|
/** Fields:
|
||||||
|
* 0: string: last line
|
||||||
|
*/
|
||||||
resPostBuildLogLine = 107,
|
resPostBuildLogLine = 107,
|
||||||
} ResultType;
|
} ResultType;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue