forked from NREL/EnergyPlus
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconvert_input_format.py
144 lines (128 loc) · 6.76 KB
/
convert_input_format.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# EnergyPlus, Copyright (c) 1996-2023, The Board of Trustees of the University
# of Illinois, The Regents of the University of California, through Lawrence
# Berkeley National Laboratory (subject to receipt of any required approvals
# from the U.S. Dept. of Energy), Oak Ridge National Laboratory, managed by UT-
# Battelle, Alliance for Sustainable Energy, LLC, and other contributors. All
# rights reserved.
#
# NOTICE: This Software was developed under funding from the U.S. Department of
# Energy and the U.S. Government consequently retains certain rights. As such,
# the U.S. Government has been granted for itself and others acting on its
# behalf a paid-up, nonexclusive, irrevocable, worldwide license in the
# Software to reproduce, distribute copies to the public, prepare derivative
# works, and perform publicly and display publicly, and to permit others to do
# so.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# (1) Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# (2) Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# (3) Neither the name of the University of California, Lawrence Berkeley
# National Laboratory, the University of Illinois, U.S. Dept. of Energy nor
# the names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# (4) Use of EnergyPlus(TM) Name. If Licensee (i) distributes the software in
# stand-alone form without changes from the version obtained under this
# License, or (ii) Licensee makes a reference solely to the software
# portion of its product, Licensee must refer to the software as
# "EnergyPlus version X" software, where "X" is the version number Licensee
# obtained under this License and may not use a different name for the
# software. Except as specifically required in this Section (4), Licensee
# shall not use in a company name, a product name, in advertising,
# publicity, or other promotional activities any name, trade name,
# trademark, logo, or other designation of "EnergyPlus", "E+", "e+" or
# confusingly similar designation, without the U.S. Department of Energy's
# prior written consent.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
import os
import platform
import subprocess
from eplaunch.workflows.base import BaseEPLaunchWorkflow1, EPLaunchWorkflowResponse1
class ConvertInputFormatWorkflow(BaseEPLaunchWorkflow1):
def name(self):
return "ConvertInputFormat-${CMAKE_VERSION_MAJOR}.${CMAKE_VERSION_MINOR}.${CMAKE_VERSION_PATCH}"
def context(self):
return "EnergyPlus-${CMAKE_VERSION_MAJOR}.${CMAKE_VERSION_MINOR}.${CMAKE_VERSION_PATCH}-${CMAKE_VERSION_BUILD}"
def description(self):
return "Run ConvertInputFormat"
def get_file_types(self):
return ["*.idf", "*.epJSON"]
def get_output_suffixes(self):
return [".idf", ".epJSON"]
def get_extra_data(self):
return {"Hey, it's extra": "data"}
def get_interface_columns(self):
return []
def main(self, run_directory, file_name, args):
if 'workflow location' in args:
energyplus_root_folder, _ = os.path.split(args['workflow location'])
if platform.system() == 'Windows':
convertinputformat_binary = os.path.join(energyplus_root_folder, 'ConvertInputFormat.exe')
else:
convertinputformat_binary = os.path.join(energyplus_root_folder, 'ConvertInputFormat')
if not os.path.exists(convertinputformat_binary):
return EPLaunchWorkflowResponse1(
success=False,
message="ConvertInputFormat binary not found: {}!".format(convertinputformat_binary),
column_data=[]
)
else:
return EPLaunchWorkflowResponse1(
success=False,
message="Workflow location missing: {}!".format(args['worflow location']),
column_data=[]
)
original_with_path = os.path.join(run_directory, file_name)
converted_file_no_ext, original_ext = os.path.splitext(original_with_path)
if original_ext.lower() == '.idf':
converted_file_with_path = converted_file_no_ext + '.epJSON'
elif original_ext.lower() == '.epjson':
converted_file_with_path = converted_file_no_ext + '.idf'
else:
return EPLaunchWorkflowResponse1(
success=False,
message="Invalid extension {} on file: {}!".format(original_ext, original_with_path),
column_data=[]
)
if os.path.exists(original_with_path) and os.path.exists(convertinputformat_binary) and os.path.exists(run_directory):
# execute utility
command_line_args = [convertinputformat_binary, original_with_path]
try:
for message in self.execute_for_callback(command_line_args, run_directory):
self.callback(message)
except subprocess.CalledProcessError:
self.callback("ConvertInputFormat FAILED")
return EPLaunchWorkflowResponse1(
success=False,
message="ConvertInputFormat failed for file: %s!" % original_with_path,
column_data={}
)
return EPLaunchWorkflowResponse1(
success=True,
message="Ran ConvertInputFormat OK for file: {}!".format(original_with_path),
column_data=[]
)
else:
return EPLaunchWorkflowResponse1(
success=False,
message="ConvertInputFormat file not found: {}!".format(original_with_path),
column_data=[]
)