Skip to content

cursorinsight/Dumper.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dumper.jl

CI

Dumper.jl is a Julia package that allows you to effortlessly save the values of variables in files.

Installation

Dumper.jl can be installed after adding Cursor Insight's own registry to the Julia environment:

julia> ]
pkg> registry add https://github.com/cursorinsight/julia-registry
     Cloning registry from "https://github.com/cursorinsight/julia-registry"
       Added registry `CursorInsightJuliaRegistry` to
       `~/.julia/registries/CursorInsightJuliaRegistry`

pkg> add Dumper

Usage

Load the package via:

using Dumper

This exports two functions and a macro: enable!, disable! and @dump.

Enable dump capability with enable!(). Without parameters, this enables dumping into the directory pointed to by the DUMP environment variable, or if that is unset, then into a dump-YYYYmmdd-HHMMSS directory, using the current date and time.

You can set the environment variable from Julia as follows:

ENV["DUMP"] = "./directory_to_dump"

You can also add this line to the user configuration file ~/.julia/config/startup.jl for a more permanent effect.

To turn off dump capability, simply call disable!().

# Without parameters, dump files into the default directory explained before
enable!()

# You may pass the path of the dump directory, too
enable!("./dump")

# Disable dump functionality
disable!()

You can dump the value of a variable into a file with @dump. This saves the file only when the dump capability is enabled (it's off by default).

Possible arguments are (defaults come from Dumper.STATE):

  • isabsolute: whether the path is absolute or relative to directory;
  • path: name of the dump file (default: name of the variable);
  • directory: save directory;
  • mime: output format (MIME string);
  • mode: writing mode of the dump file.
enable!("./dump")

x = 2

@dump x                 # creates ./dump/x
@dump x path="two.txt"  # creates ./dump/two.txt

disable!()

@dump x                 # will not be saved

About

Simple data dumping utility.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages