blob: 505246035534df3d2fd118afdb1cf6ea9a4f43f1 [file] [log] [blame]
/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef PERFD_PROFILER_SERVICE_H_
#define PERFD_PROFILER_SERVICE_H_
#include <grpc++/grpc++.h>
#include "daemon/commands/command.h"
#include "daemon/daemon.h"
#include "proto/profiler.grpc.pb.h"
namespace profiler {
class ProfilerServiceImpl final
: public profiler::proto::ProfilerService::Service {
public:
explicit ProfilerServiceImpl(Daemon* daemon) : daemon_(daemon) {}
grpc::Status BeginSession(
grpc::ServerContext* context,
const profiler::proto::BeginSessionRequest* request,
profiler::proto::BeginSessionResponse* response) override;
grpc::Status EndSession(
grpc::ServerContext* context,
const profiler::proto::EndSessionRequest* request,
profiler::proto::EndSessionResponse* response) override;
grpc::Status GetSessions(
grpc::ServerContext* context,
const profiler::proto::GetSessionsRequest* request,
profiler::proto::GetSessionsResponse* response) override;
private:
// The daemon this service talks to.
Daemon* daemon_;
};
} // namespace profiler
#endif // PERFD_PROFILER_SERVICE_H_