#ifndef CHROMEOS_NETWORK_ONC_ONC_TRANSLATION_TABLES_H_
#define CHROMEOS_NETWORK_ONC_ONC_TRANSLATION_TABLES_H_
#include <string>
#include <vector>
#include "chromeos/network/onc/onc_signature.h"
namespace chromeos {
namespace onc {
struct FieldTranslationEntry {
const char* onc_field_name;
const char* shill_property_name;
};
struct StringTranslationEntry {
const char* onc_value;
const char* shill_value;
};
extern const StringTranslationEntry kNetworkTypeTable[];
extern const StringTranslationEntry kVPNTypeTable[];
extern const StringTranslationEntry kWiFiSecurityTable[];
extern const StringTranslationEntry kEAPOuterTable[];
extern const StringTranslationEntry kEAP_PEAP_InnerTable[];
extern const StringTranslationEntry kEAP_TTLS_InnerTable[];
const FieldTranslationEntry* GetFieldTranslationTable(
const OncValueSignature& onc_signature);
std::vector<std::string> GetPathToNestedShillDictionary(
const OncValueSignature& onc_signature);
bool GetShillPropertyName(const std::string& onc_field_name,
const FieldTranslationEntry table[],
std::string* shill_property_name);
bool TranslateStringToShill(const StringTranslationEntry table[],
const std::string& onc_value,
std::string* shill_value);
bool TranslateStringToONC(const StringTranslationEntry table[],
const std::string& shill_value,
std::string* onc_value);
}
}
#endif