blob: 0888fa7bb82cf7ae9c060b0dd6a4b3fcb8110b09 [file]
// Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:async';
import 'package:analysis_server/protocol/protocol.dart';
import 'package:analysis_server/protocol/protocol_generated.dart';
import 'package:analysis_server/src/handler/legacy/legacy_handler.dart';
/// The handler for the `server.setSubscriptions` request.
class ServerSetSubscriptionsHandler extends LegacyHandler {
/// Initialize a newly created handler to be able to service requests for the
/// [server].
new(super.server, super.request, super.cancellationToken, super.performance);
@override
Future<void> handle() async {
try {
server.serverServices = ServerSetSubscriptionsParams.fromRequest(
request,
clientUriConverter: server.uriConverter,
).subscriptions.toSet();
server.requestStatistics?.isNotificationSubscribed = server.serverServices
.contains(ServerService.LOG);
} on RequestFailure catch (exception) {
sendResponse(exception.response);
return;
}
sendResult(ServerSetSubscriptionsResult());
}
}