blob: f095cbedc9f09457a52964d2966721a2913b1671 [file] [log] [blame]
// Copyright 2020 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 TYPECD_PARTNER_H_
#define TYPECD_PARTNER_H_
#include <map>
#include <memory>
#include <utility>
#include <base/files/file_path.h>
#include <gtest/gtest_prod.h>
#include "typecd/alt_mode.h"
#include "typecd/peripheral.h"
namespace typecd {
// A partner represents a device which is connected to the host. This
// class is used to maintain the state associated with the partner.
class Partner : public Peripheral {
public:
explicit Partner(const base::FilePath& syspath);
// Check if a particular alt mode index (as specified by the Type C connector
// class framework) is registered.
bool IsAltModePresent(int index);
bool AddAltMode(const base::FilePath& mode_syspath);
void RemoveAltMode(const base::FilePath& mode_syspath);
// Update the AltMode information based on Type C connector class sysfs.
// A udev event is generated when a new partner altmode is registered; parse
// the data at the "known" locations in sysfs and populate the class data
// structures accordingly.
//
// Previously added altmodes should be unaffected by this function.
void UpdateAltModesFromSysfs();
private:
// A map representing all the alternate modes supported by the partner.
// The key is the index of the alternate mode as determined by the connector
// class sysfs directories that represent them. For example, and alternate
// mode which has the directory
// "/sys/class/typec/port1-partner/port1-partner.0" will use an key of "0".
std::map<int, std::unique_ptr<AltMode>> alt_modes_;
DISALLOW_COPY_AND_ASSIGN(Partner);
};
} // namespace typecd
#endif // TYPECD_PARTNER_H_