ukui-search/libsearch/file-utils.h

53 lines
1.5 KiB
C
Raw Normal View History

2020-12-21 18:50:54 +08:00
#ifndef FILEUTILS_H
#define FILEUTILS_H
#include "gobject-template.h"
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <fcntl.h>
2020-12-21 18:50:54 +08:00
#include <QString>
#include <QCryptographicHash>
#include <QIcon>
#include <QMap>
2020-12-30 14:42:04 +08:00
#include "libsearch_global.h"
//#define INITIAL_STATE 0
//#define CREATING_INDEX 1
//#define FINISH_CREATING_INDEX 2
#define UKUI_SEARCH_PIPE_PATH "/tmp/ukuisearch"
2020-12-30 14:42:04 +08:00
class LIBSEARCH_EXPORT FileUtils
2020-12-21 18:50:54 +08:00
{
public:
static std::string makeDocUterm(QString );
static QIcon getFileIcon(const QString &, bool checkValid = true);
static QIcon getAppIcon(const QString &);
static QIcon getSettingIcon(const QString &, const bool&);
static QString getFileName(const QString &);
static QString getAppName(const QString &);
static QString getSettingName(const QString &);
//chinese character to pinyin
2020-12-29 20:18:36 +08:00
static QMap<QString, QStringList> map_chinese2pinyin;
static QString find(const QString&);
static QStringList findMultiToneWords(const QString&);
static void loadHanziTable(const QString&);
2020-12-29 20:18:36 +08:00
//parse text,docx.....
static QString getMimetype(QString &path, bool getsuffix = false);
static void getDocxTextContent(QString &path, QString &textcontent);
static void getTxtContent(QString &path, QString &textcontent);
2021-01-10 09:23:02 +08:00
static size_t _max_index_count;
static size_t _current_index_count; //this one has been Abandoned,do not use it.
2021-01-13 18:35:48 +08:00
static unsigned short _index_status;
2020-12-29 20:18:36 +08:00
2020-12-21 18:50:54 +08:00
private:
FileUtils();
};
#endif // FILEUTILS_H