// ----------------------------------------------------------------------- // // // 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. // // // ----------------------------------------------------------------------- namespace Lucene.Net.Util { using System; /// /// Estimates the size of a given object using a given MemoryModel /// for primitive size information. /// /// /// /// /// Java File: /// lucene/src/java/org/apache/lucene/util/RamUseageEstimator.java /// /// /// /// C# File: /// src/Lucene.Net/Util/RamUsageEstimator.cs /// /// /// /// C# Tests: /// test/Lucene.Net.Test/Util/RamUsageEstimatorTest.cs /// /// /// /// /// Internally uses a Map to temporally hold a reference to every object seen. /// /// /// If checkInterned all strings checked will be interned, but those /// that were not already interned will be released for GC when the /// estimate is complete. /// /// public class RamUsageEstimator { /// /// The number of bytes for an object reference. This will either /// be 8 (64 bit) or 4 (32 bit). /// public static readonly int NumberOfBytesObjectRef = IntPtr.Size; /// /// The number of bytes for a char. /// public const int NumberOfBytesChar = 2; private string temp = string.Empty; /// /// Returns a that represents this instance. /// /// /// A that represents this instance. /// public override string ToString() { return this.temp; } } }