Support for "System" extensions as an alternative to the current "User" extensions repository. The purpose of this change is to support bundling extensions for offline work or in environments where users setting up thier own extensions isn't desirable, see #122512. Details: The default "System" repository on Linux will for example use: - `/usr/share/blender/4.2/extensions/{system}` For system installs. - `./4.2/extensions/{system}` For portable installs. - Blender's default startup now has a "System" repository which users or administrators may populate. - Repositories can select between User/System paths, setting a custom path overrides overrides this setting. - Add "BLENDER_SYSTEM_EXTENSIONS" (matching "BLENDER_LOCAL_EXTENSIONS"). Ref !122832
189 lines
6.1 KiB
C++
189 lines
6.1 KiB
C++
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
#pragma once
|
|
|
|
/** \file
|
|
* \ingroup bke
|
|
*
|
|
* \note on naming: typical _get() suffix is omitted here,
|
|
* since its the main purpose of the API.
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
#include "BLI_compiler_attrs.h"
|
|
|
|
struct ListBase;
|
|
|
|
/**
|
|
* Sanity check to ensure correct API use in debug mode.
|
|
*
|
|
* Run this once the first level of arguments has been passed so we can be sure
|
|
* `--env-system-datafiles`, and other `--env-*` arguments has been passed.
|
|
*
|
|
* Without this any callers to this module that run early on,
|
|
* will miss out on changes from parsing arguments.
|
|
*/
|
|
void BKE_appdir_init();
|
|
void BKE_appdir_exit();
|
|
|
|
/**
|
|
* Get the folder that's the "natural" starting point for browsing files on an OS.
|
|
* - Unix: `$HOME`
|
|
* - Windows: `%userprofile%/Documents`
|
|
*
|
|
* \note On Windows `Users/{MyUserName}/Documents` is used as it's the default location to save
|
|
* documents.
|
|
*/
|
|
const char *BKE_appdir_folder_default() ATTR_WARN_UNUSED_RESULT;
|
|
const char *BKE_appdir_folder_root() ATTR_WARN_UNUSED_RESULT ATTR_RETURNS_NONNULL;
|
|
const char *BKE_appdir_folder_default_or_root() ATTR_WARN_UNUSED_RESULT ATTR_RETURNS_NONNULL;
|
|
/**
|
|
* Get the user's home directory, i.e.
|
|
* - Unix: `$HOME`
|
|
* - Windows: `%userprofile%`
|
|
*/
|
|
const char *BKE_appdir_folder_home();
|
|
/**
|
|
* Get the user's document directory, i.e.
|
|
* - Linux: `$HOME/Documents`
|
|
* - Windows: `%userprofile%/Documents`
|
|
*
|
|
* If this can't be found using OS queries (via Ghost), try manually finding it.
|
|
*
|
|
* \returns True if the path is valid and points to an existing directory.
|
|
*/
|
|
bool BKE_appdir_folder_documents(char *dir) ATTR_NONNULL(1) ATTR_WARN_UNUSED_RESULT;
|
|
/**
|
|
* Get the user's cache directory, i.e.
|
|
* - Linux: `$HOME/.cache/blender/`
|
|
* - Windows: `%USERPROFILE%\AppData\Local\Blender Foundation\Blender\`
|
|
* - MacOS: `/Library/Caches/Blender`
|
|
*
|
|
* \returns True if the path is valid. It doesn't create or checks format
|
|
* if the `blender` folder exists. It does check if the parent of the path exists.
|
|
*/
|
|
bool BKE_appdir_folder_caches(char *r_path, size_t r_path_maxncpy) ATTR_NONNULL(1);
|
|
/**
|
|
* Get a folder out of the \a folder_id presets for paths.
|
|
*
|
|
* \param subfolder: The name of a directory to check for,
|
|
* this may contain path separators but must resolve to a directory, checked with #BLI_is_dir.
|
|
* \return The path if found, NULL string if not.
|
|
*/
|
|
bool BKE_appdir_folder_id_ex(int folder_id,
|
|
const char *subfolder,
|
|
char *path,
|
|
size_t path_maxncpy);
|
|
std::optional<std::string> BKE_appdir_folder_id(int folder_id,
|
|
const char *subfolder) ATTR_WARN_UNUSED_RESULT;
|
|
/**
|
|
* Returns the path to a folder in the user area, creating it if it doesn't exist.
|
|
*/
|
|
std::optional<std::string> BKE_appdir_folder_id_create(int folder_id, const char *subfolder)
|
|
ATTR_WARN_UNUSED_RESULT;
|
|
/**
|
|
* Returns the path to a folder in the user area without checking that it actually exists first.
|
|
*/
|
|
std::optional<std::string> BKE_appdir_folder_id_user_notest(int folder_id, const char *subfolder)
|
|
ATTR_WARN_UNUSED_RESULT;
|
|
/**
|
|
* Returns the path of the top-level version-specific local, user or system directory.
|
|
* If check_is_dir, then the result will be NULL if the directory doesn't exist.
|
|
*/
|
|
std::optional<std::string> BKE_appdir_resource_path_id_with_version(int folder_id,
|
|
bool check_is_dir,
|
|
int version);
|
|
std::optional<std::string> BKE_appdir_resource_path_id(int folder_id, bool check_is_dir);
|
|
|
|
/**
|
|
* Return true if templates exist
|
|
*/
|
|
bool BKE_appdir_app_template_any();
|
|
bool BKE_appdir_app_template_id_search(const char *app_template, char *path, size_t path_maxncpy)
|
|
ATTR_NONNULL(1);
|
|
bool BKE_appdir_app_template_has_userpref(const char *app_template) ATTR_NONNULL(1);
|
|
void BKE_appdir_app_templates(ListBase *templates) ATTR_NONNULL(1);
|
|
|
|
/**
|
|
* Initialize path to program executable.
|
|
*/
|
|
void BKE_appdir_program_path_init(const char *argv0) ATTR_NONNULL(1);
|
|
|
|
/**
|
|
* Path to executable
|
|
*/
|
|
const char *BKE_appdir_program_path() ATTR_WARN_UNUSED_RESULT ATTR_RETURNS_NONNULL;
|
|
/**
|
|
* Path to directory of executable
|
|
*/
|
|
const char *BKE_appdir_program_dir() ATTR_WARN_UNUSED_RESULT ATTR_RETURNS_NONNULL;
|
|
|
|
/**
|
|
* Gets a good default directory for fonts.
|
|
*/
|
|
bool BKE_appdir_font_folder_default(char *dir, size_t dir_maxncpy);
|
|
|
|
/**
|
|
* Find Python executable.
|
|
*/
|
|
bool BKE_appdir_program_python_search(char *fullpath,
|
|
size_t fullpath_len,
|
|
int version_major,
|
|
int version_minor) ATTR_NONNULL(1);
|
|
|
|
/**
|
|
* Initialize path to temporary directory.
|
|
*/
|
|
void BKE_tempdir_init(const char *userdir);
|
|
|
|
/**
|
|
* Path to persistent temporary directory (with trailing slash)
|
|
*/
|
|
const char *BKE_tempdir_base() ATTR_WARN_UNUSED_RESULT ATTR_RETURNS_NONNULL;
|
|
/**
|
|
* Path to temporary directory (with trailing slash)
|
|
*/
|
|
const char *BKE_tempdir_session() ATTR_WARN_UNUSED_RESULT ATTR_RETURNS_NONNULL;
|
|
/**
|
|
* Delete content of this instance's temp dir.
|
|
*/
|
|
void BKE_tempdir_session_purge();
|
|
|
|
/* folder_id */
|
|
enum {
|
|
/* general, will find based on user/local/system priority */
|
|
BLENDER_DATAFILES = 2,
|
|
|
|
/* user-specific */
|
|
BLENDER_USER_CONFIG = 31,
|
|
BLENDER_USER_DATAFILES = 32,
|
|
BLENDER_USER_SCRIPTS = 33,
|
|
BLENDER_USER_EXTENSIONS = 34,
|
|
|
|
/* system */
|
|
BLENDER_SYSTEM_DATAFILES = 52,
|
|
BLENDER_SYSTEM_SCRIPTS = 53,
|
|
BLENDER_SYSTEM_EXTENSIONS = 54,
|
|
BLENDER_SYSTEM_PYTHON = 55,
|
|
};
|
|
|
|
/** For #BKE_appdir_folder_id_version only. */
|
|
enum {
|
|
BLENDER_RESOURCE_PATH_USER = 0,
|
|
BLENDER_RESOURCE_PATH_LOCAL = 1,
|
|
BLENDER_RESOURCE_PATH_SYSTEM = 2,
|
|
};
|
|
|
|
#define BLENDER_STARTUP_FILE "startup.blend"
|
|
#define BLENDER_USERPREF_FILE "userpref.blend"
|
|
#define BLENDER_QUIT_FILE "quit.blend"
|
|
#define BLENDER_BOOKMARK_FILE "bookmarks.txt"
|
|
#define BLENDER_HISTORY_FILE "recent-files.txt"
|
|
#define BLENDER_RECENT_SEARCHES_FILE "recent-searches.txt"
|
|
#define BLENDER_PLATFORM_SUPPORT_FILE "platform_support.txt"
|