Struct glib::KeyFile [−][src]
pub struct KeyFile(_);
Expand description
The GKeyFile struct contains only private data and should not be accessed directly.
Implementations
Creates a new empty KeyFile object. Use
load_from_file(), load_from_data(),
load_from_dirs() or load_from_data_dirs() to
read an existing key file.
Returns
an empty KeyFile.
Retrieves a comment above key from group_name.
If key is None then comment will be read from above
group_name. If both key and group_name are None, then
comment will be read from above the first group in the file.
Note that the returned string does not include the ‘#’ comment markers, but does include any whitespace after them (on each line). It includes the line breaks between lines, but does not include the final line break.
group_name
a group name, or None
key
a key
Returns
a comment that should be freed with g_free()
Returns the value associated with key under group_name as a
double. If group_name is None, the start_group is used.
If key cannot be found then 0.0 is returned and error is set to
KeyFileError::KeyNotFound. Likewise, if the value associated
with key cannot be interpreted as a double then 0.0 is returned
and error is set to KeyFileError::InvalidValue.
group_name
a group name
key
a key
Returns
the value associated with the key as a double, or 0.0 if the key was not found or could not be parsed.
Returns the values associated with key under group_name as
doubles.
If key cannot be found then None is returned and error is set to
KeyFileError::KeyNotFound. Likewise, if the values associated
with key cannot be interpreted as doubles then None is returned
and error is set to KeyFileError::InvalidValue.
group_name
a group name
key
a key
Returns
the values associated with the key as a list of doubles, or None if the
key was not found or could not be parsed. The returned list of doubles
should be freed with g_free() when no longer needed.
Returns the value associated with key under group_name as a signed
64-bit integer. This is similar to integer() but can return
64-bit results without truncation.
group_name
a non-None group name
key
a non-None key
Returns
the value associated with the key as a signed 64-bit integer, or 0 if the key was not found or could not be parsed.
Returns the value associated with key under group_name as an
integer.
If key cannot be found then 0 is returned and error is set to
KeyFileError::KeyNotFound. Likewise, if the value associated
with key cannot be interpreted as an integer, or is out of range
for a gint, then 0 is returned
and error is set to KeyFileError::InvalidValue.
group_name
a group name
key
a key
Returns
the value associated with the key as an integer, or 0 if the key was not found or could not be parsed.
Returns the values associated with key under group_name as
integers.
If key cannot be found then None is returned and error is set to
KeyFileError::KeyNotFound. Likewise, if the values associated
with key cannot be interpreted as integers, or are out of range for
gint, then None is returned
and error is set to KeyFileError::InvalidValue.
group_name
a group name
key
a key
Returns
the values associated with the key as a list of integers, or None if
the key was not found or could not be parsed. The returned list of
integers should be freed with g_free() when no longer needed.
Returns all keys for the group name group_name. The array of
returned keys will be None-terminated, so length may
optionally be None. In the event that the group_name cannot
be found, None is returned and error is set to
KeyFileError::GroupNotFound.
group_name
a group name
Returns
a newly-allocated None-terminated array of strings.
Use g_strfreev() to free it.
length
return location for the number of keys returned, or None
This is supported on crate feature v2_56 only.
v2_56 only.Returns the actual locale which the result of
locale_string() or locale_string_list()
came from.
If calling locale_string() or
locale_string_list() with exactly the same self,
group_name, key and locale, the result of those functions will
have originally been tagged with the locale that is the result of
this function.
group_name
a group name
key
a key
locale
a locale identifier or None
Returns
the locale from the file, or None if the key was not
found or the entry in the file was was untranslated
Returns the value associated with key under group_name as an unsigned
64-bit integer. This is similar to integer() but can return
large positive results without truncation.
group_name
a non-None group name
key
a non-None key
Returns
the value associated with the key as an unsigned 64-bit integer, or 0 if the key was not found or could not be parsed.
Returns the raw value associated with key under group_name.
Use string() to retrieve an unescaped UTF-8 string.
In the event the key cannot be found, None is returned and
error is set to KeyFileError::KeyNotFound. In the
event that the group_name cannot be found, None is returned
and error is set to KeyFileError::GroupNotFound.
group_name
a group name
key
a key
Returns
a newly allocated string or None if the specified
key cannot be found.
This is supported on crate feature v2_50 only.
v2_50 only.Loads a key file from the data in bytes into an empty KeyFile structure.
If the object cannot be created then error is set to a KeyFileError.
bytes
a Bytes
flags
flags from KeyFileFlags
Returns
Loads a key file from memory into an empty KeyFile structure.
If the object cannot be created then error is set to a KeyFileError.
data
key file loaded in memory
length
the length of data in bytes (or (gsize)-1 if data is nul-terminated)
flags
flags from KeyFileFlags
Returns
pub fn load_from_file<P: AsRef<Path>>(
&self,
file: P,
flags: KeyFileFlags
) -> Result<(), Error>
pub fn load_from_file<P: AsRef<Path>>(
&self,
file: P,
flags: KeyFileFlags
) -> Result<(), Error>Loads a key file into an empty KeyFile structure.
If the OS returns an error when opening or reading the file, a
G_FILE_ERROR is returned. If there is a problem parsing the file, a
G_KEY_FILE_ERROR is returned.
This function will never return a KeyFileError::NotFound error. If the
file is not found, G_FILE_ERROR_NOENT is returned.
file
the path of a filename to load, in the GLib filename encoding
flags
flags from KeyFileFlags
Returns
Removes key in group_name from the key file.
group_name
a group name
key
a key name to remove
Returns
Associates a new boolean value with key under group_name.
If key cannot be found then it is created.
group_name
a group name
key
a key
value
Places a comment above key from group_name.
If key is None then comment will be written above group_name.
If both key and group_name are None, then comment will be
written above the first group in the file.
Note that this function prepends a ‘#’ comment marker to
each line of comment.
group_name
a group name, or None
key
a key
comment
a comment
Returns
Associates a new double value with key under group_name.
If key cannot be found then it is created.
group_name
a group name
key
a key
value
a double value
Associates a new integer value with key under group_name.
If key cannot be found then it is created.
group_name
a group name
key
a key
value
an integer value
Associates a new integer value with key under group_name.
If key cannot be found then it is created.
group_name
a group name
key
a key
value
an integer value
Sets the character which is used to separate values in lists. Typically ‘;’ or ‘,’ are used as separators. The default list separator is ‘;’.
separator
the separator
Associates a string value for key and locale under group_name.
If the translation for key cannot be found then it is created.
group_name
a group name
key
a key
locale
a locale identifier
string
a string
Associates a new string value with key under group_name.
If key cannot be found then it is created.
If group_name cannot be found then it is created.
Unlike set_value(), this function handles characters
that need escaping, such as newlines.
group_name
a group name
key
a key
string
a string
Associates a new integer value with key under group_name.
If key cannot be found then it is created.
group_name
a group name
key
a key
value
an integer value
Associates a new value with key under group_name.
If key cannot be found then it is created. If group_name cannot
be found then it is created. To set an UTF-8 string which may contain
characters that need escaping (such as newlines or spaces), use
set_string().
group_name
a group name
key
a key
value
a string
Writes the contents of self to filename using
file_set_contents(). If you need stricter guarantees about durability of
the written file than are provided by file_set_contents(), use
file_set_contents_full() with the return value of to_data().
This function can fail for any of the reasons that
file_set_contents() may fail.
filename
the name of the file to write to
Returns
pub fn load_from_data_dirs<T: AsRef<Path>>(
&self,
file: T,
flags: KeyFileFlags
) -> Result<PathBuf, Error>
pub fn load_from_data_dirs<T: AsRef<Path>>(
&self,
file: T,
flags: KeyFileFlags
) -> Result<PathBuf, Error>This function looks for a key file named file in the paths
returned from user_data_dir() and system_data_dirs(),
loads the file into self and returns the file’s full path in
full_path. If the file could not be loaded then an error is
set to either a GFileError or KeyFileError.
file
a relative path to a filename to open and parse
flags
flags from KeyFileFlags
Returns
true if a key file could be loaded, false otherwise
full_path
return location for a string containing the full path
of the file, or None
This function looks for a key file named file in the paths
specified in search_dirs, loads the file into self and
returns the file’s full path in full_path.
If the file could not be found in any of the search_dirs,
KeyFileError::NotFound is returned. If
the file is found but the OS returns an error when opening or reading the
file, a G_FILE_ERROR is returned. If there is a problem parsing the file, a
G_KEY_FILE_ERROR is returned.
file
a relative path to a filename to open and parse
search_dirs
None-terminated array of directories to search
flags
flags from KeyFileFlags
Returns
true if a key file could be loaded, false otherwise
full_path
return location for a string containing the full path
of the file, or None
Returns the value associated with key under group_name as a
boolean.
If key cannot be found then false is returned and error is set
to KeyFileError::KeyNotFound. Likewise, if the value
associated with key cannot be interpreted as a boolean then false
is returned and error is set to KeyFileError::InvalidValue.
group_name
a group name
key
a key
Returns
the value associated with the key as a boolean,
or false if the key was not found or could not be parsed.
Looks whether the key file has the key key in the group
group_name.
Note that this function does not follow the rules for Error strictly;
the return value both carries meaning and signals an error. To use
this function, you must pass a Error pointer in error, and check
whether it is not None to see if an error occurred.
Language bindings should use value() to test whether
or not a key exists.
group_name
a group name
key
a key name
Returns
Returns the values associated with key under group_name as
booleans.
If key cannot be found then None is returned and error is set to
KeyFileError::KeyNotFound. Likewise, if the values associated
with key cannot be interpreted as booleans then None is returned
and error is set to KeyFileError::InvalidValue.
group_name
a group name
key
a key
Returns
the values associated with the key as a list of booleans, or None if the
key was not found or could not be parsed. The returned list of booleans
should be freed with g_free() when no longer needed.
Returns the string value associated with key under group_name.
Unlike value(), this function handles escape sequences
like \s.
In the event the key cannot be found, None is returned and
error is set to KeyFileError::KeyNotFound. In the
event that the group_name cannot be found, None is returned
and error is set to KeyFileError::GroupNotFound.
group_name
a group name
key
a key
Returns
a newly allocated string or None if the specified
key cannot be found.
Returns the values associated with key under group_name.
In the event the key cannot be found, None is returned and
error is set to KeyFileError::KeyNotFound. In the
event that the group_name cannot be found, None is returned
and error is set to KeyFileError::GroupNotFound.
group_name
a group name
key
a key
Returns
a None-terminated string array or None if the specified
key cannot be found. The array should be freed with g_strfreev().
Returns the value associated with key under group_name
translated in the given locale if available. If locale is
None then the current locale is assumed.
If locale is to be non-None, or if the current locale will change over
the lifetime of the KeyFile, it must be loaded with
KeyFileFlags::KEEP_TRANSLATIONS in order to load strings for all locales.
If key cannot be found then None is returned and error is set
to KeyFileError::KeyNotFound. If the value associated
with key cannot be interpreted or no suitable translation can
be found then the untranslated value is returned.
group_name
a group name
key
a key
locale
a locale identifier or None
Returns
a newly allocated string or None if the specified
key cannot be found.
Returns the values associated with key under group_name
translated in the given locale if available. If locale is
None then the current locale is assumed.
If locale is to be non-None, or if the current locale will change over
the lifetime of the KeyFile, it must be loaded with
KeyFileFlags::KEEP_TRANSLATIONS in order to load strings for all locales.
If key cannot be found then None is returned and error is set
to KeyFileError::KeyNotFound. If the values associated
with key cannot be interpreted or no suitable translations
can be found then the untranslated values are returned. The
returned array is None-terminated, so length may optionally
be None.
group_name
a group name
key
a key
locale
a locale identifier or None
Returns
a newly allocated None-terminated string array
or None if the key isn’t found. The string array should be freed
with g_strfreev().
Trait Implementations
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Returns the type identifier of Self.
Auto Trait Implementations
impl RefUnwindSafe for KeyFileimpl UnwindSafe for KeyFileBlanket Implementations
Mutably borrows from an owned value. Read more
impl<'a, T, C> FromValueOptional<'a> for T where
C: ValueTypeChecker<Error = ValueTypeMismatchOrNoneError>,
T: FromValue<'a, Checker = C>,