/* * * Copyright (c) 2020 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. */ #include "ResourceRecord.h" namespace mdns { namespace Minimal { bool ResourceRecord::Append(HeaderRef & hdr, ResourceType asType, RecordWriter & out) const { // order is important based on resource type. First come answers, then authorityAnswers // and then additional: if ((asType == ResourceType::kAuthority) && (hdr.GetAdditionalCount() != 0)) { return false; } if ((asType == ResourceType::kAnswer) && ((hdr.GetAdditionalCount() != 0) || (hdr.GetAuthorityCount() != 0))) { return false; } out.WriteQName(mQName); out.Writer() // .Put16(static_cast(GetType())) // .Put16(static_cast(GetClass())) // .Put32(static_cast(GetTtl())) // ; chip::Encoding::BigEndian::BufferWriter sizeOutput(out.Writer()); // copy to re-output size out.Put16(0); // dummy, will be replaced later if (!WriteData(out)) { return false; } sizeOutput.Put16(static_cast(out.Writer().Needed() - sizeOutput.Needed() - 2)); // This MUST be final and separated out: record count is only updated on success. if (out.Fit()) { switch (asType) { case ResourceType::kAdditional: hdr.SetAdditionalCount(static_cast(hdr.GetAdditionalCount() + 1)); break; case ResourceType::kAuthority: hdr.SetAuthorityCount(static_cast(hdr.GetAuthorityCount() + 1)); break; case ResourceType::kAnswer: hdr.SetAnswerCount(static_cast(hdr.GetAnswerCount() + 1)); break; } } return out.Fit(); } } // namespace Minimal } // namespace mdns