1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROMEOS_NETWORK_ONC_ONC_TRANSLATION_TABLES_H_
6 #define CHROMEOS_NETWORK_ONC_ONC_TRANSLATION_TABLES_H_
11 #include "chromeos/network/onc/onc_signature.h"
16 struct FieldTranslationEntry
{
17 const char* onc_field_name
;
18 const char* shill_property_name
;
21 struct StringTranslationEntry
{
22 const char* onc_value
;
23 const char* shill_value
;
26 // These tables contain the mapping from ONC strings to Shill strings.
27 // These are NULL-terminated arrays.
28 extern const StringTranslationEntry kNetworkTypeTable
[];
29 extern const StringTranslationEntry kVPNTypeTable
[];
30 extern const StringTranslationEntry kWiFiSecurityTable
[];
31 extern const StringTranslationEntry kEAPOuterTable
[];
32 extern const StringTranslationEntry kEAP_PEAP_InnerTable
[];
33 extern const StringTranslationEntry kEAP_TTLS_InnerTable
[];
35 // A separate translation table for cellular properties that are stored in a
36 // Shill Device instead of a Service. The |shill_property_name| entries
37 // reference Device properties, not Service properties.
38 extern const FieldTranslationEntry kCellularDeviceTable
[];
40 const FieldTranslationEntry
* GetFieldTranslationTable(
41 const OncValueSignature
& onc_signature
);
43 std::vector
<std::string
> GetPathToNestedShillDictionary(
44 const OncValueSignature
& onc_signature
);
46 bool GetShillPropertyName(const std::string
& onc_field_name
,
47 const FieldTranslationEntry table
[],
48 std::string
* shill_property_name
);
50 // Translate individual strings to Shill using the above tables.
51 bool TranslateStringToShill(const StringTranslationEntry table
[],
52 const std::string
& onc_value
,
53 std::string
* shill_value
);
55 // Translate individual strings to ONC using the above tables.
56 bool TranslateStringToONC(const StringTranslationEntry table
[],
57 const std::string
& shill_value
,
58 std::string
* onc_value
);
61 } // namespace chromeos
63 #endif // CHROMEOS_NETWORK_ONC_ONC_TRANSLATION_TABLES_H_