Files
IfcOpenShell/src/ifcsverchok/nodes/ifc/by_query.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.9 KiB
Python
Raw Normal View History

2021-08-17 08:39:38 +10:00
# IfcSverchok - IFC Sverchok extension
# Copyright (C) 2020, 2021, 2022 Dion Moult <dion@thinkmoult.com>
2021-08-17 08:39:38 +10:00
#
# This file is part of IfcSverchok.
#
# IfcSverchok is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# IfcSverchok is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with IfcSverchok. If not, see <http://www.gnu.org/licenses/>.
2020-10-09 21:05:00 +11:00
import bpy
import ifcopenshell
import ifcopenshell.util.selector
from bpy.props import StringProperty
from sverchok.data_structure import updateNode
2025-12-19 18:53:04 +05:00
from sverchok.node_tree import SverchCustomTreeNode
import ifcsverchok.helper
from ifcsverchok.ifcstore import SvIfcStore
2020-10-09 21:05:00 +11:00
class SvIfcByQuery(bpy.types.Node, SverchCustomTreeNode, ifcsverchok.helper.SvIfcCore):
bl_idname = "SvIfcByQuery"
bl_label = "IFC By Query"
query: StringProperty(name="Query", update=updateNode)
2020-10-09 21:05:00 +11:00
def sv_init(self, context):
self.inputs.new("SvStringsSocket", "query").prop_name = "query"
self.outputs.new("SvStringsSocket", "Entity")
2020-10-09 21:05:00 +11:00
def process(self):
if not self.inputs["query"].sv_get()[0][0]:
return
self.file = SvIfcStore.get_file()
self.sv_input_names = ["query"]
2020-10-09 21:05:00 +11:00
super().process()
2025-03-21 12:53:13 +05:00
def process_ifc(self, query: str) -> None:
2020-10-09 21:05:00 +11:00
selector = ifcopenshell.util.selector.Selector()
self.outputs["Entity"].sv_set([selector.parse(self.file, query)])
2020-11-01 19:24:01 +07:00
2020-10-09 21:05:00 +11:00
def register():
bpy.utils.register_class(SvIfcByQuery)
2020-11-01 19:24:01 +07:00
2020-10-09 21:05:00 +11:00
def unregister():
bpy.utils.unregister_class(SvIfcByQuery)