4 CompressSection indicate that all section which in it should be compressed.
6 Copyright (c) 2006, Intel Corporation
7 All rights reserved. This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
18 package org
.tianocore
.framework
.tasks
;
20 import java
.io
.ByteArrayOutputStream
;
21 import java
.io
.DataOutputStream
;
22 import java
.util
.ArrayList
;
23 import java
.util
.Iterator
;
24 import java
.util
.List
;
26 import org
.apache
.tools
.ant
.BuildException
;
32 CompressSection indicate that all section which in it should be compressed.
35 public class CompressSection
implements Section
, FfsTypes
{
37 // The attribute of compressName.
39 String compressName
= "";
41 // The list contained the SectFile element.
43 List
<Object
> SectList
= new ArrayList
<Object
>();
48 This function is to collect all sectFile and compress it , then output
51 @param Buffer The point of output buffer
54 public void toBuffer (DataOutputStream buffer
){
59 // Get section file in compress node.
63 ByteArrayOutputStream bo
= new ByteArrayOutputStream ();
64 DataOutputStream Do
= new DataOutputStream (bo
);
67 // Get each section which under the compress {};
68 // And add it is contains to File;
70 Iterator SectionIter
= SectList
.iterator();
71 while (SectionIter
.hasNext()){
72 sect
= (Section
)SectionIter
.next();
75 // Call each section class's toBuffer function.
80 catch (BuildException e
) {
81 System
.out
.print(e
.getMessage());
82 throw new BuildException ("Compress.toBuffer failed at section");
91 byte[] fileBuffer
= bo
.toByteArray();
92 Compress myCompress
= new Compress(fileBuffer
, fileBuffer
.length
);
95 // Add Compress header
97 CompressHeader Ch
= new CompressHeader();
98 Ch
.SectionHeader
.Size
[0] = (byte)((myCompress
.outputBuffer
.length
+
102 Ch
.SectionHeader
.Size
[1] = (byte)(((myCompress
.outputBuffer
.length
+
106 Ch
.SectionHeader
.Size
[2] = (byte)(((myCompress
.outputBuffer
.length
+
110 Ch
.SectionHeader
.type
= (byte) EFI_SECTION_COMPRESSION
;
113 // Note: The compressName was not efsfective now. Using the
114 // EFI_STANDARD_COMPRSSION for compressType .
115 // That is follow old Genffsfile tools. Some code will be added for
116 // the different compressName;
118 Ch
.UncompressLen
= fileBuffer
.length
;
119 Ch
.CompressType
= EFI_STANDARD_COMPRESSION
;
122 // Change header struct to byte buffer
124 byte [] headerBuffer
= new byte[Ch
.GetSize()];
125 Ch
.StructToBuffer(headerBuffer
);
128 // First add CompressHeader to Buffer, then add Compress data.
130 buffer
.write (headerBuffer
);
131 buffer
.write(myCompress
.outputBuffer
);
134 // Buffer 4 Byte aligment
136 int size
= Ch
.GetSize() + myCompress
.outputBuffer
.length
;
138 while ((size
& 0x03) != 0){
146 //compressOut.delete();
150 throw new BuildException("compress.toBuffer failed!\n");
157 This function is to get compressName.
159 @return The compressName.
161 public String
getCompressName() {
168 This function is to set compressName.
170 @param compressName The string of compressName
172 public void setCompressName(String compressName
) {
173 this.compressName
= compressName
;
179 This function is to add sectFile element to SectList.
181 @param sectFile SectFile element which succeed from section class.
183 public void addSectFile (SectFile sectFile
) {
184 SectList
.add(sectFile
);
191 This function is to add tool element to SectList.
192 @param tool Tool element which succeed from section class.
194 public void addTool (Tool tool
) {