Home | History | Annotate | Download | only in onc
      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.
      4 
      5 #ifndef CHROMEOS_NETWORK_ONC_ONC_TRANSLATION_TABLES_H_
      6 #define CHROMEOS_NETWORK_ONC_ONC_TRANSLATION_TABLES_H_
      7 
      8 #include <string>
      9 #include <vector>
     10 
     11 #include "chromeos/network/onc/onc_signature.h"
     12 
     13 namespace chromeos {
     14 namespace onc {
     15 
     16 struct FieldTranslationEntry {
     17   const char* onc_field_name;
     18   const char* shill_property_name;
     19 };
     20 
     21 struct StringTranslationEntry {
     22   const char* onc_value;
     23   const char* shill_value;
     24 };
     25 
     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[];
     34 
     35 const FieldTranslationEntry* GetFieldTranslationTable(
     36     const OncValueSignature& onc_signature);
     37 
     38 std::vector<std::string> GetPathToNestedShillDictionary(
     39     const OncValueSignature& onc_signature);
     40 
     41 bool GetShillPropertyName(const std::string& onc_field_name,
     42                           const FieldTranslationEntry table[],
     43                           std::string* shill_property_name);
     44 
     45 // Translate individual strings to Shill using the above tables.
     46 bool TranslateStringToShill(const StringTranslationEntry table[],
     47                             const std::string& onc_value,
     48                             std::string* shill_value);
     49 
     50 // Translate individual strings to ONC using the above tables.
     51 bool TranslateStringToONC(const StringTranslationEntry table[],
     52                           const std::string& shill_value,
     53                           std::string* onc_value);
     54 
     55 }  // namespace onc
     56 }  // namespace chromeos
     57 
     58 #endif  // CHROMEOS_NETWORK_ONC_ONC_TRANSLATION_TABLES_H_
     59