|
|
|
/* ====================================================================
|
|
|
|
Licensed To the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for Additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file To You under the Apache License, Version 2.0
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed To in writing, software
|
|
|
|
distributed under the License is distributed on an "AS Is" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
==================================================================== */
|
|
|
|
|
|
|
|
using Npoi.Core.POIFS.FileSystem;
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
namespace Npoi.Core.HPSF
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* A version of {@link POIDocument} which allows access to the
|
|
|
|
* HPSF Properties, but no other document contents.
|
|
|
|
* Normally used when you want to read or alter the Document Properties,
|
|
|
|
* without affecting the rest of the file
|
|
|
|
*/
|
|
|
|
|
|
|
|
public class HPSFPropertiesOnlyDocument : POIDocument
|
|
|
|
{
|
|
|
|
public HPSFPropertiesOnlyDocument(NPOIFSFileSystem fs)
|
|
|
|
: base(fs.Root) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public HPSFPropertiesOnlyDocument(POIFSFileSystem fs)
|
|
|
|
: base(fs) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write out, with any properties changes, but nothing else
|
|
|
|
*/
|
|
|
|
|
|
|
|
public override void Write(Stream out1) {
|
|
|
|
POIFSFileSystem fs = new POIFSFileSystem();
|
|
|
|
|
|
|
|
// For tracking what we've written out, so far
|
|
|
|
List<String> excepts = new List<String>(1);
|
|
|
|
|
|
|
|
// Write out our HPFS properties, with any changes
|
|
|
|
WriteProperties(fs, excepts);
|
|
|
|
|
|
|
|
// Copy over everything else unchanged
|
|
|
|
EntryUtils.CopyNodes(directory, fs.Root, excepts);
|
|
|
|
|
|
|
|
// Save the resultant POIFSFileSystem to the output stream
|
|
|
|
fs.WriteFileSystem(out1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|