blob: a52d6f8d69a350317c2c5eebef83dcce8a09d05d [file] [log] [blame]
// Copyright 2014 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef TRUNKS_TRUNKS_SERVICE_H_
#define TRUNKS_TRUNKS_SERVICE_H_
#include <string>
#include <base/memory/weak_ptr.h>
#include <chromeos/dbus/dbus_method_response.h>
#include <chromeos/dbus/dbus_object.h>
#include "trunks/dbus_interface.pb.h"
#include "trunks/tpm_handle.h"
namespace trunks {
using CompletionAction =
chromeos::dbus_utils::AsyncEventSequencer::CompletionAction;
// TrunksService registers for and handles all incoming D-Bus messages for the
// trunksd system daemon.
class TrunksService {
public:
// The |transceiver| will be the target of all incoming TPM commands.
TrunksService(const scoped_refptr<dbus::Bus>& bus,
CommandTransceiver* transceiver);
virtual ~TrunksService() = default;
// Connects to D-Bus system bus and exports Trunks methods.
void Register(const CompletionAction& callback);
private:
// Handles calls to the 'SendCommand' method.
void HandleSendCommand(
std::unique_ptr<chromeos::dbus_utils::DBusMethodResponse<
const SendCommandResponse&>> response_sender,
const SendCommandRequest& request);
base::WeakPtr<TrunksService> GetWeakPtr() {
return weak_factory_.GetWeakPtr();
}
chromeos::dbus_utils::DBusObject trunks_dbus_object_;
CommandTransceiver* transceiver_;
// Declared last so weak pointers are invalidated first on destruction.
base::WeakPtrFactory<TrunksService> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(TrunksService);
};
} // namespace trunks
#endif // TRUNKS_TRUNKS_SERVICE_H_