@mcp-abap-adt/adt-clients 0.3.13 → 0.3.15
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.
- package/README.md +67 -4
- package/dist/clients/AdtClientsWS.d.ts +26 -0
- package/dist/clients/AdtClientsWS.d.ts.map +1 -0
- package/dist/clients/AdtClientsWS.js +101 -0
- package/dist/clients/AdtExecutor.d.ts +9 -0
- package/dist/clients/AdtExecutor.d.ts.map +1 -0
- package/dist/clients/AdtExecutor.js +16 -0
- package/dist/clients/AdtRuntimeClient.d.ts +96 -99
- package/dist/clients/AdtRuntimeClient.d.ts.map +1 -1
- package/dist/clients/AdtRuntimeClient.js +124 -123
- package/dist/clients/AdtRuntimeClientExperimental.d.ts +76 -0
- package/dist/clients/AdtRuntimeClientExperimental.d.ts.map +1 -0
- package/dist/clients/AdtRuntimeClientExperimental.js +105 -0
- package/dist/clients/DebuggerSessionClient.d.ts +39 -0
- package/dist/clients/DebuggerSessionClient.d.ts.map +1 -0
- package/dist/clients/DebuggerSessionClient.js +39 -0
- package/dist/core/shared/AdtUtils.d.ts +25 -1
- package/dist/core/shared/AdtUtils.d.ts.map +1 -1
- package/dist/core/shared/AdtUtils.js +26 -0
- package/dist/core/shared/index.d.ts +1 -1
- package/dist/core/shared/index.d.ts.map +1 -1
- package/dist/core/shared/types.d.ts +57 -0
- package/dist/core/shared/types.d.ts.map +1 -1
- package/dist/core/shared/whereUsed.d.ts +26 -1
- package/dist/core/shared/whereUsed.d.ts.map +1 -1
- package/dist/core/shared/whereUsed.js +110 -0
- package/dist/executors/class/ClassExecutor.d.ts +30 -0
- package/dist/executors/class/ClassExecutor.d.ts.map +1 -0
- package/dist/executors/class/ClassExecutor.js +112 -0
- package/dist/executors/class/index.d.ts +2 -0
- package/dist/executors/class/index.d.ts.map +1 -0
- package/dist/executors/class/index.js +5 -0
- package/dist/executors/index.d.ts +3 -0
- package/dist/executors/index.d.ts.map +1 -0
- package/dist/executors/index.js +5 -0
- package/dist/index.d.ts +10 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +11 -2
- package/dist/runtime/debugger/abap.d.ts +11 -0
- package/dist/runtime/debugger/abap.d.ts.map +1 -1
- package/dist/runtime/debugger/abap.js +83 -0
- package/dist/runtime/debugger/index.d.ts +2 -3
- package/dist/runtime/debugger/index.d.ts.map +1 -1
- package/dist/runtime/debugger/index.js +7 -17
- package/dist/runtime/dumps/index.d.ts +5 -0
- package/dist/runtime/dumps/index.d.ts.map +1 -0
- package/dist/runtime/dumps/index.js +11 -0
- package/dist/runtime/dumps/read.d.ts +35 -0
- package/dist/runtime/dumps/read.d.ts.map +1 -0
- package/dist/runtime/dumps/read.js +80 -0
- package/dist/runtime/index.d.ts +1 -2
- package/dist/runtime/index.d.ts.map +1 -1
- package/dist/runtime/index.js +1 -2
- package/dist/runtime/traces/index.d.ts +1 -1
- package/dist/runtime/traces/index.d.ts.map +1 -1
- package/dist/runtime/traces/index.js +10 -1
- package/dist/runtime/traces/profiler.d.ts +61 -0
- package/dist/runtime/traces/profiler.d.ts.map +1 -1
- package/dist/runtime/traces/profiler.js +256 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -6,7 +6,9 @@ TypeScript clients for SAP ABAP Development Tools (ADT).
|
|
|
6
6
|
|
|
7
7
|
- ✅ **Client API** – simplified interface for common operations:
|
|
8
8
|
- `AdtClient` – high-level CRUD API with automatic operation chains
|
|
9
|
-
- `AdtRuntimeClient` – runtime operations (debugger, traces, memory, logs)
|
|
9
|
+
- `AdtRuntimeClient` – stable runtime operations (ABAP debugger, traces, memory, logs, dumps)
|
|
10
|
+
- `AdtRuntimeClientExperimental` – runtime APIs in progress (for example AMDP debugger)
|
|
11
|
+
- `AdtClientsWS` – realtime WebSocket facade for event-driven workflows
|
|
10
12
|
- ✅ **ABAP Unit test support** – run and manage ABAP Unit tests (class and CDS view tests)
|
|
11
13
|
- ✅ **Stateful session management** – maintains `sap-adt-connection-id` across operations
|
|
12
14
|
- ✅ **Lock registry** – persistent `.locks/active-locks.json` with CLI tools for recovery
|
|
@@ -87,9 +89,19 @@ npm install @mcp-abap-adt/adt-clients
|
|
|
87
89
|
- Example: `await client.getClass().create({...}, { activateOnCreate: true })`
|
|
88
90
|
|
|
89
91
|
2. **AdtRuntimeClient**
|
|
90
|
-
-
|
|
92
|
+
- Stable runtime operations for ABAP debugging, traces, memory analysis, dumps, and logs
|
|
91
93
|
- Example: `await runtimeClient.getDebugger(...)`
|
|
92
94
|
|
|
95
|
+
3. **AdtRuntimeClientExperimental**
|
|
96
|
+
- Runtime APIs in progress that may change without backward-compatibility guarantees
|
|
97
|
+
- Current scope: AMDP debugger + AMDP data preview
|
|
98
|
+
- Example: `await experimentalRuntime.startAmdpDebugger(...)`
|
|
99
|
+
|
|
100
|
+
4. **AdtClientsWS**
|
|
101
|
+
- Realtime request/event facade over `IWebSocketTransport`
|
|
102
|
+
- Includes debugger-session facade: listen, attach, step, stack, variables
|
|
103
|
+
- Example: `await wsClient.request('debugger.listen', { timeoutSeconds: 30 })`
|
|
104
|
+
|
|
93
105
|
## Supported Object Types
|
|
94
106
|
|
|
95
107
|
| Object Type | AdtClient |
|
|
@@ -138,9 +150,60 @@ await client.getClass().create({
|
|
|
138
150
|
// Utility functions
|
|
139
151
|
const utils = client.getUtils();
|
|
140
152
|
await utils.searchObjects({ query: 'Z*', objectType: 'CLAS' });
|
|
141
|
-
|
|
153
|
+
|
|
154
|
+
// Where-used with parsed results (recommended)
|
|
155
|
+
const result = await utils.getWhereUsedList({
|
|
156
|
+
object_name: 'ZCL_TEST',
|
|
157
|
+
object_type: 'class',
|
|
158
|
+
enableAllTypes: true // Eclipse "select all" behavior
|
|
159
|
+
});
|
|
160
|
+
console.log(`Found ${result.totalReferences} references`);
|
|
161
|
+
for (const ref of result.references) {
|
|
162
|
+
console.log(`${ref.name} (${ref.type}) in ${ref.packageName}`);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
// Where-used with raw XML (legacy)
|
|
166
|
+
await utils.getWhereUsed({ object_name: 'ZCL_TEST', object_type: 'class' });
|
|
142
167
|
```
|
|
143
168
|
|
|
169
|
+
### Using AdtClientsWS (Realtime)
|
|
170
|
+
|
|
171
|
+
```typescript
|
|
172
|
+
import { AdtClientsWS } from '@mcp-abap-adt/adt-clients';
|
|
173
|
+
import type { IWebSocketTransport } from '@mcp-abap-adt/adt-clients';
|
|
174
|
+
|
|
175
|
+
const transport: IWebSocketTransport = createYourTransport();
|
|
176
|
+
const wsClient = new AdtClientsWS(transport, console, {
|
|
177
|
+
requestTimeoutMs: 30000,
|
|
178
|
+
});
|
|
179
|
+
|
|
180
|
+
await wsClient.connect('wss://your-realtime-endpoint');
|
|
181
|
+
|
|
182
|
+
const debuggerSession = wsClient.getDebuggerSessionClient();
|
|
183
|
+
await debuggerSession.listen({ timeoutSeconds: 60 });
|
|
184
|
+
await debuggerSession.step({ action: 'step_over' });
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
### ABAP Debugger Step Operations via Batch Endpoint
|
|
188
|
+
|
|
189
|
+
`AdtRuntimeClient` executes step operations through debugger batch requests (`POST /sap/bc/adt/debugger/batch`) using `multipart/mixed` payloads.
|
|
190
|
+
|
|
191
|
+
```typescript
|
|
192
|
+
import { AdtRuntimeClient } from '@mcp-abap-adt/adt-clients';
|
|
193
|
+
|
|
194
|
+
const runtime = new AdtRuntimeClient(connection);
|
|
195
|
+
|
|
196
|
+
// Executes stepInto + getStack in one batch request
|
|
197
|
+
const batchResponse = await runtime.stepIntoDebuggerBatch();
|
|
198
|
+
|
|
199
|
+
// Also available:
|
|
200
|
+
await runtime.stepOutDebuggerBatch();
|
|
201
|
+
await runtime.stepContinueDebuggerBatch();
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
For non-step actions keep using `executeDebuggerAction(action, value?)`.
|
|
205
|
+
Step actions (`stepInto`, `stepOut`, `stepContinue`) are reserved for batch-only execution.
|
|
206
|
+
|
|
144
207
|
**AdtUtils read type safety:**
|
|
145
208
|
`readObjectMetadata` and `readObjectSource` accept strict object type unions to prevent invalid inputs like `view:ZOBJ`.
|
|
146
209
|
|
|
@@ -499,7 +562,7 @@ See [docs/DEBUG.md](docs/DEBUG.md) for detailed debugging guide.
|
|
|
499
562
|
## Changelog
|
|
500
563
|
|
|
501
564
|
See [CHANGELOG.md](CHANGELOG.md) for package-specific release notes.
|
|
502
|
-
Latest (0.3.
|
|
565
|
+
Latest (0.3.14): added `getWhereUsedList()` for parsed where-used results.
|
|
503
566
|
|
|
504
567
|
## Tests
|
|
505
568
|
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { ILogger, IWebSocketConnectOptions, IWebSocketMessageHandler, IWebSocketTransport } from '@mcp-abap-adt/interfaces';
|
|
2
|
+
import { DebuggerSessionClient } from './DebuggerSessionClient';
|
|
3
|
+
export interface IAdtClientsWSRequestOptions {
|
|
4
|
+
correlationId?: string;
|
|
5
|
+
timeoutMs?: number;
|
|
6
|
+
}
|
|
7
|
+
export interface IAdtClientsWSOptions {
|
|
8
|
+
requestTimeoutMs?: number;
|
|
9
|
+
}
|
|
10
|
+
export declare class AdtClientsWS {
|
|
11
|
+
private readonly transport;
|
|
12
|
+
private readonly logger;
|
|
13
|
+
private readonly requestTimeoutMs;
|
|
14
|
+
private readonly pending;
|
|
15
|
+
private readonly eventHandlers;
|
|
16
|
+
constructor(transport: IWebSocketTransport, logger?: ILogger, options?: IAdtClientsWSOptions);
|
|
17
|
+
connect(url: string, options?: IWebSocketConnectOptions): Promise<void>;
|
|
18
|
+
disconnect(code?: number, reason?: string): Promise<void>;
|
|
19
|
+
isConnected(): boolean;
|
|
20
|
+
onEvent(handler: IWebSocketMessageHandler<unknown>): void;
|
|
21
|
+
getDebuggerSessionClient(): DebuggerSessionClient;
|
|
22
|
+
request<TPayload = unknown, TResponse = unknown>(operation: string, payload?: TPayload, options?: IAdtClientsWSRequestOptions): Promise<TResponse>;
|
|
23
|
+
sendEvent<TPayload = unknown>(operation: string, payload?: TPayload): Promise<void>;
|
|
24
|
+
private handleMessage;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=AdtClientsWS.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AdtClientsWS.d.ts","sourceRoot":"","sources":["../../src/clients/AdtClientsWS.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,OAAO,EACP,wBAAwB,EAExB,wBAAwB,EACxB,mBAAmB,EACpB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAEhE,MAAM,WAAW,2BAA2B;IAC1C,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,oBAAoB;IACnC,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAQD,qBAAa,YAAY;IAOrB,OAAO,CAAC,QAAQ,CAAC,SAAS;IAN5B,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAU;IACjC,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAS;IAC1C,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAqC;IAC7D,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAgD;gBAG3D,SAAS,EAAE,mBAAmB,EAC/C,MAAM,CAAC,EAAE,OAAO,EAChB,OAAO,CAAC,EAAE,oBAAoB;IAY1B,OAAO,CACX,GAAG,EAAE,MAAM,EACX,OAAO,CAAC,EAAE,wBAAwB,GACjC,OAAO,CAAC,IAAI,CAAC;IAKV,UAAU,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAK/D,WAAW,IAAI,OAAO;IAItB,OAAO,CAAC,OAAO,EAAE,wBAAwB,CAAC,OAAO,CAAC,GAAG,IAAI;IAIzD,wBAAwB,IAAI,qBAAqB;IAI3C,OAAO,CAAC,QAAQ,GAAG,OAAO,EAAE,SAAS,GAAG,OAAO,EACnD,SAAS,EAAE,MAAM,EACjB,OAAO,CAAC,EAAE,QAAQ,EAClB,OAAO,CAAC,EAAE,2BAA2B,GACpC,OAAO,CAAC,SAAS,CAAC;IAqCf,SAAS,CAAC,QAAQ,GAAG,OAAO,EAChC,SAAS,EAAE,MAAM,EACjB,OAAO,CAAC,EAAE,QAAQ,GACjB,OAAO,CAAC,IAAI,CAAC;YAUF,aAAa;CAiC5B"}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AdtClientsWS = void 0;
|
|
4
|
+
const node_crypto_1 = require("node:crypto");
|
|
5
|
+
const DebuggerSessionClient_1 = require("./DebuggerSessionClient");
|
|
6
|
+
class AdtClientsWS {
|
|
7
|
+
transport;
|
|
8
|
+
logger;
|
|
9
|
+
requestTimeoutMs;
|
|
10
|
+
pending = new Map();
|
|
11
|
+
eventHandlers = [];
|
|
12
|
+
constructor(transport, logger, options) {
|
|
13
|
+
this.transport = transport;
|
|
14
|
+
this.logger = logger ?? {
|
|
15
|
+
debug: () => { },
|
|
16
|
+
info: () => { },
|
|
17
|
+
warn: () => { },
|
|
18
|
+
error: () => { },
|
|
19
|
+
};
|
|
20
|
+
this.requestTimeoutMs = options?.requestTimeoutMs ?? 30_000;
|
|
21
|
+
this.transport.onMessage((message) => this.handleMessage(message));
|
|
22
|
+
}
|
|
23
|
+
async connect(url, options) {
|
|
24
|
+
await this.transport.connect(url, options);
|
|
25
|
+
this.logger.debug('AdtClientsWS connected', { url });
|
|
26
|
+
}
|
|
27
|
+
async disconnect(code, reason) {
|
|
28
|
+
await this.transport.disconnect(code, reason);
|
|
29
|
+
this.logger.debug('AdtClientsWS disconnected', { code, reason });
|
|
30
|
+
}
|
|
31
|
+
isConnected() {
|
|
32
|
+
return this.transport.isConnected();
|
|
33
|
+
}
|
|
34
|
+
onEvent(handler) {
|
|
35
|
+
this.eventHandlers.push(handler);
|
|
36
|
+
}
|
|
37
|
+
getDebuggerSessionClient() {
|
|
38
|
+
return new DebuggerSessionClient_1.DebuggerSessionClient(this);
|
|
39
|
+
}
|
|
40
|
+
async request(operation, payload, options) {
|
|
41
|
+
const correlationId = options?.correlationId ?? (0, node_crypto_1.randomUUID)();
|
|
42
|
+
const timeoutMs = options?.timeoutMs ?? this.requestTimeoutMs;
|
|
43
|
+
return new Promise((resolve, reject) => {
|
|
44
|
+
const resolveTyped = (value) => resolve(value);
|
|
45
|
+
const timeout = setTimeout(() => {
|
|
46
|
+
this.pending.delete(correlationId);
|
|
47
|
+
reject(new Error(`AdtClientsWS request timeout for operation "${operation}" after ${timeoutMs}ms`));
|
|
48
|
+
}, timeoutMs);
|
|
49
|
+
this.pending.set(correlationId, {
|
|
50
|
+
resolve: resolveTyped,
|
|
51
|
+
reject,
|
|
52
|
+
timeout,
|
|
53
|
+
});
|
|
54
|
+
const message = {
|
|
55
|
+
kind: 'request',
|
|
56
|
+
operation,
|
|
57
|
+
correlationId,
|
|
58
|
+
payload,
|
|
59
|
+
timestamp: Date.now(),
|
|
60
|
+
};
|
|
61
|
+
this.transport.send(message).catch((error) => {
|
|
62
|
+
clearTimeout(timeout);
|
|
63
|
+
this.pending.delete(correlationId);
|
|
64
|
+
reject(error instanceof Error ? error : new Error(String(error)));
|
|
65
|
+
});
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
async sendEvent(operation, payload) {
|
|
69
|
+
const message = {
|
|
70
|
+
kind: 'event',
|
|
71
|
+
operation,
|
|
72
|
+
payload,
|
|
73
|
+
timestamp: Date.now(),
|
|
74
|
+
};
|
|
75
|
+
await this.transport.send(message);
|
|
76
|
+
}
|
|
77
|
+
async handleMessage(message) {
|
|
78
|
+
const correlationId = message.correlationId;
|
|
79
|
+
if (correlationId && this.pending.has(correlationId)) {
|
|
80
|
+
const request = this.pending.get(correlationId);
|
|
81
|
+
if (!request) {
|
|
82
|
+
return;
|
|
83
|
+
}
|
|
84
|
+
clearTimeout(request.timeout);
|
|
85
|
+
this.pending.delete(correlationId);
|
|
86
|
+
if (message.kind === 'error') {
|
|
87
|
+
const payloadMessage = typeof message.payload === 'string'
|
|
88
|
+
? message.payload
|
|
89
|
+
: JSON.stringify(message.payload || {});
|
|
90
|
+
request.reject(new Error(`AdtClientsWS request failed for correlationId "${correlationId}": ${payloadMessage}`));
|
|
91
|
+
return;
|
|
92
|
+
}
|
|
93
|
+
request.resolve(message.payload);
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
for (const handler of this.eventHandlers) {
|
|
97
|
+
await handler(message);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
exports.AdtClientsWS = AdtClientsWS;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { IAbapConnection, ILogger } from '@mcp-abap-adt/interfaces';
|
|
2
|
+
import { type IClassExecutor } from '../executors';
|
|
3
|
+
export declare class AdtExecutor {
|
|
4
|
+
private readonly connection;
|
|
5
|
+
private readonly logger?;
|
|
6
|
+
constructor(connection: IAbapConnection, logger?: ILogger);
|
|
7
|
+
getClassExecutor(): IClassExecutor;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=AdtExecutor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AdtExecutor.d.ts","sourceRoot":"","sources":["../../src/clients/AdtExecutor.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AACzE,OAAO,EAAiB,KAAK,cAAc,EAAE,MAAM,cAAc,CAAC;AAElE,qBAAa,WAAW;IACtB,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAkB;IAC7C,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAU;gBAEtB,UAAU,EAAE,eAAe,EAAE,MAAM,CAAC,EAAE,OAAO;IAKzD,gBAAgB,IAAI,cAAc;CAGnC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AdtExecutor = void 0;
|
|
4
|
+
const executors_1 = require("../executors");
|
|
5
|
+
class AdtExecutor {
|
|
6
|
+
connection;
|
|
7
|
+
logger;
|
|
8
|
+
constructor(connection, logger) {
|
|
9
|
+
this.connection = connection;
|
|
10
|
+
this.logger = logger;
|
|
11
|
+
}
|
|
12
|
+
getClassExecutor() {
|
|
13
|
+
return new executors_1.ClassExecutor(this.connection, this.logger);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
exports.AdtExecutor = AdtExecutor;
|
|
@@ -4,11 +4,13 @@
|
|
|
4
4
|
* Provides access to runtime-related ADT operations:
|
|
5
5
|
* - Memory snapshots analysis
|
|
6
6
|
* - Profiler traces
|
|
7
|
-
* -
|
|
7
|
+
* - ABAP debugger operations
|
|
8
8
|
* - Logs analysis
|
|
9
9
|
* - Feed reader operations
|
|
10
10
|
*
|
|
11
11
|
* This is a standalone client for runtime operations, similar to AdtClient.
|
|
12
|
+
* Experimental runtime APIs (for example AMDP debugger) are provided separately
|
|
13
|
+
* in AdtRuntimeClientExperimental.
|
|
12
14
|
*
|
|
13
15
|
* Usage:
|
|
14
16
|
* ```typescript
|
|
@@ -37,14 +39,14 @@ import type { IAdtResponse as AxiosResponse, IAbapConnection, ILogger } from '@m
|
|
|
37
39
|
import { type IGetApplicationLogObjectOptions, type IGetApplicationLogSourceOptions } from '../runtime/applicationLog/read';
|
|
38
40
|
import { type IGetCheckFailureLogsOptions } from '../runtime/atc/logs';
|
|
39
41
|
import { type IGetActivationGraphOptions } from '../runtime/ddic/activationGraph';
|
|
40
|
-
import { type IGetDebuggerOptions, type IGetSystemAreaOptions, type IGetVariableAsCsvOptions, type IGetVariableAsJsonOptions, type IGetVariableValueStatementOptions, type ILaunchDebuggerOptions, type IStopDebuggerOptions } from '../runtime/debugger/abap';
|
|
41
|
-
import { type
|
|
42
|
-
import { type IGetAmdpCellSubstringOptions, type IGetAmdpDataPreviewOptions } from '../runtime/debugger/amdpDataPreview';
|
|
42
|
+
import { type IAbapDebuggerStepMethod, type IDebuggerBatchPayload, type IGetDebuggerOptions, type IGetSystemAreaOptions, type IGetVariableAsCsvOptions, type IGetVariableAsJsonOptions, type IGetVariableValueStatementOptions, type ILaunchDebuggerOptions, type IStopDebuggerOptions } from '../runtime/debugger/abap';
|
|
43
|
+
import { type IRuntimeDumpsListOptions } from '../runtime/dumps';
|
|
43
44
|
import { type ISnapshotChildrenOptions, type ISnapshotRankingListOptions, type ISnapshotReferencesOptions } from '../runtime/memory';
|
|
44
45
|
import { type IListCrossTracesOptions } from '../runtime/traces/crossTrace';
|
|
46
|
+
import { type IProfilerTraceDbAccessesOptions, type IProfilerTraceHitListOptions, type IProfilerTraceParameters, type IProfilerTraceStatementsOptions } from '../runtime/traces/profiler';
|
|
45
47
|
export declare class AdtRuntimeClient {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
+
protected connection: IAbapConnection;
|
|
49
|
+
protected logger?: ILogger;
|
|
48
50
|
constructor(connection: IAbapConnection, logger?: ILogger, options?: {
|
|
49
51
|
enableAcceptCorrection?: boolean;
|
|
50
52
|
});
|
|
@@ -157,6 +159,55 @@ export declare class AdtRuntimeClient {
|
|
|
157
159
|
* @returns Axios response with AMDP trace parameters
|
|
158
160
|
*/
|
|
159
161
|
getProfilerTraceParametersForAmdp(): Promise<AxiosResponse>;
|
|
162
|
+
/**
|
|
163
|
+
* Build profiler trace parameters XML payload.
|
|
164
|
+
*
|
|
165
|
+
* @param options - Trace parameters options
|
|
166
|
+
* @returns XML payload used by ADT runtime trace parameters endpoint
|
|
167
|
+
*/
|
|
168
|
+
buildProfilerTraceParametersXml(options?: IProfilerTraceParameters): string;
|
|
169
|
+
/**
|
|
170
|
+
* Create profiler trace parameters (returns response with profiler URI in headers).
|
|
171
|
+
*
|
|
172
|
+
* @param options - Trace parameters options
|
|
173
|
+
* @returns Axios response from ADT endpoint
|
|
174
|
+
*/
|
|
175
|
+
createProfilerTraceParameters(options?: IProfilerTraceParameters): Promise<AxiosResponse>;
|
|
176
|
+
/**
|
|
177
|
+
* Extract profiler URI from createProfilerTraceParameters response headers.
|
|
178
|
+
*
|
|
179
|
+
* @param response - ADT response from createProfilerTraceParameters
|
|
180
|
+
* @returns Profiler URI usable as profilerId query parameter
|
|
181
|
+
*/
|
|
182
|
+
extractProfilerIdFromResponse(response: AxiosResponse): string | undefined;
|
|
183
|
+
/**
|
|
184
|
+
* Return default profiler parameters aligned with Eclipse defaults.
|
|
185
|
+
*/
|
|
186
|
+
getDefaultProfilerTraceParameters(): Omit<IProfilerTraceParameters, 'description'>;
|
|
187
|
+
/**
|
|
188
|
+
* Get profiler trace hitlist for a specific trace.
|
|
189
|
+
*
|
|
190
|
+
* @param traceIdOrUri - Trace ID or full trace URI
|
|
191
|
+
* @param options - Optional filters
|
|
192
|
+
* @returns Axios response with hitlist
|
|
193
|
+
*/
|
|
194
|
+
getProfilerTraceHitList(traceIdOrUri: string, options?: IProfilerTraceHitListOptions): Promise<AxiosResponse>;
|
|
195
|
+
/**
|
|
196
|
+
* Get profiler trace statements for a specific trace.
|
|
197
|
+
*
|
|
198
|
+
* @param traceIdOrUri - Trace ID or full trace URI
|
|
199
|
+
* @param options - Optional statement filters
|
|
200
|
+
* @returns Axios response with statements
|
|
201
|
+
*/
|
|
202
|
+
getProfilerTraceStatements(traceIdOrUri: string, options?: IProfilerTraceStatementsOptions): Promise<AxiosResponse>;
|
|
203
|
+
/**
|
|
204
|
+
* Get profiler trace DB accesses for a specific trace.
|
|
205
|
+
*
|
|
206
|
+
* @param traceIdOrUri - Trace ID or full trace URI
|
|
207
|
+
* @param options - Optional filters
|
|
208
|
+
* @returns Axios response with DB accesses
|
|
209
|
+
*/
|
|
210
|
+
getProfilerTraceDbAccesses(traceIdOrUri: string, options?: IProfilerTraceDbAccessesOptions): Promise<AxiosResponse>;
|
|
160
211
|
/**
|
|
161
212
|
* List ABAP profiler trace requests
|
|
162
213
|
*
|
|
@@ -373,116 +424,44 @@ export declare class AdtRuntimeClient {
|
|
|
373
424
|
*/
|
|
374
425
|
executeBatchRequest(requests: string): Promise<AxiosResponse>;
|
|
375
426
|
/**
|
|
376
|
-
*
|
|
377
|
-
*
|
|
378
|
-
* @param options - Debugger start options
|
|
379
|
-
* @returns Axios response with debugger session
|
|
380
|
-
*/
|
|
381
|
-
startAmdpDebugger(options?: IStartAmdpDebuggerOptions): Promise<AxiosResponse>;
|
|
382
|
-
/**
|
|
383
|
-
* Resume AMDP debugger session
|
|
384
|
-
*
|
|
385
|
-
* @param mainId - Main debugger session ID
|
|
386
|
-
* @returns Axios response with debugger session
|
|
387
|
-
*/
|
|
388
|
-
resumeAmdpDebugger(mainId: string): Promise<AxiosResponse>;
|
|
389
|
-
/**
|
|
390
|
-
* Terminate AMDP debugger session
|
|
391
|
-
*
|
|
392
|
-
* @param mainId - Main debugger session ID
|
|
393
|
-
* @param hardStop - Whether to perform hard stop
|
|
394
|
-
* @returns Axios response
|
|
395
|
-
*/
|
|
396
|
-
terminateAmdpDebugger(mainId: string, hardStop?: boolean): Promise<AxiosResponse>;
|
|
397
|
-
/**
|
|
398
|
-
* Get AMDP debuggee information
|
|
399
|
-
*
|
|
400
|
-
* @param mainId - Main debugger session ID
|
|
401
|
-
* @param debuggeeId - Debuggee ID
|
|
402
|
-
* @returns Axios response with debuggee information
|
|
403
|
-
*/
|
|
404
|
-
getAmdpDebuggee(mainId: string, debuggeeId: string): Promise<AxiosResponse>;
|
|
405
|
-
/**
|
|
406
|
-
* Get AMDP variable value
|
|
407
|
-
*
|
|
408
|
-
* @param mainId - Main debugger session ID
|
|
409
|
-
* @param debuggeeId - Debuggee ID
|
|
410
|
-
* @param varname - Variable name
|
|
411
|
-
* @param offset - Offset for variable value
|
|
412
|
-
* @param length - Length of variable value to retrieve
|
|
413
|
-
* @returns Axios response with variable value
|
|
414
|
-
*/
|
|
415
|
-
getAmdpVariable(mainId: string, debuggeeId: string, varname: string, offset?: number, length?: number): Promise<AxiosResponse>;
|
|
416
|
-
/**
|
|
417
|
-
* Set AMDP variable value
|
|
418
|
-
*
|
|
419
|
-
* @param mainId - Main debugger session ID
|
|
420
|
-
* @param debuggeeId - Debuggee ID
|
|
421
|
-
* @param varname - Variable name
|
|
422
|
-
* @param setNull - Whether to set variable to null
|
|
423
|
-
* @returns Axios response
|
|
424
|
-
*/
|
|
425
|
-
setAmdpVariable(mainId: string, debuggeeId: string, varname: string, setNull?: boolean): Promise<AxiosResponse>;
|
|
426
|
-
/**
|
|
427
|
-
* Lookup objects/variables in AMDP debugger
|
|
427
|
+
* Build multipart debugger batch payload from raw application/http parts.
|
|
428
428
|
*
|
|
429
|
-
* @param
|
|
430
|
-
* @
|
|
431
|
-
* @param name - Name to lookup
|
|
432
|
-
* @returns Axios response with lookup results
|
|
429
|
+
* @param requests - Inner HTTP request parts for debugger batch
|
|
430
|
+
* @returns Boundary and multipart body
|
|
433
431
|
*/
|
|
434
|
-
|
|
432
|
+
buildDebuggerBatchPayload(requests: string[]): IDebuggerBatchPayload;
|
|
435
433
|
/**
|
|
436
|
-
*
|
|
434
|
+
* Build standard debugger batch payload: step operation + getStack.
|
|
437
435
|
*
|
|
438
|
-
* @param
|
|
439
|
-
* @
|
|
440
|
-
* @returns Axios response
|
|
436
|
+
* @param stepMethod - Step method to execute
|
|
437
|
+
* @returns Boundary and multipart body
|
|
441
438
|
*/
|
|
442
|
-
|
|
439
|
+
buildDebuggerStepWithStackBatchPayload(stepMethod: IAbapDebuggerStepMethod): IDebuggerBatchPayload;
|
|
443
440
|
/**
|
|
444
|
-
*
|
|
441
|
+
* Execute debugger step operation via multipart batch and fetch stack in the same batch.
|
|
445
442
|
*
|
|
446
|
-
* @param
|
|
447
|
-
* @
|
|
448
|
-
* @returns Axios response
|
|
443
|
+
* @param stepMethod - Step method to execute
|
|
444
|
+
* @returns Axios response with multipart batch result
|
|
449
445
|
*/
|
|
450
|
-
|
|
446
|
+
executeDebuggerStepBatch(stepMethod: IAbapDebuggerStepMethod): Promise<AxiosResponse>;
|
|
451
447
|
/**
|
|
452
|
-
*
|
|
448
|
+
* Execute debugger stepInto via multipart batch with stack fetch.
|
|
453
449
|
*
|
|
454
|
-
* @
|
|
455
|
-
* @returns Axios response with breakpoints
|
|
450
|
+
* @returns Axios response with multipart batch result
|
|
456
451
|
*/
|
|
457
|
-
|
|
452
|
+
stepIntoDebuggerBatch(): Promise<AxiosResponse>;
|
|
458
453
|
/**
|
|
459
|
-
*
|
|
454
|
+
* Execute debugger stepOut via multipart batch with stack fetch.
|
|
460
455
|
*
|
|
461
|
-
* @
|
|
462
|
-
* @returns Axios response with LLang breakpoints
|
|
456
|
+
* @returns Axios response with multipart batch result
|
|
463
457
|
*/
|
|
464
|
-
|
|
458
|
+
stepOutDebuggerBatch(): Promise<AxiosResponse>;
|
|
465
459
|
/**
|
|
466
|
-
*
|
|
460
|
+
* Execute debugger continue via multipart batch with stack fetch.
|
|
467
461
|
*
|
|
468
|
-
* @
|
|
469
|
-
* @returns Axios response with table function breakpoints
|
|
462
|
+
* @returns Axios response with multipart batch result
|
|
470
463
|
*/
|
|
471
|
-
|
|
472
|
-
/**
|
|
473
|
-
* Get AMDP debugger data preview
|
|
474
|
-
*
|
|
475
|
-
* @param options - Data preview options
|
|
476
|
-
* @returns Axios response with data preview
|
|
477
|
-
*/
|
|
478
|
-
getAmdpDataPreview(options?: IGetAmdpDataPreviewOptions): Promise<AxiosResponse>;
|
|
479
|
-
/**
|
|
480
|
-
* Get cell substring from AMDP debugger data preview
|
|
481
|
-
*
|
|
482
|
-
* @param options - Cell substring options
|
|
483
|
-
* @returns Axios response with cell substring
|
|
484
|
-
*/
|
|
485
|
-
getAmdpCellSubstring(options?: IGetAmdpCellSubstringOptions): Promise<AxiosResponse>;
|
|
464
|
+
stepContinueDebuggerBatch(): Promise<AxiosResponse>;
|
|
486
465
|
/**
|
|
487
466
|
* Get application log object properties
|
|
488
467
|
*
|
|
@@ -539,6 +518,24 @@ export declare class AdtRuntimeClient {
|
|
|
539
518
|
* @returns Axios response with trace directory information
|
|
540
519
|
*/
|
|
541
520
|
getSt05TraceDirectory(): Promise<AxiosResponse>;
|
|
521
|
+
/**
|
|
522
|
+
* Build ADT runtime dumps query expression for user filtering.
|
|
523
|
+
*
|
|
524
|
+
* @example and( equals( user, CB9980000423 ) )
|
|
525
|
+
*/
|
|
526
|
+
buildRuntimeDumpsUserQuery(user?: string): string | undefined;
|
|
527
|
+
/**
|
|
528
|
+
* List runtime dumps feed.
|
|
529
|
+
*/
|
|
530
|
+
listRuntimeDumps(options?: IRuntimeDumpsListOptions): Promise<AxiosResponse>;
|
|
531
|
+
/**
|
|
532
|
+
* List runtime dumps filtered by user.
|
|
533
|
+
*/
|
|
534
|
+
listRuntimeDumpsByUser(user?: string, options?: Omit<IRuntimeDumpsListOptions, 'query'>): Promise<AxiosResponse>;
|
|
535
|
+
/**
|
|
536
|
+
* Read a specific runtime dump by its ADT URI.
|
|
537
|
+
*/
|
|
538
|
+
getRuntimeDumpByUri(uri: string): Promise<AxiosResponse>;
|
|
542
539
|
/**
|
|
543
540
|
* Get feeds
|
|
544
541
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AdtRuntimeClient.d.ts","sourceRoot":"","sources":["../../src/clients/AdtRuntimeClient.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"AdtRuntimeClient.d.ts","sourceRoot":"","sources":["../../src/clients/AdtRuntimeClient.ts"],"names":[],"mappings":"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"}
|