KRemoteEncoding

Search for usage in LXR

#include <KRemoteEncoding>

Public Member Functions

 KRemoteEncoding (const char *name=nullptr)
 
virtual ~KRemoteEncoding ()
 
QString decode (const QByteArray &name) const
 
QByteArray directory (const QUrl &url, bool ignore_trailing_slash=true) const
 
QByteArray encode (const QString &name) const
 
QByteArray encode (const QUrl &url) const
 
const char * encoding () const
 
QByteArray fileName (const QUrl &url) const
 
void setEncoding (const char *name)
 

Protected Member Functions

virtual void virtual_hook (int id, void *data)
 

Detailed Description

Allows encoding and decoding properly remote filenames into Unicode.

Certain protocols do not specify an appropriate encoding for decoding their 8-bit data into proper Unicode forms. Therefore, KIO workers should use this class in order to convert those forms into QStrings before creating the respective KIO::UDSEntry. The same is true for decoding URLs to its components.

Each KIO::WorkerBase has one object of this kind, even if it is not necessary. It can be accessed through KIO::WorkerBase::remoteEncoding.

A class for handling remote filenames

Author
Thiago Macieira thiag.nosp@m.o.ma.nosp@m.cieir.nosp@m.a@kd.nosp@m.email.nosp@m..net

Definition at line 36 of file kremoteencoding.h.

Constructor & Destructor Documentation

◆ KRemoteEncoding()

KRemoteEncoding::KRemoteEncoding ( const char * name = nullptr)
explicit

Constructor.

Constructs this object to use the given encoding name. If name is a null pointer, the standard encoding will be used.

Definition at line 20 of file kremoteencoding.cpp.

◆ ~KRemoteEncoding()

KRemoteEncoding::~KRemoteEncoding ( )
virtualdefault

Destructor.

Member Function Documentation

◆ decode()

QString KRemoteEncoding::decode ( const QByteArray & name) const

Converts the given full pathname or filename to Unicode.

This function is supposed to work for dirnames, filenames or a full pathname.

Definition at line 28 of file kremoteencoding.cpp.

◆ directory()

QByteArray KRemoteEncoding::directory ( const QUrl & url,
bool ignore_trailing_slash = true ) const

Converts the given URL into 8-bit form and separate the dirname from the filename.

This is useful for worker functions like stat or get.

The dirname is returned with the final slash always stripped

Definition at line 55 of file kremoteencoding.cpp.

◆ encode() [1/2]

QByteArray KRemoteEncoding::encode ( const QString & name) const

Converts the given name from Unicode.

This function is supposed to work for dirnames, filenames or a full pathname.

Definition at line 40 of file kremoteencoding.cpp.

◆ encode() [2/2]

QByteArray KRemoteEncoding::encode ( const QUrl & url) const

Converts the given URL into its 8-bit components.

Definition at line 50 of file kremoteencoding.cpp.

◆ encoding()

const char * KRemoteEncoding::encoding ( ) const

Returns the encoding being used.

Definition at line 70 of file kremoteencoding.cpp.

◆ fileName()

QByteArray KRemoteEncoding::fileName ( const QUrl & url) const

Converts the given URL into 8-bit form and retrieve the filename.

Definition at line 65 of file kremoteencoding.cpp.

◆ setEncoding()

void KRemoteEncoding::setEncoding ( const char * name)

Sets the encoding being used.

This function does not change the global configuration.

Pass a null pointer in name to revert to the standard encoding.

Definition at line 75 of file kremoteencoding.cpp.

◆ virtual_hook()

void KRemoteEncoding::virtual_hook ( int id,
void * data )
protectedvirtual

Definition at line 93 of file kremoteencoding.cpp.


The documentation for this class was generated from the following files:
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:18:52 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.