~ubuntu-branches/ubuntu/saucy/monodevelop/saucy

« back to all changes in this revision

Viewing changes to external/ngit/NGit/NGit.Storage.Pack/StoredObjectRepresentation.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2012-05-27 18:08:20 UTC
  • mfrom: (1.8.5) (1.5.8 sid)
  • Revision ID: package-import@ubuntu.com-20120527180820-f1ub6lhg0s50wci1
Tags: 3.0.2+dfsg-3
* [fcecfe7] Fix monodevelop-core-addins.pc.in to point to actual 
  installed location of assemblies.
* [26e1a07] DebSrc 3.0 does not support Quilt's -p parameter, so 
  manually adjust the path in the patch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
This code is derived from jgit (http://eclipse.org/jgit).
 
3
Copyright owners are documented in jgit's IP log.
 
4
 
 
5
This program and the accompanying materials are made available
 
6
under the terms of the Eclipse Distribution License v1.0 which
 
7
accompanies this distribution, is reproduced below, and is
 
8
available at http://www.eclipse.org/org/documents/edl-v10.php
 
9
 
 
10
All rights reserved.
 
11
 
 
12
Redistribution and use in source and binary forms, with or
 
13
without modification, are permitted provided that the following
 
14
conditions are met:
 
15
 
 
16
- Redistributions of source code must retain the above copyright
 
17
  notice, this list of conditions and the following disclaimer.
 
18
 
 
19
- Redistributions in binary form must reproduce the above
 
20
  copyright notice, this list of conditions and the following
 
21
  disclaimer in the documentation and/or other materials provided
 
22
  with the distribution.
 
23
 
 
24
- Neither the name of the Eclipse Foundation, Inc. nor the
 
25
  names of its contributors may be used to endorse or promote
 
26
  products derived from this software without specific prior
 
27
  written permission.
 
28
 
 
29
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
 
30
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
 
31
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
32
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
33
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 
34
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
35
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 
36
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
37
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 
38
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 
39
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
40
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 
41
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
42
*/
 
43
 
 
44
using NGit;
 
45
using NGit.Storage.Pack;
 
46
using Sharpen;
 
47
 
 
48
namespace NGit.Storage.Pack
 
49
{
 
50
        /// <summary>
 
51
        /// An object representation
 
52
        /// <see cref="PackWriter">PackWriter</see>
 
53
        /// can consider for packing.
 
54
        /// </summary>
 
55
        public class StoredObjectRepresentation
 
56
        {
 
57
                /// <summary>
 
58
                /// Special unknown value for
 
59
                /// <see cref="GetWeight()">GetWeight()</see>
 
60
                /// .
 
61
                /// </summary>
 
62
                public const int WEIGHT_UNKNOWN = int.MaxValue;
 
63
 
 
64
                /// <summary>Stored in pack format, as a delta to another object.</summary>
 
65
                /// <remarks>Stored in pack format, as a delta to another object.</remarks>
 
66
                public const int PACK_DELTA = 0;
 
67
 
 
68
                /// <summary>Stored in pack format, without delta.</summary>
 
69
                /// <remarks>Stored in pack format, without delta.</remarks>
 
70
                public const int PACK_WHOLE = 1;
 
71
 
 
72
                /// <summary>Only available after inflating to canonical format.</summary>
 
73
                /// <remarks>Only available after inflating to canonical format.</remarks>
 
74
                public const int FORMAT_OTHER = 2;
 
75
 
 
76
                /// <returns>
 
77
                /// relative size of this object's packed form. The special value
 
78
                /// <see cref="WEIGHT_UNKNOWN">WEIGHT_UNKNOWN</see>
 
79
                /// can be returned to indicate the
 
80
                /// implementation doesn't know, or cannot supply the weight up
 
81
                /// front.
 
82
                /// </returns>
 
83
                public virtual int GetWeight()
 
84
                {
 
85
                        return WEIGHT_UNKNOWN;
 
86
                }
 
87
 
 
88
                /// <returns>
 
89
                /// true if this is a delta against another object and this is stored
 
90
                /// in pack delta format.
 
91
                /// </returns>
 
92
                public virtual int GetFormat()
 
93
                {
 
94
                        return FORMAT_OTHER;
 
95
                }
 
96
 
 
97
                /// <returns>
 
98
                /// identity of the object this delta applies to in order to recover
 
99
                /// the original object content. This method should only be called if
 
100
                /// <see cref="GetFormat()">GetFormat()</see>
 
101
                /// returned
 
102
                /// <see cref="PACK_DELTA">PACK_DELTA</see>
 
103
                /// .
 
104
                /// </returns>
 
105
                public virtual ObjectId GetDeltaBase()
 
106
                {
 
107
                        return null;
 
108
                }
 
109
        }
 
110
}