blob: 781b1f5784092d4cbf51d750d7eb2c8f9cdd2916 [file] [log] [blame]
Paul Stewart20088d82012-02-16 06:58:55 -08001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Paul Stewartfdd16072011-09-16 12:41:35 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SHILL_TECHNOLOGY_
6#define SHILL_TECHNOLOGY_
7
8#include <string>
Paul Stewart20088d82012-02-16 06:58:55 -08009#include <vector>
Paul Stewartfdd16072011-09-16 12:41:35 -070010
11namespace shill {
12
Paul Stewart20088d82012-02-16 06:58:55 -080013class Error;
14
Ben Chanc12cf662012-04-05 14:47:18 -070015// A class that provides functions for converting between technology names
16// and identifiers.
Paul Stewartfdd16072011-09-16 12:41:35 -070017class Technology {
18 public:
19 enum Identifier {
20 kEthernet,
21 kWifi,
Paul Stewart2001a422011-12-15 10:20:09 -080022 kWiFiMonitor,
Paul Stewartfdd16072011-09-16 12:41:35 -070023 kCellular,
Darin Petkov33af05c2012-02-28 10:10:30 +010024 kVPN,
Paul Stewartcba0f7f2012-02-29 16:33:05 -080025 kTunnel,
Paul Stewartfdd16072011-09-16 12:41:35 -070026 kBlacklisted,
27 kUnknown,
Paul Stewartfdd16072011-09-16 12:41:35 -070028 };
29
Ben Chanc12cf662012-04-05 14:47:18 -070030 // Returns the technology identifier for a technology name in |name|,
31 // or Technology::kUnknown if the technology name is unknown.
Paul Stewartfdd16072011-09-16 12:41:35 -070032 static Identifier IdentifierFromName(const std::string &name);
Ben Chanc12cf662012-04-05 14:47:18 -070033
34 // Returns the technology name for a technology identifier in |id|,
35 // or Technology::kUnknownName ("Unknown") if the technology identifier
36 // is unknown.
Paul Stewartfdd16072011-09-16 12:41:35 -070037 static std::string NameFromIdentifier(Identifier id);
Ben Chanc12cf662012-04-05 14:47:18 -070038
39 // Returns the technology identifier for a storage group identifier in
40 // |group|, which should have the format of <technology name>_<suffix>,
41 // or Technology::kUnknown if |group| is not prefixed with a known
42 // technology name.
Paul Stewart1b253142012-01-26 14:05:52 -080043 static Identifier IdentifierFromStorageGroup(const std::string &group);
Paul Stewartfdd16072011-09-16 12:41:35 -070044
Ben Chanc12cf662012-04-05 14:47:18 -070045 // Converts the comma-separated list of technology names (with no whitespace
46 // around commas) in |technologies_string| into a vector of technology
47 // identifiers output in |technologies_vector|. Returns true if the
48 // |technologies_string| contains a valid set of technologies with no
49 // duplicate elements, false otherwise.
Paul Stewart20088d82012-02-16 06:58:55 -080050 static bool GetTechnologyVectorFromString(
51 const std::string &technologies_string,
52 std::vector<Identifier> *technologies_vector,
53 Error *error);
54
Paul Stewartfdd16072011-09-16 12:41:35 -070055 private:
Paul Stewartcba0f7f2012-02-29 16:33:05 -080056 static const char kTunnelName[];
Paul Stewartfdd16072011-09-16 12:41:35 -070057 static const char kUnknownName[];
58};
59
60} // namespace shill
61
62#endif // SHILL_TECHNOLOGY_