示例#1
0
        // read the records and check
        /// <exception cref="System.IO.IOException"/>
        private int ReadAndCheckbytes(TFile.Reader.Scanner scanner, int start, int n)
        {
            string value = "value";

            for (int i = start; i < (start + n); i++)
            {
                byte[] key    = ReadKey(scanner);
                byte[] val    = ReadValue(scanner);
                string keyStr = string.Format(localFormatter, i);
                string valStr = value + keyStr;
                Assert.True("btyes for keys do not match " + keyStr + " " + Runtime.GetStringForBytes
                                (key), Arrays.Equals(Runtime.GetBytesForString(keyStr), key));
                Assert.True("bytes for vals do not match " + valStr + " " + Runtime.GetStringForBytes
                                (val), Arrays.Equals(Runtime.GetBytesForString(valStr), val));
                Assert.True(scanner.Advance());
                key = ReadKey(scanner);
                val = ReadValue(scanner);
                Assert.True("btyes for keys do not match", Arrays.Equals(Runtime.GetBytesForString
                                                                             (keyStr), key));
                Assert.True("bytes for vals do not match", Arrays.Equals(Runtime.GetBytesForString
                                                                             (valStr), val));
                Assert.True(scanner.Advance());
            }
            return(start + n);
        }
 /// <exception cref="System.IO.IOException"/>
 internal static void ReadRecords(FileSystem fs, Path path, int count, Configuration
                                  conf)
 {
     TFile.Reader reader = new TFile.Reader(fs.Open(path), fs.GetFileStatus(path).GetLen
                                                (), conf);
     TFile.Reader.Scanner scanner = reader.CreateScanner();
     try
     {
         for (int nx = 0; nx < count; nx++, scanner.Advance())
         {
             NUnit.Framework.Assert.IsFalse(scanner.AtEnd());
             // Assert.assertTrue(scanner.next());
             byte[] kbuf = new byte[BufSize];
             int    klen = scanner.Entry().GetKeyLength();
             scanner.Entry().GetKey(kbuf);
             Assert.Equal(Runtime.GetStringForBytes(kbuf, 0, klen),
                          ComposeSortedKey(Key, nx));
             byte[] vbuf = new byte[BufSize];
             int    vlen = scanner.Entry().GetValueLength();
             scanner.Entry().GetValue(vbuf);
             Assert.Equal(Runtime.GetStringForBytes(vbuf, 0, vlen),
                          Value + nx);
         }
         Assert.True(scanner.AtEnd());
         NUnit.Framework.Assert.IsFalse(scanner.Advance());
     }
     finally
     {
         scanner.Close();
         reader.Close();
     }
 }
示例#3
0
 /// <exception cref="System.IO.IOException"/>
 private int ReadPrepWithUnknownLength(TFile.Reader.Scanner scanner, int start, int
                                       n)
 {
     for (int i = start; i < start; i++)
     {
         string key  = string.Format(localFormatter, i);
         byte[] read = ReadKey(scanner);
         Assert.True("keys not equal", Arrays.Equals(Runtime.GetBytesForString
                                                         (key), read));
         try
         {
             read = ReadValue(scanner);
             Assert.True(false);
         }
         catch (IOException)
         {
         }
         // should have thrown exception
         string value = "value" + key;
         read = ReadLongValue(scanner, Runtime.GetBytesForString(value).Length);
         Assert.True("values nto equal", Arrays.Equals(read, Runtime.GetBytesForString
                                                           (value)));
         scanner.Advance();
     }
     return(start + n);
 }
示例#4
0
 // read large records
 // read them twice since its duplicated
 /// <exception cref="System.IO.IOException"/>
 private int ReadLargeRecords(TFile.Reader.Scanner scanner, int start, int n)
 {
     for (int i = start; i < (start + n); i++)
     {
         byte[] key    = ReadKey(scanner);
         string keyStr = string.Format(localFormatter, i);
         Assert.True("btyes for keys do not match", Arrays.Equals(Runtime.GetBytesForString
                                                                      (keyStr), key));
         scanner.Advance();
         key = ReadKey(scanner);
         Assert.True("btyes for keys do not match", Arrays.Equals(Runtime.GetBytesForString
                                                                      (keyStr), key));
         scanner.Advance();
     }
     return(start + n);
 }
 /// <exception cref="System.IO.IOException"/>
 private void ReadKeyWithoutValue(int recordIndex)
 {
     TFile.Reader reader = new TFile.Reader(fs.Open(path), fs.GetFileStatus(path).GetLen
                                                (), conf);
     TFile.Reader.Scanner scanner = reader.CreateScannerByKey(Runtime.GetBytesForString
                                                                  (ComposeSortedKey(Key, recordIndex)), null);
     try
     {
         // read the indexed key
         byte[] kbuf1 = new byte[BufSize];
         int    klen1 = scanner.Entry().GetKeyLength();
         scanner.Entry().GetKey(kbuf1);
         Assert.Equal(Runtime.GetStringForBytes(kbuf1, 0, klen1
                                                ), ComposeSortedKey(Key, recordIndex));
         if (scanner.Advance() && !scanner.AtEnd())
         {
             // read the next key following the indexed
             byte[] kbuf2 = new byte[BufSize];
             int    klen2 = scanner.Entry().GetKeyLength();
             scanner.Entry().GetKey(kbuf2);
             Assert.Equal(Runtime.GetStringForBytes(kbuf2, 0, klen2
                                                    ), ComposeSortedKey(Key, recordIndex + 1));
         }
     }
     finally
     {
         scanner.Close();
         reader.Close();
     }
 }
示例#6
0
        /// <exception cref="System.IO.IOException"/>
        internal virtual void ReadFile()
        {
            long fileLength = fs.GetFileStatus(path).GetLen();
            int  numSplit   = 10;
            long splitSize  = fileLength / numSplit + 1;

            TFile.Reader reader = new TFile.Reader(fs.Open(path), fs.GetFileStatus(path).GetLen
                                                       (), conf);
            long          offset   = 0;
            long          rowCount = 0;
            BytesWritable key;
            BytesWritable value;

            for (int i = 0; i < numSplit; ++i, offset += splitSize)
            {
                TFile.Reader.Scanner scanner = reader.CreateScannerByByteRange(offset, splitSize);
                int count = 0;
                key   = new BytesWritable();
                value = new BytesWritable();
                while (!scanner.AtEnd())
                {
                    scanner.Entry().Get(key, value);
                    ++count;
                    scanner.Advance();
                }
                scanner.Close();
                Assert.True(count > 0);
                rowCount += count;
            }
            Assert.Equal(rowCount, reader.GetEntryCount());
            reader.Close();
        }
示例#7
0
        /// <summary>test none codecs</summary>
        /// <exception cref="System.IO.IOException"/>
        internal virtual void BasicWithSomeCodec(string codec)
        {
            Path ncTFile            = new Path(Root, "basic.tfile");
            FSDataOutputStream fout = CreateFSOutput(ncTFile);

            TFile.Writer writer = new TFile.Writer(fout, minBlockSize, codec, "memcmp", conf);
            WriteRecords(writer);
            fout.Close();
            FSDataInputStream fin = fs.Open(ncTFile);

            TFile.Reader reader = new TFile.Reader(fs.Open(ncTFile), fs.GetFileStatus(ncTFile
                                                                                      ).GetLen(), conf);
            TFile.Reader.Scanner scanner = reader.CreateScanner();
            ReadAllRecords(scanner);
            scanner.SeekTo(GetSomeKey(50));
            Assert.True("location lookup failed", scanner.SeekTo(GetSomeKey
                                                                     (50)));
            // read the key and see if it matches
            byte[] readKey = ReadKey(scanner);
            Assert.True("seeked key does not match", Arrays.Equals(GetSomeKey
                                                                       (50), readKey));
            scanner.SeekTo(new byte[0]);
            byte[] val1 = ReadValue(scanner);
            scanner.SeekTo(new byte[0]);
            byte[] val2 = ReadValue(scanner);
            Assert.True(Arrays.Equals(val1, val2));
            // check for lowerBound
            scanner.LowerBound(GetSomeKey(50));
            Assert.True("locaton lookup failed", scanner.currentLocation.CompareTo
                            (reader.End()) < 0);
            readKey = ReadKey(scanner);
            Assert.True("seeked key does not match", Arrays.Equals(readKey,
                                                                   GetSomeKey(50)));
            // check for upper bound
            scanner.UpperBound(GetSomeKey(50));
            Assert.True("location lookup failed", scanner.currentLocation.CompareTo
                            (reader.End()) < 0);
            readKey = ReadKey(scanner);
            Assert.True("seeked key does not match", Arrays.Equals(readKey,
                                                                   GetSomeKey(51)));
            scanner.Close();
            // test for a range of scanner
            scanner = reader.CreateScannerByKey(GetSomeKey(10), GetSomeKey(60));
            ReadAndCheckbytes(scanner, 10, 50);
            NUnit.Framework.Assert.IsFalse(scanner.Advance());
            scanner.Close();
            reader.Close();
            fin.Close();
            fs.Delete(ncTFile, true);
        }
示例#8
0
 /// <exception cref="System.IO.IOException"/>
 public virtual bool Next()
 {
     if (scanner.AtEnd())
     {
         return(false);
     }
     TFile.Reader.Scanner.Entry entry = scanner.Entry();
     keyLength = entry.GetKeyLength();
     CheckKeyBuffer(keyLength);
     entry.GetKey(keyBuffer);
     valueLength = entry.GetValueLength();
     CheckValueBuffer(valueLength);
     entry.GetValue(valueBuffer);
     scanner.Advance();
     return(true);
 }
示例#9
0
 /// <exception cref="System.IO.IOException"/>
 private int ReadPrepWithKnownLength(TFile.Reader.Scanner scanner, int start, int
                                     n)
 {
     for (int i = start; i < (start + n); i++)
     {
         string key  = string.Format(localFormatter, i);
         byte[] read = ReadKey(scanner);
         Assert.True("keys not equal", Arrays.Equals(Runtime.GetBytesForString
                                                         (key), read));
         string value = "value" + key;
         read = ReadValue(scanner);
         Assert.True("values not equal", Arrays.Equals(Runtime.GetBytesForString
                                                           (value), read));
         scanner.Advance();
     }
     return(start + n);
 }
示例#10
0
 // read empty keys and values
 /// <exception cref="System.IO.IOException"/>
 private void ReadEmptyRecords(TFile.Reader.Scanner scanner, int n)
 {
     byte[] key       = new byte[0];
     byte[] value     = new byte[0];
     byte[] readKey   = null;
     byte[] readValue = null;
     for (int i = 0; i < n; i++)
     {
         readKey   = ReadKey(scanner);
         readValue = ReadValue(scanner);
         Assert.True("failed to match keys", Arrays.Equals(readKey, key)
                     );
         Assert.True("failed to match values", Arrays.Equals(readValue,
                                                             value));
         Assert.True("failed to advance cursor", scanner.Advance());
     }
 }
示例#11
0
 /// <summary>Returns the owner of the application.</summary>
 /// <returns>the application owner.</returns>
 /// <exception cref="System.IO.IOException"/>
 public virtual string GetApplicationOwner()
 {
     TFile.Reader.Scanner       ownerScanner = reader.CreateScanner();
     AggregatedLogFormat.LogKey key          = new AggregatedLogFormat.LogKey();
     while (!ownerScanner.AtEnd())
     {
         TFile.Reader.Scanner.Entry entry = ownerScanner.Entry();
         key.ReadFields(entry.GetKeyStream());
         if (key.ToString().Equals(ApplicationOwnerKey.ToString()))
         {
             DataInputStream valueStream = entry.GetValueStream();
             return(valueStream.ReadUTF());
         }
         ownerScanner.Advance();
     }
     return(null);
 }
示例#12
0
            /// <summary>Returns ACLs for the application.</summary>
            /// <remarks>
            /// Returns ACLs for the application. An empty map is returned if no ACLs are
            /// found.
            /// </remarks>
            /// <returns>a map of the Application ACLs.</returns>
            /// <exception cref="System.IO.IOException"/>
            public virtual IDictionary <ApplicationAccessType, string> GetApplicationAcls()
            {
                // TODO Seek directly to the key once a comparator is specified.
                TFile.Reader.Scanner       aclScanner            = reader.CreateScanner();
                AggregatedLogFormat.LogKey key                   = new AggregatedLogFormat.LogKey();
                IDictionary <ApplicationAccessType, string> acls = new Dictionary <ApplicationAccessType
                                                                                   , string>();

                while (!aclScanner.AtEnd())
                {
                    TFile.Reader.Scanner.Entry entry = aclScanner.Entry();
                    key.ReadFields(entry.GetKeyStream());
                    if (key.ToString().Equals(ApplicationAclKey.ToString()))
                    {
                        DataInputStream valueStream = entry.GetValueStream();
                        while (true)
                        {
                            string appAccessOp = null;
                            string aclString   = null;
                            try
                            {
                                appAccessOp = valueStream.ReadUTF();
                            }
                            catch (EOFException)
                            {
                                // Valid end of stream.
                                break;
                            }
                            try
                            {
                                aclString = valueStream.ReadUTF();
                            }
                            catch (EOFException e)
                            {
                                throw new YarnRuntimeException("Error reading ACLs", e);
                            }
                            acls[ApplicationAccessType.ValueOf(appAccessOp)] = aclString;
                        }
                    }
                    aclScanner.Advance();
                }
                return(acls);
            }
示例#13
0
 // we still can scan records in an unsorted TFile
 /// <exception cref="System.IO.IOException"/>
 public virtual void TestScan()
 {
     TFile.Reader reader = new TFile.Reader(fs.Open(path), fs.GetFileStatus(path).GetLen
                                                (), conf);
     NUnit.Framework.Assert.IsFalse(reader.IsSorted());
     Assert.Equal((int)reader.GetEntryCount(), 4);
     TFile.Reader.Scanner scanner = reader.CreateScanner();
     try
     {
         // read key and value
         byte[] kbuf = new byte[BufSize];
         int    klen = scanner.Entry().GetKeyLength();
         scanner.Entry().GetKey(kbuf);
         Assert.Equal(Runtime.GetStringForBytes(kbuf, 0, klen),
                      "keyZ");
         byte[] vbuf = new byte[BufSize];
         int    vlen = scanner.Entry().GetValueLength();
         scanner.Entry().GetValue(vbuf);
         Assert.Equal(Runtime.GetStringForBytes(vbuf, 0, vlen),
                      "valueZ");
         scanner.Advance();
         // now try get value first
         vbuf = new byte[BufSize];
         vlen = scanner.Entry().GetValueLength();
         scanner.Entry().GetValue(vbuf);
         Assert.Equal(Runtime.GetStringForBytes(vbuf, 0, vlen),
                      "valueM");
         kbuf = new byte[BufSize];
         klen = scanner.Entry().GetKeyLength();
         scanner.Entry().GetKey(kbuf);
         Assert.Equal(Runtime.GetStringForBytes(kbuf, 0, klen),
                      "keyM");
     }
     finally
     {
         scanner.Close();
         reader.Close();
     }
 }
示例#14
0
        /* Similar to readFile(), tests the scanner created
         * by record numbers rather than the offsets.
         */
        /// <exception cref="System.IO.IOException"/>
        internal virtual void ReadRowSplits(int numSplits)
        {
            TFile.Reader reader = new TFile.Reader(fs.Open(path), fs.GetFileStatus(path).GetLen
                                                       (), conf);
            long totalRecords = reader.GetEntryCount();

            for (int i = 0; i < numSplits; i++)
            {
                long startRec = i * totalRecords / numSplits;
                long endRec   = (i + 1) * totalRecords / numSplits;
                if (i == numSplits - 1)
                {
                    endRec = totalRecords;
                }
                TFile.Reader.Scanner scanner = reader.CreateScannerByRecordNum(startRec, endRec);
                int           count          = 0;
                BytesWritable key            = new BytesWritable();
                BytesWritable value          = new BytesWritable();
                long          x = startRec;
                while (!scanner.AtEnd())
                {
                    Assert.Equal("Incorrect RecNum returned by scanner", scanner.GetRecordNum
                                     (), x);
                    scanner.Entry().Get(key, value);
                    ++count;
                    Assert.Equal("Incorrect RecNum returned by scanner", scanner.GetRecordNum
                                     (), x);
                    scanner.Advance();
                    ++x;
                }
                scanner.Close();
                Assert.True(count == (endRec - startRec));
            }
            // make sure specifying range at the end gives zero records.
            TFile.Reader.Scanner scanner_1 = reader.CreateScannerByRecordNum(totalRecords, -1
                                                                             );
            Assert.True(scanner_1.AtEnd());
        }
示例#15
0
        /// <exception cref="System.IO.IOException"/>
        private void ReadValueWithoutKey(int recordIndex)
        {
            TFile.Reader reader = new TFile.Reader(fs.Open(path), fs.GetFileStatus(path).GetLen
                                                       (), conf);
            TFile.Reader.Scanner scanner = reader.CreateScannerByKey(Runtime.GetBytesForString
                                                                         (ComposeSortedKey(Key, recordIndex)), null);
            byte[] vbuf1 = new byte[BufSize];
            int    vlen1 = scanner.Entry().GetValueLength();

            scanner.Entry().GetValue(vbuf1);
            Assert.Equal(Runtime.GetStringForBytes(vbuf1, 0, vlen1
                                                   ), Value + recordIndex);
            if (scanner.Advance() && !scanner.AtEnd())
            {
                byte[] vbuf2 = new byte[BufSize];
                int    vlen2 = scanner.Entry().GetValueLength();
                scanner.Entry().GetValue(vbuf2);
                Assert.Equal(Runtime.GetStringForBytes(vbuf2, 0, vlen2
                                                       ), Value + (recordIndex + 1));
            }
            scanner.Close();
            reader.Close();
        }
示例#16
0
        public virtual void TestSortedLongWritable()
        {
            Configuration      conf = new Configuration();
            Path               path = new Path(Root, name);
            FileSystem         fs   = path.GetFileSystem(conf);
            FSDataOutputStream @out = fs.Create(path);

            try
            {
                TFile.Writer writer = new TFile.Writer(@out, BlockSize, "gz", jClassLongWritableComparator
                                                       , conf);
                try
                {
                    LongWritable key = new LongWritable(0);
                    for (long i = 0; i < Nentry; ++i)
                    {
                        key.Set(Cube(i - Nentry / 2));
                        DataOutputStream dos = writer.PrepareAppendKey(-1);
                        try
                        {
                            key.Write(dos);
                        }
                        finally
                        {
                            dos.Close();
                        }
                        dos = writer.PrepareAppendValue(-1);
                        try
                        {
                            dos.Write(Runtime.GetBytesForString(BuildValue(i)));
                        }
                        finally
                        {
                            dos.Close();
                        }
                    }
                }
                finally
                {
                    writer.Close();
                }
            }
            finally
            {
                @out.Close();
            }
            FSDataInputStream @in = fs.Open(path);

            try
            {
                TFile.Reader reader = new TFile.Reader(@in, fs.GetFileStatus(path).GetLen(), conf
                                                       );
                try
                {
                    TFile.Reader.Scanner scanner = reader.CreateScanner();
                    long          i     = 0;
                    BytesWritable value = new BytesWritable();
                    for (; !scanner.AtEnd(); scanner.Advance())
                    {
                        scanner.Entry().GetValue(value);
                        Assert.Equal(BuildValue(i), Runtime.GetStringForBytes(
                                         value.GetBytes(), 0, value.GetLength()));
                        ++i;
                    }
                }
                finally
                {
                    reader.Close();
                }
            }
            finally
            {
                @in.Close();
            }
        }