Compare commits
50 Commits
version-1.
...
version-1.
Author | SHA1 | Date | |
---|---|---|---|
fb5433d473 | |||
a17fe45712 | |||
1bfba64bdc | |||
cdb4bf4f4f | |||
15254b8951 | |||
3ed5f2c187 | |||
0be3bf7f49 | |||
f207e14664 | |||
9932003400 | |||
e7035e6f0c | |||
014a36d24e | |||
068451a7aa | |||
56fb1ec3df | |||
e93094cb88 | |||
33718a1a35 | |||
db82dbe730 | |||
8d405330ee | |||
66ddc7b47b | |||
2fa8cb4054 | |||
e7b5c75046 | |||
1d93bd9e5e | |||
ac2d0c033c | |||
61fa63eb1d | |||
7022412889 | |||
b4f71745b0 | |||
1d41fce1ae | |||
e636fde4ce | |||
82a9dc5226 | |||
1f40915ac8 | |||
32693c0f64 | |||
c38748eb05 | |||
ac85bea111 | |||
7b5613ce77 | |||
ec5f317dac | |||
a51f61d9b5 | |||
13bc9a89c8 | |||
996b722813 | |||
e7f2567bfc | |||
ff8e71c542 | |||
543da5c8d8 | |||
01ae0f5f54 | |||
1e80446870 | |||
8d5c97931e | |||
1a0c00b87a | |||
32befc51f8 | |||
06126862d4 | |||
7b8713881e | |||
7c65851b75 | |||
ec72091268 | |||
cf7adb065f |
78
CHANGELOG.md
Normal file
78
CHANGELOG.md
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
# Blender Cloud changelog
|
||||||
|
|
||||||
|
## Version 1.7.5 (2017-10-06)
|
||||||
|
|
||||||
|
- Sorting the project list alphabetically.
|
||||||
|
- Renamed 'Job File Path' to 'Job Storage Path' so it's more explicit.
|
||||||
|
- Allow overriding the render output path on a per-scene basis.
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.7.4 (2017-09-05)
|
||||||
|
|
||||||
|
- Fix [T52621](https://developer.blender.org/T52621): Fixed class name collision upon add-on
|
||||||
|
registration. This is checked since Blender 2.79.
|
||||||
|
- Fix [T48852](https://developer.blender.org/T48852): Screenshot no longer shows "Communicating with
|
||||||
|
Blender Cloud".
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.7.3 (2017-08-08)
|
||||||
|
|
||||||
|
- Default to scene frame range when no frame range is given.
|
||||||
|
- Refuse to render on Flamenco before blend file is saved at least once.
|
||||||
|
- Fixed some Windows-specific issues.
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.7.2 (2017-06-22)
|
||||||
|
|
||||||
|
- Fixed compatibility with Blender 2.78c.
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.7.1 (2017-06-13)
|
||||||
|
|
||||||
|
- Fixed asyncio issues on Windows
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.7.0 (2017-06-09)
|
||||||
|
|
||||||
|
- Fixed reloading after upgrading from 1.4.4 (our last public release).
|
||||||
|
- Fixed bug handling a symlinked project path.
|
||||||
|
- Added support for Manager-defined path replacement variables.
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.6.4 (2017-04-21)
|
||||||
|
|
||||||
|
- Added file exclusion filter for Flamenco. A filter like `*.abc;*.mkv;*.mov` can be
|
||||||
|
used to prevent certain files from being copied to the job storage directory.
|
||||||
|
Requires a Blender that is bundled with BAM 1.1.7 or newer.
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.6.3 (2017-03-21)
|
||||||
|
|
||||||
|
- Fixed bug where local project path wasn't shown for projects only set up for Flamenco
|
||||||
|
(and not Attract).
|
||||||
|
- Added this CHANGELOG.md file, which will contain user-relevant changes.
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.6.2 (2017-03-17)
|
||||||
|
|
||||||
|
- Flamenco: when opening non-existing file path, open parent instead
|
||||||
|
- Fix T50954: Improve Blender Cloud add-on project selector
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.6.1 (2017-03-07)
|
||||||
|
|
||||||
|
- Show error in GUI when Blender Cloud is unreachable
|
||||||
|
- Fixed sample count when using branched path tracing
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.6.0 (2017-02-14)
|
||||||
|
|
||||||
|
- Default to frame chunk size of 1 (instead of 10).
|
||||||
|
- Turn off "use overwrite" and "use placeholder" for Flamenco blend files.
|
||||||
|
- Fixed bugs when blendfile is outside the project directory
|
||||||
|
|
||||||
|
|
||||||
|
## Older versions
|
||||||
|
|
||||||
|
For the history of older versions, please refer to the
|
||||||
|
[Git history](https://developer.blender.org/diffusion/BCA/)
|
@@ -21,7 +21,7 @@
|
|||||||
bl_info = {
|
bl_info = {
|
||||||
'name': 'Blender Cloud',
|
'name': 'Blender Cloud',
|
||||||
"author": "Sybren A. Stüvel, Francesco Siddi, Inês Almeida, Antony Riakiotakis",
|
"author": "Sybren A. Stüvel, Francesco Siddi, Inês Almeida, Antony Riakiotakis",
|
||||||
'version': (1, 6, 2),
|
'version': (1, 7, 5),
|
||||||
'blender': (2, 77, 0),
|
'blender': (2, 77, 0),
|
||||||
'location': 'Addon Preferences panel, and Ctrl+Shift+Alt+A anywhere for texture browser',
|
'location': 'Addon Preferences panel, and Ctrl+Shift+Alt+A anywhere for texture browser',
|
||||||
'description': 'Texture library browser and Blender Sync. Requires the Blender ID addon '
|
'description': 'Texture library browser and Blender Sync. Requires the Blender ID addon '
|
||||||
@@ -65,21 +65,28 @@ def register():
|
|||||||
|
|
||||||
def reload_mod(name):
|
def reload_mod(name):
|
||||||
modname = '%s.%s' % (__name__, name)
|
modname = '%s.%s' % (__name__, name)
|
||||||
module = importlib.reload(sys.modules[modname])
|
try:
|
||||||
sys.modules[modname] = module
|
old_module = sys.modules[modname]
|
||||||
return module
|
except KeyError:
|
||||||
|
# Wasn't loaded before -- can happen after an upgrade.
|
||||||
|
new_module = importlib.import_module(modname)
|
||||||
|
else:
|
||||||
|
new_module = importlib.reload(old_module)
|
||||||
|
|
||||||
|
sys.modules[modname] = new_module
|
||||||
|
return new_module
|
||||||
|
|
||||||
reload_mod('blendfile')
|
reload_mod('blendfile')
|
||||||
reload_mod('home_project')
|
reload_mod('home_project')
|
||||||
reload_mod('utils')
|
reload_mod('utils')
|
||||||
|
|
||||||
blender = reload_mod('blender')
|
|
||||||
async_loop = reload_mod('async_loop')
|
async_loop = reload_mod('async_loop')
|
||||||
|
flamenco = reload_mod('flamenco')
|
||||||
|
attract = reload_mod('attract')
|
||||||
texture_browser = reload_mod('texture_browser')
|
texture_browser = reload_mod('texture_browser')
|
||||||
settings_sync = reload_mod('settings_sync')
|
settings_sync = reload_mod('settings_sync')
|
||||||
image_sharing = reload_mod('image_sharing')
|
image_sharing = reload_mod('image_sharing')
|
||||||
attract = reload_mod('attract')
|
blender = reload_mod('blender')
|
||||||
flamenco = reload_mod('flamenco')
|
|
||||||
else:
|
else:
|
||||||
from . import (blender, texture_browser, async_loop, settings_sync, blendfile, home_project,
|
from . import (blender, texture_browser, async_loop, settings_sync, blendfile, home_project,
|
||||||
image_sharing, attract, flamenco)
|
image_sharing, attract, flamenco)
|
||||||
@@ -88,11 +95,11 @@ def register():
|
|||||||
async_loop.register()
|
async_loop.register()
|
||||||
|
|
||||||
flamenco.register()
|
flamenco.register()
|
||||||
|
attract.register()
|
||||||
texture_browser.register()
|
texture_browser.register()
|
||||||
blender.register()
|
|
||||||
settings_sync.register()
|
settings_sync.register()
|
||||||
image_sharing.register()
|
image_sharing.register()
|
||||||
attract.register()
|
blender.register()
|
||||||
|
|
||||||
blender.handle_project_update()
|
blender.handle_project_update()
|
||||||
|
|
||||||
|
@@ -33,17 +33,12 @@ _loop_kicking_operator_running = False
|
|||||||
|
|
||||||
|
|
||||||
def setup_asyncio_executor():
|
def setup_asyncio_executor():
|
||||||
"""Sets up AsyncIO to run on a single thread.
|
"""Sets up AsyncIO to run properly on each platform."""
|
||||||
|
|
||||||
This ensures that only one Pillar HTTP call is performed at the same time. Other
|
|
||||||
calls that could be performed in parallel are queued, and thus we can
|
|
||||||
reliably cancel them.
|
|
||||||
"""
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
executor = concurrent.futures.ThreadPoolExecutor()
|
|
||||||
|
|
||||||
if sys.platform == 'win32':
|
if sys.platform == 'win32':
|
||||||
|
asyncio.get_event_loop().close()
|
||||||
# On Windows, the default event loop is SelectorEventLoop, which does
|
# On Windows, the default event loop is SelectorEventLoop, which does
|
||||||
# not support subprocesses. ProactorEventLoop should be used instead.
|
# not support subprocesses. ProactorEventLoop should be used instead.
|
||||||
# Source: https://docs.python.org/3/library/asyncio-subprocess.html
|
# Source: https://docs.python.org/3/library/asyncio-subprocess.html
|
||||||
@@ -51,9 +46,15 @@ def setup_asyncio_executor():
|
|||||||
asyncio.set_event_loop(loop)
|
asyncio.set_event_loop(loop)
|
||||||
else:
|
else:
|
||||||
loop = asyncio.get_event_loop()
|
loop = asyncio.get_event_loop()
|
||||||
|
|
||||||
|
executor = concurrent.futures.ThreadPoolExecutor(max_workers=10)
|
||||||
loop.set_default_executor(executor)
|
loop.set_default_executor(executor)
|
||||||
# loop.set_debug(True)
|
# loop.set_debug(True)
|
||||||
|
|
||||||
|
from . import pillar
|
||||||
|
# No more than this many Pillar calls should be made simultaneously
|
||||||
|
pillar.pillar_semaphore = asyncio.Semaphore(3, loop=loop)
|
||||||
|
|
||||||
|
|
||||||
def kick_async_loop(*args) -> bool:
|
def kick_async_loop(*args) -> bool:
|
||||||
"""Performs a single iteration of the asyncio event loop.
|
"""Performs a single iteration of the asyncio event loop.
|
||||||
|
@@ -173,7 +173,7 @@ class AttractPollMixin:
|
|||||||
return attract_is_active
|
return attract_is_active
|
||||||
|
|
||||||
|
|
||||||
class ToolsPanel(AttractPollMixin, Panel):
|
class AttractToolsPanel(AttractPollMixin, Panel):
|
||||||
bl_label = 'Attract'
|
bl_label = 'Attract'
|
||||||
bl_space_type = 'SEQUENCE_EDITOR'
|
bl_space_type = 'SEQUENCE_EDITOR'
|
||||||
bl_region_type = 'UI'
|
bl_region_type = 'UI'
|
||||||
@@ -974,7 +974,7 @@ def register():
|
|||||||
|
|
||||||
bpy.types.SEQUENCER_PT_edit.append(draw_strip_movie_meta)
|
bpy.types.SEQUENCER_PT_edit.append(draw_strip_movie_meta)
|
||||||
|
|
||||||
bpy.utils.register_class(ToolsPanel)
|
bpy.utils.register_class(AttractToolsPanel)
|
||||||
bpy.utils.register_class(AttractShotRelink)
|
bpy.utils.register_class(AttractShotRelink)
|
||||||
bpy.utils.register_class(AttractShotDelete)
|
bpy.utils.register_class(AttractShotDelete)
|
||||||
bpy.utils.register_class(AttractStripUnlink)
|
bpy.utils.register_class(AttractStripUnlink)
|
||||||
|
@@ -32,8 +32,7 @@ import rna_prop_ui
|
|||||||
from . import pillar, async_loop, flamenco
|
from . import pillar, async_loop, flamenco
|
||||||
from .utils import pyside_cache, redraw
|
from .utils import pyside_cache, redraw
|
||||||
|
|
||||||
PILLAR_WEB_SERVER_URL = 'https://cloud.blender.org/'
|
PILLAR_WEB_SERVER_URL = os.environ.get('BCLOUD_SERVER', 'https://cloud.blender.org/')
|
||||||
# PILLAR_WEB_SERVER_URL = 'http://pillar-web:5001/'
|
|
||||||
PILLAR_SERVER_URL = '%sapi/' % PILLAR_WEB_SERVER_URL
|
PILLAR_SERVER_URL = '%sapi/' % PILLAR_WEB_SERVER_URL
|
||||||
|
|
||||||
ADDON_NAME = 'blender_cloud'
|
ADDON_NAME = 'blender_cloud'
|
||||||
@@ -220,7 +219,7 @@ class BlenderCloudPreferences(AddonPreferences):
|
|||||||
# can switch projects and the Attract and Flamenco properties switch with it.
|
# can switch projects and the Attract and Flamenco properties switch with it.
|
||||||
project = PointerProperty(type=BlenderCloudProjectGroup)
|
project = PointerProperty(type=BlenderCloudProjectGroup)
|
||||||
|
|
||||||
attract_project_local_path = StringProperty(
|
cloud_project_local_path = StringProperty(
|
||||||
name='Local Project Path',
|
name='Local Project Path',
|
||||||
description='Local path of your Attract project, used to search for blend files; '
|
description='Local path of your Attract project, used to search for blend files; '
|
||||||
'usually best to set to an absolute path',
|
'usually best to set to an absolute path',
|
||||||
@@ -228,11 +227,16 @@ class BlenderCloudPreferences(AddonPreferences):
|
|||||||
default='//../')
|
default='//../')
|
||||||
|
|
||||||
flamenco_manager = PointerProperty(type=flamenco.FlamencoManagerGroup)
|
flamenco_manager = PointerProperty(type=flamenco.FlamencoManagerGroup)
|
||||||
|
flamenco_exclude_filter = StringProperty(
|
||||||
|
name='File Exclude Filter',
|
||||||
|
description='Filter like "*.abc;*.mkv" to prevent certain files to be packed '
|
||||||
|
'into the output directory',
|
||||||
|
default='')
|
||||||
# TODO: before making Flamenco public, change the defaults to something less Institute-specific.
|
# TODO: before making Flamenco public, change the defaults to something less Institute-specific.
|
||||||
# NOTE: The assumption is that the workers can also find the files in the same path.
|
# NOTE: The assumption is that the workers can also find the files in the same path.
|
||||||
# This assumption is true for the Blender Institute.
|
# This assumption is true for the Blender Institute.
|
||||||
flamenco_job_file_path = StringProperty(
|
flamenco_job_file_path = StringProperty(
|
||||||
name='Job File Path',
|
name='Job Storage Path',
|
||||||
description='Path where to store job files, should be accesible for Workers too',
|
description='Path where to store job files, should be accesible for Workers too',
|
||||||
subtype='DIR_PATH',
|
subtype='DIR_PATH',
|
||||||
default='/render/_flamenco/storage')
|
default='/render/_flamenco/storage')
|
||||||
@@ -345,11 +349,6 @@ class BlenderCloudPreferences(AddonPreferences):
|
|||||||
self.draw_project_selector(project_box, self.project)
|
self.draw_project_selector(project_box, self.project)
|
||||||
extensions = project_extensions(self.project.project)
|
extensions = project_extensions(self.project.project)
|
||||||
|
|
||||||
# Attract stuff
|
|
||||||
if 'attract' in extensions:
|
|
||||||
attract_box = project_box.column()
|
|
||||||
self.draw_attract_buttons(attract_box, self.project)
|
|
||||||
|
|
||||||
# Flamenco stuff
|
# Flamenco stuff
|
||||||
if 'flamenco' in extensions:
|
if 'flamenco' in extensions:
|
||||||
flamenco_box = project_box.column()
|
flamenco_box = project_box.column()
|
||||||
@@ -411,24 +410,29 @@ class BlenderCloudPreferences(AddonPreferences):
|
|||||||
row_buttons.label('Fetching available projects.')
|
row_buttons.label('Fetching available projects.')
|
||||||
|
|
||||||
enabled_for = project_extensions(project)
|
enabled_for = project_extensions(project)
|
||||||
if project:
|
if not project:
|
||||||
if enabled_for:
|
return
|
||||||
|
|
||||||
|
if not enabled_for:
|
||||||
|
project_box.label('This project is not set up for Attract or Flamenco')
|
||||||
|
return
|
||||||
|
|
||||||
project_box.label('This project is set up for: %s' %
|
project_box.label('This project is set up for: %s' %
|
||||||
', '.join(sorted(enabled_for)))
|
', '.join(sorted(enabled_for)))
|
||||||
else:
|
|
||||||
project_box.label('This project is not set up for Attract or Flamenco')
|
|
||||||
|
|
||||||
def draw_attract_buttons(self, attract_box, bcp: BlenderCloudProjectGroup):
|
# This is only needed when the project is set up for either Attract or Flamenco.
|
||||||
header_row = attract_box.row(align=True)
|
project_box.prop(self, 'cloud_project_local_path',
|
||||||
header_row.label('Attract:', icon_value=icon('CLOUD'))
|
text='Local Cloud Project Path')
|
||||||
attract_box.prop(self, 'attract_project_local_path',
|
|
||||||
text='Local Attract project path')
|
|
||||||
|
|
||||||
def draw_flamenco_buttons(self, flamenco_box, bcp: flamenco.FlamencoManagerGroup, context):
|
def draw_flamenco_buttons(self, flamenco_box, bcp: flamenco.FlamencoManagerGroup, context):
|
||||||
|
from .flamenco import bam_interface
|
||||||
|
|
||||||
header_row = flamenco_box.row(align=True)
|
header_row = flamenco_box.row(align=True)
|
||||||
header_row.label('Flamenco:', icon_value=icon('CLOUD'))
|
header_row.label('Flamenco:', icon_value=icon('CLOUD'))
|
||||||
|
|
||||||
manager_box = flamenco_box.row(align=True)
|
manager_split = flamenco_box.split(0.32, align=True)
|
||||||
|
manager_split.label('Manager:')
|
||||||
|
manager_box = manager_split.row(align=True)
|
||||||
|
|
||||||
if bcp.status in {'NONE', 'IDLE'}:
|
if bcp.status in {'NONE', 'IDLE'}:
|
||||||
if not bcp.available_managers or not bcp.manager:
|
if not bcp.available_managers or not bcp.manager:
|
||||||
@@ -436,26 +440,32 @@ class BlenderCloudPreferences(AddonPreferences):
|
|||||||
text='Find Flamenco Managers',
|
text='Find Flamenco Managers',
|
||||||
icon='FILE_REFRESH')
|
icon='FILE_REFRESH')
|
||||||
else:
|
else:
|
||||||
manager_box.prop(bcp, 'manager', text='Manager')
|
manager_box.prop(bcp, 'manager', text='')
|
||||||
manager_box.operator('flamenco.managers',
|
manager_box.operator('flamenco.managers',
|
||||||
text='',
|
text='',
|
||||||
icon='FILE_REFRESH')
|
icon='FILE_REFRESH')
|
||||||
else:
|
else:
|
||||||
manager_box.label('Fetching available managers.')
|
manager_box.label('Fetching available managers.')
|
||||||
|
|
||||||
path_box = flamenco_box.row(align=True)
|
path_split = flamenco_box.split(0.32, align=True)
|
||||||
path_box.prop(self, 'flamenco_job_file_path')
|
path_split.label(text='Job File Path:')
|
||||||
|
path_box = path_split.row(align=True)
|
||||||
|
path_box.prop(self, 'flamenco_job_file_path', text='')
|
||||||
props = path_box.operator('flamenco.explore_file_path', text='', icon='DISK_DRIVE')
|
props = path_box.operator('flamenco.explore_file_path', text='', icon='DISK_DRIVE')
|
||||||
props.path = self.flamenco_job_file_path
|
props.path = self.flamenco_job_file_path
|
||||||
|
|
||||||
job_output_box = flamenco_box.column(align=True)
|
job_output_box = flamenco_box.column(align=True)
|
||||||
path_box = job_output_box.row(align=True)
|
path_split = job_output_box.split(0.32, align=True)
|
||||||
path_box.prop(self, 'flamenco_job_output_path')
|
path_split.label(text='Job Output Path:')
|
||||||
|
path_box = path_split.row(align=True)
|
||||||
|
path_box.prop(self, 'flamenco_job_output_path', text='')
|
||||||
props = path_box.operator('flamenco.explore_file_path', text='', icon='DISK_DRIVE')
|
props = path_box.operator('flamenco.explore_file_path', text='', icon='DISK_DRIVE')
|
||||||
props.path = self.flamenco_job_output_path
|
props.path = self.flamenco_job_output_path
|
||||||
|
job_output_box.prop(self, 'flamenco_exclude_filter')
|
||||||
|
|
||||||
job_output_box.prop(self, 'flamenco_job_output_strip_components',
|
prop_split = job_output_box.split(0.32, align=True)
|
||||||
text='Strip Components')
|
prop_split.label('Strip Components:')
|
||||||
|
prop_split.prop(self, 'flamenco_job_output_strip_components', text='')
|
||||||
|
|
||||||
from .flamenco import render_output_path
|
from .flamenco import render_output_path
|
||||||
|
|
||||||
@@ -561,7 +571,7 @@ class PILLAR_OT_projects(async_loop.AsyncModalOperatorMixin,
|
|||||||
pillarsdk.Project.all,
|
pillarsdk.Project.all,
|
||||||
{'where': {'user': self.user_id,
|
{'where': {'user': self.user_id,
|
||||||
'category': {'$ne': 'home'}},
|
'category': {'$ne': 'home'}},
|
||||||
'sort': '-_created',
|
'sort': '-name',
|
||||||
'projection': {'_id': True,
|
'projection': {'_id': True,
|
||||||
'name': True,
|
'name': True,
|
||||||
'extension_props': True},
|
'extension_props': True},
|
||||||
@@ -571,7 +581,7 @@ class PILLAR_OT_projects(async_loop.AsyncModalOperatorMixin,
|
|||||||
pillarsdk.Project.all,
|
pillarsdk.Project.all,
|
||||||
{'where': {'user': {'$ne': self.user_id},
|
{'where': {'user': {'$ne': self.user_id},
|
||||||
'permissions.groups.group': {'$in': self.db_user.groups}},
|
'permissions.groups.group': {'$in': self.db_user.groups}},
|
||||||
'sort': '-_created',
|
'sort': '-name',
|
||||||
'projection': {'_id': True,
|
'projection': {'_id': True,
|
||||||
'name': True,
|
'name': True,
|
||||||
'extension_props': True},
|
'extension_props': True},
|
||||||
@@ -595,7 +605,10 @@ class PILLAR_OT_projects(async_loop.AsyncModalOperatorMixin,
|
|||||||
projects = list(reduce_properties(projects_user['_items'])) + \
|
projects = list(reduce_properties(projects_user['_items'])) + \
|
||||||
list(reduce_properties(projects_shared['_items']))
|
list(reduce_properties(projects_shared['_items']))
|
||||||
|
|
||||||
preferences().project.available_projects = projects
|
def proj_sort_key(project):
|
||||||
|
return project.get('name')
|
||||||
|
|
||||||
|
preferences().project.available_projects = sorted(projects, key=proj_sort_key)
|
||||||
|
|
||||||
self.quit()
|
self.quit()
|
||||||
|
|
||||||
|
@@ -20,11 +20,24 @@
|
|||||||
|
|
||||||
The preferences are managed blender.py, the rest of the Flamenco-specific stuff is here.
|
The preferences are managed blender.py, the rest of the Flamenco-specific stuff is here.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import functools
|
import functools
|
||||||
import logging
|
import logging
|
||||||
|
import os
|
||||||
from pathlib import Path, PurePath
|
from pathlib import Path, PurePath
|
||||||
import typing
|
import typing
|
||||||
|
|
||||||
|
if "bpy" in locals():
|
||||||
|
import importlib
|
||||||
|
|
||||||
|
try:
|
||||||
|
bam_interface = importlib.reload(bam_interface)
|
||||||
|
sdk = importlib.reload(sdk)
|
||||||
|
except NameError:
|
||||||
|
from . import bam_interface, sdk
|
||||||
|
else:
|
||||||
|
from . import bam_interface, sdk
|
||||||
|
|
||||||
import bpy
|
import bpy
|
||||||
from bpy.types import AddonPreferences, Operator, WindowManager, Scene, PropertyGroup
|
from bpy.types import AddonPreferences, Operator, WindowManager, Scene, PropertyGroup
|
||||||
from bpy.props import StringProperty, EnumProperty, PointerProperty, BoolProperty, IntProperty
|
from bpy.props import StringProperty, EnumProperty, PointerProperty, BoolProperty, IntProperty
|
||||||
@@ -136,9 +149,20 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
|||||||
log = logging.getLogger('%s.FLAMENCO_OT_render' % __name__)
|
log = logging.getLogger('%s.FLAMENCO_OT_render' % __name__)
|
||||||
|
|
||||||
async def async_execute(self, context):
|
async def async_execute(self, context):
|
||||||
|
# Refuse to start if the file hasn't been saved. It's okay if
|
||||||
|
# it's dirty, but we do need a filename and a location.
|
||||||
|
if not os.path.exists(context.blend_data.filepath):
|
||||||
|
self.report({'ERROR'}, 'Please save your Blend file before using '
|
||||||
|
'the Blender Cloud addon.')
|
||||||
|
self.quit()
|
||||||
|
return
|
||||||
|
|
||||||
if not await self.authenticate(context):
|
if not await self.authenticate(context):
|
||||||
return
|
return
|
||||||
|
|
||||||
|
import pillarsdk.exceptions
|
||||||
|
from .sdk import Manager
|
||||||
|
from ..pillar import pillar_call
|
||||||
from ..blender import preferences
|
from ..blender import preferences
|
||||||
|
|
||||||
scene = context.scene
|
scene = context.scene
|
||||||
@@ -160,15 +184,28 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
|||||||
if not outfile:
|
if not outfile:
|
||||||
return
|
return
|
||||||
|
|
||||||
# Create the job at Flamenco Server.
|
# Fetch Manager for doing path replacement.
|
||||||
|
self.log.info('Going to fetch manager %s', self.user_id)
|
||||||
prefs = preferences()
|
prefs = preferences()
|
||||||
|
|
||||||
|
manager_id = prefs.flamenco_manager.manager
|
||||||
|
try:
|
||||||
|
manager = await pillar_call(Manager.find, manager_id)
|
||||||
|
except pillarsdk.exceptions.ResourceNotFound:
|
||||||
|
self.report({'ERROR'}, 'Manager %s not found, refresh your managers in '
|
||||||
|
'the Blender Cloud add-on settings.' % manager_id)
|
||||||
|
self.quit()
|
||||||
|
return
|
||||||
|
|
||||||
|
# Create the job at Flamenco Server.
|
||||||
context.window_manager.flamenco_status = 'COMMUNICATING'
|
context.window_manager.flamenco_status = 'COMMUNICATING'
|
||||||
|
|
||||||
|
frame_range = scene.flamenco_render_frame_range.strip() or scene_frame_range(context)
|
||||||
settings = {'blender_cmd': '{blender}',
|
settings = {'blender_cmd': '{blender}',
|
||||||
'chunk_size': scene.flamenco_render_fchunk_size,
|
'chunk_size': scene.flamenco_render_fchunk_size,
|
||||||
'filepath': str(outfile),
|
'filepath': manager.replace_path(outfile),
|
||||||
'frames': scene.flamenco_render_frame_range,
|
'frames': frame_range,
|
||||||
'render_output': str(render_output),
|
'render_output': manager.replace_path(render_output),
|
||||||
}
|
}
|
||||||
|
|
||||||
# Add extra settings specific to the job type
|
# Add extra settings specific to the job type
|
||||||
@@ -188,7 +225,7 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
|||||||
try:
|
try:
|
||||||
job_info = await create_job(self.user_id,
|
job_info = await create_job(self.user_id,
|
||||||
prefs.project.project,
|
prefs.project.project,
|
||||||
prefs.flamenco_manager.manager,
|
manager_id,
|
||||||
scene.flamenco_render_job_type,
|
scene.flamenco_render_job_type,
|
||||||
settings,
|
settings,
|
||||||
'Render %s' % filepath.name,
|
'Render %s' % filepath.name,
|
||||||
@@ -287,7 +324,6 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
|||||||
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from ..blender import preferences
|
from ..blender import preferences
|
||||||
from . import bam_interface
|
|
||||||
|
|
||||||
prefs = preferences()
|
prefs = preferences()
|
||||||
|
|
||||||
@@ -300,6 +336,8 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
|||||||
outdir = Path(prefs.flamenco_job_file_path) / unique_dir
|
outdir = Path(prefs.flamenco_job_file_path) / unique_dir
|
||||||
outfile = outdir / filepath.name
|
outfile = outdir / filepath.name
|
||||||
|
|
||||||
|
exclusion_filter = prefs.flamenco_exclude_filter or None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
outdir.mkdir(parents=True)
|
outdir.mkdir(parents=True)
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
@@ -309,7 +347,7 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
|||||||
return None, []
|
return None, []
|
||||||
|
|
||||||
try:
|
try:
|
||||||
missing_sources = await bam_interface.bam_copy(filepath, outfile)
|
missing_sources = await bam_interface.bam_copy(filepath, outfile, exclusion_filter)
|
||||||
except bam_interface.CommandExecutionError as ex:
|
except bam_interface.CommandExecutionError as ex:
|
||||||
self.log.exception('Unable to execute BAM pack')
|
self.log.exception('Unable to execute BAM pack')
|
||||||
self.report({'ERROR'}, 'Unable to execute BAM pack: %s' % ex)
|
self.report({'ERROR'}, 'Unable to execute BAM pack: %s' % ex)
|
||||||
@@ -319,6 +357,13 @@ class FLAMENCO_OT_render(async_loop.AsyncModalOperatorMixin,
|
|||||||
return outfile, missing_sources
|
return outfile, missing_sources
|
||||||
|
|
||||||
|
|
||||||
|
def scene_frame_range(context) -> str:
|
||||||
|
"""Returns the frame range string for the current scene."""
|
||||||
|
|
||||||
|
s = context.scene
|
||||||
|
return '%i-%i' % (s.frame_start, s.frame_end)
|
||||||
|
|
||||||
|
|
||||||
class FLAMENCO_OT_scene_to_frame_range(FlamencoPollMixin, Operator):
|
class FLAMENCO_OT_scene_to_frame_range(FlamencoPollMixin, Operator):
|
||||||
"""Sets the scene frame range as the Flamenco render frame range."""
|
"""Sets the scene frame range as the Flamenco render frame range."""
|
||||||
bl_idname = 'flamenco.scene_to_frame_range'
|
bl_idname = 'flamenco.scene_to_frame_range'
|
||||||
@@ -326,8 +371,7 @@ class FLAMENCO_OT_scene_to_frame_range(FlamencoPollMixin, Operator):
|
|||||||
bl_description = __doc__.rstrip('.')
|
bl_description = __doc__.rstrip('.')
|
||||||
|
|
||||||
def execute(self, context):
|
def execute(self, context):
|
||||||
s = context.scene
|
context.scene.flamenco_render_frame_range = scene_frame_range(context)
|
||||||
s.flamenco_render_frame_range = '%i-%i' % (s.frame_start, s.frame_end)
|
|
||||||
return {'FINISHED'}
|
return {'FINISHED'}
|
||||||
|
|
||||||
|
|
||||||
@@ -343,14 +387,15 @@ class FLAMENCO_OT_copy_files(Operator,
|
|||||||
|
|
||||||
async def async_execute(self, context):
|
async def async_execute(self, context):
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from . import bam_interface
|
|
||||||
from ..blender import preferences
|
from ..blender import preferences
|
||||||
|
|
||||||
context.window_manager.flamenco_status = 'PACKING'
|
context.window_manager.flamenco_status = 'PACKING'
|
||||||
|
exclusion_filter = preferences().flamenco_exclude_filter or None
|
||||||
|
|
||||||
missing_sources = await bam_interface.bam_copy(
|
missing_sources = await bam_interface.bam_copy(
|
||||||
Path(context.blend_data.filepath),
|
Path(context.blend_data.filepath),
|
||||||
Path(preferences().flamenco_job_file_path),
|
Path(preferences().flamenco_job_file_path),
|
||||||
|
exclusion_filter
|
||||||
)
|
)
|
||||||
|
|
||||||
if missing_sources:
|
if missing_sources:
|
||||||
@@ -407,6 +452,30 @@ class FLAMENCO_OT_explore_file_path(FlamencoPollMixin,
|
|||||||
return {'FINISHED'}
|
return {'FINISHED'}
|
||||||
|
|
||||||
|
|
||||||
|
class FLAMENCO_OT_enable_output_path_override(Operator):
|
||||||
|
"""Enables the 'override output path' setting."""
|
||||||
|
|
||||||
|
bl_idname = 'flamenco.enable_output_path_override'
|
||||||
|
bl_label = 'Enable Overriding of Output Path'
|
||||||
|
bl_description = 'Click to specify a non-default Output Path for this particular job'
|
||||||
|
|
||||||
|
def execute(self, context):
|
||||||
|
context.scene.flamenco_do_override_output_path = True
|
||||||
|
return {'FINISHED'}
|
||||||
|
|
||||||
|
|
||||||
|
class FLAMENCO_OT_disable_output_path_override(Operator):
|
||||||
|
"""Disables the 'override output path' setting."""
|
||||||
|
|
||||||
|
bl_idname = 'flamenco.disable_output_path_override'
|
||||||
|
bl_label = 'disable Overriding of Output Path'
|
||||||
|
bl_description = 'Click to use the default Output Path'
|
||||||
|
|
||||||
|
def execute(self, context):
|
||||||
|
context.scene.flamenco_do_override_output_path = False
|
||||||
|
return {'FINISHED'}
|
||||||
|
|
||||||
|
|
||||||
async def create_job(user_id: str,
|
async def create_job(user_id: str,
|
||||||
project_id: str,
|
project_id: str,
|
||||||
manager_id: str,
|
manager_id: str,
|
||||||
@@ -461,6 +530,7 @@ def _render_output_path(
|
|||||||
flamenco_job_output_path: str,
|
flamenco_job_output_path: str,
|
||||||
render_image_format: str,
|
render_image_format: str,
|
||||||
flamenco_render_frame_range: str,
|
flamenco_render_frame_range: str,
|
||||||
|
include_rel_path: bool = True,
|
||||||
) -> typing.Optional[PurePath]:
|
) -> typing.Optional[PurePath]:
|
||||||
"""Cached version of render_output_path()
|
"""Cached version of render_output_path()
|
||||||
|
|
||||||
@@ -475,12 +545,17 @@ def _render_output_path(
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
proj_rel = blend_filepath.parent.relative_to(project_path)
|
blend_abspath = blend_filepath.resolve().absolute()
|
||||||
|
except FileNotFoundError:
|
||||||
|
# Path.resolve() will raise a FileNotFoundError if the path doesn't exist.
|
||||||
|
return None
|
||||||
|
|
||||||
|
try:
|
||||||
|
proj_rel = blend_abspath.parent.relative_to(project_path)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
rel_parts = proj_rel.parts[flamenco_job_output_strip_components:]
|
output_top = PurePath(flamenco_job_output_path)
|
||||||
output_top = Path(flamenco_job_output_path)
|
|
||||||
|
|
||||||
# Strip off '.flamenco' too; we use 'xxx.flamenco.blend' as job file, but
|
# Strip off '.flamenco' too; we use 'xxx.flamenco.blend' as job file, but
|
||||||
# don't want to have all the output paths ending in '.flamenco'.
|
# don't want to have all the output paths ending in '.flamenco'.
|
||||||
@@ -488,7 +563,11 @@ def _render_output_path(
|
|||||||
if stem.endswith('.flamenco'):
|
if stem.endswith('.flamenco'):
|
||||||
stem = stem[:-9]
|
stem = stem[:-9]
|
||||||
|
|
||||||
|
if include_rel_path:
|
||||||
|
rel_parts = proj_rel.parts[flamenco_job_output_strip_components:]
|
||||||
dir_components = output_top.joinpath(*rel_parts) / stem
|
dir_components = output_top.joinpath(*rel_parts) / stem
|
||||||
|
else:
|
||||||
|
dir_components = output_top
|
||||||
|
|
||||||
# Blender will have to append the file extensions by itself.
|
# Blender will have to append the file extensions by itself.
|
||||||
if is_image_type(render_image_format):
|
if is_image_type(render_image_format):
|
||||||
@@ -513,13 +592,19 @@ def render_output_path(context, filepath: Path = None) -> typing.Optional[PurePa
|
|||||||
if filepath is None:
|
if filepath is None:
|
||||||
filepath = Path(context.blend_data.filepath)
|
filepath = Path(context.blend_data.filepath)
|
||||||
|
|
||||||
|
if scene.flamenco_do_override_output_path:
|
||||||
|
job_output_path = scene.flamenco_override_output_path
|
||||||
|
else:
|
||||||
|
job_output_path = prefs.flamenco_job_output_path
|
||||||
|
|
||||||
return _render_output_path(
|
return _render_output_path(
|
||||||
prefs.attract_project_local_path,
|
prefs.cloud_project_local_path,
|
||||||
filepath,
|
filepath,
|
||||||
prefs.flamenco_job_output_strip_components,
|
prefs.flamenco_job_output_strip_components,
|
||||||
prefs.flamenco_job_output_path,
|
job_output_path,
|
||||||
scene.render.image_settings.file_format,
|
scene.render.image_settings.file_format,
|
||||||
scene.flamenco_render_frame_range,
|
scene.flamenco_render_frame_range,
|
||||||
|
include_rel_path=not scene.flamenco_do_override_output_path,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@@ -553,8 +638,9 @@ class FLAMENCO_PT_render(bpy.types.Panel, FlamencoPollMixin):
|
|||||||
if getattr(context.scene, 'flamenco_render_job_type', None) == 'blender-render-progressive':
|
if getattr(context.scene, 'flamenco_render_job_type', None) == 'blender-render-progressive':
|
||||||
layout.prop(context.scene, 'flamenco_render_schunk_count')
|
layout.prop(context.scene, 'flamenco_render_schunk_count')
|
||||||
|
|
||||||
readonly_stuff = layout.column(align=True)
|
paths_layout = layout.column(align=True)
|
||||||
labeled_row = readonly_stuff.split(0.25, align=True)
|
|
||||||
|
labeled_row = paths_layout.split(0.25, align=True)
|
||||||
labeled_row.label('Storage:')
|
labeled_row.label('Storage:')
|
||||||
prop_btn_row = labeled_row.row(align=True)
|
prop_btn_row = labeled_row.row(align=True)
|
||||||
prop_btn_row.label(prefs.flamenco_job_file_path)
|
prop_btn_row.label(prefs.flamenco_job_file_path)
|
||||||
@@ -562,19 +648,33 @@ class FLAMENCO_PT_render(bpy.types.Panel, FlamencoPollMixin):
|
|||||||
text='', icon='DISK_DRIVE')
|
text='', icon='DISK_DRIVE')
|
||||||
props.path = prefs.flamenco_job_file_path
|
props.path = prefs.flamenco_job_file_path
|
||||||
|
|
||||||
labeled_row = readonly_stuff.split(0.25, align=True)
|
render_output = render_output_path(context)
|
||||||
|
if render_output is None:
|
||||||
|
paths_layout.label('Unable to render with Flamenco, outside of project directory.')
|
||||||
|
else:
|
||||||
|
labeled_row = paths_layout.split(0.25, align=True)
|
||||||
labeled_row.label('Output:')
|
labeled_row.label('Output:')
|
||||||
prop_btn_row = labeled_row.row(align=True)
|
prop_btn_row = labeled_row.row(align=True)
|
||||||
render_output = render_output_path(context)
|
|
||||||
|
|
||||||
if render_output is None:
|
if context.scene.flamenco_do_override_output_path:
|
||||||
prop_btn_row.label('Unable to render with Flamenco, outside of project directory.')
|
prop_btn_row.prop(context.scene, 'flamenco_override_output_path', text='')
|
||||||
|
op = FLAMENCO_OT_disable_output_path_override.bl_idname
|
||||||
|
icon = 'X'
|
||||||
else:
|
else:
|
||||||
prop_btn_row.label(str(render_output))
|
prop_btn_row.label(str(render_output))
|
||||||
|
op = FLAMENCO_OT_enable_output_path_override.bl_idname
|
||||||
|
icon = 'GREASEPENCIL'
|
||||||
|
prop_btn_row.operator(op, icon=icon, text='')
|
||||||
|
|
||||||
props = prop_btn_row.operator(FLAMENCO_OT_explore_file_path.bl_idname,
|
props = prop_btn_row.operator(FLAMENCO_OT_explore_file_path.bl_idname,
|
||||||
text='', icon='DISK_DRIVE')
|
text='', icon='DISK_DRIVE')
|
||||||
props.path = str(render_output.parent)
|
props.path = str(render_output.parent)
|
||||||
|
|
||||||
|
if context.scene.flamenco_do_override_output_path:
|
||||||
|
labeled_row = paths_layout.split(0.25, align=True)
|
||||||
|
labeled_row.label('Effective Output Path:')
|
||||||
|
labeled_row.label(str(render_output))
|
||||||
|
|
||||||
flamenco_status = context.window_manager.flamenco_status
|
flamenco_status = context.window_manager.flamenco_status
|
||||||
if flamenco_status == 'IDLE':
|
if flamenco_status == 'IDLE':
|
||||||
layout.operator(FLAMENCO_OT_render.bl_idname,
|
layout.operator(FLAMENCO_OT_render.bl_idname,
|
||||||
@@ -594,6 +694,7 @@ def activate():
|
|||||||
global flamenco_is_active
|
global flamenco_is_active
|
||||||
log.info('Activating Flamenco')
|
log.info('Activating Flamenco')
|
||||||
flamenco_is_active = True
|
flamenco_is_active = True
|
||||||
|
_render_output_path.cache_clear()
|
||||||
|
|
||||||
|
|
||||||
def deactivate():
|
def deactivate():
|
||||||
@@ -602,6 +703,23 @@ def deactivate():
|
|||||||
global flamenco_is_active
|
global flamenco_is_active
|
||||||
log.info('Deactivating Flamenco')
|
log.info('Deactivating Flamenco')
|
||||||
flamenco_is_active = False
|
flamenco_is_active = False
|
||||||
|
_render_output_path.cache_clear()
|
||||||
|
|
||||||
|
|
||||||
|
def flamenco_do_override_output_path_updated(scene, context):
|
||||||
|
"""Set the override paths to the default, if not yet set."""
|
||||||
|
|
||||||
|
# Only set a default when enabling the override.
|
||||||
|
if not scene.flamenco_do_override_output_path:
|
||||||
|
return
|
||||||
|
|
||||||
|
# Don't overwrite existing setting.
|
||||||
|
if scene.flamenco_override_output_path:
|
||||||
|
return
|
||||||
|
|
||||||
|
from ..blender import preferences
|
||||||
|
scene.flamenco_override_output_path = preferences().flamenco_job_output_path
|
||||||
|
log.info('Setting Override Output Path to %s', scene.flamenco_override_output_path)
|
||||||
|
|
||||||
|
|
||||||
def register():
|
def register():
|
||||||
@@ -613,6 +731,8 @@ def register():
|
|||||||
bpy.utils.register_class(FLAMENCO_OT_scene_to_frame_range)
|
bpy.utils.register_class(FLAMENCO_OT_scene_to_frame_range)
|
||||||
bpy.utils.register_class(FLAMENCO_OT_copy_files)
|
bpy.utils.register_class(FLAMENCO_OT_copy_files)
|
||||||
bpy.utils.register_class(FLAMENCO_OT_explore_file_path)
|
bpy.utils.register_class(FLAMENCO_OT_explore_file_path)
|
||||||
|
bpy.utils.register_class(FLAMENCO_OT_enable_output_path_override)
|
||||||
|
bpy.utils.register_class(FLAMENCO_OT_disable_output_path_override)
|
||||||
bpy.utils.register_class(FLAMENCO_PT_render)
|
bpy.utils.register_class(FLAMENCO_PT_render)
|
||||||
|
|
||||||
scene = bpy.types.Scene
|
scene = bpy.types.Scene
|
||||||
@@ -650,6 +770,19 @@ def register():
|
|||||||
description='Higher numbers mean higher priority'
|
description='Higher numbers mean higher priority'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
scene.flamenco_do_override_output_path = BoolProperty(
|
||||||
|
name='Override Output Path for this Job',
|
||||||
|
description='When enabled, allows you to specify a non-default Output path '
|
||||||
|
'for this particular job',
|
||||||
|
default=False,
|
||||||
|
update=flamenco_do_override_output_path_updated
|
||||||
|
)
|
||||||
|
scene.flamenco_override_output_path = StringProperty(
|
||||||
|
name='Override Output Path',
|
||||||
|
description='Path where to store output files, should be accessible for Workers',
|
||||||
|
subtype='DIR_PATH',
|
||||||
|
default='')
|
||||||
|
|
||||||
bpy.types.WindowManager.flamenco_status = EnumProperty(
|
bpy.types.WindowManager.flamenco_status = EnumProperty(
|
||||||
items=[
|
items=[
|
||||||
('IDLE', 'IDLE', 'Not doing anything.'),
|
('IDLE', 'IDLE', 'Not doing anything.'),
|
||||||
@@ -686,6 +819,14 @@ def unregister():
|
|||||||
del bpy.types.Scene.flamenco_render_job_priority
|
del bpy.types.Scene.flamenco_render_job_priority
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
pass
|
pass
|
||||||
|
try:
|
||||||
|
del bpy.types.Scene.flamenco_do_override_output_path
|
||||||
|
except AttributeError:
|
||||||
|
pass
|
||||||
|
try:
|
||||||
|
del bpy.types.Scene.flamenco_override_output_path
|
||||||
|
except AttributeError:
|
||||||
|
pass
|
||||||
try:
|
try:
|
||||||
del bpy.types.WindowManager.flamenco_status
|
del bpy.types.WindowManager.flamenco_status
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
|
@@ -14,7 +14,30 @@ class CommandExecutionError(Exception):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
async def bam_copy(base_blendfile: Path, target_blendfile: Path) -> typing.List[Path]:
|
def wheel_pythonpath_278() -> str:
|
||||||
|
"""Returns the value of a PYTHONPATH environment variable needed to run BAM from its wheel file.
|
||||||
|
|
||||||
|
Workaround for Blender 2.78c not having io_blend_utils.pythonpath()
|
||||||
|
"""
|
||||||
|
|
||||||
|
import os
|
||||||
|
from ..wheels import wheel_filename
|
||||||
|
|
||||||
|
# Find the wheel to run.
|
||||||
|
wheelpath = wheel_filename('blender_bam')
|
||||||
|
|
||||||
|
log.info('Using wheel %s to run BAM-Pack', wheelpath)
|
||||||
|
|
||||||
|
# Update the PYTHONPATH to include that wheel.
|
||||||
|
existing_pypath = os.environ.get('PYTHONPATH', '')
|
||||||
|
if existing_pypath:
|
||||||
|
return os.pathsep.join((existing_pypath, wheelpath))
|
||||||
|
|
||||||
|
return wheelpath
|
||||||
|
|
||||||
|
|
||||||
|
async def bam_copy(base_blendfile: Path, target_blendfile: Path,
|
||||||
|
exclusion_filter: str) -> typing.List[Path]:
|
||||||
"""Uses BAM to copy the given file and dependencies to the target blendfile.
|
"""Uses BAM to copy the given file and dependencies to the target blendfile.
|
||||||
|
|
||||||
Due to the way blendfile_pack.py is programmed/structured, we cannot import it
|
Due to the way blendfile_pack.py is programmed/structured, we cannot import it
|
||||||
@@ -27,6 +50,7 @@ async def bam_copy(base_blendfile: Path, target_blendfile: Path) -> typing.List[
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
|
import os
|
||||||
import shlex
|
import shlex
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
@@ -41,12 +65,29 @@ async def bam_copy(base_blendfile: Path, target_blendfile: Path) -> typing.List[
|
|||||||
'--mode', 'FILE',
|
'--mode', 'FILE',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
if exclusion_filter:
|
||||||
|
args.extend(['--exclude', exclusion_filter])
|
||||||
|
|
||||||
cmd_to_log = ' '.join(shlex.quote(s) for s in args)
|
cmd_to_log = ' '.join(shlex.quote(s) for s in args)
|
||||||
log.info('Executing %s', cmd_to_log)
|
log.info('Executing %s', cmd_to_log)
|
||||||
|
|
||||||
|
# Workaround for Blender 2.78c not having io_blend_utils.pythonpath()
|
||||||
|
if hasattr(io_blend_utils, 'pythonpath'):
|
||||||
|
pythonpath = io_blend_utils.pythonpath()
|
||||||
|
else:
|
||||||
|
pythonpath = wheel_pythonpath_278()
|
||||||
|
|
||||||
|
env = {
|
||||||
|
'PYTHONPATH': pythonpath,
|
||||||
|
# Needed on Windows because http://bugs.python.org/issue8557
|
||||||
|
'PATH': os.environ['PATH'],
|
||||||
|
}
|
||||||
|
if 'SYSTEMROOT' in os.environ: # Windows http://bugs.python.org/issue20614
|
||||||
|
env['SYSTEMROOT'] = os.environ['SYSTEMROOT']
|
||||||
|
|
||||||
proc = await asyncio.create_subprocess_exec(
|
proc = await asyncio.create_subprocess_exec(
|
||||||
*args,
|
*args,
|
||||||
env={'PYTHONPATH': io_blend_utils.pythonpath()},
|
env=env,
|
||||||
stdin=subprocess.DEVNULL,
|
stdin=subprocess.DEVNULL,
|
||||||
stdout=subprocess.PIPE,
|
stdout=subprocess.PIPE,
|
||||||
stderr=subprocess.STDOUT,
|
stderr=subprocess.STDOUT,
|
||||||
|
@@ -1,9 +1,50 @@
|
|||||||
|
import functools
|
||||||
|
import pathlib
|
||||||
|
|
||||||
from pillarsdk.resource import List, Find, Create
|
from pillarsdk.resource import List, Find, Create
|
||||||
|
|
||||||
|
|
||||||
class Manager(List, Find):
|
class Manager(List, Find):
|
||||||
"""Manager class wrapping the REST nodes endpoint"""
|
"""Manager class wrapping the REST nodes endpoint"""
|
||||||
path = 'flamenco/managers'
|
path = 'flamenco/managers'
|
||||||
|
PurePlatformPath = pathlib.PurePath
|
||||||
|
|
||||||
|
@functools.lru_cache()
|
||||||
|
def _sorted_path_replacements(self) -> list:
|
||||||
|
import platform
|
||||||
|
|
||||||
|
if self.path_replacement is None:
|
||||||
|
return []
|
||||||
|
|
||||||
|
items = self.path_replacement.to_dict().items()
|
||||||
|
|
||||||
|
def by_length(item):
|
||||||
|
return -len(item[0]), item[0]
|
||||||
|
|
||||||
|
this_platform = platform.system().lower()
|
||||||
|
return [(varname, platform_replacements[this_platform])
|
||||||
|
for varname, platform_replacements in sorted(items, key=by_length)
|
||||||
|
if this_platform in platform_replacements]
|
||||||
|
|
||||||
|
def replace_path(self, some_path: pathlib.PurePath) -> str:
|
||||||
|
"""Performs path variable replacement.
|
||||||
|
|
||||||
|
Tries to find platform-specific path prefixes, and replaces them with
|
||||||
|
variables.
|
||||||
|
"""
|
||||||
|
|
||||||
|
for varname, path in self._sorted_path_replacements():
|
||||||
|
replacement = self.PurePlatformPath(path)
|
||||||
|
try:
|
||||||
|
relpath = some_path.relative_to(replacement)
|
||||||
|
except ValueError:
|
||||||
|
# Not relative to each other, so no replacement possible
|
||||||
|
continue
|
||||||
|
|
||||||
|
replacement_root = self.PurePlatformPath('{%s}' % varname)
|
||||||
|
return (replacement_root / relpath).as_posix()
|
||||||
|
|
||||||
|
return some_path.as_posix()
|
||||||
|
|
||||||
|
|
||||||
class Job(List, Find, Create):
|
class Job(List, Find, Create):
|
||||||
|
@@ -112,6 +112,10 @@ class PILLAR_OT_image_share(pillar.PillarOperatorMixin,
|
|||||||
async def async_execute(self, context):
|
async def async_execute(self, context):
|
||||||
"""Entry point of the asynchronous operator."""
|
"""Entry point of the asynchronous operator."""
|
||||||
|
|
||||||
|
# We don't want to influence what is included in the screen shot.
|
||||||
|
if self.target == 'SCREENSHOT':
|
||||||
|
print('Blender Cloud add-on is communicating with Blender Cloud')
|
||||||
|
else:
|
||||||
self.report({'INFO'}, 'Communicating with Blender Cloud')
|
self.report({'INFO'}, 'Communicating with Blender Cloud')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
46
blender_cloud/pillar.py
Normal file → Executable file
46
blender_cloud/pillar.py
Normal file → Executable file
@@ -115,6 +115,12 @@ def with_existing_dir(filename: str, open_mode: str, encoding=None):
|
|||||||
yield file_object
|
yield file_object
|
||||||
|
|
||||||
|
|
||||||
|
def _shorten(somestr: str, maxlen=40) -> str:
|
||||||
|
"""Shortens strings for logging"""
|
||||||
|
|
||||||
|
return (somestr[:maxlen - 3] + '...') if len(somestr) > maxlen else somestr
|
||||||
|
|
||||||
|
|
||||||
def save_as_json(pillar_resource, json_filename):
|
def save_as_json(pillar_resource, json_filename):
|
||||||
with with_existing_dir(json_filename, 'w') as outfile:
|
with with_existing_dir(json_filename, 'w') as outfile:
|
||||||
log.debug('Saving metadata to %r' % json_filename)
|
log.debug('Saving metadata to %r' % json_filename)
|
||||||
@@ -200,8 +206,11 @@ def pillar_api(pillar_endpoint: str = None, caching=True) -> pillarsdk.Api:
|
|||||||
return _pillar_api[caching]
|
return _pillar_api[caching]
|
||||||
|
|
||||||
|
|
||||||
# No more than this many Pillar calls should be made simultaneously
|
# This is an asyncio.Semaphore object, which is late-instantiated to be sure
|
||||||
pillar_semaphore = asyncio.Semaphore(3)
|
# the asyncio loop has been created properly. On Windows we create a new one,
|
||||||
|
# which can cause this semaphore to still be linked against the old default
|
||||||
|
# loop.
|
||||||
|
pillar_semaphore = None
|
||||||
|
|
||||||
|
|
||||||
async def pillar_call(pillar_func, *args, caching=True, **kwargs):
|
async def pillar_call(pillar_func, *args, caching=True, **kwargs):
|
||||||
@@ -214,8 +223,21 @@ async def pillar_call(pillar_func, *args, caching=True, **kwargs):
|
|||||||
partial = functools.partial(pillar_func, *args, api=pillar_api(caching=caching), **kwargs)
|
partial = functools.partial(pillar_func, *args, api=pillar_api(caching=caching), **kwargs)
|
||||||
loop = asyncio.get_event_loop()
|
loop = asyncio.get_event_loop()
|
||||||
|
|
||||||
async with pillar_semaphore:
|
# Use explicit calls to acquire() and release() so that we have more control over
|
||||||
|
# how long we wait and how we handle timeouts.
|
||||||
|
try:
|
||||||
|
await asyncio.wait_for(pillar_semaphore.acquire(), timeout=10, loop=loop)
|
||||||
|
except asyncio.TimeoutError:
|
||||||
|
log.info('Waiting for semaphore to call %s', pillar_func.__name__)
|
||||||
|
try:
|
||||||
|
await asyncio.wait_for(pillar_semaphore.acquire(), timeout=50, loop=loop)
|
||||||
|
except asyncio.TimeoutError:
|
||||||
|
raise RuntimeError('Timeout waiting for Pillar Semaphore!')
|
||||||
|
|
||||||
|
try:
|
||||||
return await loop.run_in_executor(None, partial)
|
return await loop.run_in_executor(None, partial)
|
||||||
|
finally:
|
||||||
|
pillar_semaphore.release()
|
||||||
|
|
||||||
|
|
||||||
def sync_call(pillar_func, *args, caching=True, **kwargs):
|
def sync_call(pillar_func, *args, caching=True, **kwargs):
|
||||||
@@ -441,9 +463,9 @@ async def download_to_file(url, filename, *,
|
|||||||
log.debug('Downloading was cancelled before doing the GET')
|
log.debug('Downloading was cancelled before doing the GET')
|
||||||
raise asyncio.CancelledError('Downloading was cancelled')
|
raise asyncio.CancelledError('Downloading was cancelled')
|
||||||
|
|
||||||
log.debug('Performing GET %s', url)
|
log.debug('Performing GET %s', _shorten(url))
|
||||||
response = await loop.run_in_executor(None, perform_get_request)
|
response = await loop.run_in_executor(None, perform_get_request)
|
||||||
log.debug('Status %i from GET %s', response.status_code, url)
|
log.debug('Status %i from GET %s', response.status_code, _shorten(url))
|
||||||
response.raise_for_status()
|
response.raise_for_status()
|
||||||
|
|
||||||
if response.status_code == 304:
|
if response.status_code == 304:
|
||||||
@@ -457,9 +479,9 @@ async def download_to_file(url, filename, *,
|
|||||||
log.debug('Downloading was cancelled before downloading the GET response')
|
log.debug('Downloading was cancelled before downloading the GET response')
|
||||||
raise asyncio.CancelledError('Downloading was cancelled')
|
raise asyncio.CancelledError('Downloading was cancelled')
|
||||||
|
|
||||||
log.debug('Downloading response of GET %s', url)
|
log.debug('Downloading response of GET %s', _shorten(url))
|
||||||
await loop.run_in_executor(None, download_loop)
|
await loop.run_in_executor(None, download_loop)
|
||||||
log.debug('Done downloading response of GET %s', url)
|
log.debug('Done downloading response of GET %s', _shorten(url))
|
||||||
|
|
||||||
# We're done downloading, now we have something cached we can use.
|
# We're done downloading, now we have something cached we can use.
|
||||||
log.debug('Saving header cache to %s', header_store)
|
log.debug('Saving header cache to %s', header_store)
|
||||||
@@ -534,7 +556,8 @@ async def fetch_texture_thumbs(parent_node_uuid: str, desired_size: str,
|
|||||||
for texture_node in texture_nodes)
|
for texture_node in texture_nodes)
|
||||||
|
|
||||||
# raises any exception from failed handle_texture_node() calls.
|
# raises any exception from failed handle_texture_node() calls.
|
||||||
await asyncio.gather(*coros)
|
loop = asyncio.get_event_loop()
|
||||||
|
await asyncio.gather(*coros, loop=loop)
|
||||||
|
|
||||||
log.info('fetch_texture_thumbs: Done downloading texture thumbnails')
|
log.info('fetch_texture_thumbs: Done downloading texture thumbnails')
|
||||||
|
|
||||||
@@ -747,7 +770,8 @@ async def download_texture(texture_node,
|
|||||||
future=future)
|
future=future)
|
||||||
downloaders.append(dlr)
|
downloaders.append(dlr)
|
||||||
|
|
||||||
return await asyncio.gather(*downloaders, return_exceptions=True)
|
loop = asyncio.get_event_loop()
|
||||||
|
return await asyncio.gather(*downloaders, return_exceptions=True, loop=loop)
|
||||||
|
|
||||||
|
|
||||||
async def upload_file(project_id: str, file_path: pathlib.Path, *,
|
async def upload_file(project_id: str, file_path: pathlib.Path, *,
|
||||||
@@ -773,9 +797,9 @@ async def upload_file(project_id: str, file_path: pathlib.Path, *,
|
|||||||
log.debug('Uploading was cancelled before doing the POST')
|
log.debug('Uploading was cancelled before doing the POST')
|
||||||
raise asyncio.CancelledError('Uploading was cancelled')
|
raise asyncio.CancelledError('Uploading was cancelled')
|
||||||
|
|
||||||
log.debug('Performing POST %s', url)
|
log.debug('Performing POST %s', _shorten(url))
|
||||||
response = await loop.run_in_executor(None, upload)
|
response = await loop.run_in_executor(None, upload)
|
||||||
log.debug('Status %i from POST %s', response.status_code, url)
|
log.debug('Status %i from POST %s', response.status_code, _shorten(url))
|
||||||
response.raise_for_status()
|
response.raise_for_status()
|
||||||
|
|
||||||
resp = response.json()
|
resp = response.json()
|
||||||
|
@@ -457,7 +457,7 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
|
|
||||||
return menu_item
|
return menu_item
|
||||||
|
|
||||||
def update_menu_item(self, node, *args) -> MenuItem:
|
def update_menu_item(self, node, *args):
|
||||||
node_uuid = node['_id']
|
node_uuid = node['_id']
|
||||||
|
|
||||||
# Just make this thread-safe to be on the safe side.
|
# Just make this thread-safe to be on the safe side.
|
||||||
@@ -538,6 +538,7 @@ class BlenderCloudBrowser(pillar.PillarOperatorMixin,
|
|||||||
self.add_menu_item(node, None, 'SPINNER', texture_node['name'])
|
self.add_menu_item(node, None, 'SPINNER', texture_node['name'])
|
||||||
|
|
||||||
def thumbnail_loaded(node, file_desc, thumb_path):
|
def thumbnail_loaded(node, file_desc, thumb_path):
|
||||||
|
self.log.debug('Node %s thumbnail loaded', node['_id'])
|
||||||
self.update_menu_item(node, file_desc, thumb_path)
|
self.update_menu_item(node, file_desc, thumb_path)
|
||||||
|
|
||||||
await pillar.fetch_texture_thumbs(node_uuid, 's', directory,
|
await pillar.fetch_texture_thumbs(node_uuid, 's', directory,
|
||||||
|
@@ -44,6 +44,12 @@ def load_wheel(module_name, fname_prefix):
|
|||||||
module_name, module.__file__, fname_prefix)
|
module_name, module.__file__, fname_prefix)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
sys.path.append(wheel_filename(fname_prefix))
|
||||||
|
module = __import__(module_name)
|
||||||
|
log.debug('Loaded %s from %s', module_name, module.__file__)
|
||||||
|
|
||||||
|
|
||||||
|
def wheel_filename(fname_prefix: str) -> str:
|
||||||
path_pattern = os.path.join(my_dir, '%s*.whl' % fname_prefix)
|
path_pattern = os.path.join(my_dir, '%s*.whl' % fname_prefix)
|
||||||
wheels = glob.glob(path_pattern)
|
wheels = glob.glob(path_pattern)
|
||||||
if not wheels:
|
if not wheels:
|
||||||
@@ -51,9 +57,7 @@ def load_wheel(module_name, fname_prefix):
|
|||||||
|
|
||||||
# If there are multiple wheels that match, load the latest one.
|
# If there are multiple wheels that match, load the latest one.
|
||||||
wheels.sort()
|
wheels.sort()
|
||||||
sys.path.append(wheels[-1])
|
return wheels[-1]
|
||||||
module = __import__(module_name)
|
|
||||||
log.debug('Loaded %s from %s', module_name, module.__file__)
|
|
||||||
|
|
||||||
|
|
||||||
def load_wheels():
|
def load_wheels():
|
||||||
|
@@ -3,6 +3,7 @@
|
|||||||
lockfile==0.12.2
|
lockfile==0.12.2
|
||||||
pillarsdk==1.6.1
|
pillarsdk==1.6.1
|
||||||
wheel==0.29.0
|
wheel==0.29.0
|
||||||
|
blender-bam==1.1.7
|
||||||
|
|
||||||
# Secondary requirements:
|
# Secondary requirements:
|
||||||
cffi==1.6.0
|
cffi==1.6.0
|
||||||
|
9
setup.py
9
setup.py
@@ -101,6 +101,11 @@ class BuildWheels(Command):
|
|||||||
log.info('Downloading Pillar Python SDK wheel')
|
log.info('Downloading Pillar Python SDK wheel')
|
||||||
self.download_wheel(requirements['pillarsdk'])
|
self.download_wheel(requirements['pillarsdk'])
|
||||||
|
|
||||||
|
# Download BAM from pypi. This is required for compatibility with Blender 2.78.
|
||||||
|
if not list(self.wheels_path.glob('blender_bam*.whl')):
|
||||||
|
log.info('Downloading BAM wheel')
|
||||||
|
self.download_wheel(requirements['blender-bam'])
|
||||||
|
|
||||||
# Build CacheControl.
|
# Build CacheControl.
|
||||||
if not list(self.wheels_path.glob('CacheControl*.whl')):
|
if not list(self.wheels_path.glob('CacheControl*.whl')):
|
||||||
log.info('Building CacheControl in %s', self.cachecontrol_path)
|
log.info('Building CacheControl in %s', self.cachecontrol_path)
|
||||||
@@ -227,11 +232,11 @@ setup(
|
|||||||
'wheels': BuildWheels},
|
'wheels': BuildWheels},
|
||||||
name='blender_cloud',
|
name='blender_cloud',
|
||||||
description='The Blender Cloud addon allows browsing the Blender Cloud from Blender.',
|
description='The Blender Cloud addon allows browsing the Blender Cloud from Blender.',
|
||||||
version='1.6.2',
|
version='1.7.5',
|
||||||
author='Sybren A. Stüvel',
|
author='Sybren A. Stüvel',
|
||||||
author_email='sybren@stuvel.eu',
|
author_email='sybren@stuvel.eu',
|
||||||
packages=find_packages('.'),
|
packages=find_packages('.'),
|
||||||
data_files=[('blender_cloud', ['README.md', 'README-flamenco.md']),
|
data_files=[('blender_cloud', ['README.md', 'README-flamenco.md', 'CHANGELOG.md']),
|
||||||
('blender_cloud/icons', glob.glob('blender_cloud/icons/*'))],
|
('blender_cloud/icons', glob.glob('blender_cloud/icons/*'))],
|
||||||
scripts=[],
|
scripts=[],
|
||||||
url='https://developer.blender.org/diffusion/BCA/',
|
url='https://developer.blender.org/diffusion/BCA/',
|
||||||
|
95
tests/test_path_replacement.py
Normal file
95
tests/test_path_replacement.py
Normal file
@@ -0,0 +1,95 @@
|
|||||||
|
"""Unittests for blender_cloud.utils.
|
||||||
|
|
||||||
|
This unittest requires bpy to be importable, so build Blender as a module and install it
|
||||||
|
into your virtualenv. See https://stuvel.eu/files/bconf2016/#/10 for notes how.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import datetime
|
||||||
|
import pathlib
|
||||||
|
import unittest.mock
|
||||||
|
|
||||||
|
import pillarsdk.utils
|
||||||
|
|
||||||
|
from blender_cloud.flamenco import sdk
|
||||||
|
|
||||||
|
|
||||||
|
class PathReplacementTest(unittest.TestCase):
|
||||||
|
def setUp(self):
|
||||||
|
self.test_manager = sdk.Manager({
|
||||||
|
'_created': datetime.datetime(2017, 5, 31, 15, 12, 32, tzinfo=pillarsdk.utils.utc),
|
||||||
|
'_etag': 'c39942ee4bcc4658adcc21e4bcdfb0ae',
|
||||||
|
'_id': '592edd609837732a2a272c62',
|
||||||
|
'_updated': datetime.datetime(2017, 6, 8, 14, 51, 3, tzinfo=pillarsdk.utils.utc),
|
||||||
|
'description': 'Manager formerly known as "testman"',
|
||||||
|
'job_types': {'sleep': {'vars': {}}},
|
||||||
|
'name': '<script>alert("this is a manager")</script>',
|
||||||
|
'owner': '592edd609837732a2a272c63',
|
||||||
|
'path_replacement': {'job_storage': {'darwin': '/Volume/shared',
|
||||||
|
'linux': '/shared',
|
||||||
|
'windows': 's:/'},
|
||||||
|
'render': {'darwin': '/Volume/render/',
|
||||||
|
'linux': '/render/',
|
||||||
|
'windows': 'r:/'},
|
||||||
|
'longrender': {'darwin': '/Volume/render/long',
|
||||||
|
'linux': '/render/long',
|
||||||
|
'windows': 'r:/long'},
|
||||||
|
},
|
||||||
|
'projects': ['58cbdd5698377322d95eb55e'],
|
||||||
|
'service_account': '592edd609837732a2a272c60',
|
||||||
|
'stats': {'nr_of_workers': 3},
|
||||||
|
'url': 'http://192.168.3.101:8083/',
|
||||||
|
'user_groups': ['58cbdd5698377322d95eb55f'],
|
||||||
|
'variables': {'blender': {'darwin': '/opt/myblenderbuild/blender',
|
||||||
|
'linux': '/home/sybren/workspace/build_linux/bin/blender '
|
||||||
|
'--enable-new-depsgraph --factory-startup',
|
||||||
|
'windows': 'c:/temp/blender.exe'}}}
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_linux(self):
|
||||||
|
# (expected result, input)
|
||||||
|
test_paths = [
|
||||||
|
('/doesnotexistreally', '/doesnotexistreally'),
|
||||||
|
('{render}/agent327/scenes/A_01_03_B', '/render/agent327/scenes/A_01_03_B'),
|
||||||
|
('{job_storage}/render/agent327/scenes', '/shared/render/agent327/scenes'),
|
||||||
|
('{longrender}/agent327/scenes', '/render/long/agent327/scenes'),
|
||||||
|
]
|
||||||
|
|
||||||
|
self._do_test(test_paths, 'linux', pathlib.PurePosixPath)
|
||||||
|
|
||||||
|
def test_windows(self):
|
||||||
|
# (expected result, input)
|
||||||
|
test_paths = [
|
||||||
|
('c:/doesnotexistreally', 'c:/doesnotexistreally'),
|
||||||
|
('c:/some/path', r'c:\some\path'),
|
||||||
|
('{render}/agent327/scenes/A_01_03_B', r'R:\agent327\scenes\A_01_03_B'),
|
||||||
|
('{render}/agent327/scenes/A_01_03_B', r'r:\agent327\scenes\A_01_03_B'),
|
||||||
|
('{render}/agent327/scenes/A_01_03_B', r'r:/agent327/scenes/A_01_03_B'),
|
||||||
|
('{job_storage}/render/agent327/scenes', 's:/render/agent327/scenes'),
|
||||||
|
('{longrender}/agent327/scenes', 'r:/long/agent327/scenes'),
|
||||||
|
]
|
||||||
|
|
||||||
|
self._do_test(test_paths, 'windows', pathlib.PureWindowsPath)
|
||||||
|
|
||||||
|
def test_darwin(self):
|
||||||
|
# (expected result, input)
|
||||||
|
test_paths = [
|
||||||
|
('/Volume/doesnotexistreally', '/Volume/doesnotexistreally'),
|
||||||
|
('{render}/agent327/scenes/A_01_03_B', r'/Volume/render/agent327/scenes/A_01_03_B'),
|
||||||
|
('{job_storage}/render/agent327/scenes', '/Volume/shared/render/agent327/scenes'),
|
||||||
|
('{longrender}/agent327/scenes', '/Volume/render/long/agent327/scenes'),
|
||||||
|
]
|
||||||
|
|
||||||
|
self._do_test(test_paths, 'darwin', pathlib.PurePosixPath)
|
||||||
|
|
||||||
|
def _do_test(self, test_paths, platform, pathclass):
|
||||||
|
self.test_manager.PurePlatformPath = pathclass
|
||||||
|
|
||||||
|
def mocked_system():
|
||||||
|
return platform
|
||||||
|
|
||||||
|
with unittest.mock.patch('platform.system', mocked_system):
|
||||||
|
for expected_result, input_path in test_paths:
|
||||||
|
as_path_instance = pathclass(input_path)
|
||||||
|
self.assertEqual(expected_result,
|
||||||
|
self.test_manager.replace_path(as_path_instance),
|
||||||
|
'for input %r on platform %s' % (as_path_instance, platform))
|
@@ -1,15 +1,19 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ -z "$1" ]; then
|
VERSION="${1/version-}"
|
||||||
|
|
||||||
|
if [ -z "$VERSION" ]; then
|
||||||
echo "Usage: $0 new-version" >&2
|
echo "Usage: $0 new-version" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
BL_INFO_VER=$(echo "$1" | sed 's/\./, /g')
|
BL_INFO_VER=$(echo "$VERSION" | sed 's/\./, /g')
|
||||||
|
|
||||||
sed "s/version='[^']*'/version='$1'/" -i setup.py
|
sed "s/version='[^']*'/version='$VERSION'/" -i setup.py
|
||||||
sed "s/'version': ([^)]*)/'version': ($BL_INFO_VER)/" -i blender_cloud/__init__.py
|
sed "s/'version': ([^)]*)/'version': ($BL_INFO_VER)/" -i blender_cloud/__init__.py
|
||||||
|
|
||||||
git diff
|
git diff
|
||||||
echo
|
echo
|
||||||
echo "Don't forget to commit!"
|
echo "Don't forget to commit and tag:"
|
||||||
|
echo git commit -m \'Bumped version to $VERSION\' setup.py blender_cloud/__init__.py
|
||||||
|
echo git tag -a version-$VERSION -m \'Tagged version $VERSION\'
|
||||||
|
Reference in New Issue
Block a user