69 lines
2.2 KiB
Python
Raw Normal View History

2025-03-18 00:17:27 +05:30
#!/usr/bin/env python
"""
Copyright 2016-2019 beardypig
Copyright 2017-2019 truedread
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.
"""
import logging
2025-03-18 00:23:51 +05:30
from .exceptions import BoxNotFound
2025-03-18 00:17:27 +05:30
log = logging.getLogger(__name__)
class BoxUtil(object):
@classmethod
def first(cls, box, type_):
if box.type == type_:
return box
if hasattr(box, "children"):
for sbox in box.children:
try:
return cls.first(sbox, type_)
except BoxNotFound:
# ignore the except when the box is not found in sub-boxes
pass
raise BoxNotFound("could not find box of type: {}".format(type_))
@classmethod
def index(cls, box, type_):
if hasattr(box, "children"):
for i, box in enumerate(box.children):
if box.type == type_:
return i
@classmethod
def find(cls, box, type_):
if box.type == type_:
yield box
elif hasattr(box, "children"):
for sbox in box.children:
for fbox in cls.find(sbox, type_):
yield fbox
@classmethod
def find_extended(cls, box, extended_type_):
if hasattr(box, "extended_type"):
if box.extended_type == extended_type_:
yield box
elif hasattr(box, "children"):
for sbox in box.children:
for fbox in cls.find_extended(sbox, extended_type_):
yield fbox
elif hasattr(box, "children"):
for sbox in box.children:
for fbox in cls.find_extended(sbox, extended_type_):
yield fbox