Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
James Lowden
OpenLDAP
Commits
da1ac8db
Commit
da1ac8db
authored
16 years ago
by
Quanah Gibson-Mount
Browse files
Options
Downloads
Patches
Plain Diff
initial LdifWriter code
parent
ed70735b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/ldapc++/src/LdifWriter.cpp
+116
-0
116 additions, 0 deletions
contrib/ldapc++/src/LdifWriter.cpp
contrib/ldapc++/src/LdifWriter.h
+31
-0
31 additions, 0 deletions
contrib/ldapc++/src/LdifWriter.h
with
147 additions
and
0 deletions
contrib/ldapc++/src/LdifWriter.cpp
0 → 100644
+
116
−
0
View file @
da1ac8db
// $OpenLDAP$
/*
* Copyright 2008, OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#include
"LdifWriter.h"
#include
"StringList.h"
#include
"LDAPAttribute.h"
#include
"debug.h"
#include
<sstream>
#include
<stdexcept>
LdifWriter
::
LdifWriter
(
std
::
ostream
&
output
,
int
version
)
:
m_ldifstream
(
output
),
m_version
(
version
),
m_addSeparator
(
false
)
{
if
(
version
)
{
if
(
version
==
1
)
{
m_ldifstream
<<
"version: "
<<
version
<<
std
::
endl
;
m_addSeparator
=
true
;
}
else
{
std
::
ostringstream
err
;
err
<<
"Unsuported LDIF Version"
;
throw
(
std
::
runtime_error
(
err
.
str
())
);
}
}
}
void
LdifWriter
::
writeRecord
(
const
LDAPEntry
&
le
)
{
std
::
ostringstream
line
;
if
(
m_addSeparator
)
{
m_ldifstream
<<
std
::
endl
;
}
else
{
m_addSeparator
=
true
;
}
line
<<
"dn: "
<<
le
.
getDN
();
this
->
breakline
(
line
.
str
(),
m_ldifstream
);
const
LDAPAttributeList
*
al
=
le
.
getAttributes
();
LDAPAttributeList
::
const_iterator
i
=
al
->
begin
();
for
(
;
i
!=
al
->
end
();
i
++
)
{
StringList
values
=
i
->
getValues
();
StringList
::
const_iterator
j
=
values
.
begin
();
for
(
;
j
!=
values
.
end
();
j
++
)
{
// clear output stream
line
.
str
(
""
);
line
<<
i
->
getName
()
<<
": "
<<
*
j
;
this
->
breakline
(
line
.
str
(),
m_ldifstream
);
}
}
}
void
LdifWriter
::
writeIncludeRecord
(
const
std
::
string
&
target
)
{
DEBUG
(
LDAP_DEBUG_TRACE
,
"writeIncludeRecord: "
<<
target
<<
std
::
endl
);
std
::
string
scheme
=
target
.
substr
(
0
,
sizeof
(
"file:"
)
-
1
);
if
(
m_version
==
1
)
{
std
::
ostringstream
err
;
err
<<
"
\"
include
\"
not allowed in LDIF version 1."
;
throw
(
std
::
runtime_error
(
err
.
str
())
);
}
if
(
m_addSeparator
)
{
m_ldifstream
<<
std
::
endl
;
}
else
{
m_addSeparator
=
true
;
}
m_ldifstream
<<
"include: "
;
if
(
scheme
!=
"file:"
)
{
m_ldifstream
<<
"file://"
;
}
m_ldifstream
<<
target
<<
std
::
endl
;
}
void
LdifWriter
::
breakline
(
const
std
::
string
&
line
,
std
::
ostream
&
out
)
{
std
::
string
::
size_type
pos
=
0
;
std
::
string
::
size_type
linelength
=
76
;
bool
first
=
true
;
if
(
line
.
length
()
>=
linelength
)
{
while
(
pos
<
line
.
length
()
)
{
if
(
!
first
)
{
out
<<
" "
;
}
out
<<
line
.
substr
(
pos
,
linelength
)
<<
std
::
endl
;
pos
+=
linelength
;
if
(
first
)
{
first
=
false
;
linelength
--
;
//account for the leading space
}
}
}
else
{
out
<<
line
<<
std
::
endl
;
}
}
This diff is collapsed.
Click to expand it.
contrib/ldapc++/src/LdifWriter.h
0 → 100644
+
31
−
0
View file @
da1ac8db
// $OpenLDAP$
/*
* Copyright 2008, OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#ifndef LDIF_WRITER_H
#define LDIF_WRITER_H
#include
<LDAPEntry.h>
#include
<iosfwd>
#include
<list>
class
LdifWriter
{
public:
LdifWriter
(
std
::
ostream
&
output
,
int
version
=
0
);
void
writeRecord
(
const
LDAPEntry
&
le
);
void
writeIncludeRecord
(
const
std
::
string
&
target
);
private:
void
breakline
(
const
std
::
string
&
line
,
std
::
ostream
&
out
);
std
::
ostream
&
m_ldifstream
;
int
m_version
;
bool
m_addSeparator
;
};
#endif
/* LDIF_WRITER_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment