blob: e82c599c6d8783c1585bd910bd081d9e01c18bb8 [file] [log] [blame]
/*
*
* Copyright (c) 2021 Project CHIP Authors
*
* 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.
*/
function asBasicType(type)
{
switch (type) {
case 'chip::ActionId':
case 'chip::FabricIndex':
case 'chip::Percent':
return 'uint8_t';
case 'chip::EndpointId':
case 'chip::GroupId':
case 'chip::VendorId':
case 'chip::Percent100ths':
case 'chip::Protocols::InteractionModel::Status':
return 'uint16_t';
case 'chip::ClusterId':
case 'chip::AttributeId':
case 'chip::FieldId':
case 'chip::EventId':
case 'chip::CommandId':
case 'chip::TransactionId':
case 'chip::DeviceTypeId':
case 'chip::StatusCode':
case 'chip::DataVersion':
return 'uint32_t';
case 'chip::EventNumber':
case 'chip::FabricId':
case 'chip::NodeId':
return 'uint64_t';
default:
return type;
}
}
//
// Module exports
//
exports.asBasicType = asBasicType;