]> git.tdb.fi Git - libs/core.git/log
libs/core.git
8 years agoMake fix_case to work with relative paths
Mikko Rasa [Sun, 26 Jul 2015 16:58:38 +0000 (19:58 +0300)]
Make fix_case to work with relative paths

8 years agoAdd negation operator and abs function for TimeDelta
Mikko Rasa [Sun, 26 Jul 2015 16:57:58 +0000 (19:57 +0300)]
Add negation operator and abs function for TimeDelta

9 years agoInclude filename in errors from stat
Mikko Rasa [Tue, 7 Apr 2015 11:05:12 +0000 (14:05 +0300)]
Include filename in errors from stat

9 years agoExpose window flags and set fullscreen mode by default
Mikko Rasa [Thu, 13 Nov 2014 20:46:48 +0000 (22:46 +0200)]
Expose window flags and set fullscreen mode by default

I'll likely change the default once I figure out a good way to add
fullscreen support to libmspgui on Android.

9 years agoMove the generic file-based Asset implementation to a generic directory
Mikko Rasa [Thu, 13 Nov 2014 20:46:14 +0000 (22:46 +0200)]
Move the generic file-based Asset implementation to a generic directory

9 years agoTerminate the process when the application has finished running
Mikko Rasa [Thu, 13 Nov 2014 20:44:51 +0000 (22:44 +0200)]
Terminate the process when the application has finished running

Otherwise the OS may try to start the activity again in the same process,
which doesn't work because of Application::run semantics.

9 years agoChdir into a sensible location before starting the application
Mikko Rasa [Wed, 12 Nov 2014 20:22:15 +0000 (22:22 +0200)]
Chdir into a sensible location before starting the application

System location accessors will ultimately return this directory.  The
default is /, which can easily cause problems.  In particular, many of
my applications expect to have their data in get_sys_data_dir()/"data".
On Android /data exists but is not readable.

9 years agoHave get_user_data_dir return a proper location on Android
Mikko Rasa [Wed, 12 Nov 2014 20:21:36 +0000 (22:21 +0200)]
Have get_user_data_dir return a proper location on Android

9 years agoSplit getcwd and chdir to platform files
Mikko Rasa [Wed, 12 Nov 2014 20:10:25 +0000 (22:10 +0200)]
Split getcwd and chdir to platform files

9 years agoDeprecate the system directory accessors that take arguments
Mikko Rasa [Mon, 10 Nov 2014 17:32:54 +0000 (19:32 +0200)]
Deprecate the system directory accessors that take arguments

They are fundamentally broken due to their dependence on cwd and $PATH,
which may be changed after application startup.  Now that Application
stores an absolute argv0, the argument-less versions can provide a more
consistent answer.

Implementations for the functions are still the same, as they behave
correctly when an absolute argv0 is passed in.  At some point in the
future I'll remove the old versions completely.

9 years agoFix an infinite recursion bug
Mikko Rasa [Mon, 10 Nov 2014 17:32:41 +0000 (19:32 +0200)]
Fix an infinite recursion bug

9 years agoStore absolute path to argv[0] in Application
Mikko Rasa [Mon, 10 Nov 2014 17:29:11 +0000 (19:29 +0200)]
Store absolute path to argv[0] in Application

Working directory or $PATH may be changed by the program, so it may not
be possible to recover the executable later.  It's still not completely
reliable since the parent process can pass any value for argv[0] through
execve().

9 years agoAllow startup info to be set externally
Mikko Rasa [Mon, 10 Nov 2014 17:25:19 +0000 (19:25 +0200)]
Allow startup info to be set externally

... but only if startup didn't happen through Application::run().  Certain
facilities, like Graphics::Display on Windows, require startup info to be
set and would not work without this in a custom startup scenario.

9 years agoAdd a class for accessing applications assets
Mikko Rasa [Sun, 19 Oct 2014 22:34:17 +0000 (01:34 +0300)]
Add a class for accessing applications assets

9 years agoZero-arguments overloads and better error checking for get*dir functions
Mikko Rasa [Sun, 19 Oct 2014 22:27:10 +0000 (01:27 +0300)]
Zero-arguments overloads and better error checking for get*dir functions

9 years agoStore argv0 and application name in the Application class
Mikko Rasa [Sun, 19 Oct 2014 22:24:43 +0000 (01:24 +0300)]
Store argv0 and application name in the Application class

It can get quite annoying having to pass them around to be fed to the
standard path retrieval functions.

9 years agoExpose the asset manager from Android::MainThread
Mikko Rasa [Sun, 19 Oct 2014 17:23:02 +0000 (20:23 +0300)]
Expose the asset manager from Android::MainThread

AFAICT the asset manager is tied to the application and not the activity,
so this simple approach should be safe even if the activity gets destroyed
and recreated due to orientation change or whatever.

9 years agoSynchronize access to the underlying object of Slice
Mikko Rasa [Sun, 19 Oct 2014 13:33:01 +0000 (16:33 +0300)]
Synchronize access to the underlying object of Slice

This was prompted by the interactions between GL::ResourceManager and
some upcoming changes to DataFile::PackSource.  If a new Slice object is
created and tries to connect to signal_flush_required at the exact moment
another Slice is seeking and causing the signal to be emitted, the emit
and connect calls step on each others' toes and corrupt the heap.

9 years agoDerive Slice from sigc::trackable as it connects to external signals
Mikko Rasa [Sun, 19 Oct 2014 09:20:59 +0000 (12:20 +0300)]
Derive Slice from sigc::trackable as it connects to external signals

9 years agoDeal with the activity being recreated during process lifetime
Mikko Rasa [Sun, 12 Oct 2014 15:27:43 +0000 (18:27 +0300)]
Deal with the activity being recreated during process lifetime

This can happen if e.g. screen orientation changes.

9 years agoAdd window and input management signals for Android
Mikko Rasa [Sun, 12 Oct 2014 11:35:05 +0000 (14:35 +0300)]
Add window and input management signals for Android

The onCreate handler will now wait until either the main Application
object is constructed or the MainThread's resume_startup function is
called.  This ensures that the application (or a library such as mspgui)
can connect to the signals before they are emitted.

9 years agoMinimalistic port for Android
Mikko Rasa [Sat, 11 Oct 2014 10:32:23 +0000 (13:32 +0300)]
Minimalistic port for Android

Application startup through NativeActivity is provided and uncaught
exceptions are logged.  A number of things are still in need of proper
implementations.

9 years agoMove OS X main function to an overlay
Mikko Rasa [Fri, 10 Oct 2014 19:59:42 +0000 (22:59 +0300)]
Move OS X main function to an overlay

9 years agoSilence clang's complaints about unused private members
Mikko Rasa [Mon, 6 Oct 2014 22:30:39 +0000 (01:30 +0300)]
Silence clang's complaints about unused private members

9 years agoMake FS::Path::Iterator meet forward iterator requirements
Mikko Rasa [Sun, 5 Oct 2014 18:20:48 +0000 (21:20 +0300)]
Make FS::Path::Iterator meet forward iterator requirements

9 years agoUse direct constant values for non-POSIX baud rates
Mikko Rasa [Sun, 5 Oct 2014 10:48:57 +0000 (13:48 +0300)]
Use direct constant values for non-POSIX baud rates

Not all systems (particularly older ones) have #defines for the extended
baud rates, and the standard doesn't provide anything to check their
existence either.

9 years agoAdd a missing include
Mikko Rasa [Sun, 5 Oct 2014 10:48:15 +0000 (13:48 +0300)]
Add a missing include

9 years agoAdditional baud rates from termios.h
Mikko Rasa [Fri, 27 Jun 2014 16:02:13 +0000 (19:02 +0300)]
Additional baud rates from termios.h

10 years agoChange get_bin_dir logic to assume exe in cwd if not otherwise found
Mikko Rasa [Mon, 6 Jan 2014 19:55:30 +0000 (21:55 +0200)]
Change get_bin_dir logic to assume exe in cwd if not otherwise found

Windows has an implicit . component in $PATH, which can cause programs
started from command line to not find their executable in $PATH.  This
fixes the issue, and should not cause undue trouble on other systems.

10 years agoWindows uses ; as separator in $PATH
Mikko Rasa [Mon, 6 Jan 2014 19:53:25 +0000 (21:53 +0200)]
Windows uses ; as separator in $PATH

10 years agoAdd RAII class for atomic overwrites
Mikko Rasa [Mon, 18 Nov 2013 14:41:26 +0000 (16:41 +0200)]
Add RAII class for atomic overwrites

10 years agoRemove a useless const qualifier
Mikko Rasa [Wed, 6 Nov 2013 09:24:51 +0000 (11:24 +0200)]
Remove a useless const qualifier

10 years agoAdd a function to remove an item from a map, checking for existence
Mikko Rasa [Wed, 6 Nov 2013 09:23:31 +0000 (11:23 +0200)]
Add a function to remove an item from a map, checking for existence

10 years agoSet exists to true if the file was found
Mikko Rasa [Wed, 16 Oct 2013 18:13:16 +0000 (21:13 +0300)]
Set exists to true if the file was found

10 years agoMove Handle::operator void * to the common part
Mikko Rasa [Tue, 15 Oct 2013 12:46:38 +0000 (15:46 +0300)]
Move Handle::operator void * to the common part

10 years agoAvoid closing handles twice
Mikko Rasa [Tue, 15 Oct 2013 12:45:59 +0000 (15:45 +0300)]
Avoid closing handles twice

10 years agoAllow setting a pipe read-only or write-only after creation
Mikko Rasa [Tue, 15 Oct 2013 11:53:04 +0000 (14:53 +0300)]
Allow setting a pipe read-only or write-only after creation

This is useful for handing the pipe to a child process and then closing
the unused end so an end-of-file event can be properly received.

10 years agoInterpret POLLHUP as end-of-file
Mikko Rasa [Tue, 15 Oct 2013 11:51:52 +0000 (14:51 +0300)]
Interpret POLLHUP as end-of-file

10 years agoAdd a Process class for running and interfacing with other programs
Mikko Rasa [Mon, 14 Oct 2013 19:23:11 +0000 (22:23 +0300)]
Add a Process class for running and interfacing with other programs

10 years agoAdd get_handle to Console
Mikko Rasa [Mon, 14 Oct 2013 19:19:16 +0000 (22:19 +0300)]
Add get_handle to Console

This is needed to e.g. redirect cerr to cout.

10 years agoThrow an exception in list_files if the directory can't be opened
Mikko Rasa [Sun, 13 Oct 2013 22:06:03 +0000 (01:06 +0300)]
Throw an exception in list_files if the directory can't be opened

10 years agoRewrite BufferedFile as a standalone class
Mikko Rasa [Mon, 7 Oct 2013 16:36:04 +0000 (19:36 +0300)]
Rewrite BufferedFile as a standalone class

The generic Filtered template is unable to account for the complexities of
buffering a seekable object.  In particular, relative seeks were broken.

I may revisit the template form at a later date if I come up with a
workable design.  For now its use is discouraged.

10 years agoBetter method of preventing duplicate applications
Mikko Rasa [Sat, 5 Oct 2013 12:15:07 +0000 (15:15 +0300)]
Better method of preventing duplicate applications

Application::run can now be called multiple times, but not recursively.

10 years agoRedesign uncaught exception handling to allow external reporters
Mikko Rasa [Sat, 5 Oct 2013 12:12:35 +0000 (15:12 +0300)]
Redesign uncaught exception handling to allow external reporters

This helps keep UI code out of the core library.  It was becoming a
problem especially on OS X where including an Objective-C wrapper around
NSAlert would have broken Builder's bootstrap.  Libmspgui will acquire
a class that will present graphical error dialogs on each platform.

10 years agoUpdate .gitignore
Mikko Rasa [Fri, 4 Oct 2013 21:45:40 +0000 (00:45 +0300)]
Update .gitignore

10 years agoOS X tweaks
Mikko Rasa [Fri, 4 Oct 2013 21:44:41 +0000 (00:44 +0300)]
OS X tweaks

10 years agoMove Application member documentation to the header
Mikko Rasa [Fri, 4 Oct 2013 19:26:07 +0000 (22:26 +0300)]
Move Application member documentation to the header

10 years agoAvoid leaking external references through default c'tors and d'tors
Mikko Rasa [Tue, 27 Aug 2013 19:39:17 +0000 (22:39 +0300)]
Avoid leaking external references through default c'tors and d'tors

10 years agoSuppress usage errors if help is requested
Mikko Rasa [Tue, 27 Aug 2013 19:35:24 +0000 (22:35 +0300)]
Suppress usage errors if help is requested

10 years agosize_t needs <cstddef>
Mikko Rasa [Mon, 5 Aug 2013 14:38:56 +0000 (17:38 +0300)]
size_t needs <cstddef>

10 years agoAdd RAII utilities
Mikko Rasa [Fri, 31 May 2013 21:56:23 +0000 (00:56 +0300)]
Add RAII utilities

10 years agoThe threads flag is more correct than specifying -lpthread directly
Mikko Rasa [Fri, 24 May 2013 16:29:09 +0000 (19:29 +0300)]
The threads flag is more correct than specifying -lpthread directly

10 years agoMiscellaneous fixes
Mikko Rasa [Fri, 24 May 2013 14:45:49 +0000 (17:45 +0300)]
Miscellaneous fixes

10 years agoAvoid a shadowing warning from clang
Mikko Rasa [Fri, 24 May 2013 14:42:09 +0000 (17:42 +0300)]
Avoid a shadowing warning from clang

It considers the handle member of the outer class to be shadowed by the
parameter of an inner class member function.

10 years agoUse _FILE_OFFSET_BITS rather than _LARGEFILE64_SOURCE
Mikko Rasa [Fri, 24 May 2013 14:38:32 +0000 (17:38 +0300)]
Use _FILE_OFFSET_BITS rather than _LARGEFILE64_SOURCE

lseek64 and off64_t are non-portable.  This makes the standard lseek use
a 64-bit interface.

10 years agoDon't output the list of options in usage with full help
Mikko Rasa [Tue, 7 May 2013 13:41:21 +0000 (16:41 +0300)]
Don't output the list of options in usage with full help

10 years agoAdd test cases for path manipulation functions
Mikko Rasa [Fri, 3 May 2013 09:49:14 +0000 (12:49 +0300)]
Add test cases for path manipulation functions

10 years agoThrow an exception for nonsensical arguments in some FS functions
Mikko Rasa [Fri, 3 May 2013 09:47:51 +0000 (12:47 +0300)]
Throw an exception for nonsensical arguments in some FS functions

10 years agoCosmetic fixes for comments and output
Mikko Rasa [Fri, 3 May 2013 09:47:24 +0000 (12:47 +0300)]
Cosmetic fixes for comments and output

10 years agoAdd new test cases to cover positional arguments
Mikko Rasa [Fri, 3 May 2013 09:46:49 +0000 (12:46 +0300)]
Add new test cases to cover positional arguments

10 years agoAdd support for positional arguments in GetOpt
Mikko Rasa [Fri, 3 May 2013 09:42:27 +0000 (12:42 +0300)]
Add support for positional arguments in GetOpt

This addresses the issue of any positional arguments recognized by an
application not showing up in the generated help text.  It also reduces
the amount of processing and validation required from the application
itself and provides consistent error messages.

10 years agoRestore the check that list options must take an argument
Mikko Rasa [Fri, 3 May 2013 09:40:20 +0000 (12:40 +0300)]
Restore the check that list options must take an argument

10 years agoRestructure internals of GetOpt
Mikko Rasa [Thu, 2 May 2013 11:21:19 +0000 (14:21 +0300)]
Restructure internals of GetOpt

Value storage is now handled by a separate class hierarchy, making it more
reusable.

10 years agoUse a typedef for the option descriptor list
Mikko Rasa [Thu, 2 May 2013 09:58:36 +0000 (12:58 +0300)]
Use a typedef for the option descriptor list

10 years agoMove GetOpt exception handling to the .cpp file
Mikko Rasa [Tue, 30 Apr 2013 12:57:45 +0000 (15:57 +0300)]
Move GetOpt exception handling to the .cpp file

10 years agoAdd missing terminator entries to some test data arrays
Mikko Rasa [Wed, 24 Apr 2013 13:40:27 +0000 (16:40 +0300)]
Add missing terminator entries to some test data arrays

10 years agoMove most platform-specific code into overlay directories
Mikko Rasa [Wed, 24 Apr 2013 13:22:18 +0000 (16:22 +0300)]
Move most platform-specific code into overlay directories

A few things, in particular FS::Path, were not trivial to split.  I'm not
certain what to do with features like zlib either.

10 years agoClean up after the timedelta.h/units.h merge
Mikko Rasa [Wed, 24 Apr 2013 13:11:11 +0000 (16:11 +0300)]
Clean up after the timedelta.h/units.h merge

Quite a few files were still including units.h, and documentation for
TimeDelta contained a reference to it.

10 years agoUse UInt64 for FileSize
Mikko Rasa [Wed, 24 Apr 2013 13:08:45 +0000 (16:08 +0300)]
Use UInt64 for FileSize

The MSVC define was incorrect anyway.

10 years agoUse the system call name as parameter to system_error
Mikko Rasa [Tue, 23 Apr 2013 13:42:10 +0000 (16:42 +0300)]
Use the system call name as parameter to system_error

10 years agoMake the Thread state machine more strict
Mikko Rasa [Mon, 22 Apr 2013 10:54:32 +0000 (13:54 +0300)]
Make the Thread state machine more strict

Trying to re-launch a thread after it has finished now throws a
logic_error.

Added a state to indicate the thread having finished.

11 years agoLink examples against the library with a use statement
Mikko Rasa [Sat, 20 Apr 2013 16:37:59 +0000 (19:37 +0300)]
Link examples against the library with a use statement

11 years agoFix Timer to use is Semaphore correctly
Mikko Rasa [Sat, 20 Apr 2013 14:47:50 +0000 (17:47 +0300)]
Fix Timer to use is Semaphore correctly

Besides still assuming the old condvar-style semantics, it was also
horribly broken and contained potential deadlocks and race conditions.
Not to mention unusable due to a missing constructor.

11 years agoAvoid an extra copy by making Variant::Store's c'tor take a const ref
Mikko Rasa [Sat, 20 Apr 2013 14:32:04 +0000 (17:32 +0300)]
Avoid an extra copy by making Variant::Store's c'tor take a const ref

11 years agoAdd activation check to the rest of Filtered's virtual functions
Mikko Rasa [Sat, 20 Apr 2013 14:19:55 +0000 (17:19 +0300)]
Add activation check to the rest of Filtered's virtual functions

This fixes a bug manifesting in builder where a put call that triggers a
BufferedFile's buffer flush causes the buffer contents to be written to
the file twice.

11 years agoEncapsulate serial device state into a struct
Mikko Rasa [Sat, 20 Apr 2013 14:18:23 +0000 (17:18 +0300)]
Encapsulate serial device state into a struct

11 years agoFix a memory leak in Poller
Mikko Rasa [Sat, 20 Apr 2013 13:07:52 +0000 (16:07 +0300)]
Fix a memory leak in Poller

11 years agoCorrect some multiple inclusion guards
Mikko Rasa [Sat, 20 Apr 2013 13:05:31 +0000 (16:05 +0300)]
Correct some multiple inclusion guards

11 years agoFix seeking of Slice
Mikko Rasa [Sat, 13 Apr 2013 16:09:52 +0000 (19:09 +0300)]
Fix seeking of Slice

11 years agoImprove file opening on Windows
Mikko Rasa [Wed, 27 Mar 2013 19:53:20 +0000 (21:53 +0200)]
Improve file opening on Windows

Handle M_RDWR properly
Allow multiple concurrent readers

11 years agoMove the time constants to timedelta.h
Mikko Rasa [Sun, 10 Feb 2013 09:38:20 +0000 (11:38 +0200)]
Move the time constants to timedelta.h

11 years agoComment changes
Mikko Rasa [Wed, 16 Jan 2013 16:45:30 +0000 (18:45 +0200)]
Comment changes

11 years agoFix an overload resolution problem in formatting values for key_error
Mikko Rasa [Mon, 14 Jan 2013 09:41:34 +0000 (11:41 +0200)]
Fix an overload resolution problem in formatting values for key_error

11 years agoAdd a constructor to ZlibCompressed that takes a mode parameter
Mikko Rasa [Sat, 5 Jan 2013 09:39:24 +0000 (11:39 +0200)]
Add a constructor to ZlibCompressed that takes a mode parameter

11 years agoFix Windows compilation
Mikko Rasa [Mon, 10 Dec 2012 19:49:46 +0000 (21:49 +0200)]
Fix Windows compilation

11 years agoImprove maputils test cases
Mikko Rasa [Sat, 1 Dec 2012 20:59:52 +0000 (22:59 +0200)]
Improve maputils test cases

11 years agoStore the value of the key in key_error
Mikko Rasa [Sat, 1 Dec 2012 20:58:19 +0000 (22:58 +0200)]
Store the value of the key in key_error

The type of the container is uninformative and often ugly.

11 years agoThrow from LexicalConverter::get if no conversion was performed
Mikko Rasa [Sat, 1 Dec 2012 20:57:35 +0000 (22:57 +0200)]
Throw from LexicalConverter::get if no conversion was performed

11 years agoFilter the types that get fallback lexical conversion operators
Mikko Rasa [Sat, 1 Dec 2012 20:50:39 +0000 (22:50 +0200)]
Filter the types that get fallback lexical conversion operators

Only enable the operators for types that already have iostream formatting
operators defined.  Having them exist for everything would interfere with
some other stuff I'm going to commit in a moment.

11 years agoMake lexical_cast symmetric
Mikko Rasa [Sat, 1 Dec 2012 09:27:45 +0000 (11:27 +0200)]
Make lexical_cast symmetric

It has bugged me for a long time that lexical_cast took only the type of
the non-string side as a template argument.  Fix it so that it always
takes both target and source types.  The source type can be deduced, so
this only requires changes to invocations that cast things to strings.

11 years agoAdd an I/O class to access a restricted range of bytes from another object
Mikko Rasa [Thu, 8 Nov 2012 19:51:30 +0000 (21:51 +0200)]
Add an I/O class to access a restricted range of bytes from another object

11 years agoAdd a dedicated exception class for a bad seek operation
Mikko Rasa [Sun, 4 Nov 2012 20:44:05 +0000 (22:44 +0200)]
Add a dedicated exception class for a bad seek operation

11 years agoUse native win32 functions for rename and unlink
Mikko Rasa [Sun, 4 Nov 2012 20:36:11 +0000 (22:36 +0200)]
Use native win32 functions for rename and unlink

11 years agoSome fixes for eof handling in Memory
Mikko Rasa [Sun, 4 Nov 2012 20:35:27 +0000 (22:35 +0200)]
Some fixes for eof handling in Memory

11 years agoAdd no-throw destructors to exception classes that were lacking one
Mikko Rasa [Thu, 27 Sep 2012 22:06:53 +0000 (01:06 +0300)]
Add no-throw destructors to exception classes that were lacking one

11 years agoAdd some useful shortcuts for CreateMode combinations
Mikko Rasa [Thu, 27 Sep 2012 22:04:31 +0000 (01:04 +0300)]
Add some useful shortcuts for CreateMode combinations

All valid modes can now be referred to with a single enumerator.
C_EXCLUSIVE alone is not valid.

11 years agoAdd an exclusive create flag to IO::File
Mikko Rasa [Thu, 27 Sep 2012 22:02:38 +0000 (01:02 +0300)]
Add an exclusive create flag to IO::File

This flag is important in creating temp files, as it allows atomic
creation of a new file.  It also completes the set of create modes
available on Win32.

11 years agoDon't report M_RDWR as "generic"
Mikko Rasa [Thu, 27 Sep 2012 20:45:34 +0000 (23:45 +0300)]
Don't report M_RDWR as "generic"

11 years agoAdd a mode parameter to Memory constructor with non-const pointers
Mikko Rasa [Thu, 27 Sep 2012 20:41:20 +0000 (23:41 +0300)]
Add a mode parameter to Memory constructor with non-const pointers

This makes it possible to explicitly set the mode for a Memory, and in
particular to create a write-only Memory.  ZlibCompressed does not work
with M_RDWR so writing compressed data to memory was impossible before
this commit.

11 years agoDon't give out a non-const reference from a const Variant
Mikko Rasa [Thu, 27 Sep 2012 20:38:10 +0000 (23:38 +0300)]
Don't give out a non-const reference from a const Variant