bump product version to 6.3.0.0.beta1
[LibreOffice.git] / registry / source / registry.cxx
blob166354aa5d6280fcdbcb4a55e3f95645eb7368cb
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 #include <registry/registry.hxx>
23 #include "keyimpl.hxx"
24 #include "regimpl.hxx"
25 #include "regkey.hxx"
27 #if defined(_WIN32)
28 #include <io.h>
29 #endif
31 extern "C" {
34 // acquire
36 static void REGISTRY_CALLTYPE acquire(RegHandle hReg)
38 ORegistry* pReg = static_cast<ORegistry*>(hReg);
40 if (pReg != nullptr)
41 pReg->acquire();
45 // release
47 static void REGISTRY_CALLTYPE release(RegHandle hReg)
49 ORegistry* pReg = static_cast<ORegistry*>(hReg);
51 if (pReg && pReg->release() == 0)
53 delete pReg;
54 hReg = nullptr;
59 // getName
61 static RegError REGISTRY_CALLTYPE getName(RegHandle hReg, rtl_uString** pName)
63 if (hReg)
65 ORegistry* pReg = static_cast<ORegistry*>(hReg);
66 if ( pReg->isOpen() )
68 rtl_uString_assign(pName, pReg->getName().pData);
69 return RegError::NO_ERROR;
70 } else
72 rtl_uString_new(pName);
73 return RegError::REGISTRY_NOT_OPEN;
77 rtl_uString_new(pName);
78 return RegError::INVALID_REGISTRY;
82 // isReadOnly
84 static sal_Bool REGISTRY_CALLTYPE isReadOnly(RegHandle hReg)
86 if (hReg)
87 return static_cast<ORegistry*>(hReg)->isReadOnly();
88 else
89 return false;
93 // createRegistry
95 static RegError REGISTRY_CALLTYPE createRegistry(rtl_uString* registryName,
96 RegHandle* phRegistry)
98 RegError ret;
100 ORegistry* pReg = new ORegistry();
101 if ((ret = pReg->initRegistry(registryName, RegAccessMode::READWRITE, true/*bCreate*/)) != RegError::NO_ERROR)
103 delete pReg;
104 *phRegistry = nullptr;
105 return ret;
108 *phRegistry = pReg;
110 return RegError::NO_ERROR;
114 // openRootKey
116 static RegError REGISTRY_CALLTYPE openRootKey(RegHandle hReg,
117 RegKeyHandle* phRootKey)
119 ORegistry* pReg;
121 if (hReg)
123 pReg = static_cast<ORegistry*>(hReg);
124 if (!pReg->isOpen())
125 return RegError::REGISTRY_NOT_OPEN;
126 } else
128 phRootKey = nullptr;
129 return RegError::INVALID_REGISTRY;
132 *phRootKey = pReg->getRootKey();
134 return RegError::NO_ERROR;
138 // openRegistry
140 static RegError REGISTRY_CALLTYPE openRegistry(rtl_uString* registryName,
141 RegHandle* phRegistry,
142 RegAccessMode accessMode)
144 RegError _ret;
146 ORegistry* pReg = new ORegistry();
147 if ((_ret = pReg->initRegistry(registryName, accessMode)) != RegError::NO_ERROR)
149 *phRegistry = nullptr;
150 delete pReg;
151 return _ret;
155 *phRegistry = pReg;
157 return RegError::NO_ERROR;
161 // closeRegistry
163 static RegError REGISTRY_CALLTYPE closeRegistry(RegHandle hReg)
165 ORegistry *pReg;
167 if (hReg)
169 pReg = static_cast<ORegistry*>(hReg);
170 if (!pReg->isOpen())
171 return RegError::REGISTRY_NOT_OPEN;
173 RegError ret = RegError::NO_ERROR;
174 if (pReg->release() == 0)
176 delete pReg;
177 hReg = nullptr;
179 else
180 ret = pReg->closeRegistry();
182 return ret;
183 } else
185 return RegError::INVALID_REGISTRY;
190 // destroyRegistry
192 static RegError REGISTRY_CALLTYPE destroyRegistry(RegHandle hReg,
193 rtl_uString* registryName)
195 ORegistry *pReg;
197 if (hReg)
199 pReg = static_cast<ORegistry*>(hReg);
200 if (!pReg->isOpen())
201 return RegError::INVALID_REGISTRY;
203 RegError ret = pReg->destroyRegistry(registryName);
204 if (ret == RegError::NO_ERROR)
206 if (!registryName->length)
208 delete pReg;
209 hReg = nullptr;
212 return ret;
213 } else
215 return RegError::INVALID_REGISTRY;
220 // mergeKey
222 static RegError REGISTRY_CALLTYPE mergeKey(RegHandle hReg,
223 RegKeyHandle hKey,
224 rtl_uString* keyName,
225 rtl_uString* regFileName,
226 sal_Bool bWarnings,
227 sal_Bool bReport)
229 ORegistry* pReg = static_cast< ORegistry* >(hReg);
230 if (!pReg)
231 return RegError::INVALID_REGISTRY;
232 if (!pReg->isOpen())
233 return RegError::REGISTRY_NOT_OPEN;
235 ORegKey* pKey = static_cast< ORegKey* >(hKey);
236 if (!pKey)
237 return RegError::INVALID_KEY;
238 if (pKey->getRegistry() != pReg)
239 return RegError::INVALID_KEY;
240 if (pKey->isDeleted())
241 return RegError::INVALID_KEY;
242 if (pKey->isReadOnly())
243 return RegError::REGISTRY_READONLY;
245 if (keyName->length)
247 ORegKey* pNewKey = nullptr;
248 RegError _ret = pKey->createKey(keyName, reinterpret_cast<RegKeyHandle*>(&pNewKey));
249 if (_ret != RegError::NO_ERROR)
250 return _ret;
252 _ret = pReg->loadKey(pNewKey, regFileName, bWarnings, bReport);
253 if (_ret != RegError::NO_ERROR && (_ret != RegError::MERGE_CONFLICT || bWarnings))
255 if (pNewKey != pKey)
256 (void) pKey->closeKey(pNewKey);
257 else
258 (void) pKey->releaseKey(pNewKey);
259 return _ret;
262 return (pNewKey != pKey) ? pKey->closeKey(pNewKey) : pKey->releaseKey(pNewKey);
265 return pReg->loadKey(pKey, regFileName, bWarnings, bReport);
269 // dumpRegistry
271 static RegError REGISTRY_CALLTYPE dumpRegistry(RegHandle hReg,
272 RegKeyHandle hKey)
274 ORegistry* pReg = static_cast< ORegistry* >(hReg);
275 if (!pReg)
276 return RegError::INVALID_REGISTRY;
277 if (!pReg->isOpen())
278 return RegError::REGISTRY_NOT_OPEN;
280 ORegKey* pKey = static_cast< ORegKey* >(hKey);
281 if (!pKey)
282 return RegError::INVALID_KEY;
283 if (pKey->getRegistry() != pReg)
284 return RegError::INVALID_KEY;
285 if (pKey->isDeleted())
286 return RegError::INVALID_KEY;
288 return pReg->dumpRegistry(hKey);
292 // initRegistry_Api
294 Registry_Api* REGISTRY_CALLTYPE initRegistry_Api()
296 static Registry_Api aApi= {&acquire,
297 &release,
298 &isReadOnly,
299 &openRootKey,
300 &getName,
301 &createRegistry,
302 &openRegistry,
303 &closeRegistry,
304 &destroyRegistry,
305 &mergeKey,
306 &acquireKey,
307 &releaseKey,
308 &isKeyReadOnly,
309 &getKeyName,
310 &createKey,
311 &openKey,
312 &openSubKeys,
313 &closeSubKeys,
314 &deleteKey,
315 &closeKey,
316 &setValue,
317 &setLongListValue,
318 &setStringListValue,
319 &setUnicodeListValue,
320 &getValueInfo,
321 &getValue,
322 &getLongListValue,
323 &getStringListValue,
324 &getUnicodeListValue,
325 &freeValueList,
326 &getResolvedKeyName,
327 &getKeyNames,
328 &freeKeyNames};
330 return (&aApi);
336 // reg_openRootKey
338 RegError REGISTRY_CALLTYPE reg_openRootKey(RegHandle hRegistry,
339 RegKeyHandle* phRootKey)
341 return openRootKey(hRegistry, phRootKey);
345 // reg_openRegistry
347 RegError REGISTRY_CALLTYPE reg_openRegistry(rtl_uString* registryName,
348 RegHandle* phRegistry)
350 RegError _ret;
352 ORegistry* pReg = new ORegistry();
353 if ((_ret = pReg->initRegistry(registryName, RegAccessMode::READONLY)) != RegError::NO_ERROR)
355 delete pReg;
356 *phRegistry = nullptr;
357 return _ret;
360 *phRegistry = pReg;
362 return RegError::NO_ERROR;
366 // reg_closeRegistry
368 RegError REGISTRY_CALLTYPE reg_closeRegistry(RegHandle hRegistry)
370 if (hRegistry)
372 ORegistry* pReg = static_cast<ORegistry*>(hRegistry);
373 delete pReg;
374 return RegError::NO_ERROR;
375 } else
377 return RegError::REGISTRY_NOT_OPEN;
382 // reg_dumpRegistry
384 RegError REGISTRY_CALLTYPE reg_dumpRegistry(RegKeyHandle hKey)
386 ORegKey *pKey;
388 if (hKey)
389 pKey = static_cast<ORegKey*>(hKey);
390 else
391 return RegError::INVALID_KEY;
393 return dumpRegistry(pKey->getRegistry(), hKey);
397 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */