blob: 15a1d3e4135a21ae93ac126f7506e3033d90bb3e [file] [log] [blame]
/*
*
* Copyright (c) 2019 Google, LLC.
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file
* TraitSchemaDirectory which locate the trait schema from different trait header files
*/
#ifndef TRAIT_SCHEMA_DIRECTORY_H_
#define TRAIT_SCHEMA_DIRECTORY_H_
#include <Weave/Profiles/data-management/Current/WdmManagedNamespace.h>
#include <Weave/Support/NLDLLUtil.h>
#include <Weave/Profiles/data-management/DataManagement.h>
#include <Weave/DeviceManager/schema/weave/trait/locale/LocaleSettingsTrait.h>
#include <Weave/DeviceManager/schema/nest/test/trait/TestCTrait.h>
namespace nl {
namespace Weave {
namespace DeviceManager {
class TraitSchemaDirectory {
public:
static const TraitSchemaEngine * GetTraitSchemaEngine(uint32_t aProfileId)
{
if (aProfileId == ::Weave::Trait::Locale::LocaleSettingsTrait::kWeaveProfileId)
{
return &::Weave::Trait::Locale::LocaleSettingsTrait::TraitSchema;
}
if (aProfileId == ::Schema::Nest::Test::Trait::TestCTrait::kWeaveProfileId)
{
return &::Schema::Nest::Test::Trait::TestCTrait::TraitSchema;
}
else
{
return NULL;
}
}
};
} // namespace DeviceManager
} // namespace Weave
} // namespace nl
#endif // TRAIT_SCHEMA_DIRECTORY_H_