All Projects → PeregrineLabs → Ecosystem

PeregrineLabs / Ecosystem

Licence: other
A cross-platform environment management system for VFX/animation production plus R&D

Labels

Projects that are alternatives of or similar to Ecosystem

Metabench
A simple framework for compile-time benchmarks
Stars: ✭ 146 (-8.18%)
Mutual labels:  cmake
Jinx
Embeddable scripting language for real-time applications
Stars: ✭ 150 (-5.66%)
Mutual labels:  cmake
Cppbase
Boilerplate for a simple CMake-based C++ project
Stars: ✭ 156 (-1.89%)
Mutual labels:  cmake
Polyfem
A polyvalent C++ FEM library
Stars: ✭ 147 (-7.55%)
Mutual labels:  cmake
Pmm
It's the C++ Package Manager Manager
Stars: ✭ 150 (-5.66%)
Mutual labels:  cmake
Cmake Precompiled Header
Visual Studio and GCC precompiled header macro for CMake
Stars: ✭ 153 (-3.77%)
Mutual labels:  cmake
Moderncppstarter
🚀 Kick-start your C++! A template for modern C++ projects using CMake, CI, code coverage, clang-format, reproducible dependency management and much more.
Stars: ✭ 2,381 (+1397.48%)
Mutual labels:  cmake
Mini Cmake Qt
A minimal CMake template for Qt 5 & 6 projects
Stars: ✭ 156 (-1.89%)
Mutual labels:  cmake
Androidsecurity
Android安全实践
Stars: ✭ 150 (-5.66%)
Mutual labels:  cmake
Crosswindow
💻📱 A cross platform system abstraction library written in C++ for managing windows and performing OS tasks.
Stars: ✭ 155 (-2.52%)
Mutual labels:  cmake
Ffmpeg Video Player
An FFmpeg and SDL Tutorial.
Stars: ✭ 149 (-6.29%)
Mutual labels:  cmake
Arm Cmake Toolchains
CMake toolchain configurations for ARM
Stars: ✭ 148 (-6.92%)
Mutual labels:  cmake
Simpleai
SimpleAI is a small C++ AI behaviour tree based library with a QT5 based remote debugger (and with optional LUA bindings) released under MIT.
Stars: ✭ 153 (-3.77%)
Mutual labels:  cmake
Node
Credits Node is the main module that provide an opportunity to run a node and participate in CREDITS blockchain network.
Stars: ✭ 147 (-7.55%)
Mutual labels:  cmake
Whatsapp For Linux
An unofficial WhatsApp desktop application for Linux.
Stars: ✭ 155 (-2.52%)
Mutual labels:  cmake
Go Static Linking
Demo of how to static link a c library to some go code.
Stars: ✭ 145 (-8.81%)
Mutual labels:  cmake
Cython Cmake Example
Utilities and example for using CMake to build Cython modules - migrated to scikit-build
Stars: ✭ 151 (-5.03%)
Mutual labels:  cmake
Hunter
No description, website, or topics provided.
Stars: ✭ 1,882 (+1083.65%)
Mutual labels:  cmake
Coolq Cpp Sdk
CoolQ C++ SDK
Stars: ✭ 157 (-1.26%)
Mutual labels:  cmake
Swift Build
Alternate Swift Builds
Stars: ✭ 156 (-1.89%)
Mutual labels:  cmake

Ecosystem

Ecosystem is a cross-platform environment management system from Peregrine Labs originally developed for VFX/Animation production R&D but could be used in any situation where a fine understanding of your working environment is important (and it really should be!).

Why

Although it may seem like a simple task it's still very common to find that many of the studios we work with don't have control over their environment which is the root of many problems (wrong versions of software being accessed, wrong shared object versions, incompatible versions, etc.). Our hope is that Ecosystem may be used to not just solve these problems but improve workflow in general.

The toolset works extremely well in house, but the assumptions we've made may not fit into every workflow or pipeline - our hope is that studios interested in using Ecosystem provide feedback to make it more flexible so it is more general in scope.

For more information on the design concepts refer to our presentation from the 2012 TDForum conference - Building and Leveraging a Cross Platform VFX/Animation Development Environment

Details

There are many situations where you may be required to work on multiple versions of the same software and/or share data between applications that are likely very pedantic about compatibility, most of the time this can all be controlled via environment variables in a shell. Manually setting the environment variables and/or making sure dependencies are correctly resolved is generally out of the question, this is where Ecosystem comes in.

Each instance of a tool has a .env file which defines the products base name, version and how the environment should look - "optional" parameters can be included to change the way the environment is resolved if other tools are present.

With this library of tools and versions the ecosystem.py script is then used within a clean environment (ie. only the bare minimum of variables set) to resolve dependencies and set the environment in a state where the requests tools may be used together.

For example:

eneed maya2014,vray3.05,yeti1.3.10

will give me a working environment where maya will execute Maya 2014 and both Yeti 1.3.10 and Vray 3.05 will be correctly configured.

Ecosystem has been developed to be cross platform so the above works on Linux, Osx and Windows.

Although the intention is for Ecosystem to be used from a shell, the .py source is written in such a way that it would be easy to embed into a GUI application to have a more visual launcher.

Getting Started

We've recently updated how Ecosystem which allows it to be used both from the command line and as a python module, it requires Python 2.7 or higher and pip can/should now be used to install it system wide.

Once you've cloned the repository you can use pip to install, at Peregrine Labs we use the -e option to maintain Ecosystem in development mode to propagate changes quickly.

From the directory which Ecosystem was cloned into you can run (assuming you cloned into the default Ecosystem directory )

pip install ecosystem

or

pip install -e Ecosystem

if you'd like to maintain a live "developer mode" link to the local repository - keep in mind you may need to have Administrator access to do so.

All that is left is to create a few environment variables (once!) so Ecosystem knows where to find the .env files and to help resolve some of the dependencies.

ECO_ROOT is the ecosystem directory within the local cloned repository
ECO_ENV is the directory that contains all of the .env tool files (this is very likely $ECO_ROOT/env)
PATH the Ecosystem /bin directory will need to be added
PG_SW_BASE is used in the .env tool files and is the mount point for many of the tool installations (so you can have shared or local installations)

We generally have local installations of all our software, so ours look like

setenv ECO_ROOT ~/dev/Ecosystem/ecosystem
setenv ECO_ENV ${ECO_ROOT}/env
setenv PATH ${ECO_ROOT}/bin:${PATH}
setenv PG_SW_BASE /base/sw/

On Linux and Osx you will also want to

source ${ECO_ROOT}/etc/ecosystem.aliases

which provides some functional aliases.

Windows is a slightly different beast, there is a eco.cmd file that wraps ecosystem.py - unlike linux and osx the environment is only temporarily set (if someone has a work around please let us know). Using the example above one would do

eco -t maya2014,vray3.05,yeti1.3.0 -r maya

to start maya with the intended environment.

Updating

When a new version of Ecosystem is available you can use

git pull origin 

to update your local repository, followed by

pip install Ecosystem --upgrade

or

pip install -e Ecosystem --upgrade 

which will update your site-packages with the newer release.

Tool Environments

For Ecosystem to work you need to set the ECO_ENV environment variable to a directory location that contains the required .env files. Our in house repo is public and can be accessed at https://github.com/PeregrineLabs/Ecosystem-Env - to get started this can be cloned to give you an example of how you might set up commong VFX/animation applications.

Each .env file contains a python dictionary with specific key words to control how Ecosystem resolves the tools needs.

Here is an example:

{
'tool': 'maya', # base name for the tool
'version': '2014',	# version
'platforms': [ 'windows', 'linux', 'darwin' ],	# supported platforms
'requires': [  ],	# a list of requirements, if any
'environment':	# the environment
	{
	'MAYA_VERSION': '2014',
	'MAYA_LOCATION': { 'darwin': '/Applications/Autodesk/maya${MAYA_VERSION}/Maya.app/Contents', # embeded dictionaries may be used to define platform specific values
						'linux': '/usr/autodesk/maya${MAYA_VERSION}-x64',
						'windows': 'C:/Program Files/Autodesk/Maya${MAYA_VERSION}', },
	'PATH': { 'darwin': '${MAYA_LOCATION}/bin',
				'linux': '${MAYA_LOCATION}/bin',
				'windows': '${MAYA_LOCATION}/bin;C:/Program Files/Common Files/Autodesk Shared/;C:/Program Files (x86)/Autodesk/Backburner/', },
	'DYLD_LIBRARY_PATH': { 'darwin': '${MAYA_LOCATION}/MacOS', },
	},
	'optional': { 'dev':	# optional environment variables based on other tools being requested
					{
	'MAYA_DEV_BUILDS': '${DEV_BUILDS}',
	'PATH': { 'darwin': '${MAYA_DEV_BUILDS}',
				'linux': '${MAYA_DEV_BUILDS}',
				'windows': '${MAYA_DEV_BUILDS}', },
	'MAYA_SCRIPT_PATH': '${MAYA_DEV_BUILDS}/mel',
	'MAYA_SHELF_PATH': '${MAYA_DEV_BUILDS}/shelves',
	'XBMLANGPATH': '${MAYA_DEV_BUILDS}/icons',
	'MAYA_PLUG_IN_PATH': '${MAYA_DEV_BUILDS}',
	'MI_CUSTOM_SHADER_PATH': '${MAYA_DEV_BUILDS}',
					},
				 },
}

The key words are self explanatory, as you can see each environment file expects the tool to be installed in a specific location. Some applications (like Maya) are generally installed in common locations (though can be installed on a network) where others are much more flexible. It is suggested that you review the .env files for the tools you may want to use to review the expected location.

We've tried hard to keep all off the tools installed under PG_SW_BASE using the vendors name and then product version. Although this may be slightly non-standard the benefits greatly outweigh any downside.

Directory Assumptions

For Ecosystem to work at your studio you may need to conform to how the .env files have been created (or create your own) thus having software installed in similar locations. For some tools we assume their default installation location (ie. Maya) and for others we try and install them into a central location with the root being

PG_SW_BASE 

thus allowing it to be either a local file system or a network mount.

Please email the list below if it's not completely obvious where Ecosystem is looking for installed software, based on your feedback we can update this introduction to help others.

Using CMake

We've recently pushed all of our CMake files into the repository with the aim in helping others get started with cross platform VFX development. This also includes template CMakeList files for various applications.

Development

Ecosystem in some form has been used for quite some time within Peregrine Labs though it has been extracted from a much larger system used to manage distributed workflow that wouldn't have leant itself as well to an open source project (remote push/pull from specific servers). With that said, if there is interest we would love to eventually evolve Ecosystem to create a more generic means of packaging up dependencies and depolying them along with environment management.

There may still be some Peregrine specific cruft in the initial distribution that will need to be resolved, please bear with us!

Please use the GitHub issue tracker to report issues and if you've made fixes/improvements feel free to send us a Pull Request.

Discussion

We have a ecosystem-env discussion list to share feedback and ask questions.

Contributors

  • Peregrine Labs - Colin Doncaster and Simon Broadhead
  • Axis Animation - Jason Fairley
  • you - please fork, enhance, update, improve and send us a pull request!
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].