@cqse/commons 1.0.0-beta.6 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,142 @@
1
+ //#region src/Contract.d.ts
2
+ type Nullable<Type> = Type | null;
3
+ declare class Contract {
4
+ static require(condition: boolean, message?: string): void;
5
+ static requireDefined<E>(obj: Nullable<E>, message?: string): E;
6
+ static requireNonEmpty(text: string, message?: string): string;
7
+ static requireStringPattern(text: string, regexp: string | RegExp, message?: string): string;
8
+ }
9
+ //#endregion
10
+ //#region src/Exceptions.d.ts
11
+ declare class ImplementMeException extends Error {
12
+ private readonly _implementMeFor?;
13
+ constructor(implementMeFor?: string);
14
+ get message(): string;
15
+ }
16
+ declare class IllegalStateException extends Error {}
17
+ declare class IllegalArgumentException extends Error {}
18
+ declare class InvalidConfigurationException extends Error {}
19
+ //#endregion
20
+ //#region src/Strings.d.ts
21
+ declare function removePrefix(prefix: string, removeFrom: string): string;
22
+ //#endregion
23
+ //#region src/ConfigParser.d.ts
24
+ type ConfigParameterType = 'string' | 'int' | 'bool' | 'string[]';
25
+ type ConfigValueType = string | number | boolean | string[];
26
+ type Options = Record<string, ConfigValueType>;
27
+ type VersionAndHelpOptions = {
28
+ version: boolean;
29
+ help: boolean;
30
+ };
31
+ type ConfigParsingResult = {
32
+ options: Options;
33
+ unnamedArguments: string[];
34
+ };
35
+ type AppInfos = {
36
+ name: string;
37
+ version: string;
38
+ about: string;
39
+ };
40
+ type ParameterGroup = {
41
+ order: number;
42
+ title: string;
43
+ hints?: string;
44
+ };
45
+ declare const CONFIG_GROUP_APP: ParameterGroup;
46
+ type ParameterDescriptor = {
47
+ parameterId: string;
48
+ shortParameter?: string;
49
+ longParameter: string;
50
+ environmentVariableName: string;
51
+ disableEnvironmentVariableOverride?: boolean;
52
+ type: ConfigParameterType;
53
+ default?: ConfigValueType;
54
+ help: string;
55
+ internal: boolean;
56
+ group?: ParameterGroup;
57
+ };
58
+ type ParameterDefinitionOptions = Partial<ParameterDescriptor>;
59
+ declare function parameterNameToParameterId(parameterName: string): string;
60
+ declare function longParameterToEnvironmentVariableName(longParameter: string): string;
61
+ declare class ConfigurationParameters {
62
+ private readonly parameters;
63
+ private readonly shortToLongParameterMap;
64
+ private readonly sequentialParameters;
65
+ private readonly argumentChecks;
66
+ constructor();
67
+ addParameter(shortParameter: string | undefined, longParameter: string, type: ConfigParameterType, options?: ParameterDefinitionOptions): void;
68
+ addArgumentCheck(check: (options: Record<string, unknown>) => string | undefined): void;
69
+ addRequiredArgumentFor(parameterId: string): void;
70
+ describeParameter(parameterId: string, descriptor: ParameterDescriptor): void;
71
+ lookupParameter(parameterId: string): ParameterDescriptor | undefined;
72
+ getParameters(): ParameterDescriptor[];
73
+ getArgumentChecks(): Array<(options: Record<string, unknown>) => string | undefined>;
74
+ getSequentialParameters(): string[];
75
+ clone(): ConfigurationParameters;
76
+ addAllOf(toAdd: ConfigurationParameters): void;
77
+ }
78
+ declare function parseArguments<OptionsType extends Record<string, unknown>>(args: string[], parameters: ConfigurationParameters): Partial<OptionsType>;
79
+ declare function parseConfigFile(fileContent: string, parameters: ConfigurationParameters): ConfigParsingResult;
80
+ declare function printHelp(parameters: ConfigurationParameters, aboutText?: string, printParamterId?: boolean): void;
81
+ declare function checkArguments(configParameters: ConfigurationParameters, options: Options, errorReceiver?: (error: string) => void): boolean;
82
+ declare function processCommandLine<O>(parameters: ConfigurationParameters, appInfos: AppInfos, args?: string[], beforeCheckCallback?: (options: O) => void): O;
83
+ declare function parameterUnion(parameters1: ConfigurationParameters, parameters2: ConfigurationParameters): ConfigurationParameters;
84
+ //#endregion
85
+ //#region src/ConfigWithOverwrites.d.ts
86
+ declare class ConfigurationWithOverwrites<BaseConfigType extends Options> {
87
+ private readonly baseConfiguration;
88
+ private readonly redefinableParameters;
89
+ private readonly allParameters;
90
+ private overwrites;
91
+ private hash?;
92
+ constructor(allParameters: ConfigurationParameters, redefinableParameters: ConfigurationParameters, baseConfiguration: Record<string, ConfigValueType>, overwrites?: Record<string, ConfigValueType>);
93
+ get(parameterId: string): ConfigValueType;
94
+ set(parameterId: string, value: ConfigValueType): void;
95
+ overwriteConfig(parameter: string, value: ConfigValueType | undefined): void;
96
+ private castConfigArgument;
97
+ private assertParameterExists;
98
+ private getParameter;
99
+ getHash(): string;
100
+ copy(): ConfigurationWithOverwrites<BaseConfigType>;
101
+ }
102
+ declare function makeConfigProxy<BaseConfigType extends Options>(configuration: ConfigurationWithOverwrites<BaseConfigType>): BaseConfigType;
103
+ //#endregion
104
+ //#region src/CollectorConfig.d.ts
105
+ type PredefinableOptions = {
106
+ keepCoverageFiles: boolean;
107
+ dumpAfterMins: number;
108
+ artifactoryServerUrl?: string;
109
+ artifactoryUser?: string;
110
+ artifactoryPassword?: string;
111
+ artifactoryAccessToken?: string;
112
+ artifactoryPathSuffix?: string;
113
+ };
114
+ type StaticCollectorOptions = PredefinableOptions & {
115
+ port: number;
116
+ dumpFolder: string;
117
+ httpProxy?: string;
118
+ logLevel: string;
119
+ logToFile: string;
120
+ jsonLog: boolean;
121
+ enableControlPort?: number;
122
+ teamscaleServerUrl?: string;
123
+ teamscaleUser?: string;
124
+ teamscaleAccessToken?: string;
125
+ };
126
+ type ReconfigurableCollectorOptions = PredefinableOptions & {
127
+ teamscaleProject?: string;
128
+ teamscalePartition?: string;
129
+ teamscaleRepository?: string;
130
+ teamscaleMessage?: string;
131
+ dumpToFolder?: string;
132
+ };
133
+ type CollectorOptions = StaticCollectorOptions & ReconfigurableCollectorOptions;
134
+ declare function buildPredefinableParameters(): ConfigurationParameters;
135
+ declare function buildStaticCollectorParameters(): ConfigurationParameters;
136
+ declare function buildReconfigurableCollectorParameters(): ConfigurationParameters;
137
+ //#endregion
138
+ //#region src/Validation.d.ts
139
+ declare function isValidCommitInfo(commit?: unknown): boolean;
140
+ //#endregion
141
+ export { AppInfos, CONFIG_GROUP_APP, CollectorOptions, ConfigParameterType, ConfigParsingResult, ConfigValueType, ConfigurationParameters, ConfigurationWithOverwrites, Contract, IllegalArgumentException, IllegalStateException, ImplementMeException, InvalidConfigurationException, Nullable, Options, ParameterDefinitionOptions, ParameterDescriptor, ParameterGroup, PredefinableOptions, ReconfigurableCollectorOptions, StaticCollectorOptions, VersionAndHelpOptions, buildPredefinableParameters, buildReconfigurableCollectorParameters, buildStaticCollectorParameters, checkArguments, isValidCommitInfo, longParameterToEnvironmentVariableName, makeConfigProxy, parameterNameToParameterId, parameterUnion, parseArguments, parseConfigFile, printHelp, processCommandLine, removePrefix };
142
+ //# sourceMappingURL=index.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../src/Contract.ts","../src/Exceptions.ts","../src/Strings.ts","../src/ConfigParser.ts","../src/ConfigWithOverwrites.ts","../src/CollectorConfig.ts","../src/Validation.ts"],"mappings":"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"}
@@ -0,0 +1,142 @@
1
+ //#region src/Contract.d.ts
2
+ type Nullable<Type> = Type | null;
3
+ declare class Contract {
4
+ static require(condition: boolean, message?: string): void;
5
+ static requireDefined<E>(obj: Nullable<E>, message?: string): E;
6
+ static requireNonEmpty(text: string, message?: string): string;
7
+ static requireStringPattern(text: string, regexp: string | RegExp, message?: string): string;
8
+ }
9
+ //#endregion
10
+ //#region src/Exceptions.d.ts
11
+ declare class ImplementMeException extends Error {
12
+ private readonly _implementMeFor?;
13
+ constructor(implementMeFor?: string);
14
+ get message(): string;
15
+ }
16
+ declare class IllegalStateException extends Error {}
17
+ declare class IllegalArgumentException extends Error {}
18
+ declare class InvalidConfigurationException extends Error {}
19
+ //#endregion
20
+ //#region src/Strings.d.ts
21
+ declare function removePrefix(prefix: string, removeFrom: string): string;
22
+ //#endregion
23
+ //#region src/ConfigParser.d.ts
24
+ type ConfigParameterType = 'string' | 'int' | 'bool' | 'string[]';
25
+ type ConfigValueType = string | number | boolean | string[];
26
+ type Options = Record<string, ConfigValueType>;
27
+ type VersionAndHelpOptions = {
28
+ version: boolean;
29
+ help: boolean;
30
+ };
31
+ type ConfigParsingResult = {
32
+ options: Options;
33
+ unnamedArguments: string[];
34
+ };
35
+ type AppInfos = {
36
+ name: string;
37
+ version: string;
38
+ about: string;
39
+ };
40
+ type ParameterGroup = {
41
+ order: number;
42
+ title: string;
43
+ hints?: string;
44
+ };
45
+ declare const CONFIG_GROUP_APP: ParameterGroup;
46
+ type ParameterDescriptor = {
47
+ parameterId: string;
48
+ shortParameter?: string;
49
+ longParameter: string;
50
+ environmentVariableName: string;
51
+ disableEnvironmentVariableOverride?: boolean;
52
+ type: ConfigParameterType;
53
+ default?: ConfigValueType;
54
+ help: string;
55
+ internal: boolean;
56
+ group?: ParameterGroup;
57
+ };
58
+ type ParameterDefinitionOptions = Partial<ParameterDescriptor>;
59
+ declare function parameterNameToParameterId(parameterName: string): string;
60
+ declare function longParameterToEnvironmentVariableName(longParameter: string): string;
61
+ declare class ConfigurationParameters {
62
+ private readonly parameters;
63
+ private readonly shortToLongParameterMap;
64
+ private readonly sequentialParameters;
65
+ private readonly argumentChecks;
66
+ constructor();
67
+ addParameter(shortParameter: string | undefined, longParameter: string, type: ConfigParameterType, options?: ParameterDefinitionOptions): void;
68
+ addArgumentCheck(check: (options: Record<string, unknown>) => string | undefined): void;
69
+ addRequiredArgumentFor(parameterId: string): void;
70
+ describeParameter(parameterId: string, descriptor: ParameterDescriptor): void;
71
+ lookupParameter(parameterId: string): ParameterDescriptor | undefined;
72
+ getParameters(): ParameterDescriptor[];
73
+ getArgumentChecks(): Array<(options: Record<string, unknown>) => string | undefined>;
74
+ getSequentialParameters(): string[];
75
+ clone(): ConfigurationParameters;
76
+ addAllOf(toAdd: ConfigurationParameters): void;
77
+ }
78
+ declare function parseArguments<OptionsType extends Record<string, unknown>>(args: string[], parameters: ConfigurationParameters): Partial<OptionsType>;
79
+ declare function parseConfigFile(fileContent: string, parameters: ConfigurationParameters): ConfigParsingResult;
80
+ declare function printHelp(parameters: ConfigurationParameters, aboutText?: string, printParamterId?: boolean): void;
81
+ declare function checkArguments(configParameters: ConfigurationParameters, options: Options, errorReceiver?: (error: string) => void): boolean;
82
+ declare function processCommandLine<O>(parameters: ConfigurationParameters, appInfos: AppInfos, args?: string[], beforeCheckCallback?: (options: O) => void): O;
83
+ declare function parameterUnion(parameters1: ConfigurationParameters, parameters2: ConfigurationParameters): ConfigurationParameters;
84
+ //#endregion
85
+ //#region src/ConfigWithOverwrites.d.ts
86
+ declare class ConfigurationWithOverwrites<BaseConfigType extends Options> {
87
+ private readonly baseConfiguration;
88
+ private readonly redefinableParameters;
89
+ private readonly allParameters;
90
+ private overwrites;
91
+ private hash?;
92
+ constructor(allParameters: ConfigurationParameters, redefinableParameters: ConfigurationParameters, baseConfiguration: Record<string, ConfigValueType>, overwrites?: Record<string, ConfigValueType>);
93
+ get(parameterId: string): ConfigValueType;
94
+ set(parameterId: string, value: ConfigValueType): void;
95
+ overwriteConfig(parameter: string, value: ConfigValueType | undefined): void;
96
+ private castConfigArgument;
97
+ private assertParameterExists;
98
+ private getParameter;
99
+ getHash(): string;
100
+ copy(): ConfigurationWithOverwrites<BaseConfigType>;
101
+ }
102
+ declare function makeConfigProxy<BaseConfigType extends Options>(configuration: ConfigurationWithOverwrites<BaseConfigType>): BaseConfigType;
103
+ //#endregion
104
+ //#region src/CollectorConfig.d.ts
105
+ type PredefinableOptions = {
106
+ keepCoverageFiles: boolean;
107
+ dumpAfterMins: number;
108
+ artifactoryServerUrl?: string;
109
+ artifactoryUser?: string;
110
+ artifactoryPassword?: string;
111
+ artifactoryAccessToken?: string;
112
+ artifactoryPathSuffix?: string;
113
+ };
114
+ type StaticCollectorOptions = PredefinableOptions & {
115
+ port: number;
116
+ dumpFolder: string;
117
+ httpProxy?: string;
118
+ logLevel: string;
119
+ logToFile: string;
120
+ jsonLog: boolean;
121
+ enableControlPort?: number;
122
+ teamscaleServerUrl?: string;
123
+ teamscaleUser?: string;
124
+ teamscaleAccessToken?: string;
125
+ };
126
+ type ReconfigurableCollectorOptions = PredefinableOptions & {
127
+ teamscaleProject?: string;
128
+ teamscalePartition?: string;
129
+ teamscaleRepository?: string;
130
+ teamscaleMessage?: string;
131
+ dumpToFolder?: string;
132
+ };
133
+ type CollectorOptions = StaticCollectorOptions & ReconfigurableCollectorOptions;
134
+ declare function buildPredefinableParameters(): ConfigurationParameters;
135
+ declare function buildStaticCollectorParameters(): ConfigurationParameters;
136
+ declare function buildReconfigurableCollectorParameters(): ConfigurationParameters;
137
+ //#endregion
138
+ //#region src/Validation.d.ts
139
+ declare function isValidCommitInfo(commit?: unknown): boolean;
140
+ //#endregion
141
+ export { AppInfos, CONFIG_GROUP_APP, CollectorOptions, ConfigParameterType, ConfigParsingResult, ConfigValueType, ConfigurationParameters, ConfigurationWithOverwrites, Contract, IllegalArgumentException, IllegalStateException, ImplementMeException, InvalidConfigurationException, Nullable, Options, ParameterDefinitionOptions, ParameterDescriptor, ParameterGroup, PredefinableOptions, ReconfigurableCollectorOptions, StaticCollectorOptions, VersionAndHelpOptions, buildPredefinableParameters, buildReconfigurableCollectorParameters, buildStaticCollectorParameters, checkArguments, isValidCommitInfo, longParameterToEnvironmentVariableName, makeConfigProxy, parameterNameToParameterId, parameterUnion, parseArguments, parseConfigFile, printHelp, processCommandLine, removePrefix };
142
+ //# sourceMappingURL=index.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/Contract.ts","../src/Exceptions.ts","../src/Strings.ts","../src/ConfigParser.ts","../src/ConfigWithOverwrites.ts","../src/CollectorConfig.ts","../src/Validation.ts"],"mappings":"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"}