File: tsk_comparedir.h

package info (click to toggle)
sleuthkit 3.2.3-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 9,624 kB
  • sloc: ansic: 104,268; sh: 9,445; cpp: 7,793; makefile: 256
file content (24 lines) | stat: -rw-r--r-- 617 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <set>
#include <stdlib.h>

struct ltstr
{
  bool operator()(char* s1, char* s2) const
  {
    return strcmp(s1, s2) > 0;
  }
};

class TskCompareDir : public TskAuto {
public:
    uint8_t compareDirs(TSK_OFF_T soffset, TSK_INUM_T inum, TSK_FS_TYPE_ENUM a_fstype, const TSK_TCHAR * lcl_dir);

private:
    std::set<char*, ltstr> m_filesInImg; 
    bool m_missDirFile;
    const TSK_TCHAR *m_lclDir;
    
    virtual TSK_RETVAL_ENUM processFile(TSK_FS_FILE * fs_file, const char *path); 
	virtual TSK_FILTER_ENUM filterVol(const TSK_VS_PART_INFO * vs_part);
    uint8_t processLclDir(const TSK_TCHAR *dir);
};