Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
Lima
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
62
Issues
62
List
Boards
Labels
Service Desk
Milestones
Jira
Jira
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LimaGroup
Lima
Commits
b80c7604
Commit
b80c7604
authored
Oct 22, 2012
by
Sebastien Petitdemange
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Directory Event proposition
parent
19f87dbb
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
709 additions
and
1 deletion
+709
-1
common/include/DirectoryEventUtils.h
common/include/DirectoryEventUtils.h
+88
-0
common/sip/DirectoryEventUtils.sip
common/sip/DirectoryEventUtils.sip
+55
-0
common/src/DirectoryEventUtils.cpp
common/src/DirectoryEventUtils.cpp
+565
-0
common/src/Makefile
common/src/Makefile
+1
-1
No files found.
common/include/DirectoryEventUtils.h
0 → 100644
View file @
b80c7604
//###########################################################################
// This file is part of LImA, a Library for Image Acquisition
//
// Copyright (C) : 2009-2011
// European Synchrotron Radiation Facility
// BP 220, Grenoble 38043
// FRANCE
//
// This 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 3 of the License, or
// (at your option) any later version.
//
// This software 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, see <http://www.gnu.org/licenses/>.
//###########################################################################
#ifndef DIRECTORYEVENTUTILS_H
#define DIRECTORYEVENTUTILS_H
#ifdef __linux__
#include <string>
#include "Debug.h"
namespace
lima
{
class
DirectoryEvent
{
public:
class
_Event
;
struct
Parameters
{
std
::
string
watch_path
;
std
::
string
file_pattern
;
int
next_file_number_expected
;
};
class
Callback
{
public:
/** @brief this methode is called before starting to watch the directory set in
parameters.watch_path
this method should throw an exception if something wrong happens
*/
virtual
void
prepare
(
const
DirectoryEvent
::
Parameters
&
){};
/** @brief this methode is called when a file just arrived
and it's the next expeded file number.
this method should not throw and return false to stop the directory watching.
@params file_number the number of the file
@params full_path the full path of the file
@params next_file_number_expected you should return the next file number expected
*/
virtual
bool
nextFileExpected
(
int
file_number
,
const
char
*
full_path
,
int
&
next_file_number_expected
)
throw
()
=
0
;
/** @brief a file just arrived but it's not the next expected file number.
*/
virtual
bool
newFile
(
int
file_number
,
const
char
*
full_path
)
throw
()
=
0
;
};
DirectoryEvent
(
bool
local
,
Callback
&
);
~
DirectoryEvent
();
void
prepare
(
const
Parameters
&
);
void
start
();
void
stop
();
bool
isStopped
()
const
;
int
getNextFileNumberExpected
()
const
;
private:
_Event
*
m_event
;
};
inline
std
::
ostream
&
operator
<<
(
std
::
ostream
&
os
,
const
DirectoryEvent
::
Parameters
&
params
)
{
os
<<
"<"
<<
"watch_path="
<<
params
.
watch_path
<<
", "
<<
"file_pattern="
<<
params
.
file_pattern
<<
", "
<<
"next_file_number_expected="
<<
params
.
next_file_number_expected
<<
">"
;
return
os
;
}
}
#endif
#endif
common/sip/DirectoryEventUtils.sip
0 → 100644
View file @
b80c7604
//###########################################################################
// This file is part of LImA, a Library for Image Acquisition
//
// Copyright (C) : 2009-2011
// European Synchrotron Radiation Facility
// BP 220, Grenoble 38043
// FRANCE
//
// This 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 3 of the License, or
// (at your option) any later version.
//
// This software 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, see <http://www.gnu.org/licenses/>.
//###########################################################################
class DirectoryEvent
{
%TypeHeaderCode
#include <DirectoryEventUtils.h>
using namespace lima;
%End
public:
struct Parameters
{
std::string watch_path;
std::string file_pattern;
int next_file_number_expected;
};
class Callback
{
public:
virtual void prepare(const DirectoryEvent::Parameters ¶meters);
virtual bool nextFileExpected(int file_number,
const char *full_path,
int &next_file_number_expected /In,Out/) throw() = 0;
virtual bool newFile(int file_number,const char *full_path) throw() = 0;
};
DirectoryEvent(bool local,Callback&);
~DirectoryEvent();
void prepare(const Parameters&);
void start();
void stop();
bool isStopped() const;
int getNextFileNumberExpected() const;
};
common/src/DirectoryEventUtils.cpp
0 → 100644
View file @
b80c7604
This diff is collapsed.
Click to expand it.
common/src/Makefile
View file @
b80c7604
...
...
@@ -21,7 +21,7 @@
############################################################################
common-objs
:=
Constants.o SizeUtils.o Timestamp.o ThreadUtils.o Exceptions.o
\
MemUtils.o RegExUtils.o AcqState.o Debug.o VideoUtils.o Event.o
\
Timer.o
Timer.o
DirectoryEventUtils.o
SRCS
=
$
(
common-objs:.o
=
.cpp
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment