Sha256: 5541b042d22dce6f21a0673ffb5d8fcbf99adc124de4c360959100d472f4fce9

Contents?: true

Size: 1.6 KB

Versions: 36

Compression:

Stored size: 1.6 KB

Contents

module RubySMB
  module Fscc
    module FileInformation
      # The FileRenameInformation Class as defined in
      # [2.4.34.2 FileRenameInformation](https://msdn.microsoft.com/en-us/library/cc704597.aspx)
      class FileRenameInformation < BinData::Record
        CLASS_LEVEL = FileInformation::FILE_ID_FULL_DIRECTORY_INFORMATION

        endian :little

        uint8  :replace_if_exists, label: 'Replace If Exists'

        choice :reserved, selection: -> { get_smb_version } do
          uint24 1, label: 'Reserved Space'
          uint56 2, label: 'Reserved Space'
        end

        choice :root_directory, selection: -> { get_smb_version } do
          uint32 1, label: 'Root Directory', initial_value: 0
          uint64 2, label: 'Root Directory', initial_value: 0
        end

        uint32 :file_name_length, label: 'File Name Length', initial_value: -> { file_name.do_num_bytes }
        string :file_name,        label: 'File Name',        read_length: -> { file_name_length }

        def get_smb_version(obj = self)
          # Return version 1 by default in case the structure is not part of a
          # SMB packet. This way, we can still instantiate this structure
          # independently without breaking the "choice" logic.
          return 1 if obj.nil?
          smb_version = if obj.respond_to?(:smb_header)
                          1
                        elsif obj.respond_to?(:smb2_header)
                          2
                        else
                          get_smb_version(obj.parent)
                        end
          return smb_version
        end

      end
    end
  end
end

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
ruby_smb-3.1.1 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-3.1.0 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-3.0.6 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-3.0.5 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-3.0.4 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-3.0.3 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-3.0.2 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-3.0.1 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-3.0.0 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-2.0.13 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-2.0.12 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-2.0.11 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-2.0.10 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-2.0.9 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-2.0.8 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-2.0.7 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-2.0.6 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-2.0.5 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-2.0.4 lib/ruby_smb/fscc/file_information/file_rename_information.rb
ruby_smb-2.0.3 lib/ruby_smb/fscc/file_information/file_rename_information.rb