-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3D Tilesのglbファイルをgzipで圧縮した状態で表示するオプションを追加 #672
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -2,6 +2,7 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use ahash::{HashMap, HashSet}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use byteorder::{ByteOrder, LittleEndian}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use flate2::{write::GzEncoder, Compression}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use indexmap::IndexSet; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use nusamai_gltf_json::extensions::mesh::ext_mesh_features; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -16,6 +17,7 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pub type Primitives = HashMap<material::Material, PrimitiveInfo>; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
#[allow(clippy::too_many_arguments)] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pub fn write_gltf_glb<W: Write>( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
feedback: &feedback::Feedback, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
writer: W, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -24,6 +26,7 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
primitives: Primitives, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
num_features: usize, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
metadata_encoder: MetadataEncoder, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
gzip_compress: bool, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) -> Result<(), PipelineError> { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
use nusamai_gltf_json::*; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -281,12 +284,25 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
..Default::default() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Write glb to the writer | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
nusamai_gltf::glb::Glb { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
json: serde_json::to_vec(&gltf).unwrap().into(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
bin: Some(bin_content.into()), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if gzip_compress { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Write glb to the writer with gzip compression | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
let mut encoder = GzEncoder::new(writer, Compression::default()); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
nusamai_gltf::glb::Glb { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
json: serde_json::to_vec(&gltf).unwrap().into(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
bin: Some(bin_content.into()), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.to_writer_with_alignment(&mut encoder, 8)?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
encoder.finish()?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Write glb to the writer | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
nusamai_gltf::glb::Glb { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
json: serde_json::to_vec(&gltf).unwrap().into(), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
bin: Some(bin_content.into()), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.to_writer_with_alignment(writer, 8)?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+287
to
+304
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion 圧縮処理の実装について改善の提案 圧縮処理の実装は機能的には問題ありませんが、以下の改善点を提案します:
以下のような実装を提案します: - if gzip_compress {
- // Write glb to the writer with gzip compression
- let mut encoder = GzEncoder::new(writer, Compression::default());
-
- nusamai_gltf::glb::Glb {
- json: serde_json::to_vec(&gltf).unwrap().into(),
- bin: Some(bin_content.into()),
- }
- .to_writer_with_alignment(&mut encoder, 8)?;
-
- encoder.finish()?;
- } else {
- // Write glb to the writer
- nusamai_gltf::glb::Glb {
- json: serde_json::to_vec(&gltf).unwrap().into(),
- bin: Some(bin_content.into()),
- }
- .to_writer_with_alignment(writer, 8)?;
- }
+ let glb = nusamai_gltf::glb::Glb {
+ json: serde_json::to_vec(&gltf).map_err(|e| PipelineError::SerializationError(e.to_string()))?.into(),
+ bin: Some(bin_content.into()),
+ };
+
+ let mut writer = if gzip_compress {
+ Box::new(GzEncoder::new(writer, Compression::default())) as Box<dyn Write>
+ } else {
+ Box::new(writer) as Box<dyn Write>
+ };
+
+ glb.to_writer_with_alignment(&mut writer, 8)?;
+
+ if gzip_compress {
+ writer.flush()?;
+ } この改善により:
📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.to_writer_with_alignment(writer, 8)?; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Ok(()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
大きなenumによるパフォーマンスへの影響を考慮してください
#[allow(clippy::large_enum_variant)]
が使用されていますが、大きなバリアントを含むenumはメモリ消費量が増加し、パフォーマンスに影響を与える可能性があります。大きなバリアントをBox
で包むことで、enumのサイズを小さく抑えることができます。