~ubuntu-branches/ubuntu/maverick/freecad/maverick

« back to all changes in this revision

Viewing changes to src/Base/Uuid.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Teemu Ikonen
  • Date: 2009-07-16 18:37:41 UTC
  • Revision ID: james.westby@ubuntu.com-20090716183741-oww9kcxqrk991i1n
Tags: upstream-0.8.2237
Import upstream version 0.8.2237

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   (c) J�rgen Riegel (juergen.riegel@web.de) 2008                        *
 
3
 *                                                                         *
 
4
 *   This file is part of the FreeCAD CAx development system.              *
 
5
 *                                                                         *
 
6
 *   This library is free software; you can redistribute it and/or         *
 
7
 *   modify it under the terms of the GNU Library General Public           *
 
8
 *   License as published by the Free Software Foundation; either          *
 
9
 *   version 2 of the License, or (at your option) any later version.      *
 
10
 *                                                                         *
 
11
 *   This library  is distributed in the hope that it will be useful,      *
 
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
14
 *   GNU Library General Public License for more details.                  *
 
15
 *                                                                         *
 
16
 *   You should have received a copy of the GNU Library General Public     *
 
17
 *   License along with this library; see the file COPYING.LIB. If not,    *
 
18
 *   write to the Free Software Foundation, Inc., 59 Temple Place,         *
 
19
 *   Suite 330, Boston, MA  02111-1307, USA                                *
 
20
 *                                                                         *
 
21
 ***************************************************************************/
 
22
 
 
23
 
 
24
#include "PreCompiled.h"
 
25
 
 
26
#ifndef _PreComp_
 
27
# ifdef FC_OS_WIN32
 
28
#  include <Rpc.h>
 
29
# endif
 
30
#endif
 
31
 
 
32
/// Here the FreeCAD includes sorted by Base,App,Gui......
 
33
#include "Uuid.h"
 
34
#include "Exception.h"
 
35
#include "Interpreter.h"
 
36
#include <CXX/Objects.hxx>
 
37
 
 
38
 
 
39
using namespace Base;
 
40
 
 
41
 
 
42
//**************************************************************************
 
43
// Construction/Destruction
 
44
 
 
45
/**
 
46
 * A constructor.
 
47
 * A more elaborate description of the constructor.
 
48
 */
 
49
Uuid::Uuid()
 
50
{
 
51
    UuidStr = CreateUuid();
 
52
}
 
53
 
 
54
/**
 
55
 * A destructor.
 
56
 * A more elaborate description of the destructor.
 
57
 */
 
58
Uuid::~Uuid()
 
59
{
 
60
}
 
61
 
 
62
//**************************************************************************
 
63
//**************************************************************************
 
64
// Get the UUID
 
65
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 
66
 
 
67
std::string Uuid::CreateUuid(void)
 
68
{
 
69
#ifdef FC_OS_WIN32
 
70
    RPC_STATUS rstat;
 
71
    UUID uuid;
 
72
    unsigned char *uuidStr;
 
73
 
 
74
    rstat = UuidCreate(&uuid);
 
75
    if (rstat != RPC_S_OK) throw Base::Exception("Cannot convert a unique Windows UUID to a string");
 
76
 
 
77
    rstat = UuidToString(&uuid, &uuidStr);
 
78
    if (rstat != RPC_S_OK) throw Base::Exception("Cannot convert a unique Windows UUID to a string");
 
79
 
 
80
    std::string Uuid((char *)uuidStr);
 
81
 
 
82
    /* convert it from rcp memory to our own */
 
83
    //container = nssUTF8_Duplicate(uuidStr, NULL);
 
84
    RpcStringFree(&uuidStr);
 
85
#else
 
86
    // use Python's implemententation
 
87
    std::string Uuid;
 
88
    PyGILStateLocker lock;
 
89
    try {
 
90
        Py::Module module(PyImport_ImportModule("uuid"),true);
 
91
        Py::Callable method(module.getAttr("uuid4"));
 
92
        Py::Tuple arg;
 
93
        Py::Object guid = method.apply(arg);
 
94
        Uuid = guid.as_string();
 
95
    }
 
96
    catch (Py::Exception& e) {
 
97
        e.clear();
 
98
        throw Base::Exception("Creation of UUID failed");
 
99
    }
 
100
#endif 
 
101
    return Uuid;
 
102
}