Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/4.0.3/EPPlus-4.0.3/Packaging/ZipPackageRelationshipCollection.cs @ 13397

Last change on this file since 13397 was 12074, checked in by sraggl, 9 years ago

#2341: Added EPPlus-4.0.3 to ExtLibs

File size: 4.2 KB
Line 
1/*******************************************************************************
2 * You may amend and distribute as you like, but don't remove this header!
3 *
4 * EPPlus provides server-side generation of Excel 2007/2010 spreadsheets.
5 * See http://www.codeplex.com/EPPlus for details.
6 *
7 * Copyright (C) 2011  Jan Källman
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
17 * See the GNU Lesser General Public License for more details.
18 *
19 * The GNU Lesser General Public License can be viewed at http://www.opensource.org/licenses/lgpl-license.php
20 * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
21 *
22 * All code and executables are provided "as is" with no warranty either express or implied.
23 * The author accepts no liability for any damage or loss of business that this product may cause.
24 *
25 * Code change notes:
26 *
27 * Author             Change            Date
28 *******************************************************************************
29 * Jan Källman    Added   25-Oct-2012
30 *******************************************************************************/
31using System;
32using System.Collections.Generic;
33using System.Linq;
34using System.Text;
35using Ionic.Zip;
36using System.IO;
37using System.Security;
38using OfficeOpenXml.Packaging.Ionic.Zip;
39
40namespace OfficeOpenXml.Packaging
41{
42    public class ZipPackageRelationshipCollection : IEnumerable<ZipPackageRelationship>
43    {
44        internal protected Dictionary<string, ZipPackageRelationship> _rels = new Dictionary<string, ZipPackageRelationship>(StringComparer.InvariantCultureIgnoreCase);
45        internal void Add(ZipPackageRelationship item)
46        {
47            _rels.Add(item.Id, item);
48        }
49        public IEnumerator<ZipPackageRelationship> GetEnumerator()
50        {
51            return _rels.Values.GetEnumerator();
52        }
53
54        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
55        {
56            return _rels.Values.GetEnumerator();
57        }
58
59        internal void Remove(string id)
60        {
61            _rels.Remove(id);
62        }
63        internal bool ContainsKey(string id)
64        {
65            return _rels.ContainsKey(id);
66        }
67        internal ZipPackageRelationship this[string id]
68        {
69            get
70            {
71                return _rels[id];
72            }
73        }
74        internal ZipPackageRelationshipCollection GetRelationshipsByType(string relationshipType)
75        {
76            var ret = new ZipPackageRelationshipCollection();
77            foreach (var rel in _rels.Values)
78            {
79                if (rel.RelationshipType == relationshipType)
80                {
81                    ret.Add(rel);
82                }
83            }
84            return ret;
85        }
86
87        internal void WriteZip(ZipOutputStream os, string fileName)
88        {
89            StringBuilder xml = new StringBuilder("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><Relationships xmlns=\"http://schemas.openxmlformats.org/package/2006/relationships\">");
90            foreach (var rel in _rels.Values)
91            {
92                xml.AppendFormat("<Relationship Id=\"{0}\" Type=\"{1}\" Target=\"{2}\"{3}/>", SecurityElement.Escape(rel.Id), rel.RelationshipType, SecurityElement.Escape(rel.TargetUri.OriginalString), rel.TargetMode == TargetMode.External ? " TargetMode=\"External\"" : "");
93            }
94            xml.Append("</Relationships>");
95
96            os.PutNextEntry(fileName);
97            byte[] b = Encoding.UTF8.GetBytes(xml.ToString());
98            os.Write(b, 0, b.Length);
99        }
100
101        public int Count
102        {
103            get
104            {
105                return _rels.Count;
106            }
107        }
108    }
109}
Note: See TracBrowser for help on using the repository browser.