summaryrefslogtreecommitdiff
path: root/plugins/sid/sidplay-libs/libsidplay/src/sidtune/SidTuneTools.h
blob: 7c3fabfaaf304c4734fde883391c8eb45dda77c0 (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
/*
 * /home/ms/files/source/libsidtune/RCS/SidTuneTools.h,v
 *
 * Copyright (C) Michael Schwendt <mschwendt@yahoo.com>
 *
 *  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.
 *
 *  This program 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 this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#ifndef TOOLS_H
#define TOOLS_H

#include "SidTuneCfg.h"
#include "sidtypes.h"

#include <string.h>

#define MYSTRICMP stricmp
#if defined(HAVE_STRCASECMP)
  #undef  MYSTRICMP
  #define MYSTRICMP strcasecmp
#endif

#define MYSTRNICMP strnicmp
#if defined(HAVE_STRNCASECMP)
  #undef  MYSTRNICMP
  #define MYSTRNICMP strncasecmp
#endif

class SidTuneTools
{
 public:

    // Wrapper for ``strnicmp'' without third argument.
    static int myStrNcaseCmp(const char* s1, const char* s2)
    {
        return MYSTRNICMP(s1,s2,strlen(s2));
    }

    // Own version of strdup, which uses new instead of malloc.
    static char* myStrDup(const char *source);

    // Return pointer to file name position in complete path.
    static char* fileNameWithoutPath(char* s);

    // Return pointer to file name position in complete path.
    // Special version: file separator = forward slash.
    static char* slashedFileNameWithoutPath(char* s);

    // Return pointer to file name extension in path.
    // Searching backwards until first dot is found.
    static char* fileExtOfPath(char* s);

    // Parse input string stream. Read and convert a hexa-decimal number up 
    // to a ``,'' or ``:'' or ``\0'' or end of stream.
    static uint_least32_t readHex(const char *parseStream, int size, int &pos);

    // Parse input string stream. Read and convert a decimal number up 
    // to a ``,'' or ``:'' or ``\0'' or end of stream.
    static uint_least32_t readDec(const char *parseStream, int size, int &pos);
    // Search terminated string for next newline sequence.
    // Skip it and return pointer to start of next line.
    static const char* returnNextLine(const char* pBuffer);

    // Skip any characters in an input string stream up to '='.
    static void skipToEqu(const char *parseStream, int size, int &pos);

    // Start at first character behind '=' and copy rest of string.
    static void copyStringValueToEOL(const char* pSourceStr, char* pDestStr, int destMaxLen);
};

#endif  /* TOOLS_H */