forked from perforce/p4python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPythonSpecData.cpp
182 lines (145 loc) · 5.35 KB
/
PythonSpecData.cpp
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/*******************************************************************************
Copyright (c) 2010, Perforce Software, Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL PERFORCE SOFTWARE, INC. BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*******************************************************************************/
/*******************************************************************************
* Name : PythonSpecData.cpp
*
* Author : Sven Erik Knop <[email protected]>
*
* Description : Python bindings for the Perforce API. SpecData subclass for
* P4Python. This class allows for manipulation of Spec data
* stored in a Python dict using the standard Perforce classes
*
******************************************************************************/
#include <Python.h>
#include <bytesobject.h>
#include "undefdups.h"
#include "python2to3.h"
#include <clientapi.h>
#include <i18napi.h>
#include <spec.h>
#include "debug.h"
#include "P4PythonDebug.h"
#include "PythonSpecData.h"
#include <iostream>
using namespace std;
StrPtr *
PythonSpecData::GetLine( SpecElem *sd, int x, const char **cmt )
{
PyObject * val = PyDict_GetItemString( dict, sd->tag.Text() );
if( val == NULL ) return 0;
if( !sd->IsList() )
{
if ( ! PyObject_IsInstance( val, (PyObject *) &StringType ) ) {
PyErr_WarnEx(PyExc_TypeError, "PythonSpecData::GetLine: value is not of type String",1);
return 0;
}
last = GetPythonString( val );
return &last;
}
// It's a list, which means we should have an array value here
// Let's see if the user provided a list
if ( PyObject_IsInstance( val, (PyObject *) &PyList_Type ) ) {
// GetLine keeps on asking for lines until we are exhausted.
// This throws Python, so we need to bail early
if ( x >= PyList_Size(val) ) {
return 0;
}
val = PyList_GetItem( val, x );
if( val == NULL ) {
cout << "GetLine: SEVERE error!" << endl;
return 0;
}
if ( ! PyObject_IsInstance( val, (PyObject *) &StringType ) ) {
PyErr_WarnEx(PyExc_TypeError, "PythonSpecData::GetLine: value is not of type String",1);
return 0;
}
last = GetPythonString( val );
return &last;
}
else if ( PyObject_IsInstance( val, (PyObject *) &StringType )) {
// We got a String but expected a list. Let's treat this as a list of 1 element
if ( x > 0 ) {
return 0; // we've already delivered the item, this time we bail
}
last = GetPythonString(val);
return &last;
}
PyErr_WarnEx(PyExc_TypeError, "PythonSpecData::GetLine: value is not of type String or List",1);
return 0; // safety
}
void
PythonSpecData::SetLine( SpecElem *sd, int x, const StrPtr *v, Error *e )
{
char * key = sd->tag.Text();
PyObject * val = CreatePythonString( v->Text() );
if( sd->IsList() )
{
PyObject * list = PyDict_GetItemString( dict, key );
if( list == NULL )
{
list = PyList_New(0);
PyDict_SetItemString( dict, key, list );
Py_DECREF(list);
}
PyList_Append( list, val );
Py_DECREF( val );
}
else
{
PyDict_SetItemString( dict, key, val );
Py_DECREF( val );
}
return;
}
void
PythonSpecData::Comment( SpecElem *sd, int x, const char **wv, int nl, Error *e)
{
char * key = sd->tag.Text(); // this will be "Protections" for the protection table
const char * comment = *wv;
if( sd->IsList() ) {
PyObject * list = PyDict_GetItemString(dict, key);
if( list == NULL ) {
list = PyList_New(0);
PyDict_SetItemString( dict, key, list );
Py_DECREF(list);
}
if( nl ) {
PyObject * content = CreatePythonString(comment);
PyList_Append(list, content);
Py_DECREF(content);
}
else { // append case
ssize_t size = PyList_Size( list );
PyObject * content = PyList_GetItem(list, size - 1); // last element
const char * contentStr = GetPythonString(content);
StrBuf newContent = contentStr;
newContent << " ";
newContent << comment;
contentStr = newContent.Text();
content = CreatePythonString(contentStr);
PyList_SetItem(list, size - 1, content); // replace last element
}
}
else
{
// ignore these entries for now
}
}