blob: acb599fc030c50fa300fbcf3f8f004f93dcf93c7 [file] [log] [blame]
/*
* Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
* Copyright 2020-present Open Networking Foundation
* 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.
*/
/*
* NOTE: This file was generated, manual edits will be overwritten!
*
* Generated by 'goCodeGenerator.py':
* https://github.com/cboling/OMCI-parser/README.md
*/
package generated
import "github.com/deckarep/golang-set"
// Dot1AgMaintenanceAssociationClassID is the 16-bit ID for the OMCI
// Managed entity Dot1ag maintenance association
const Dot1AgMaintenanceAssociationClassID ClassID = ClassID(300)
var dot1agmaintenanceassociationBME *ManagedEntityDefinition
// Dot1AgMaintenanceAssociation (class ID #300)
// This ME models an [IEEE 802.1ag] service defined on a bridge port. An MA is a set of endpoints
// on opposite sides of a network, all existing at a defined maintenance level. One of the
// endpoints resides on the local ONU; the others are understood to be configured in a consistent
// way on external equipment. [ITUT Y.1731] refers to the MA as a maintenance entity group (MEG).
//
// An MA is created and deleted by the OLT.
//
// Relationships
// Any number of MAs may be associated with a given MD, or may stand on their own without an MD.
// One or more MAs may be associated with a MAC bridge or an IEEE 802.1p mapper. An MA exists at
// one of eight possible maintenance levels.
//
// Attributes
// Managed Entity Id
// This attribute uniquely identifies an instance of this ME. The values 0 and 0xFFFF are reserved.
// (R, setbycreate) (mandatory) (2-bytes)
//
// Md Pointer
// This pointer specifies the dot1ag maintenance domain with which this MA is associated. A null
// pointer specifies that the MA is not associated with an MD. (R,-W, setbycreate) (mandatory)
// (2-bytes)
//
// Short Ma Name Format
// This attribute specifies one of several possible formats for the short MA name attribute. Value
// 1, the primary VLAN ID, is recommended to be the default. (R,-W, setbycreate) (mandatory)
// (1-byte)
//
// Short MA Name 1
// These two attributes may be regarded as an octet string whose value is the left-justified MA
// name. Because the MA name may or may not be a printable character string, an octet string is the
// appropriate representation. If the short MA name format specifies a character string, the string
// is null-terminated; otherwise, its length is determined by the short MA name format. Note that
// binary comparisons of the short MA name are made in other CFM state machines, so blanks,
// alphabetic case, etc., are significant. Also, note that the MD name and the MA short name must
// be packed (with additional bytes) into 48-byte CFM message headers. (R,-W) (mandatory) (25-bytes
// * 2 attributes)
//
// Short MA Name 2
// These two attributes may be regarded as an octet string whose value is the left-justified MA
// name. Because the MA name may or may not be a printable character string, an octet string is the
// appropriate representation. If the short MA name format specifies a character string, the string
// is null-terminated; otherwise, its length is determined by the short MA name format. Note that
// binary comparisons of the short MA name are made in other CFM state machines, so blanks,
// alphabetic case, etc., are significant. Also, note that the MD name and the MA short name must
// be packed (with additional bytes) into 48-byte CFM message headers. (R,-W) (mandatory) (25-bytes
// * 2 attributes)
//
// Continuity Check Message Ccm Interval
// 3: 100 ms
//
// 4: 1 s
//
// 5: 10 s
//
// 6: 1 min
//
// 7: 10 min
//
// Short intervals should be used judiciously, as they can interfere with the network's ability to
// handle subscriber traffic. The recommended value is 1-s. (R,-W, setbycreate) (mandatory)
// (1-byte)
//
// Continuity check message (CCM) interval: If CCMs are enabled on an MEP, the CCM interval
// attribute specifies the rate at which they are generated. The MEP also expects to receive CCMs
// from each of the other MEPs in its CC database at this rate.
//
// 0: CCM transmission disabled
//
// 1: 3.33 ms
//
// 2: 10 ms
//
// Associated Vlans
// This attribute is a list of up to 12 VLAN IDs with which this MA is associated. Once a set of
// VLANs is defined, the ONU should deny operations to other dot1ag MAs or dot1ag default MD level
// entries that conflict with the set membership. The all-zeros value indicates that this MA is not
// associated with any VLANs. Assuming that the attribute is not 0, the first entry is understood
// to be the primary VLAN. Except forwarded linktrace messages (LTMs), CFM messages emitted by MPs
// in this MA are tagged with the primary VLAN ID. (R,-W) (mandatory) (2-bytes/entry *
// 12-entries-=-24-bytes)
//
// Mhf Creation
// This attribute determines whether the bridge creates an MHF, under circumstances defined in
// clause 22.2.3 of [IEEE 802.1ag]. This attribute is an enumeration with the following values:
//
// 1 None. No MHFs are created on this bridge for this MA.
//
// 2 Default (IEEE 802.1ag term). The bridge can create MHFs on this VID on any port through which
// the VID can pass.
//
// 3 Explicit. The bridge can create MHFs on this VID on any port through which the VID can pass,
// but only if an MEP exists at some lower maintenance level.
//
// 4 Defer. This value causes the ONU to use the setting of the parent MD. This is recommended to
// be the default value.
//
// (R,-W, setbycreate) (mandatory) (1-byte)
//
type Dot1AgMaintenanceAssociation struct {
ManagedEntityDefinition
Attributes AttributeValueMap
}
func init() {
dot1agmaintenanceassociationBME = &ManagedEntityDefinition{
Name: "Dot1AgMaintenanceAssociation",
ClassID: 300,
MessageTypes: mapset.NewSetWith(
Create,
Delete,
Get,
Set,
),
AllowedAttributeMask: 0xfe00,
AttributeDefinitions: AttributeDefinitionMap{
0: Uint16Field("ManagedEntityId", PointerAttributeType, 0x0000, 0, mapset.NewSetWith(Read, SetByCreate), false, false, false, 0),
1: Uint16Field("MdPointer", UnsignedIntegerAttributeType, 0x8000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 1),
2: ByteField("ShortMaNameFormat", UnsignedIntegerAttributeType, 0x4000, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 2),
3: MultiByteField("ShortMaName1", OctetsAttributeType, 0x2000, 25, toOctets("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), mapset.NewSetWith(Read, Write), false, false, false, 3),
4: MultiByteField("ShortMaName2", OctetsAttributeType, 0x1000, 25, toOctets("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), mapset.NewSetWith(Read, Write), false, false, false, 4),
5: ByteField("ContinuityCheckMessageCcmInterval", UnsignedIntegerAttributeType, 0x0800, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 5),
6: Uint16Field("AssociatedVlans", UnsignedIntegerAttributeType, 0x0400, 0, mapset.NewSetWith(Read, Write), false, false, false, 6),
7: ByteField("MhfCreation", UnsignedIntegerAttributeType, 0x0200, 0, mapset.NewSetWith(Read, SetByCreate, Write), false, false, false, 7),
},
Access: CreatedByOlt,
Support: UnknownSupport,
}
}
// NewDot1AgMaintenanceAssociation (class ID 300) creates the basic
// Managed Entity definition that is used to validate an ME of this type that
// is received from or transmitted to the OMCC.
func NewDot1AgMaintenanceAssociation(params ...ParamData) (*ManagedEntity, OmciErrors) {
return NewManagedEntity(*dot1agmaintenanceassociationBME, params...)
}