Skip to content

Commit b5fbf81

Browse files
committed
[nrf noup] Fix generate zap sript on windows
Usage of generate.py script is not possible on windows due to fcntl package available onlu on unix pyhton packages using I/O control on descriptor file is not needed on windows. This change enhance script to use fcntl on non-window system.
1 parent d6ddd68 commit b5fbf81

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

scripts/tools/zap/generate.py

+13-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717

1818
import argparse
19-
import fcntl
19+
import platform
2020
import json
2121
import os
2222
import shutil
@@ -30,6 +30,13 @@
3030

3131
from zap_execution import ZapTool
3232

33+
def isWindows():
34+
return platform.system() == "Windows"
35+
36+
# fcntl is not supported on widows platfrom due to lack of necessity of I/O control on file descriptor
37+
if not isWindows():
38+
import fcntl
39+
3340

3441
@dataclass
3542
class CmdLineArgs:
@@ -287,16 +294,17 @@ def __init__(self, path):
287294
self.lock_file = None
288295

289296
def __enter__(self):
290-
if not self.lock_file_path:
297+
# fcntl is not supported on widows platfrom due to lack of necessity of I/O control on file descriptor
298+
if not self.lock_file_path or isWindows():
291299
return
292-
293300
self.lock_file = open(self.lock_file_path, 'wb')
294301
fcntl.lockf(self.lock_file, fcntl.LOCK_EX)
295302

303+
296304
def __exit__(self, *args):
297-
if not self.lock_file:
305+
# fcntl is not supported on widows platfrom due to lack of necessity of I/O control on file descriptor
306+
if not self.lock_file or isWindows():
298307
return
299-
300308
fcntl.lockf(self.lock_file, fcntl.LOCK_UN)
301309
self.lock_file.close()
302310
self.lock_file = None

0 commit comments

Comments
 (0)