File: track.cpp

package info (click to toggle)
libtunepimp 0.5.3-7
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 5,668 kB
  • ctags: 3,470
  • sloc: ansic: 15,652; cpp: 12,752; sh: 11,929; perl: 1,179; python: 720; makefile: 310; pascal: 33
file content (99 lines) | stat: -rw-r--r-- 2,648 bytes parent folder | download | duplicates (2)
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
/*----------------------------------------------------------------------------

   libtunepimp -- The MusicBrainz tagging library.  
                  Let a thousand taggers bloom!
   
   Copyright (C) Robert Kaye 2003
   
   This file is part of libtunepimp.

   libtunepimp 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.

   libtunepimp 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 libtunepimp; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

   $Id: track.cpp 7216 2006-04-14 23:10:49Z robert $

----------------------------------------------------------------------------*/
#include "../config.h"
#include "track.h"
#include "tunepimp.h"
#include "write.h"

void Track::setStatus(const TPFileStatus status) 
{ 
    this->status = status; 
    context->getTunePimp()->trackChangedStatus(this); 
}

void Track::setLocalMetadata(const Metadata &data)
{
    MetadataCompare comp;

    local = data;
    sim = comp.compare(server, local);
    changed = !(server == local);

    if (!changed && (context->getRenameFiles() || context->getMoveFiles()))
    {
        FileNameMaker maker(context);
        string        newName;

        newName = fileName;
        maker.makeNewFileName(local, newName, 0);
#ifdef WIN32
        if (stricmp(newName.c_str(), fileName.c_str()))
#else
        if (strcmp(newName.c_str(), fileName.c_str()))
#endif
            changed = true;
    }
}

void Track::setServerMetadata(const Metadata &data)
{
    MetadataCompare comp;

    server = data;
    sim = comp.compare(server, local);
    changed = !(server == local);

    if (!changed && (context->getRenameFiles() || context->getMoveFiles()))
    {
        FileNameMaker maker(context);
        string        newName;

        newName = fileName;
        maker.makeNewFileName(server, newName, 0);
#ifdef WIN32
        if (stricmp(newName.c_str(), fileName.c_str()))
#else
        if (strcmp(newName.c_str(), fileName.c_str()))
#endif
            changed = true;
    }
}

void Track::setPUID(const string &puid)
{ 
    this->puid = puid; 
}

void Track::lock(void)
{
    mutex.acquire();
}

void Track::unlock(void)
{
    mutex.release();
}