forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStructure.cs
More file actions
77 lines (64 loc) · 2.62 KB
/
Structure.cs
File metadata and controls
77 lines (64 loc) · 2.62 KB
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.
#if FEATURE_CTYPES
using System.Collections.Generic;
using Microsoft.Scripting;
using IronPython.Runtime;
using IronPython.Runtime.Operations;
using IronPython.Runtime.Types;
namespace IronPython.Modules {
/// <summary>
/// Provides support for interop with native code from Python code.
/// </summary>
public static partial class CTypes {
/// <summary>
/// Base class for data structures. Subclasses can define _fields_ which
/// specifies the in memory layout of the values. Instances can then
/// be created with the initial values provided as the array. The values
/// can then be accessed from the instance by field name. The value can also
/// be passed to a foreign C API and the type can be used in other structures.
///
/// class MyStructure(Structure):
/// _fields_ = [('a', c_int), ('b', c_int)]
///
/// MyStructure(1, 2).a
/// MyStructure()
///
/// class MyOtherStructure(Structure):
/// _fields_ = [('c', MyStructure), ('b', c_int)]
///
/// MyOtherStructure((1, 2), 3)
/// MyOtherStructure(MyStructure(1, 2), 3)
/// </summary>
[PythonType("Structure")]
public abstract class _Structure : CData {
protected _Structure() {
((StructType)NativeType).EnsureFinal();
_memHolder = new MemoryHolder(NativeType.Size);
}
public void __init__(params object[] args) {
CheckAbstract();
INativeType nativeType = NativeType;
StructType st = (StructType)nativeType;
st.SetValueInternal(_memHolder, 0, args);
}
public void __init__(CodeContext/*!*/ context, [ParamDictionary]IDictionary<string, object> kwargs) {
CheckAbstract();
foreach (var x in kwargs) {
PythonOps.SetAttr(context, this, x.Key, x.Value);
}
}
private void CheckAbstract() {
object abstractCls;
if (((PythonType)NativeType).TryGetBoundAttr(((PythonType)NativeType).Context.SharedContext,
this,
"_abstract_",
out abstractCls)) {
throw PythonOps.TypeError("abstract class");
}
}
}
}
}
#endif