Skip to content

Commit 892ac42

Browse files
authored
add option for specifying swiftpm flags (#52)
1 parent df25147 commit 892ac42

File tree

4 files changed

+31
-7
lines changed

4 files changed

+31
-7
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,9 @@ display.display(pd.DataFrame.from_records([["col 1": 3, "col 2": 5], ["col 1": 8
186186
can import them:
187187

188188
```swift
189+
// Specify SwiftPM flags to use during package installation.
190+
%install-swiftpm-flags -c release
191+
189192
// Install the DeckOfPlayingCards package from GitHub.
190193
%install '.package(url: "https://github.com/NSHipster/DeckOfPlayingCards", from: "4.0.0")' DeckOfPlayingCards
191194

@@ -202,6 +205,8 @@ The next argument(s) to `%install` are the products that you want to install fro
202205
will refuse to install packages, and print out an error message explaining
203206
why, if you try to install packages in later cells.)
204207
* Downloads and build artifacts are not cached.
208+
* `%install-swiftpm-flags` apply to all packages that you are installing; there
209+
is no way to specify different flags for different packages.
205210

206211
## %include directives
207212

swift_kernel.py

+24-6
Original file line numberDiff line numberDiff line change
@@ -382,13 +382,25 @@ def _process_installs(self, code):
382382
"%install" directives removed."""
383383
processed_lines = []
384384
all_packages = []
385+
all_swiftpm_flags = []
385386
for index, line in enumerate(code.split('\n')):
387+
line, swiftpm_flags = self._process_install_swiftpm_flags_line(
388+
line)
389+
all_swiftpm_flags += swiftpm_flags
386390
line, packages = self._process_install_line(index, line)
387391
processed_lines.append(line)
388392
all_packages += packages
389-
self._install_packages(all_packages)
393+
self._install_packages(all_packages, all_swiftpm_flags)
390394
return '\n'.join(processed_lines)
391395

396+
def _process_install_swiftpm_flags_line(self, line):
397+
install_swiftpm_flags_match = re.match(
398+
r'^\s*%install-swiftpm-flags (.*)$', line)
399+
if install_swiftpm_flags_match is None:
400+
return line, []
401+
flags = shlex.split(install_swiftpm_flags_match.group(1))
402+
return '', flags
403+
392404
def _process_install_line(self, line_index, line):
393405
install_match = re.match(r'^\s*%install (.*)$', line)
394406
if install_match is None:
@@ -414,8 +426,8 @@ def _process_install_line(self, line_index, line):
414426
'products': parsed[1:],
415427
}]
416428

417-
def _install_packages(self, packages):
418-
if len(packages) == 0:
429+
def _install_packages(self, packages, swiftpm_flags):
430+
if len(packages) == 0 and len(swiftpm_flags) == 0:
419431
return
420432

421433
# Appears to trigger even in the first cell execution.
@@ -487,6 +499,10 @@ def _install_packages(self, packages):
487499
'name': 'stdout',
488500
'text': 'Installing packages:\n%s' % packages_human_description
489501
})
502+
self.send_response(self.iopub_socket, 'stream', {
503+
'name': 'stdout',
504+
'text': 'With SwiftPM flags: %s\n' % str(swiftpm_flags)
505+
})
490506
self.send_response(self.iopub_socket, 'stream', {
491507
'name': 'stdout',
492508
'text': 'Working in: %s\n' % scratchwork_base_path
@@ -502,7 +518,8 @@ def _install_packages(self, packages):
502518

503519
# == Ask SwiftPM to build the package ==
504520

505-
build_p = subprocess.Popen([swift_build_path], stdout=subprocess.PIPE,
521+
build_p = subprocess.Popen([swift_build_path] + swiftpm_flags,
522+
stdout=subprocess.PIPE,
506523
stderr=subprocess.STDOUT,
507524
cwd=package_base_path)
508525
for build_output_line in iter(build_p.stdout.readline, b''):
@@ -517,8 +534,9 @@ def _install_packages(self, packages):
517534
'%d.' % build_returncode)
518535

519536
show_bin_path_result = subprocess.run(
520-
[swift_build_path, '--show-bin-path'], stdout=subprocess.PIPE,
521-
stderr=subprocess.PIPE, cwd=package_base_path)
537+
[swift_build_path, '--show-bin-path'] + swiftpm_flags,
538+
stdout=subprocess.PIPE, stderr=subprocess.PIPE,
539+
cwd=package_base_path)
522540
bin_dir = show_bin_path_result.stdout.decode('utf8').strip()
523541
lib_filename = os.path.join(bin_dir, 'libjupyterInstalledPackages.so')
524542

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
int sillyfunction2() {
2-
return 1337;
2+
return MACRO_DEFINED_IN_COMPILER_FLAG;
33
}

test/tests/notebooks/install_package_with_c.ipynb

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"metadata": {},
77
"outputs": [],
88
"source": [
9+
"%install-swiftpm-flags -Xcc -DMACRO_DEFINED_IN_COMPILER_FLAG=1337\n",
910
"%install '.package(path: \"$cwd/PackageWithC\")' PackageWithC"
1011
]
1112
},

0 commit comments

Comments
 (0)