Index of Functions: A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X 
Index Page
cspice_dlabfs

Table of contents
Abstract
I/O
Parameters
Examples
Particulars
Exceptions
Files
Restrictions
Required_Reading
Literature_References
Author_and_Institution
Version
Index_Entries

Abstract


   CSPICE_DLABFS begins a forward segment search in a DLA file.

I/O


   Given:

      handle    the DAS integer handle associated with the file to be
                searched. This handle is used to identify the file in
                subsequent calls to other DLA or DAS routines.

                [1,1] = size(handle); int32 = class(handle)

   the call:

      [dladsc, found] = cspice_dlabfs( handle )

   returns:

      dladsc    the descriptor of the first DLA segment in the file
                associated with `handle'. `dladsc' is valid only if the
                output argument `found' is true.

                [SPICE_DLA_DSCSIZ,1] = size(dladsc); int32 = class(dladsc)

      found     a logical flag indicating whether a segment was found.
                `found' has the value true if a segment was found;
                otherwise `found' is false.

                [1,1] = size(found); logical = class(found)

Parameters


   SPICE_DLA_DSCSIZ

               is the size of a SPICELIB DLA descriptor, defined in
               MiceDLA.m.

Examples


   Any numerical results shown for this example may differ between
   platforms as the results depend on the SPICE kernels used as input
   and the machine specific arithmetic implementation.

   1) Open a DLA file for read access, traverse the segment
      list from front to back, and display segment address
      and size attributes.

      Example code begins here.


      function dlabfs_ex1()

         MiceUser

         %
         % Prompt for the name of the file to search.
         %
         fname = input( 'Name of DLA file > ', 's' );

         %
         % Open the DSK file for read access.
         % We use the DAS-level interface for
         % this function.
         %
         handle = cspice_dasopr( fname );

         %
         % Begin a forward search through the
         % kernel, treating the file as a DLA.
         % In this example, it's a very short
         % search.
         %
         segno = 1;

         [dladsc, found] = cspice_dlabfs( handle );

         while  found

            %
            % Display the contents of the current segment
            % descriptor.
            %
            fprintf('\n\n')
            fprintf('Segment number = %d\n', segno )
            fprintf('\n')
            fprintf('   Backward segment pointer         = %d\n', ...
                                       dladsc(SPICE_DLA_BWDIDX) )
            fprintf('   Forward segment pointer          = %d\n', ...
                                       dladsc(SPICE_DLA_FWDIDX) )
            fprintf('   Integer component base address   = %d\n', ...
                                       dladsc(SPICE_DLA_IBSIDX) )
            fprintf('   Integer component size           = %d\n', ...
                                       dladsc(SPICE_DLA_ISZIDX) )
            fprintf('   D.p. component base address      = %d\n', ...
                                       dladsc(SPICE_DLA_DBSIDX) )
            fprintf('   D.p. component size              = %d\n', ...
                                       dladsc(SPICE_DLA_DSZIDX) )
            fprintf('   Character component base address = %d\n', ...
                                       dladsc(SPICE_DLA_CBSIDX) )
            fprintf('   Character component size         = %d\n', ...
                                       dladsc(SPICE_DLA_CSZIDX) )
            fprintf('\n')
            %
            % Find the next segment.
            %
            current = dladsc;
            segno = segno + 1;

            [dladsc, found] = cspice_dlafns( handle, current );

         end

         %
         % Close file.
         %
         cspice_dascls( handle )


      When this program was executed on a Mac/Intel/Octave5.x/64-bit
      platform, using the DSK file named phobos512.bds, the output
      was:


      Name of DLA file > phobos512.bds


      Segment number = 1

         Backward segment pointer         = -1
         Forward segment pointer          = -1
         Integer component base address   = 11
         Integer component size           = 29692614
         D.p. component base address      = 0
         D.p. component size              = 4737076
         Character component base address = 0
         Character component size         = 0


Particulars


   DLA files are built using the DAS low-level format; DLA files are
   a specialized type of DAS file in which data are organized as a
   doubly linked list of segments. Each segment's data belong to
   contiguous components of character, double precision, and integer
   type.

   This routine supports forward traversal of a DLA file's segment
   list. Note that it is not necessary to call this routine to
   conduct a forward traversal; all that is necessary is to have
   access to the first descriptor in the file, which this routine
   provides.

Exceptions


   1)  If the input file handle is invalid, an error is signaled by a
       routine in the call tree of this routine.

   2)  If an error occurs while reading the DLA file, the error
       is signaled by a routine in the call tree of this
       routine.

   3)  If the input argument `handle' is undefined, an error is
       signaled by the Matlab error handling system.

   4)  If the input argument `handle' is not of the expected type, or
       it does not have the expected dimensions and size, an error is
       signaled by the Mice interface.

Files


   See description of input argument `handle'.

Restrictions


   None.

Required_Reading


   MICE.REQ
   DAS.REQ
   DSK.REQ

Literature_References


   None.

Author_and_Institution


   N.J. Bachman        (JPL)
   J. Diaz del Rio     (ODC Space)
   E.D. Wright         (JPL)

Version


   -Mice Version 1.1.0, 23-JUL-2021 (EDW) (JDR)

       Added -Parameters, -Exceptions, -Files, -Restrictions,
       -Literature_References and -Author_and_Institution sections.

       Edited the header to comply with NAIF standard. Modified
       code example to prompt for input DLA file.

       Eliminated use of "lasterror" in rethrow.

       Removed reference to the function's corresponding CSPICE header from
       -Required_Reading section.

   -Mice Version 1.0.1, 20-APR-2016 (EDW)

       Edit to example code to use MiceUser.m.

   -Mice Version 1.0.0, 05-MAY-2014 (NJB) (EDW)

Index_Entries


   begin forward search in DLA file


Fri Dec 31 18:44:23 2021