/* * fm-deep-count-job.h * * Copyright 2009 PCMan * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. */ #ifndef __FM_DEEP_COUNT_JOB_H__ #define __FM_DEEP_COUNT_JOB_H__ #include "fm-job.h" #include "fm-path.h" #include #include G_BEGIN_DECLS #define FM_DEEP_COUNT_JOB_TYPE (fm_deep_count_job_get_type()) #define FM_DEEP_COUNT_JOB(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),\ FM_DEEP_COUNT_JOB_TYPE, FmDeepCountJob)) #define FM_DEEP_COUNT_JOB_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),\ FM_DEEP_COUNT_JOB_TYPE, FmDeepCountJobClass)) #define IS_FM_DEEP_COUNT_JOB(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),\ FM_DEEP_COUNT_JOB_TYPE)) #define IS_FM_DEEP_COUNT_JOB_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),\ FM_DEEP_COUNT_JOB_TYPE)) typedef struct _FmDeepCountJob FmDeepCountJob; typedef struct _FmDeepCountJobClass FmDeepCountJobClass; typedef enum _FmDeepCountJobFlags FmDeepCountJobFlags; enum _FmDeepCountJobFlags { FM_DC_JOB_DEFAULT = 0, /* do deep count for all files/folders */ FM_DC_JOB_FOLLOW_LINKS = 1<<0, /* don't follow symlinks */ FM_DC_JOB_SAME_FS = 1<<1, /* only do deep count for files on the same devices. what's the use case of this? */ FM_DC_JOB_PREPARE_MOVE = 1<<2, /* special handling for moving files. only do deep count for files on different devices */ FM_DC_JOB_PREPARE_DELETE = 1 <<3 /* special handling for deleting files */ }; struct _FmDeepCountJob { FmJob parent; FmPathList* paths; FmDeepCountJobFlags flags; goffset total_size; goffset total_block_size; guint count; /* private: used to count total size used when moving files */ dev_t dest_dev; const char* dest_fs_id; }; struct _FmDeepCountJobClass { FmJobClass parent_class; }; GType fm_deep_count_job_get_type(void); FmJob* fm_deep_count_job_new(FmPathList* paths, FmDeepCountJobFlags flags); /* dev is UNIX device ID. * fs_id is filesystem id in gio format (can be NULL). */ void fm_deep_count_job_set_dest(FmDeepCountJob* dc, dev_t dev, const char* fs_id); G_END_DECLS #endif /* __FM_DEEP_COUNT_JOB_H__ */