-
-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1452 from ghutchis/add-msgpack
Add new MessagePack version of CJSON
- Loading branch information
Showing
6 changed files
with
156 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/****************************************************************************** | ||
This source file is part of the Avogadro project. | ||
This source code is released under the 3-Clause BSD License, (see "LICENSE"). | ||
******************************************************************************/ | ||
|
||
#include "cmsgpackformat.h" | ||
|
||
#include <iostream> | ||
|
||
using namespace std; | ||
|
||
namespace Avogadro::Io { | ||
|
||
CMsgPackFormat::CMsgPackFormat() : CjsonFormat() | ||
{ | ||
m_json = false; | ||
} | ||
|
||
CMsgPackFormat::~CMsgPackFormat() = default; | ||
|
||
vector<std::string> CMsgPackFormat::fileExtensions() const | ||
{ | ||
vector<std::string> ext; | ||
ext.emplace_back("cmpk"); | ||
return ext; | ||
} | ||
|
||
vector<std::string> CMsgPackFormat::mimeTypes() const | ||
{ | ||
vector<std::string> mime; | ||
mime.emplace_back("chemical/x-cmpack"); | ||
return mime; | ||
} | ||
|
||
bool CMsgPackFormat::read(std::istream& in, Core::Molecule& molecule) | ||
{ | ||
return CjsonFormat::deserialize(in, molecule, false); | ||
} | ||
|
||
bool CMsgPackFormat::write(std::ostream& out, const Core::Molecule& molecule) | ||
{ | ||
return CjsonFormat::serialize(out, molecule, false); | ||
} | ||
|
||
} // namespace Avogadro::Io |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/****************************************************************************** | ||
This source file is part of the Avogadro project. | ||
This source code is released under the 3-Clause BSD License, (see "LICENSE"). | ||
******************************************************************************/ | ||
|
||
#ifndef AVOGADRO_IO_CMSGPACKFORMAT_H | ||
#define AVOGADRO_IO_CMSGPACKFORMAT_H | ||
|
||
#include "cjsonformat.h" | ||
#include "fileformat.h" | ||
|
||
namespace Avogadro { | ||
namespace Core { | ||
class GaussianSet; | ||
} | ||
namespace Io { | ||
|
||
/** | ||
* @class CMsgPackFormat cmsgpackformat.h <avogadro/io/cmsgpackformat.h> | ||
* @brief Implementation of the Chemical MessagePack format. | ||
*/ | ||
|
||
class AVOGADROIO_EXPORT CMsgPackFormat : public CjsonFormat | ||
{ | ||
public: | ||
CMsgPackFormat(); | ||
~CMsgPackFormat() override; | ||
|
||
Operations supportedOperations() const override | ||
{ | ||
return ReadWrite | File | Stream | String; | ||
} | ||
|
||
FileFormat* newInstance() const override { return new CMsgPackFormat; } | ||
std::string identifier() const override { return "Avogadro: CMsgPack"; } | ||
std::string name() const override { return "Chemical MessagePack"; } | ||
std::string description() const override | ||
{ | ||
return "CMsgPack format is a lightweight intermediate format used to " | ||
"exchange " | ||
"information between Avogadro and other data parsing applications"; | ||
} | ||
|
||
std::string specificationUrl() const override | ||
{ | ||
return "https://github.com/openchemistry/chemicaljson"; | ||
} | ||
|
||
std::vector<std::string> fileExtensions() const override; | ||
std::vector<std::string> mimeTypes() const override; | ||
|
||
bool read(std::istream& in, Core::Molecule& molecule) override; | ||
bool write(std::ostream& out, const Core::Molecule& molecule) override; | ||
|
||
// write MessagePack | ||
bool m_json = false; | ||
}; | ||
|
||
} // namespace Io | ||
} // namespace Avogadro | ||
|
||
#endif // AVOGADRO_IO_CMSGPACKFORMAT_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters