Hide menu
Loading...
Searching...
No Matches
conversion/import/importexample.py

Refer to the Import Example.

1#!/usr/bin/env python3
2
3# $Id$
4
5# Copyright (C) 2008-2014, Roman Lygin. All rights reserved.
6# Copyright (C) 2014-2023, CADEX. All rights reserved.
7
8# This file is part of the CAD Exchanger software.
9
10# You may use this file under the terms of the BSD license as follows:
11
12# Redistribution and use in source and binary forms, with or without
13# modification, are permitted provided that the following conditions are met:
14# * Redistributions of source code must retain the above copyright notice,
15# this list of conditions and the following disclaimer.
16# * Redistributions in binary form must reproduce the above copyright notice,
17# this list of conditions and the following disclaimer in the documentation
18# and/or other materials provided with the distribution.
19
20# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
24# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30# POSSIBILITY OF SUCH DAMAGE.
31
32
33import sys
34from pathlib import Path
35import os
36
37import cadexchanger.CadExCore as cadex
38import cadexchanger.CadExSTEP as step
39
40sys.path.append(os.path.abspath(os.path.dirname(Path(__file__).resolve()) + r"/../../"))
41import cadex_license as license
42
43
44def main(theSource: str, theDest: str):
45 aKey = license.Value()
46
47 if not cadex.LicenseManager.Activate(aKey):
48 print("Failed to activate CAD Exchanger license.")
49 return 1
50
51 aReader = step.STEP_Reader()
52
53 aReaderParams = aReader.Parameters()
54
55 # Setting parameters
56 aReaderParams.SetPreferredBRepRepresentationType(step.STEP_ReaderParameters.AdvancedBRep)
57 aReader.SetParameters(aReaderParams)
58
59 aModel = cadex.ModelData_Model()
60
61 # Reading the file
62 if not aReader.ReadFile(cadex.Base_UTF16String(theSource)):
63 print("Failed to read the file " + theSource)
64 return 1
65
66 # Making a model data
67 if not aReader.Transfer(aModel):
68 print("Failed to transfer the model into inner format")
69 return 1
70
71 # Now we can get some model data
72 print(f"Model name: {aModel.Name()}")
73 print(f"Number of roots: {aModel.NumberOfRoots()}")
74
75 # Saving the cdx file
76 if not cadex.ModelData_ModelWriter().Write(aModel, cadex.Base_UTF16String(theDest)):
77 print("Failed to save the .cdx file")
78 return 1
79
80 print("Completed")
81 return 0
82
83if __name__ == "__main__":
84 if len(sys.argv) != 3:
85 print(" <input_file> is a name of the STEP file to be read")
86 print(" <output_file> is a name of the CDX file to Save() the model")
87 sys.exit(1)
88
89 aSource = os.path.abspath(sys.argv[1])
90 aDest = os.path.abspath(sys.argv[2])
91
92 sys.exit(main(aSource, aDest))
Defines a Unicode (UTF-16) string wrapping a standard string.
Definition: Base_UTF16String.hxx:34
Provides CAD Exchanger data model.
Definition: ModelData_Model.hxx:43
Writes any format that CAD Exchanger can export.
Definition: ModelData_ModelWriter.hxx:33