~ubuntu-branches/ubuntu/oneiric/partitionmanager/oneiric

« back to all changes in this revision

Viewing changes to src/fs/fat32.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2009-01-23 17:57:36 UTC
  • Revision ID: james.westby@ubuntu.com-20090123175736-2ltrhgg3m55dokbm
Tags: upstream-1.0.0~beta1a
ImportĀ upstreamĀ versionĀ 1.0.0~beta1a

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2008 by Volker Lanz <vl@fidra.de>                       *
 
3
 *                                                                         *
 
4
 *   This program is free software; you can redistribute it and/or modify  *
 
5
 *   it under the terms of the GNU General Public License as published by  *
 
6
 *   the Free Software Foundation; either version 2 of the License, or     *
 
7
 *   (at your option) any later version.                                   *
 
8
 *                                                                         *
 
9
 *   This program is distributed in the hope that it will be useful,       *
 
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
12
 *   GNU General Public License for more details.                          *
 
13
 *                                                                         *
 
14
 *   You should have received a copy of the GNU General Public License     *
 
15
 *   along with this program; if not, write to the                         *
 
16
 *   Free Software Foundation, Inc.,                                       *
 
17
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
 
18
 ***************************************************************************/
 
19
 
 
20
#include "fs/fat32.h"
 
21
 
 
22
#include "util/externalcommand.h"
 
23
#include "util/capacity.h"
 
24
 
 
25
#include <QStringList>
 
26
 
 
27
#include <ctime>
 
28
 
 
29
namespace FS
 
30
{
 
31
        fat32::fat32(qint64 firstsector, qint64 lastsector, qint64 sectorsused, const QString& label) :
 
32
                fat16(firstsector, lastsector, sectorsused, label, FileSystem::Fat32)
 
33
        {
 
34
        }
 
35
 
 
36
        qint64 fat32::minCapacity() const
 
37
        {
 
38
                return 32 * Capacity::unitFactor(Capacity::Byte, Capacity::MiB);
 
39
        }
 
40
 
 
41
        qint64 fat32::maxCapacity() const
 
42
        {
 
43
                return 8 * Capacity::unitFactor(Capacity::Byte, Capacity::TiB);
 
44
        }
 
45
        
 
46
        bool fat32::create(Report& report, const QString& deviceNode) const
 
47
        {
 
48
                ExternalCommand cmd(report, "mkfs.msdos", QStringList() << "-F32" << "-v" << deviceNode);
 
49
                return cmd.run(-1) && cmd.exitCode() == 0;
 
50
        }
 
51
 
 
52
        bool fat32::updateUUID(Report& report, const QString& deviceNode) const
 
53
        {
 
54
                qint32 t = time(NULL);
 
55
 
 
56
                char uuid[4];
 
57
                for (quint32 i = 0; i < sizeof(uuid); i++, t >>= 8)
 
58
                        uuid[i] = t & 0xff;
 
59
                
 
60
                ExternalCommand cmd(report, "dd", QStringList() << "of=" + deviceNode << "bs=1" << "count=4" << "seek=67");
 
61
 
 
62
                if (!cmd.start())
 
63
                        return false;
 
64
 
 
65
                if (cmd.write(uuid, sizeof(uuid)) != sizeof(uuid))
 
66
                        return false;
 
67
 
 
68
                return cmd.waitFor(-1);
 
69
        }
 
70
}