Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. fileEnumeratorClose :: (HasCallStack, MonadIO m, IsFileEnumerator a, IsCancellable b) => a -> Maybe b -> m ()

    gi-gio GI.Gio.Objects.FileEnumerator

    Releases all resources used by this enumerator, making the enumerator return IOErrorEnumClosed on all calls. This will be automatically called when the last reference is dropped, but you might want to call this function to make sure resources are released as early as possible.

  2. fileEnumeratorCloseAsync :: (HasCallStack, MonadIO m, IsFileEnumerator a, IsCancellable b) => a -> Int32 -> Maybe b -> Maybe AsyncReadyCallback -> m ()

    gi-gio GI.Gio.Objects.FileEnumerator

    Asynchronously closes the file enumerator. If cancellable is not Nothing, then the operation can be cancelled by triggering the cancellable object from another thread. If the operation was cancelled, the error IOErrorEnumCancelled will be returned in fileEnumeratorCloseFinish.

  3. fileEnumeratorCloseFinish :: (HasCallStack, MonadIO m, IsFileEnumerator a, IsAsyncResult b) => a -> b -> m ()

    gi-gio GI.Gio.Objects.FileEnumerator

    Finishes closing a file enumerator, started from fileEnumeratorCloseAsync. If the file enumerator was already closed when fileEnumeratorCloseAsync was called, then this function will report IOErrorEnumClosed in error, and return False. If the file enumerator had pending operation when the close operation was started, then this function will report IOErrorEnumPending, and return False. If cancellable was not Nothing, then the operation may have been cancelled by triggering the cancellable object from another thread. If the operation was cancelled, the error IOErrorEnumCancelled will be set, and False will be returned.

  4. fileEnumeratorGetChild :: (HasCallStack, MonadIO m, IsFileEnumerator a, IsFileInfo b) => a -> b -> m File

    gi-gio GI.Gio.Objects.FileEnumerator

    Return a new File which refers to the file named by info in the source directory of enumerator. This function is primarily intended to be used inside loops with fileEnumeratorNextFile. To use this, FILE_ATTRIBUTE_STANDARD_NAME must have been listed in the attributes list used when creating the FileEnumerator. This is a convenience method that's equivalent to:

    C code

    gchar *name = g_file_info_get_name (info);
    GFile *child = g_file_get_child (g_file_enumerator_get_container (enumr),
    name);
    
    Since: 2.36

  5. fileEnumeratorGetContainer :: (HasCallStack, MonadIO m, IsFileEnumerator a) => a -> m File

    gi-gio GI.Gio.Objects.FileEnumerator

    Get the File container which is being enumerated. Since: 2.18

  6. fileEnumeratorHasPending :: (HasCallStack, MonadIO m, IsFileEnumerator a) => a -> m Bool

    gi-gio GI.Gio.Objects.FileEnumerator

    Checks if the file enumerator has pending operations.

  7. fileEnumeratorIsClosed :: (HasCallStack, MonadIO m, IsFileEnumerator a) => a -> m Bool

    gi-gio GI.Gio.Objects.FileEnumerator

    Checks if the file enumerator has been closed.

  8. fileEnumeratorIterate :: (HasCallStack, MonadIO m, IsFileEnumerator a, IsCancellable b) => a -> Maybe b -> m (FileInfo, File)

    gi-gio GI.Gio.Objects.FileEnumerator

    This is a version of fileEnumeratorNextFile that's easier to use correctly from C programs. With fileEnumeratorNextFile, the gboolean return value signifies "end of iteration or error", which requires allocation of a temporary GError. In contrast, with this function, a False return from fileEnumeratorIterate *always* means "error". End of iteration is signaled by outInfo or outChild being Nothing. Another crucial difference is that the references for outInfo and outChild are owned by direnum (they are cached as hidden properties). You must not unref them in your own code. This makes memory management significantly easier for C code in combination with loops. Finally, this function optionally allows retrieving a File as well. You must specify at least one of outInfo or outChild. The code pattern for correctly using fileEnumeratorIterate from C is:

    direnum = g_file_enumerate_children (file, ...);
    while (TRUE)
    {
    GFileInfo *info;
    if (!g_file_enumerator_iterate (direnum, &info, NULL, cancellable, error))
    goto out;
    if (!info)
    break;
    ... do stuff with "info"; do not unref it! ...
    }
    
    out:
    g_object_unref (direnum); // Note: frees the last @info
    
    Since: 2.44

  9. fileEnumeratorNextFile :: (HasCallStack, MonadIO m, IsFileEnumerator a, IsCancellable b) => a -> Maybe b -> m (Maybe FileInfo)

    gi-gio GI.Gio.Objects.FileEnumerator

    Returns information for the next file in the enumerated object. Will block until the information is available. The FileInfo returned from this function will contain attributes that match the attribute string that was passed when the FileEnumerator was created. See the documentation of FileEnumerator for information about the order of returned files. On error, returns Nothing and sets error to the error. If the enumerator is at the end, Nothing will be returned and error will be unset.

  10. fileEnumeratorNextFilesAsync :: (HasCallStack, MonadIO m, IsFileEnumerator a, IsCancellable b) => a -> Int32 -> Int32 -> Maybe b -> Maybe AsyncReadyCallback -> m ()

    gi-gio GI.Gio.Objects.FileEnumerator

    Request information for a number of files from the enumerator asynchronously. When all I/O for the operation is finished the callback will be called with the requested information. See the documentation of FileEnumerator for information about the order of returned files. Once the end of the enumerator is reached, or if an error occurs, the callback will be called with an empty list. In this case, the previous call to fileEnumeratorNextFilesAsync will typically have returned fewer than numFiles items. If a request is cancelled the callback will be called with IOErrorEnumCancelled. This leads to the following pseudo-code usage:

    g_autoptr(GFile) dir = get_directory ();
    g_autoptr(GFileEnumerator) enumerator = NULL;
    g_autolist(GFileInfo) files = NULL;
    g_autoptr(GError) local_error = NULL;
    
    enumerator = yield g_file_enumerate_children_async (dir,
    G_FILE_ATTRIBUTE_STANDARD_NAME ","
    G_FILE_ATTRIBUTE_STANDARD_TYPE,
    G_FILE_QUERY_INFO_NONE,
    G_PRIORITY_DEFAULT,
    cancellable,
    …,
    &local_error);
    if (enumerator == NULL)
    g_error ("Error enumerating: %s", local_error->message);
    
    // Loop until no files are returned, either because the end of the enumerator
    // has been reached, or an error was returned.
    do
    {
    files = yield g_file_enumerator_next_files_async (enumerator,
    5,  // number of files to request
    G_PRIORITY_DEFAULT,
    cancellable,
    …,
    &local_error);
    
    // Process the returned files, but don’t assume that exactly 5 were returned.
    for (GList *l = files; l != NULL; l = l->next)
    {
    GFileInfo *info = l->data;
    handle_file_info (info);
    }
    }
    while (files != NULL);
    
    if (local_error != NULL &&
    !g_error_matches (local_error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
    g_error ("Error while enumerating: %s", local_error->message);
    
    During an async request no other sync and async calls are allowed, and will result in IOErrorEnumPending errors. Any outstanding I/O request with higher priority (lower numerical value) will be executed before an outstanding request with lower priority. Default priority is PRIORITY_DEFAULT.

Page 206 of many | Previous | Next