>백엔드 개발 >Golang >XML을 Go 맵으로 직접 효율적으로 역마샬링하려면 어떻게 해야 합니까?

XML을 Go 맵으로 직접 효율적으로 역마샬링하려면 어떻게 해야 합니까?

Barbara Streisand
Barbara Streisand원래의
2024-12-18 01:53:10331검색

How Can I Efficiently Unmarshal XML Directly into a Go Map?

XML을 맵으로 직접 역마샬링

XML 데이터를 중간 구조체로 역마샬링한 후 맵으로 변환하는 작업은 대용량 데이터 세트의 경우 시간이 많이 걸릴 수 있습니다. 이러한 경우 맵으로 직접 역마샬링하는 것이 더 효율적인 접근 방식입니다.

XML을 맵으로 직접 역마샬링하려면 xml.Unmarshaler 인터페이스를 구현하는 사용자 정의 유형을 생성할 수 있습니다. 이 유형은 역마샬링 프로세스를 처리하고 맵[문자열]문자열에 데이터를 저장합니다.

예:

type classAccessesMap struct {
    m map[string]string
}

// UnmarshalXML implements the xml.Unmarshaler interface to unmarshal XML directly into the map.
func (c *classAccessesMap) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
    c.m = map[string]string{}

    key := ""
    val := ""

    // Iteratively parse XML tokens.
    for {
        t, _ := d.Token()
        switch tt := t.(type) {

        // TODO: Handle the inner structure parsing here.

        case xml.StartElement:
            key = tt.Name.Local

        case xml.EndElement:
            // Store the key-value pair in the map when the end of the "enabled" element is reached.
            if tt.Name.Local == "enabled" {
                c.m[key] = val
            }

            // Return nil when the end of the "classAccesses" element is reached.
            if tt.Name == start.Name {
                return nil
            }
        }
    }
}

사용법:

// Unmarshal the XML into the custom classAccessesMap type.
var classAccessesMap classAccessesMap
if err := xml.Unmarshal([]byte(xmlData), &classAccessesMap); err != nil {
    // Handle error
}

fmt.Println(classAccessesMap.m) // Prints the map containing the parsed data.

위 내용은 XML을 Go 맵으로 직접 효율적으로 역마샬링하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.