AssetResolutionResolver is started to working.

This commit is contained in:
Syoyo Fujita
2023-09-22 05:49:37 +09:00
parent ab9a8a1c4e
commit 078e865b90
6 changed files with 216 additions and 2 deletions

View File

@@ -1131,6 +1131,7 @@ if(TINYUSDZ_BUILD_EXAMPLES)
add_subdirectory(examples/tydra_to_renderscene)
add_subdirectory(examples/api_tutorial)
add_subdirectory(examples/file_format)
add_subdirectory(examples/asset_resolution)
if (TINYUSDZ_WITH_JSON)
add_subdirectory(examples/usd_to_json)
endif()

View File

@@ -0,0 +1,15 @@
# Assume this cmake is called from tinyusdz root(../../)
set(EXAMPLE_TARGET "asset_resolution_example")
set(TINYUSDZ_API_TUTORIAL_SOURCES
asset-resolution-example.cc
)
add_executable(${EXAMPLE_TARGET} ${TINYUSDZ_API_TUTORIAL_SOURCES})
add_sanitizers(${EXAMPLE_TARGET})
target_include_directories(${EXAMPLE_TARGET} PRIVATE ${PROJECT_SOURCE_DIR}/src)
target_link_libraries(${EXAMPLE_TARGET} tinyusdz_static)
set_target_properties(${EXAMPLE_TARGET} PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}")

View File

@@ -0,0 +1,177 @@
// All-in-one TinyUSDZ core
#include "tinyusdz.hh"
// Import to_string() and operator<< features
#include <iostream>
#include "pprinter.hh"
#include "prim-pprint.hh"
#include "value-pprint.hh"
// Tydra is a collection of APIs to access/convert USD Prim data
// (e.g. Can get Attribute by name)
// See <tinyusdz>/examples/tydra_api for more Tydra API examples.
#include "tydra/scene-access.hh"
std::map<std::string, std::string> g_map;
//
// Read asset(USD) through AssetResolutionResolver(something like a custom
// filesystem handler)
//
// - AssetResolution handler(for AssetResolution::open_asset)
// - resolve
// - size
// - read
//
static int MyARResolve(const char *asset_name,
const std::vector<std::string> &search_paths,
std::string *resolved_asset_name, std::string *err,
void *userdata) {
(void)err;
(void)userdata;
(void)search_paths;
if (!asset_name) {
return -2; // err
}
if (!resolved_asset_name) {
return -2; // err
}
if (g_map.count(asset_name)) {
(*resolved_asset_name) = asset_name;
return 0; // OK
}
return -1; // failed to resolve.
}
// AssetResoltion handlers
static int MyARSize(const char *asset_name, uint64_t *nbytes, std::string *err,
void *userdata) {
(void)userdata;
if (!asset_name) {
if (err) {
(*err) += "asset_name arg is nullptr.\n";
}
return -1;
}
if (!nbytes) {
if (err) {
(*err) += "nbytes arg is nullptr.\n";
}
return -1;
}
if (g_map.count(asset_name)) {
// Use strlen()(length until the first appearance of '\0' character), since
// std::string::size() reports buffer size, not bytes until the first
// appearance of '\0' character.
(*nbytes) = strlen(g_map[asset_name].c_str());
return 0; // OK
}
return -1;
}
int MyARRead(const char *asset_name, uint64_t req_nbytes, uint8_t *out_buf,
uint64_t *nbytes, std::string *err, void *userdata) {
if (!asset_name) {
if (err) {
(*err) += "asset_name arg is nullptr.\n";
}
return -3;
}
if (!nbytes) {
if (err) {
(*err) += "nbytes arg is nullptr.\n";
}
return -3;
}
if (req_nbytes < 9) { // at least 9 bytes(strlen("#usda 1.0")) or more
return -2;
}
if (g_map.count(asset_name)) {
size_t sz = strlen(g_map[asset_name].c_str());
if (sz > req_nbytes) {
if (err) {
(*err) += "Insufficient dst buffer size.\n";
}
return -4;
}
std::cout << "read asset: " << asset_name << "\n";
memcpy(out_buf, &g_map[asset_name][0], sz);
(*nbytes) = sz;
return 0;
}
//
return -1;
}
int main(int argc, char **argv) {
g_map["bora.usda"] = R"(#usda 1.0
def "bora" {
float myval = 3.1
}
)";
g_map["dora.usda"] = R"(#usda 1.0
def "dora" {
float myval = 5.1
}
)";
tinyusdz::Stage stage; // empty scene
std::string input_usd_name = "bora.usda";
if (argc > 1) {
input_usd_name = argv[1];
}
std::string warn, err;
tinyusdz::AssetResolutionResolver resolver;
// Register filesystem handler for `.my` asset.
tinyusdz::AssetResolutionHandler ar_handler;
ar_handler.resolve_fun = MyARResolve;
ar_handler.size_fun = MyARSize;
ar_handler.read_fun = MyARRead;
ar_handler.write_fun = nullptr; // not used in this example.
ar_handler.userdata = nullptr; // not used in this example;
resolver.register_asset_resolution_handler("usda", ar_handler);
tinyusdz::Layer layer;
bool ret = tinyusdz::LoadLayerFromAsset(resolver, input_usd_name, &layer,
&warn, &err);
if (warn.size()) {
std::cout << "WARN:" << warn << "\n";
}
if (!ret) {
std::cerr << "Failed to load asset: " + input_usd_name + "\n";
if (err.size()) {
std::cerr << " " + err + "\n";
}
return -1;
}
// Print USD scene as Ascii.
std::cout << layer << "\n";
return EXIT_SUCCESS;
}

View File

@@ -719,7 +719,10 @@ class AsciiParser {
bool IsSupportedPrimType(const std::string &ty);
bool IsSupportedAPISchema(const std::string &ty);
bool Eof() { return _sr->eof(); }
bool Eof() {
// end of buffer, or current char is nullchar('\0')
return _sr->eof() || _sr->is_nullchar();
}
bool ParseRelationship(Relationship *result);
bool ParseProperties(std::map<std::string, Property> *props,

View File

@@ -346,6 +346,15 @@ class StreamReader {
uint64_t tell() const { return uint64_t(idx_); }
bool eof() const { return idx_ >= length_; }
bool is_nullchar() const {
if (idx_ < length_) {
return binary_[idx_] == '\0';
}
// TODO: report true when eof()?
return false;
}
const uint8_t *data() const { return binary_; }
bool swap_endian() const { return swap_endian_; }

View File

@@ -993,14 +993,23 @@ bool LoadUSDALayerFromMemory(const uint8_t *addr, const size_t length,
(void)options;
if (!addr) {
if (err) {
(*err) += "addr arg is nullptr.\n";
}
return false;
}
if (length < 4) {
if (length < 9) {
if (err) {
(*err) += "Input too short.\n";
}
return false;
}
if (!dst_layer) {
if (err) {
(*err) += "dst_layher arg is nullptr.\n";
}
return false;
}