summaryrefslogtreecommitdiffstats
path: root/libk3b/tools/k3bfilesysteminfo.cpp
blob: 026643f679ef3dae06017b78ee36b269cacfd6ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/* 
 *
 * $Id: sourceheader 511311 2006-02-19 14:51:05Z trueg $
 * Copyright (C) 2006 Sebastian Trueg <trueg@k3b.org>
 *
 * This file is part of the K3b project.
 * Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
 *
 * 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.
 * See the file "COPYING" for the exact licensing terms.
 */

#include <config.h>

#include "k3bfilesysteminfo.h"

#include <k3bglobals.h>

#include <tqfile.h>
#include <tqfileinfo.h>
#include <tqregexp.h>

#include <kdebug.h>

#ifdef Q_OS_FREEBSD
#include <sys/param.h>
#include <sys/mount.h>
#endif
#ifdef HAVE_SYS_STATVFS_H
#  include <sys/statvfs.h>
#  if defined(Q_OS_NETBSD)
#    include <sys/param.h>
#    if __NetBSD_Version__ > 299000000
#      define statfs		statvfs
#      define f_type		f_fsid
#    endif
#  endif
#endif
#ifdef HAVE_SYS_VFS_H
#  include <sys/vfs.h>
#endif

#include <errno.h>
#include <string.h>



class K3bFileSystemInfo::Private
{
public:
  Private()
    : type(FS_UNKNOWN),
      statDone(false) {
  }

  FileSystemType type;
  TQString path;

  bool statDone;

  void stat() {
    struct statfs fs;
    if( !::statfs( TQFile::encodeName( TQFileInfo(path).dirPath( true ) ), &fs ) ) {
      switch( fs.f_type ) {
      case 0x4d44: // MS-DOS
	type = FS_FAT;
      default:
	type = FS_UNKNOWN;
      }

      statDone = true;
    }
    else {
      kdDebug() << "(K3bFileSystemInfo) statfs failed: " << ::strerror(errno) << endl;
    }
  }
};


K3bFileSystemInfo::K3bFileSystemInfo()
{
  d = new Private;
}


K3bFileSystemInfo::K3bFileSystemInfo( const TQString& path )
{
  d = new Private;
  d->path = path;
}


K3bFileSystemInfo::K3bFileSystemInfo( const K3bFileSystemInfo& other )
{
  d = new Private;
  d->type = other.d->type;
  d->path = other.d->path;
  d->statDone = other.d->statDone;
}


K3bFileSystemInfo::~K3bFileSystemInfo()
{
  delete d;
}


TQString K3bFileSystemInfo::path() const
{
  return d->path;
}


void K3bFileSystemInfo::setPath( const TQString& path )
{
  if( d->path != path ) {
    d->path = path;
    d->statDone = false;
  }
}


K3bFileSystemInfo::FileSystemType K3bFileSystemInfo::type() const
{
  if( !d->statDone )
    d->stat();
  return d->type;
}


TQString K3bFileSystemInfo::fixupPath( const TQString& path )
{
  TQString s = K3b::fixupPath( path );
  if( type() == K3bFileSystemInfo::FS_FAT )
    return s.tqreplace( TQRegExp("[\"\\?\\*/\\\\[\\]\\|\\=\\:;]"), "_" );
  else
    return s;
}